@charset "UTF-8";
/************************************************

	common

*************************************************/
a,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

button {
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  cursor: pointer;
  font-weight: inherit;
}

.center {
  text-align: center !important;
}

.f_bold {
  font-weight: bold !important;
}

.f_small {
  font-size: 1.5rem !important;
}

.d_b {
  display: block !important;
}

.d_ib {
  display: inline-block !important;
}

/************************************************

	title

*************************************************/
.con_tit01 {
  font-size: 2.5rem;
  border-bottom: 1px solid;
  padding-left: 15px;
  color: #005B97;
  margin-bottom: 37px;
}

.con_tit02 {
  position: relative;
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, #C2EDFF 0%, #ffffff 100%);
  border-image-slice: 1;
  font-size: 2rem;
  margin-bottom: 20px;
}

.con_tit03 {
  font-size: 1.8rem;
  padding: 0 10px;
  border-left: 9px double #00A0E2;
  color: #333;
  margin-bottom: 20px;
}

.con_tit04 {
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 6px double #00A0E2;
  background: -webkit-linear-gradient(to right, #f2fbff, transparent);
  background: linear-gradient(to right, #f2fbff, transparent);
}
.con_tit04::after {
  content: " ";
  display: block;
  position: absolute;
  border-bottom: solid 3px #00A0E2;
  bottom: -3px;
  width: 45px;
}

.con_sub_tit01 {
  font-size: 1.8rem;
  position: relative;
  padding-left: 18px;
}
.con_sub_tit01::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 13.0px;
  border-color: transparent transparent transparent #4CB5E6;
  position: absolute;
  top: 7px;
  left: 0;
}

.con_sub_tit02 {
  position: relative;
  font-size: 1.8rem;
  padding-left: 18px;
  margin-bottom: 10px;
}
.con_sub_tit02::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 13.0px;
  border-color: transparent transparent transparent #00A0E2;
  position: absolute;
  top: 7px;
  left: 0;
}

/************************************************

	side_menu

*************************************************/
.side_menu {
  width: 256px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  background: #fff;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .side_menu {
    position: -webkit-sticky;
    position: sticky;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
  }
  _:-ms-input-placeholder, :root .side_menu {
    position: fixed;
  }
}
.side_menu .logo {
  max-width: 166px;
  padding: 0 10px;
  margin: 30px auto 0;
  transition: opacity .3s;
}
@media (hover: hover) {
  .side_menu .logo:hover {
    opacity: .7;
  }
}
_:-ms-input-placeholder:hover, :root .side_menu .logo:hover {
  opacity: .7;
}
@media screen and (max-width: 1024px) {
  .side_menu .logo {
    max-width: 90px;
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 320px) {
  .side_menu .logo {
    max-width: 60px;
    margin: 0;
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .gnav {
    position: fixed;
    width: 100%;
    height: 0;
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 11;
    transition: height .3s, border-color 0s .3s;
    overflow: hidden;
    background: #fff;
    border-bottom: 3px solid transparent;
  }
}
@media screen and (max-width: 1024px) {
  .gnav .gnav_inner {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .gnav.opened {
    height: 100vh;
    border-bottom: 3px solid #00A0E2;
    transition: height .3s, border-color 0s 0s;
  }
}
@media screen and (max-width: 1024px) {
  .gnav ul {
    margin-top: 20px;
  }
}
.gnav li {
  text-align: center;
  margin-top: 60px;
  font-size: 2rem;
  color: #5d5d5d;
}
@media screen and (max-height: 800px) {
  .gnav li {
    margin-top: 40px;
  }
}
@media screen and (max-height: 700px) {
  .gnav li {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .gnav li {
    border-bottom: 1px solid #888;
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .gnav li:first-of-type {
    border-top: 1px solid #888;
  }
}
.gnav li a {
  position: relative;
  display: inline-block;
  transition: color .3s;
}
@media (hover: hover) {
  .gnav li a:hover {
    color: #00A0E2;
  }
  .gnav li a:hover::after {
    transform: scaleX(1);
  }
}
_:-ms-input-placeholder:hover, :root .gnav li a:hover {
  color: #00A0E2;
}
_:-ms-input-placeholder:hover::after, :root .gnav li a:hover::after {
  transform: scaleX(1);
}
@media screen and (max-width: 1024px) {
  .gnav li a {
    display: block;
    padding: 15px 0;
    background: url("../images/ico_arrow05.svg") no-repeat right 5px center/10px 15px;
  }
}
.gnav li a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #00A0E2;
  left: 0;
  bottom: 0;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .3s;
}

.menu_btn_contact {
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-height: 800px) {
  .menu_btn_contact {
    margin-top: 40px;
  }
}
@media screen and (max-height: 700px) {
  .menu_btn_contact {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .menu_btn_contact {
    font-size: 1.2rem;
    margin-top: 0;
    margin-left: auto;
  }
}
.menu_btn_contact a {
  display: inline-block;
  color: #00A0E2;
  border: 1px solid #00A0E2;
  padding: 10px 30px;
  box-sizing: border-box;
  transition: color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .menu_btn_contact a {
    padding: 10px;
  }
}
@media (hover: hover) {
  .menu_btn_contact a:hover {
    color: #fff;
  }
  .menu_btn_contact a:hover::before {
    transform: scaleY(1);
  }
}
_:-ms-input-placeholder:hover, :root .menu_btn_contact a:hover {
  color: #fff;
}
_:-ms-input-placeholder:hover::before, :root .menu_btn_contact a:hover::before {
  transform: scaleY(1);
}
.menu_btn_contact a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #00A0E2;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: transform .3s;
  transform-origin: bottom;
  transform: scaleY(0);
  z-index: 0;
}
.menu_btn_contact a span {
  position: relative;
  z-index: 1;
}

.menu_btn_staff {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-height: 800px) {
  .menu_btn_staff {
    margin-top: 40px;
  }
}
@media screen and (max-height: 700px) {
  .menu_btn_staff {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .menu_btn_staff {
    margin-top: 0;
    margin-left: 15px;
    text-align: left;
  }
}
@media screen and (max-width: 1024px) and (hover: hover) {
  .menu_btn_staff {
    transform: translateY(-3px);
  }
}

.menu_btn_staff a {
  display: inline-block;
  box-sizing: border-box;
  color: #5d5d5d;
  box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.5);
  transition: opacity .3s;
}
@media (hover: hover) {
  .menu_btn_staff a:hover {
    opacity: .7;
  }
}
_:-ms-input-placeholder:hover, :root .menu_btn_staff a:hover {
  opacity: .7;
}
.menu_btn_staff .btn_staff_label {
  font-size: 1.8rem;
  line-height: 1.3;
  padding: 10px 0;
  background: #c7c7c7;
  background: -moz-linear-gradient(top, #c7c7c7 0%, white 41%, white 60%, white 60%, #d2d2d2 100%);
  background: -webkit-linear-gradient(top, #c7c7c7 0%, white 41%, white 60%, white 60%, #d2d2d2 100%);
  background: linear-gradient(to bottom, #c7c7c7 0%, white 41%, white 60%, white 60%, #d2d2d2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c7c7c7', endColorstr='#d2d2d2',GradientType=0 );
}
@media screen and (max-width: 1024px) {
  .menu_btn_staff .btn_staff_label {
    font-size: 1.2rem;
    padding: 10px 5px;
  }
}
.menu_btn_staff .btn_staff_label .ico_lock {
  background: url("../images/ico_lock.svg") no-repeat left center/17px 17px;
  padding-left: 22px;
}
@media screen and (max-width: 1024px) {
  .menu_btn_staff .btn_staff_label .ico_lock {
    padding: 0px 0 0px 22px;
    display: inline-block;
  }
}
.menu_btn_staff .btn_lower {
  padding: 0 10px 10px;
  background: #d2d2d2;
}
@media screen and (max-width: 1024px) {
  .menu_btn_staff .btn_lower {
    display: none;
  }
}
.menu_btn_staff .btn_staff_text {
  font-size: 1.5rem;
  line-height: 1.5;
  background: #fff;
  padding: 5px;
}

.btn_sp_menu {
  display: none;
  width: 50px;
  height: 44px;
  position: relative;
  margin-left: 15px;
}
@media screen and (max-width: 1024px) {
  .btn_sp_menu {
    display: block;
  }
}
.btn_sp_menu .ico {
  display: block;
  width: 40px;
  height: 28px;
  margin: 0 auto;
  position: relative;
}
.btn_sp_menu .bar {
  width: 100%;
  height: 3px;
  border-radius: 1px;
  background: #00A0E2;
  display: block;
  position: absolute;
  left: 0;
}
.btn_sp_menu .bar:nth-of-type(1) {
  top: 0;
}
.btn_sp_menu .bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-1px);
}
.btn_sp_menu .bar:nth-of-type(3) {
  bottom: 0;
}
.btn_sp_menu .text {
  font-size: 1.2rem;
  width: 100%;
  display: block;
  margin-top: 2px;
  color: #00A0E2;
  font-weight: bold;
}

.btn_close_menu {
  text-align: right;
  display: none;
}
@media screen and (max-width: 1024px) {
  .btn_close_menu {
    display: block;
  }
}
.btn_close_menu .ico_close {
  position: relative;
  display: block;
  padding-left: 25px;
}
.btn_close_menu .ico_close::before, .btn_close_menu .ico_close::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  top: 50%;
}
.btn_close_menu .ico_close::before {
  transform: translateY(-50%) rotate(45deg);
}
.btn_close_menu .ico_close::after {
  transform: translateY(-50%) rotate(-45deg);
}

/************************************************

	contants

*************************************************/
.container {
  position: relative;
}

.main {
  margin-left: 256px;
}
@media screen and (max-width: 1024px) {
  .main {
    margin-left: 0;
  }
  _:-ms-input-placeholder, :root .main {
    margin-top: 80px;
  }
}

/*.con_wrap {
	margin-top: 50px;
	padding: 0 20px;
}*/
/************************************************

	footer

*************************************************/
.footer {
  background: #EBEBEB;
  margin-top: 160px;
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-top: 50px;
  }
}
.footer .footer_inner {
  padding: 50px 20px 90px;
  box-sizing: border-box;
  max-width: 1270px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer .footer_inner {
    padding: 25px 20px;
  }
}
.footer .footer_sitemap_block {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer .footer_sitemap_block {
    display: block;
  }
}
.footer .footer_sitemap_block > * {
  width: 25%;
  box-sizing: border-box;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap_block > * {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap_block #footer_sitemap01, .footer .footer_sitemap_block #footer_sitemap02, .footer .footer_sitemap_block #footer_sitemap03, .footer .footer_sitemap_block #footer_sitemap_contact {
    display: none;
  }
}
.footer .footer_sitemap_block .sitemap_list li {
  padding-left: 20px;
}
.footer .footer_sitemap_block .sitemap_list li:not(:first-child) {
  margin-top: 5px;
}
.footer .footer_sitemap_block .sitemap_list li a {
  display: inline-block;
  font-size: 1.6rem;
  position: relative;
  text-indent: -17px;
  padding-left: 17px;
  transition: opacity .3s;
}
@media (hover: hover) {
  .footer .footer_sitemap_block .sitemap_list li a:hover {
    opacity: .7;
  }
}
_:-ms-input-placeholder:hover, :root .footer .footer_sitemap_block .sitemap_list li a:hover {
  opacity: .7;
}
.footer .footer_sitemap_block .sitemap_list li a::before {
  content: '';
  display: inline-block;
  background: url("../images/ico_arrow05.svg") no-repeat left center/7px 11px;
  width: 7px;
  height: 11px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap_block .sitemap_list li a {
    text-indent: -14px;
    padding-left: 14px;
  }
}
.footer .footer_sitemap_block .sitemap_list li.sitemap_ttl {
  padding-left: 0;
}
.footer .footer_sitemap_block .sitemap_list li.sitemap_ttl:not(:first-of-type) {
  margin-top: 10px;
}
.footer .footer_sitemap_block .sitemap_list li.sitemap_ttl a {
  font-size: 1.9rem;
  font-weight: bold;
}
.footer .footer_sitemap_block .sitemap_list li.sitemap_ttl a::before {
  background: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 9px;
  border-color: transparent transparent transparent #000000;
  transform: translateY(1px);
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap_block .sitemap_list li.sitemap_ttl a {
    font-size: 1.6rem;
    display: block;
  }
  .footer .footer_sitemap_block .sitemap_list li.sitemap_ttl a::before {
    border-width: 7px 0 7px 7px;
  }
}
.footer .footer_sitemap_block .sitemap_list + .sitemap_list {
  margin-top: 20px;
}
.footer .copy_right {
  padding: 10px 15px;
  background: #00A0E2;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer .copy_right {
    font-size: 1.2rem;
  }
}

/************************************************

	btn

*************************************************/
/************************************************

	utility

*************************************************/
.pc_br {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc_br {
    display: none;
  }
}

.sp_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_br {
    display: inline-block;
  }
}

.sp_br02 {
  display: none;
}
@media screen and (max-width: 320px) {
  .sp_br02 {
    display: inline-block;
  }
}

.sp_br03 {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_br03 {
    display: inline-block;
  }
}
@media screen and (max-width: 375px) {
  .sp_br03 {
    display: none;
  }
}

.sp_br04 {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_br04 {
    display: inline-block;
  }
}
@media screen and (max-width: 375px) {
  .sp_br04 {
    display: none;
  }
}

.sp_br05 {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_br05 {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  .sp_br05 {
    display: block;
  }
}

.sp_br06 {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_br06 {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .sp_br06 {
    display: block;
  }
}
@media screen and (max-width: 320px) {
  .sp_br06 {
    display: none;
  }
}

.sp_br07 {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_br07 {
    display: block;
  }
}

.sp_br08 {
  display: none;
}
@media screen and (max-width: 430px) {
  .sp_br08 {
    display: block;
  }
}

.d_ib {
  display: inline-block;
}

/************************************************

	con_head

*************************************************/
.con_head {
  background: url("../images/con_head06.jpg") no-repeat center top/cover;
  position: relative;
}
.con_head .con_head_tit {
  position: relative;
  background-image: -moz-linear-gradient(25deg, #005b97 50%, transparent 50.1%);
  background-image: -webkit-linear-gradient(25deg, #005b97 50%, transparent 50.1%);
  background-image: linear-gradient(115deg, #005b97 50%, transparent 50.1%);
  mix-blend-mode: multiply;
  text-align: center;
  padding: 15% 0 10.5%;
}
@media screen and (max-width: 768px) {
  .con_head .con_head_tit {
    padding: 0 0 35%;
    background-image: -moz-linear-gradient(115deg, #005b97 55%, transparent 55.2%);
    background-image: -webkit-linear-gradient(115deg, #005b97 55%, transparent 55.2%);
    background-image: linear-gradient(115deg, #005b97 55%, transparent 55.2%);
  }
}
_:-ms-input-placeholder, :root .con_head .con_head_tit {
  opacity: .7;
}
.con_head .con_head_txt {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .con_head .con_head_txt {
    text-align: left;
    left: 0;
    margin-left: 10px;
  }
}
.con_head .con_head_txt h2 {
  max-width: 332px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .con_head .con_head_txt h2 {
    max-width: 50%;
    margin: 0 0 2%;
  }
}
.con_head .con_head_txt p {
  font-size: 6rem;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .con_head .con_head_txt p {
    font-size: 2.8rem;
  }
}
.con_head.con_head_product {
  background: url("../images/con_head02.jpg") no-repeat center top/cover;
}
.con_head.con_head_product .con_head_txt h2 {
  max-width: 286px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .con_head.con_head_product .con_head_txt h2 {
    max-width: 50%;
    margin: 0;
  }
}
.con_head.con_head_company {
  background: url("../images/con_head03.jpg") no-repeat center top/cover;
}
.con_head.con_head_company .con_head_txt h2 {
  max-width: 345px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .con_head.con_head_company .con_head_txt h2 {
    max-width: 50%;
    margin: 0;
  }
}
.con_head.con_head_csr {
  background: url("../images/con_head04.jpg") no-repeat center top/cover;
}
.con_head.con_head_csr .con_head_txt h2 {
  max-width: 148px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .con_head.con_head_csr .con_head_txt h2 {
    max-width: 50%;
    margin: 0;
  }
}
.con_head.con_head_csr .con_head_txt p {
  font-size: 3rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .con_head.con_head_csr .con_head_txt p {
    font-size: 1.6rem;
  }
}
.con_head.con_head_inquiry {
  background: url("../images/con_head05.jpg") no-repeat center top/cover;
}
.con_head.con_head_inquiry .con_head_txt h2 {
  max-width: 256px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .con_head.con_head_inquiry .con_head_txt h2 {
    max-width: 50%;
    margin: 0;
  }
}
.con_head.con_head_news {
  background: url("../images/con_head02.jpg") no-repeat center top/cover;
}
.con_head.con_head_news .con_head_txt h2 {
  max-width: 199px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .con_head.con_head_news .con_head_txt h2 {
    max-width: 50%;
    margin: 0;
  }
}
.con_head.con_head_applicant {
  background: url("../images/con_head02.jpg") no-repeat center top/cover;
}
.con_head.con_head_applicant .con_head_txt h2 {
  max-width: 368px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .con_head.con_head_applicant .con_head_txt h2 {
    max-width: 50%;
    margin: 0;
  }
}
.con_head.con_head_applicant .con_head_txt p {
  font-size: 6.2rem;
}
@media screen and (max-width: 768px) {
  .con_head.con_head_applicant .con_head_txt p {
    font-size: 2.8rem;
  }
}

/************************************************

	breadcrumb

*************************************************/
.breadcrumb {
  display: flex;
  align-items: center;
  margin: 0 30px;
  padding: 20px 0;
}
@media screen and (max-width: 1023px) {
  .breadcrumb {
    margin: 0 10px;
    padding: 15px 0;
    font-size: 1.4rem;
  }
}
.breadcrumb li {
  display: inline;
}
.breadcrumb li::after {
  content: "＞";
  padding: 0 10px;
}
@media screen and (max-width: 320px) {
  .breadcrumb li::after {
    padding: 0 7px;
  }
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb li a {
  transition: .3s;
}
.breadcrumb li a:hover {
  opacity: .7;
}

/************************************************

	colmn

*************************************************/
.con_2col {
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
  justify-content: flex-end;
  margin-bottom: 160px;
}
.con_2col:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .con_2col {
    display: block;
    margin-bottom: 80px;
  }
}
.con_2col .con_2col_txt_box {
  max-width: 650px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .con_2col .con_2col_txt_box {
    margin-bottom: 20px;
  }
}
.con_2col .con_2col_txt_box h3 {
  position: relative;
  font-size: 3rem;
  color: #005b97;
  padding-bottom: 10px;
  padding-left: 30px;
  margin-bottom: 30px;
  /*margin-top: 20px;*/
}
.con_2col .con_2col_txt_box h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  content: '';
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
}
@media screen and (max-width: 1023px) {
  .con_2col .con_2col_txt_box h3 {
    font-size: 2.1rem;
    padding-left: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 320px) {
  .con_2col .con_2col_txt_box h3 {
    font-size: 2rem;
  }
}
.con_2col .con_2col_txt_box .con_2col_txt {
  font-size: 1.8rem;
  padding-left: 30px;
}
@media screen and (max-width: 1023px) {
  .con_2col .con_2col_txt_box .con_2col_txt {
    padding-left: 0;
    font-size: 1.6rem;
  }
}
.con_2col.con_2col_reverse {
  justify-content: flex-end;
  flex-flow: nowrap;
}
.con_2col.con_2col_reverse .con_2col_txt_box {
  max-width: 650px;
}
.con_2col.con_2col_reverse .con_2col_txt_box h3 {
  position: relative;
  font-size: 3rem;
  color: #005b97;
  padding-bottom: 10px;
  padding-right: 30px;
  margin-bottom: 30px;
  /*margin-top: 20px;*/
}
.con_2col.con_2col_reverse .con_2col_txt_box h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  content: '';
  background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
  background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
}
@media screen and (max-width: 1023px) {
  .con_2col.con_2col_reverse .con_2col_txt_box h3::after {
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
  }
}
@media screen and (max-width: 1023px) {
  .con_2col.con_2col_reverse .con_2col_txt_box h3 {
    font-size: 2.1rem;
    padding-right: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 320px) {
  .con_2col.con_2col_reverse .con_2col_txt_box h3 {
    font-size: 2rem;
  }
}
.con_2col.con_2col_reverse .con_2col_txt_box .con_2col_txt {
  padding-right: 30px;
}
@media screen and (max-width: 1023px) {
  .con_2col.con_2col_reverse .con_2col_txt_box .con_2col_txt {
    padding-right: 0;
    font-size: 1.6rem;
  }
}

.con_2col02 {
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
  justify-content: flex-end;
  margin-bottom: 160px;
}
.con_2col02:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .con_2col02 {
    display: block;
    margin-bottom: 80px;
  }
}
.con_2col02 .con_2col_txt_box {
  max-width: 650px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .con_2col02 .con_2col_txt_box {
    margin-bottom: 20px;
  }
}
.con_2col02 .con_2col_txt_box h3 {
  position: relative;
  font-size: 3rem;
  color: #005b97;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.con_2col02 .con_2col_txt_box h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  content: '';
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
}
@media screen and (max-width: 1023px) {
  .con_2col02 .con_2col_txt_box h3 {
    font-size: 2.1rem;
    padding-left: 0;
    margin-bottom: 15px;
    text-align: left;
  }
}
@media screen and (max-width: 320px) {
  .con_2col02 .con_2col_txt_box h3 {
    font-size: 2rem;
  }
}
.con_2col02 .con_2col_txt_box h3 a {
  display: block;
}
@media screen and (max-width: 1023px) {
  .con_2col02 .con_2col_txt_box h3 a {
    padding-left: 0;
  }
}
.con_2col02 .con_2col_txt_box h3 a span {
  position: relative;
}
.con_2col02 .con_2col_txt_box h3 a span::after {
  content: "▶";
  display: block;
  position: absolute;
  top: 47%;
  right: -30px;
  transform: translateY(-47%);
  transition: .3s all;
}
@media screen and (max-width: 1023px) {
  .con_2col02 .con_2col_txt_box h3 a span::after {
    right: -20px;
  }
}
.con_2col02 .con_2col_txt_box h3 a:hover span::after {
  right: -35px;
}
@media screen and (max-width: 1023px) {
  .con_2col02 .con_2col_txt_box h3 a:hover span::after {
    right: -20px;
  }
}
.con_2col02 .con_2col_txt_box .con_2col_txt {
  font-size: 1.8rem;
  padding-left: 30px;
}
@media screen and (max-width: 1023px) {
  .con_2col02 .con_2col_txt_box .con_2col_txt {
    padding-left: 0;
    font-size: 1.6rem;
    text-align: left;
  }
}
.con_2col02.con_2col_reverse {
  justify-content: flex-end;
  flex-flow: nowrap;
}
.con_2col02.con_2col_reverse .con_2col_txt_box {
  max-width: 650px;
}
.con_2col02.con_2col_reverse .con_2col_txt_box h3 {
  position: relative;
  font-size: 3rem;
  color: #005b97;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.con_2col02.con_2col_reverse .con_2col_txt_box h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  content: '';
  background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
  background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
}
@media screen and (max-width: 1023px) {
  .con_2col02.con_2col_reverse .con_2col_txt_box h3::after {
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 51%, #0075be 86%, #005b97 100%);
  }
}
@media screen and (max-width: 1023px) {
  .con_2col02.con_2col_reverse .con_2col_txt_box h3 {
    font-size: 2.1rem;
    padding-right: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 320px) {
  .con_2col02.con_2col_reverse .con_2col_txt_box h3 {
    font-size: 2rem;
  }
}
.con_2col02.con_2col_reverse .con_2col_txt_box h3 a {
  display: block;
}
.con_2col02.con_2col_reverse .con_2col_txt_box .con_2col_txt {
  padding-right: 30px;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .con_2col02.con_2col_reverse .con_2col_txt_box .con_2col_txt {
    padding-right: 0;
    font-size: 1.6rem;
    text-align: left;
  }
}
.con_2col02.con_corp_2col {
  display: inherit;
}
.con_2col02.con_corp_2col a {
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
  justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .con_2col02.con_corp_2col a {
    display: block;
  }
}
.con_2col02.con_corp_2col a .con_2col_txt_box span {
  position: relative;
}
.con_2col02.con_corp_2col a .con_2col_txt_box span::after {
  content: "";
  display: block;
  position: absolute;
  top: 47%;
  right: -30px;
  transform: translateY(-47%);
  transition: .3s all;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 13.0px;
  border-color: transparent transparent transparent #005b97;
}
@media screen and (max-width: 1023px) {
  .con_2col02.con_corp_2col a .con_2col_txt_box span::after {
    right: -20px;
  }
}
.con_2col02.con_corp_2col a:hover .con_2col_txt_box span::after {
  right: -35px;
}
@media screen and (max-width: 1023px) {
  .con_2col02.con_corp_2col a:hover .con_2col_txt_box span::after {
    right: -20px;
  }
}
.con_2col02.con_corp_2col.con_2col_reverse a {
  justify-content: flex-end;
  flex-flow: nowrap;
}

/************************************************

	inquiry

*************************************************/
.inquiry_2col_box {
  max-width: 1300px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1075px) {
  .inquiry_2col_box {
    display: block;
    margin: 30px 10px 0 10px;
  }
}
.inquiry_2col_box .inquiry_tell_box {
  margin-right: 15px;
  max-width: 570px;
  width: 100%;
}
@media screen and (max-width: 1075px) {
  .inquiry_2col_box .inquiry_tell_box {
    max-width: inherit;
    margin-bottom: 30px;
  }
}
.inquiry_2col_box .inquiry_tell_box h3 {
  position: relative;
  background-image: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 56%, #0075be 86%, #005b97 100%);
  background-image: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 56%, #0075be 86%, #005b97 100%);
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 56%, #0075be 86%, #005b97 100%);
  color: #fff;
  padding: 10px 0 10px 20px;
  font-size: 2rem;
  font-weight: normal;
}
.inquiry_2col_box .inquiry_tell_box h3 span {
  padding-left: 105px;
  display: block;
}
.inquiry_2col_box .inquiry_tell_box h3 span::before {
  content: "";
  display: block;
  background: url("../images/ico_tell.png") no-repeat left center/43px, url("../images/ico_fax.png") no-repeat 50px center/43px;
  padding-bottom: 40px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 95px;
}
@media screen and (max-width: 768px) {
  .inquiry_2col_box .inquiry_tell_box h3 span {
    padding-left: 54px;
    font-size: 1.7rem;
  }
  .inquiry_2col_box .inquiry_tell_box h3 span::before {
    background: url("../images/ico_tell.png") no-repeat left center/22px, url("../images/ico_fax.png") no-repeat 25px center/22px;
    left: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .inquiry_2col_box .inquiry_tell_box h3 {
    padding: 10px 0 10px 15px;
  }
}
.inquiry_2col_box .inquiry_tell_box .inquiry_num_box {
  font-size: 2.5rem;
  /*font-size: 3.8rem;*/
  font-weight: bold;
  color: #005B97;
  padding: 20px 25px;
  line-height: 1;
}
.inquiry_2col_box .inquiry_tell_box .inquiry_num_box p {
  margin-bottom: 10px;
}
.inquiry_2col_box .inquiry_tell_box .inquiry_num_box p:last-child {
  margin-bottom: 0;
}
.inquiry_2col_box .inquiry_tell_box .inquiry_num_box span {
  font-size: 4rem;
  /*font-size: 2.5rem;*/
  padding-left: 20px;
}
@media screen and (max-width: 1075px) {
  .inquiry_2col_box .inquiry_tell_box .inquiry_num_box {
    padding: 10px 12px;
  }
}
@media screen and (max-width: 768px) {
  .inquiry_2col_box .inquiry_tell_box .inquiry_num_box {
    font-size: 2rem;
    /*font-size: 3rem;*/
  }
  .inquiry_2col_box .inquiry_tell_box .inquiry_num_box span {
    font-size: 3rem;
    /*font-size: 2rem;*/
    padding-left: 10px;
  }
}
.inquiry_2col_box .inquiry_mail_box {
  max-width: 570px;
  width: 100%;
}
@media screen and (max-width: 1075px) {
  .inquiry_2col_box .inquiry_mail_box {
    max-width: inherit;
  }
}
.inquiry_2col_box .inquiry_mail_box h3 {
  position: relative;
  background-image: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 56%, #0075be 86%, #005b97 100%);
  background-image: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 56%, #0075be 86%, #005b97 100%);
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #1e9cd7 56%, #0075be 86%, #005b97 100%);
  color: #fff;
  padding: 10px 0 10px 20px;
  font-size: 2rem;
  font-weight: normal;
}
.inquiry_2col_box .inquiry_mail_box h3 span {
  padding-left: 65px;
  display: block;
}
.inquiry_2col_box .inquiry_mail_box h3 span::before {
  content: "";
  display: block;
  background: url("../images/ico_mail.png") no-repeat left center/47px;
  padding-bottom: 40px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 47px;
}
@media screen and (max-width: 768px) {
  .inquiry_2col_box .inquiry_mail_box h3 span {
    padding-left: 33px;
    font-size: 1.7rem;
  }
  .inquiry_2col_box .inquiry_mail_box h3 span::before {
    background: url("../images/ico_mail.png") no-repeat left center/22px;
    left: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .inquiry_2col_box .inquiry_mail_box h3 {
    padding: 10px 0 10px 15px;
  }
}
.inquiry_2col_box .inquiry_mail_box .inquiry_form_box {
  padding: 20px 25px;
  color: #005B97;
  line-height: 1;
}
.inquiry_2col_box .inquiry_mail_box .inquiry_form_box p {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.inquiry_2col_box .inquiry_mail_box .inquiry_form_box p:last-child {
  margin-bottom: 0;
}
.inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_link {
  margin-bottom: 0;
}
.inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_link a {
  display: block;
}
@media screen and (max-width: 768px) {
  .inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_link a {
    text-decoration: underline;
  }
}
.inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_link a span {
  position: relative;
}
.inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_link a span::after {
  content: "▶";
  display: block;
  position: absolute;
  top: 47%;
  right: -20px;
  transform: translateY(-47%);
  transition: .3s all;
}
@media screen and (max-width: 1075px) {
  .inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_link a span::after {
    right: -17px;
  }
}
@media screen and (max-width: 768px) {
  .inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_link a span::after {
    content: none;
  }
}
.inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_link a:hover span::after {
  right: -25px;
}
.inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_cap {
  display: inline-block;
  text-indent: -1em;
  padding-left: 15px;
  color: #333;
  line-height: 1.5em;
  margin-top: 5px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1075px) {
  .inquiry_2col_box .inquiry_mail_box .inquiry_form_box {
    padding: 10px 12px;
  }
  .inquiry_2col_box .inquiry_mail_box .inquiry_form_box p {
    font-size: 1.8rem;
  }
  .inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_cap {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 320px) {
  .inquiry_2col_box .inquiry_mail_box .inquiry_form_box p {
    font-size: 1.6rem;
  }
}

/************************************************

	tel_link

*************************************************/
@media screen and (max-width: 768px) {
  .tel_link a {
    text-decoration: underline;
  }
}

/************************************************

	Android css 

*************************************************/
.Android .con_2col02 .con_2col_txt_box h3 a span::after {
  right: -30px;
}
.Android .inquiry_2col_box .inquiry_mail_box .inquiry_form_box .inquiry_form_box_link a span::after {
  right: -25px;
}
.Android .action_sub_box .action_task_list li {
  text-indent: -2.6em;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  line-height: 1.75;
  font-size: 1.6em;
  color: #000;
}

/************************************************

	社員専用サイト

*************************************************/
.member {
  /* ヘッダー */
  /* コンテンツ */
  /* 見出し */
  /* ボックス */
  /* カラム */
  /* 画像 */
  /* テキスト */
  /* リンク */
  /* リスト */
  /* フォーム */
  /* ボタン */
  /* 検索ボックス */
  /* 過年度ボックス */
  /* ログイン画面 */
  /* パスワード変更画面 */
  /* 検索結果画面 */
  /* 検索一覧 */
}
.member .member_header {
  position: relative;
  background: url("../images/img_mv_bg--pc.jpg") no-repeat left bottom/100%;
  padding-bottom: 46.9%;
  z-index: 1;
}
@media screen and (max-width: 840px) {
  .member .member_header {
    background: url("../images/img_mv_bg--sp.jpg") no-repeat left bottom/100%;
    padding-bottom: 45%;
  }
}
.member .member_header .member_header_main-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 540px;
}
@media screen and (max-width: 840px) {
  .member .member_header .member_header_main-title {
    position: relative;
    max-width: 540px;
    width: 100%;
    margin-bottom: 15px;
  }
}
.member .member_header .member_header_logo {
  max-width: 165px;
  padding: 20px 35px;
}
@media screen and (max-width: 840px) {
  .member .member_header .member_header_logo {
    max-width: 115px;
    padding: 10px 15px;
  }
}
.member .member_header .member_header_title {
  position: relative;
  background-image: -moz-linear-gradient(25deg, #00A0E2 50%, transparent 50.1%);
  background-image: -webkit-linear-gradient(25deg, #00A0E2 50%, transparent 50.1%);
  background-image: linear-gradient(115deg, #00A0E2 50%, transparent 50.1%);
  color: #fff;
  max-width: 540px;
}
@media screen and (max-width: 890px) {
  .member .member_header .member_header_title {
    max-width: 460px;
    width: 100%;
    background-image: -moz-linear-gradient(25deg, #00A0E2 51%, transparent 49.1%);
    background-image: -webkit-linear-gradient(25deg, #00A0E2 51%, transparent 49.1%);
    background-image: linear-gradient(115deg, #00A0E2 51%, transparent 49.1%);
  }
}
.member .member_header .member_header_title::after {
  content: "";
  display: block;
  background-image: -moz-linear-gradient(25deg, #00A0E2 52%, transparent 48.1%);
  background-image: -webkit-linear-gradient(25deg, #00A0E2 52%, transparent 48.1%);
  background-image: linear-gradient(115deg, #00A0E2 52%, transparent 48.1%);
  mix-blend-mode: hard-light;
  width: 100%;
  padding-bottom: 115px;
  position: absolute;
  left: 0;
  bottom: -15px;
  z-index: -1;
}
@media screen and (max-width: 890px) {
  .member .member_header .member_header_title::after {
    width: 100%;
    padding-bottom: 65px;
    bottom: -9px;
  }
}
.member .member_header .member_header_title h2 {
  padding: 15px 0 15px 50px;
  font-size: 1.6rem;
  line-height: 1.5;
  display: inline-block;
}
@media screen and (max-width: 890px) {
  .member .member_header .member_header_title h2 {
    padding: 8px 0 8px 15px;
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
.member .member_header .member_header_title h2 span {
  display: block;
  font-size: 2.5rem;
}
@media screen and (max-width: 890px) {
  .member .member_header .member_header_title h2 span {
    font-size: 2.1rem;
    line-height: 1.3;
  }
}
.member .member_header .member_header_caption {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 50px;
  right: 100px;
}
@media screen and (max-width: 1090px) {
  .member .member_header .member_header_caption {
    right: 50px;
  }
}
@media screen and (max-width: 840px) {
  .member .member_header .member_header_caption {
    position: relative;
    display: block;
    top: auto;
    right: auto;
    padding: 0 10px;
    text-align: right;
  }
}
.member .member_header .member_header_text01 {
  font-family: "Yu Mincho", "YuMincho", serif;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  font-size: 2.8rem;
  margin-right: 50px;
}
@media screen and (max-width: 1090px) {
  .member .member_header .member_header_text01 {
    font-size: 2.3rem;
    margin-right: 25px;
  }
}
@media screen and (max-width: 840px) {
  .member .member_header .member_header_text01 {
    writing-mode: inherit;
    -webkit-writing-mode: inherit;
    font-size: 2rem;
    margin-right: 0;
    margin-bottom: 10px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 1090px) {
  .member .member_header .member_header_text02 {
    width: 60%;
  }
}
@media screen and (max-width: 840px) {
  .member .member_header .member_header_text02 {
    width: 55%;
    margin-left: auto;
  }
}
.member .container {
  background: url("../images/img_bg01.png") repeat-y center/cover;
}
.member .member_container {
  padding: 85px 10px 0;
}
@media screen and (max-width: 768px) {
  .member .member_container {
    padding: 45px 10px 0;
  }
}
.member .member_search_list {
  margin-top: 50px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .member .member_search_list {
    margin-top: 30px;
  }
}
.member .member_doc_title {
  background: #00A0E2;
  color: #fff;
  padding: 50px 10px 150px;
}
@media screen and (max-width: 768px) {
  .member .member_doc_title {
    padding: 15px 10px 65px;
  }
}
.member .member_doc_title .member_doc_title__wrap {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .member .member_doc_title .member_doc_title__wrap {
    display: block;
  }
}
.member .member_doc_title .member_doc_title_sp__img {
  display: none;
}
@media screen and (max-width: 768px) {
  .member .member_doc_title .member_doc_title_sp__img {
    display: block;
    max-width: 40%;
    margin: 0 auto;
  }
}
.member .member_doc_title .member_doc_title__text {
  position: relative;
  padding-left: 245px;
}
@media screen and (max-width: 768px) {
  .member .member_doc_title .member_doc_title__text {
    margin-top: 20px;
    padding-left: 0;
  }
}
.member .member_doc_title .member_doc_title__text::before {
  content: "";
  display: block;
  background: url("../images/img01.png") no-repeat left center/225px;
  width: 225px;
  height: 308px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .member .member_doc_title .member_doc_title__text::before {
    content: none;
  }
}
.member .member_doc_title .member_doc_title__text h2 {
  font-size: 3.5rem;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .member .member_doc_title .member_doc_title__text h2 {
    font-size: 2.3rem;
    margin-bottom: 5px;
  }
}
.member .member_title01 {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, white 10%, #a0f4ff 100%);
  border-radius: 15px 15px 0 0;
  padding: 40px 65px 20px;
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  .member .member_title01 {
    padding: 20px 25px;
    margin: 0 10px;
  }
}
.member .member_title01 h3, .member .member_title01 span {
  line-height: 1.3;
}
.member .member_title01 h3 {
  font-size: 3.5rem;
  letter-spacing: 1rem;
  color: #5B636B;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .member .member_title01 h3 {
    font-size: 2.8rem;
    margin-right: 5px;
  }
}
.member .member_title01 span {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  color: #00A0E2;
  padding-left: 45px;
}
@media screen and (max-width: 768px) {
  .member .member_title01 span {
    font-size: 1.6rem;
    padding-left: 25px;
  }
}
.member .member_title01 span::before {
  content: "";
  display: block;
  background: #00A0E2;
  width: 35px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .member .member_title01 span::before {
    width: 15px;
  }
}
.member .member_title02 {
  position: relative;
  background-image: -moz-linear-gradient(27deg, #00A0E2 90%, transparent 10.1%);
  background-image: -webkit-linear-gradient(27deg, #00A0E2 90%, transparent 10.1%);
  background-image: linear-gradient(117deg, #00A0E2 90%, transparent 10.1%);
  color: #fff;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .member .member_title02 {
    background-image: -moz-linear-gradient(27deg, #00A0E2 89%, transparent 10.1%);
    background-image: -webkit-linear-gradient(27deg, #00A0E2 89%, transparent 10.1%);
    background-image: linear-gradient(117deg, #00A0E2 89%, transparent 10.1%);
  }
}
.member .member_title02::after {
  content: "";
  display: block;
  background-image: -moz-linear-gradient(27deg, #00A0E2 90.4%, transparent 9.7%);
  background-image: -webkit-linear-gradient(27deg, #00A0E2 90.4%, transparent 9.7%);
  background-image: linear-gradient(117deg, #00A0E2 90.4%, transparent 9.7%);
  mix-blend-mode: hard-light;
  width: 100%;
  padding-bottom: 45px;
  position: absolute;
  left: 0;
  bottom: -8px;
  z-index: -1;
  opacity: .4;
}
@media screen and (max-width: 768px) {
  .member .member_title02::after {
    padding-bottom: 40px;
  }
}
.member .member_title02 h4 {
  padding: 10px 0 10px 50px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: .1em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .member .member_title02 h4 {
    padding: 10px 0 10px 25px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 768px) {
  .member #member_knowledge .member_title02::after {
    padding-bottom: 55px;
  }
}
.member .member_title03 {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.member .member_title03::before {
  content: "";
  display: block;
  width: .9em;
  height: .9em;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.member .member_box01 {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 15px 0 50px;
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .member .member_box01 {
    padding: 10px 0 30px;
  }
}
.member .member_box02 {
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .member .member_box02 {
    margin-top: 35px;
  }
}
.member .member_box02 .member_box02__wrap {
  max-width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .member .member_box02 .member_box02__wrap {
    max-width: 90%;
  }
}
.member #work_recital.member_box02 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .member #work_recital.member_box02 {
    margin-top: 10px;
  }
}
.member .member_col01 {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .member .member_col01 {
    display: block;
  }
}
.member .member_col01 .member_col01__box {
  margin-right: calc(28% / 2);
}
.member .member_col01 .member_col01__box:last-child {
  width: calc(100% - 255px - 14%);
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .member .member_col01 .member_col01__box:last-child {
    width: auto;
  }
}
.member .member_col01 .member_col01__box.member_thumb {
  width: 255px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .member .member_col01 .member_col01__box.member_thumb {
    width: 175px;
    margin: 0 auto;
  }
}
.member .member_col01 .member_col01__box.member_link_list {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .member .member_col01 .member_col01__box.member_link_list {
    justify-content: center;
    margin-top: 20px;
  }
}
.member .member_col01 .member_col01__box.member_link_list .member_list01 {
  width: 48%;
  margin-right: calc(8% / 2);
}
.member .member_col01 .member_col01__box.member_link_list .member_list01:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .member .member_col01 .member_col01__box.member_link_list .member_list01 {
    width: 40%;
  }
}
.member #member_project .member_col01 .member_col01__box.member_thumb {
  width: 265px;
}
.member .member_thumb--project_pic {
  max-width: 255px;
  width: 100%;
  margin: 0 auto;
}
.member .member_catch_copy {
  margin-bottom: 20px;
}
.member .member_caption01 {
  text-align: center;
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.3;
}
.member .member_link01 {
  color: #005B97;
  text-decoration: underline;
}
@media (hover: hover) {
  .member .member_link01:hover {
    text-decoration: none;
  }
}
_:-ms-input-placeholder:hover, :root .member .member_link01:hover {
  text-decoration: none;
}
.member .member_list01 {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.member .member_list01 li {
  margin-bottom: 15px;
  /*width: 45%;
  margin-right: calc(20% / 2);
  margin-bottom: 15px;
  
  &:nth-child(2n) {
  	margin-right: 0;
  }*/
}
.member .member_list01 li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .member .member_list01 li {
    text-align: center;
    margin-bottom: 10px;
  }
}
.member .member_list02 {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .member .member_list02 {
    flex-wrap: wrap;
  }
}
.member .member_list02 li {
  width: 23%;
  margin-right: calc(12% / 4);
}
.member .member_list02 li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .member .member_list02 li {
    width: 47%;
    margin-right: calc(12% / 2);
    margin-bottom: 15px;
  }
  .member .member_list02 li:nth-child(2n) {
    margin-right: 0;
  }
}
.member .member_list02 li .member_thumb {
  margin-top: 10px;
}
.member .member_result_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.member .member_result_list li {
  width: 23.5%;
  margin-right: calc(8% / 4);
  text-align: center;
  margin-bottom: 15px;
}
.member .member_result_list li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .member .member_result_list li {
    width: 48%;
    margin-right: calc(4% / 2);
    margin-bottom: 10px;
  }
  .member .member_result_list li:nth-child(2n) {
    margin-right: 0;
  }
}
.member input[type=text], .member input[type=password], .member select {
  padding: 6px;
  box-sizing: border-box;
  border: 2px solid #e6e6e6;
  font-size: 2rem;
}
.member .member_check_box {
  cursor: pointer;
}
.member .member_check_box input[type=checkbox] {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}
.member .member_check_box input[type=checkbox]:checked + .member_check_box__ico::after {
  opacity: 1;
}
.member .member_check_box .member_check_box__ico {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #e6e6e6;
  background: #fff;
  display: inline-block;
  margin-right: 10px;
  vertical-align: bottom;
  position: relative;
  transform: translateY(-0.3em);
}
.member .member_check_box .member_check_box__ico::after {
  content: "";
  width: .9rem;
  height: .3rem;
  border-left: 3px solid #00A0E2;
  border-bottom: 3px solid #00A0E2;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%) rotate(-45deg);
  opacity: 0;
}
.member .member_select01 {
  font-size: 1.6rem;
  margin-top: 25px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .member .member_select01 {
    margin-top: 5px;
  }
}
.member .member_login_caption01 {
  font-size: 1.6rem;
}
.member .member_login_ico--required {
  margin-left: 1em;
  color: #FF0000;
}
.member .member_btn01 {
  text-align: center;
  color: #fff;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}
.member .member_btn01 a, .member .member_btn01 button {
  display: block;
  background: linear-gradient(90deg, #a0f4ff 0%, #00a0e2 40%);
  border-radius: 50px;
  padding: 15px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  transition: .3s opacity;
  width: inherit;
  box-sizing: border-box;
}
@media (hover: hover) {
  .member .member_btn01 a:hover, .member .member_btn01 button:hover {
    opacity: .7;
  }
}
_:-ms-input-placeholder:hover, :root .member .member_btn01 a:hover, :root .member .member_btn01 button:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .member .member_btn01 a, .member .member_btn01 button {
    font-size: 1.8rem;
  }
}
.member .member_btn01 span {
  display: block;
  background: linear-gradient(90deg, #a0f4ff 0%, #00a0e2 40%);
  border-radius: 50px;
  padding: 15px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  transition: .3s opacity;
}
@media (hover: hover) {
  .member .member_btn01 span:hover {
    opacity: .7;
  }
}
_:-ms-input-placeholder:hover, :root .member .member_btn01 span:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .member .member_btn01 span {
    font-size: 1.8rem;
  }
}
.member .w100 {
  max-width: 700px;
  width: 100%;
}
.member .member_search {
  margin-top: -50px;
  padding: 0 10px;
}
.member .member_search .member_search_box01 {
  max-width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .member .member_search .member_search_box01 {
    max-width: 90%;
  }
}
.member .member_search .member_search_menu {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .member .member_search .member_search_menu {
    display: block;
  }
}
.member .member_search .member_search_menu li {
  width: 44.4%;
  margin-right: calc(4% / 2);
  margin-bottom: 10px;
  text-indent: -1.8em;
  padding-left: 1.8em;
}
.member .member_search .member_search_menu li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .member .member_search .member_search_menu li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.member .member_search .member_search_free_word {
  margin-top: 10px;
}
.member .member_search .member_search_free_word input[type=text] {
  font-size: 1.6rem;
}
.member .member_search .member_search_btn {
  margin-top: 30px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .member .member_search .member_search_btn {
    margin-top: 25px;
  }
}
.member .member_search .member_search_btn a, .member .member_search .member_search_btn span {
  letter-spacing: 2rem;
}
.member .member_past_years {
  margin-top: 20px;
  display: none;
}
.member .member_past_years.js-years_open {
  display: block;
}
.member.p-member_login {
  /*.container {
  	@include mq() {
  		height: 100vh;
  	}
  }*/
}
.member.p-member_login .form_success_ms {
  background: #e2f6eb;
  padding: 5px 10px;
  color: #009944;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.member.p-member_login .form_error_ms {
  background: #fff4f4;
  padding: 5px 10px;
  color: #E4011E;
  font-size: 1.4rem;
  margin-top: 10px;
}
.member.p-member_login .login_member_header {
  background: #00A0E2;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .login_member_header {
    padding: 15px 10px;
  }
}
.member.p-member_login .login_member_header h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.member.p-member_login .login_member_header h1 span {
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .login_member_header h1 {
    font-size: 1.8rem;
    display: block;
  }
  .member.p-member_login .login_member_header h1 span {
    display: block;
    font-size: 2.5rem;
  }
}
.member.p-member_login .member_login_logo {
  max-width: 226px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .member_login_logo {
    max-width: 113px;
  }
}
.member.p-member_login .member_login_form__wrap {
  max-width: 1000px;
  margin: 75px auto 0;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .member_login_form__wrap {
    margin: 35px auto 0;
  }
}
.member.p-member_login .member_login_form__box01 {
  background: #fff;
  padding: 45px;
  border-radius: 30px;
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .member.p-member_login .member_login_form__box01 {
    padding: 25px;
  }
}
.member.p-member_login .member_login_form__box02 {
  max-width: 430px;
  margin: 25px auto 0;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .member_login_form__box02 {
    margin: 15px auto 0;
  }
}
.member.p-member_login .member_login_text01, .member.p-member_login .member_login_text02 {
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .member_login_text01, .member.p-member_login .member_login_text02 {
    font-size: 1.8rem;
  }
}
.member.p-member_login .member_login_text02 {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .member_login_text02 {
    margin-top: 15px;
  }
}
.member.p-member_login .member_login_form__input_box {
  margin-top: 10px;
}
.member.p-member_login .member_login_form__input_box:first-of-type {
  margin-top: 0;
}
.member.p-member_login .member_login_form__input {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 2rem;
  margin-top: 10px;
}
.member.p-member_login .member_login_form__input:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .member_login_form__input {
    font-size: 1.8rem;
  }
}
.member.p-member_login .member_login_form__input dt {
  width: 5em;
  margin-right: 5px;
  flex-shrink: 0;
  line-height: 2;
}
.member.p-member_login .member_login_form__input dd {
  width: 100%;
}
.member.p-member_login .member_login_form_btn {
  margin-top: 30px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .member_login_form_btn {
    margin-top: 15px;
  }
}
.member.p-member_login .member_login_password_caption {
  max-width: 650px;
  margin: 50px auto 0;
  max-width: 650px;
  border-top: 1px solid;
  padding-top: 20px;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .member_login_password_caption {
    margin: 25px auto 0;
    padding-top: 15px;
    font-size: 1.6rem;
  }
}
.member.p-member_login .member_login_password_caption .member_login_password_caption__title {
  font-size: 2rem;
  letter-spacing: 2px;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .member.p-member_login .member_login_password_caption .member_login_password_caption__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.member.p-password .member_password_title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .member.p-password .member_password_title {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
}
.member.p-password .member_password_box01 {
  max-width: 790px;
  margin: 0 auto;
}
.member.p-password .member_password__input_box {
  margin-top: 15px;
}
.member.p-password .member_password__input_box:first-of-type {
  margin-top: 0;
}
.member.p-password .member_password__input {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 2rem;
  margin-top: 10px;
}
.member.p-password .member_password__input:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .member.p-password .member_password__input {
    display: block;
    font-size: 1.8rem;
  }
}
.member.p-password .member_password__input dt {
  width: 13em;
  margin-right: calc(10% / 2);
  flex-shrink: 0;
  line-height: 1.75;
}
.member.p-password .member_password__input dd {
  width: 100%;
}
.member.p-password .member_password--check {
  font-size: 1.6rem;
  display: inline-block;
  margin-top: 5px;
}
.member.p-password .member_check_box .member_check_box__ico {
  transform: translateY(-0.35em);
}
.member.p-password .member_password_list {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .member.p-password .member_password_list {
    margin-top: 15px;
  }
}
.member.p-password .member_password_list li {
  position: relative;
  padding-left: .7em;
}
.member.p-password .member_password_list li::before {
  content: "";
  display: block;
  width: .4em;
  height: .4em;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .65em;
}
.member.p-password .member_password_list li.member_password_list--red {
  color: #FF0000;
}
.member.p-password .member_password_list li.member_password_list--red::before {
  background: #FF0000;
}
.member.p-password .member_password_btn {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .member.p-password .member_password_btn {
    margin-top: 25px;
  }
}
.member.p-password .member_password_btn .member_btn01 {
  margin-top: 15px;
}
.member.p-password .member_password_btn .member_btn01:first-of-type {
  margin-top: 0;
}
.member.p-member_search .footer {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .member.p-member_search .footer {
    margin-top: 50px;
  }
}
.member.p-member_search .member_doc_title {
  padding: 50px 10px;
}
@media screen and (max-width: 768px) {
  .member.p-member_search .member_doc_title {
    padding: 20px 10px;
  }
}
.member.p-member_search .member_doc_title .member_doc_title__text {
  margin-top: 0;
  padding-left: 0;
  text-align: center;
}
.member.p-member_search .member_doc_title .member_doc_title__text::before {
  content: none;
}
.member.p-member_search .member_doc_title .member_doc_title__text h2 {
  line-height: 1;
  margin-bottom: 0;
}
.member.p-member_search .member_search {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .member.p-member_search .member_search {
    margin-top: 20px;
  }
}
.member.p-member_search .member_search_link {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .member.p-member_search .member_search_link {
    margin-top: 30px;
  }
}
.member.p-member_search .member_search_link .member_btn01 a {
  background: #00A0E2;
}
.member.p-member_search .member_search_keyword--marker {
  background: #FFFF00;
}
.member.p-member_search_list .member_search_result {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .member.p-member_search_list .member_search_result {
    margin-top: 50px;
  }
}
.member.p-member_search_list .member_search_pager {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .member.p-member_search_list .member_search_pager {
    margin-bottom: 30px;
  }
}
.member.p-member_search_list .member_search_pager .member_search_pager__list {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}
.member.p-member_search_list .member_search_pager .member_search_pager__list li {
  margin-right: calc(12% / 6);
  line-height: 1;
}
.member.p-member_search_list .member_search_pager .member_search_pager__list li:last-child {
  margin-right: 0;
}
.member.p-member_search_list .member_search_pager .member_search_pager__list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2em;
  padding: 5px;
  width: 1.5em;
  height: 1.5em;
  transition: .3s all;
}
@media (hover: hover) {
  .member.p-member_search_list .member_search_pager .member_search_pager__list li a:hover {
    background: #00A0E2;
    color: #fff;
  }
}
_:-ms-input-placeholder:hover, :root .member.p-member_search_list .member_search_pager .member_search_pager__list li a:hover {
  background: #00A0E2;
  color: #fff;
}
.member.p-member_search_list .member_search_pager .member_search_pager__list li.is-current a {
  border-radius: 2em;
  background: #00A0E2;
  color: #fff;
}
.member.p-member_search_list .member_search_result_date {
  color: #333;
}
@media screen and (max-width: 768px) {
  .member.p-member_search_list .member_search_result_date {
    font-size: 1.4rem;
  }
}
.member.p-member_search_list .member_search_result_article {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .member.p-member_search_list .member_search_result_article {
    margin-top: 10px;
  }
}
.member.p-member_search_list .member_search_result_article .member_search_result_article__box01 {
  border-bottom: 1px solid #00A0E2;
}
.member.p-member_search_list .member_search_result_article .member_search_result_article__box01 a {
  display: block;
  padding: 30px 15px;
  transition: opacity .3s;
}
@media (hover: hover) {
  .member.p-member_search_list .member_search_result_article .member_search_result_article__box01 a:hover {
    opacity: .7;
  }
}
_:-ms-input-placeholder:hover, :root .member.p-member_search_list .member_search_result_article .member_search_result_article__box01 a:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .member.p-member_search_list .member_search_result_article .member_search_result_article__box01 a {
    padding: 15px 5px;
  }
}
.member.p-member_search_list .member_search_result_article .member_search_result_article__box01:first-of-type a {
  padding: 15px 15px 30px 15px;
}
@media screen and (max-width: 768px) {
  .member.p-member_search_list .member_search_result_article .member_search_result_article__box01:first-of-type a {
    padding: 10px 5px 15px 5px;
  }
}
.member.p-member_search_list .member_search_result_article .member_search_result_article__box01 .member_search_result_article__content {
  position: relative;
  /*&::after {
  	content: "";
  	display: block;
  	background: url("../images/ico_pdf-red01.svg") no-repeat;
  	width: 31px;
  	height: 43px;
  	position: absolute;
  	top: 50%;
  	right: 0;
  	transform: translateY(-50%);
  }*/
}
.member.p-member_search_list .member_search_result_article .member_search_result_article__box01 .member_search_result_article__content .member_search_result_article__title {
  position: relative;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #00A0E2;
  margin-bottom: 15px;
}
.member.p-member_search_list .member_search_result_article .member_search_result_article__box01 .member_search_result_article__content .member_search_result_article__title .member_search_result_article__title--ico {
  display: inline-block;
}
.member.p-member_search_list .member_search_result_article .member_search_result_article__box01.member_search_result_article--pdf .member_search_result_article__content {
  padding-right: 55px;
}
.member.p-member_search_list .member_search_result_article .member_search_result_article__box01.member_search_result_article--pdf .member_search_result_article__content::after {
  content: "";
  display: block;
  background: url("../images/ico_pdf-red01.svg") no-repeat;
  width: 31px;
  height: 43px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .member.p-member_search_list .member_search_result_article .member_search_result_article__box01.member_search_result_article--pdf .member_search_result_article__content {
    padding-right: 0;
  }
  .member.p-member_search_list .member_search_result_article .member_search_result_article__box01.member_search_result_article--pdf .member_search_result_article__content::after {
    content: none;
  }
  .member.p-member_search_list .member_search_result_article .member_search_result_article__box01.member_search_result_article--pdf .member_search_result_article__content .member_search_result_article__title {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }
  .member.p-member_search_list .member_search_result_article .member_search_result_article__box01.member_search_result_article--pdf .member_search_result_article__content .member_search_result_article__title .member_search_result_article__title--ico {
    position: relative;
    padding-right: 30px;
  }
  .member.p-member_search_list .member_search_result_article .member_search_result_article__box01.member_search_result_article--pdf .member_search_result_article__content .member_search_result_article__title .member_search_result_article__title--ico::after {
    content: "";
    display: block;
    background: url("../images/ico_pdf-red01.svg") no-repeat;
    width: 20px;
    height: 29px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.member.p-member_search_list .member_search_result_article .member_search_result_article_year {
  font-size: 1.4rem;
  margin-top: 5px;
}

/*# sourceMappingURL=style.css.map */
