@charset "UTF-8";

/* header {
  display: none;
} */

.l-header_info {
  /*display: none;*/
}
/* ヘッダー上へ　*/
.l-header_info.hide {
  transform: translateY(-100%);
  transition: 0.8s;
}

.l-header_info.show {
  transform: translateY(0%);
  transition: 0.8s;
}

body {
  background: #fff;
  color: #363636;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.l-wrap {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.l-2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-2col_main {
  width: calc(100% - (300px + 60px));
}

.l-2col_side {
  width: 300px;
}

.l-2col_side > aside > *:first-of-type {
  margin-top: 0;
}

@media only screen and (max-width: 1199px) {
  .l-2col {
    display: block;
  }
  .l-2col_main {
    width: 100%;
  }
  .l-2col_side {
    margin-top: 60px;
    width: 100%;
  }
}

/*==================================
Utility
==================================*/
/* Color */
.u-white {
  color: #fff;
}

/* Background */
.u-bgWhite {
  background: #fff;
}
.u-bgLightBeige {
  background: #f7f5f0;
}
.u-bgBeige {
  background: #ebe6da;
}
.u-bgCerulean {
  background: #1f5173;
}

/* Image */
.u-bgConnected {
  background-image: url(/assets/images/index/connected.png);
}

/*==================================
Slick - Adjustment
==================================*/
/* Arrows */
.slick-prev,
.slick-next {
  z-index: 2;
  top: calc(50% - (30px / 2));
  width: 5rem;
  height: 5rem;
}

.slick-prev:before,
.slick-next:before {
  font-family: initial; /* slick */
  font-size: initial; /* 20px */
  opacity: 1;
  color: #1f5173; /* Color */

  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;

  width: 2rem;
  height: 2rem;
  border-top: 4px solid;
  border-right: 4px solid;
}

.slick-prev {
  left: 6px;
}
[dir="rtl"] .slick-prev {
  right: 6px;
  left: auto;
}
.slick-prev:before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
[dir="rtl"] .slick-prev:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.slick-next {
  right: 6px;
}
[dir="rtl"] .slick-next {
  right: auto;
  left: 6px;
}
.slick-next:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
[dir="rtl"] .slick-next:before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

/* Dots */
.slick-dots li button:before {
  opacity: 0.5;
  color: #e4d69c;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #1f5173;
}

/*==================================
Arrow
==================================*/
.arrow {
  position: relative;
}
.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
}
.arrow__top::before {
  top: 10px;
  bottom: auto;
}

/* s5-2 */
.s5-2::before {
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);

  transition: 0.3s;
}

/*==================================
Button
==================================*/
.c-btn01 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.6em;
  border-bottom: 2px solid #dae8f2;
  min-width: 260px;

  text-decoration: none;
  color: inherit;
}
.c-btn01::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 1.6em;
  height: 2px;
  background-color: #1f5173;
  transition: 0.3s;
}

.c-btn01 > span {
  padding-left: 2em;
}

.c-btn01:hover::after,
.c-btn01:focus::after {
  width: 100%;
}
.c-btn01:hover > span::before,
.c-btn01:focus > span::before {
  left: 0.25em;
}

.c-btn01__cl {
  border-color: #fff;
}

/* type2 */
.c-btn02 {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  width: 280px;
  padding: 16px;

  background: #1f5173;
  color: #fff;
}
.c-btn02:hover,
.c-btn02:focus {
  opacity: 0.9;
}

@media only screen and (max-width: 767px) {
  .c-btn02 {
    padding: 10px;
  }
}

/*==================================
Header
==================================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(247, 245, 240, 1);
  box-shadow: 0 0 10px #d0d0d0;
}

.l-header_inr {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 5px 40px 5px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header_logo > a {
  display: block;
  width: 230px;
  height: 66px;

  background-image: url(/assets/images/common/logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.l-header_logo > a:hover,
.l-header_logo > a:focus {
  opacity: 0.8;
}

.l-header_utility {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

@media only screen and (max-width: 1199px) {
  .l-header {
    height: auto;
  }
  .l-header_inr {
    padding: 12px 20px;
  }
  .l-header_logo > a {
    width: 153px;
    height: 44px;
  }
  .l-header_utility {
    margin-left: auto;
  }
}

@media only screen and (min-width: 1200px) {
  /* 上下逆転 */
  nav {
    order: 2;
  }
  .l-header_utility_sub {
    order: 1;
  }
  #nav-toggle,
  #nav-toggle .on,
  #nav-toggle .off {
    display: none;
  }
}

/* navigation */
.l-header_utility_nav {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.l-header_utility_nav_item {
  width: 7em;
}

.l-header_utility_nav_item:first-child {
  padding-left: 0;
}
.l-header_utility_nav_item:last-child {
  padding-right: 0;
}

.l-header_utility_nav_item:not(:first-of-type) {
  border-left: 2px solid #b1b1b1;
}
.l-header_utility_nav_item > a {
  text-align: center;
  text-decoration: none;
  color: inherit;

  font-size: 1.7rem;
  font-weight: 700;
  padding: 4px 0;
  position: relative;
  display: block;
  transition: 0.5s;
}
.l-header_utility_nav_item > a:hover,
.l-header_utility_nav_item > a:focus {
  background: #e4d69c;
}
.l-header_utility_nav_item_child_inr > li a:hover,
.l-header_utility_nav_item_child_inr > li a:focus {
  background: transparent; /* フォーカス確認用*/
}

@media only screen and (max-width: 1200px) {
  .l-header_utility_nav {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
  }
  .l-header_utility_nav_item {
    width: 100%;
    padding: 0;
  }
  .l-header_utility_nav_item:not(:first-of-type) {
    margin-top: 20px;
    border-left: 0;
  }
  .l-header_utility_nav_item > a {
    padding: 10px;
    background: #1f5173;
    color: #fff;
  }
}

/* 展開メニュー */
.l-header_utility_nav_item_child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: #f7f5f0;
  padding: 40px 10vw 60px;
  box-shadow: 0 5px 5px #e1e1e1;
  transition: 0.2s;
}
.l-header_utility_nav_item:hover > .l-header_utility_nav_item_child,
.l-header_utility_nav_item .l-header_utility_nav_item_child.focused {
  visibility: visible;
  opacity: 1;
}

.l-header_utility_nav_item_child_inr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-header_utility_nav_item_child_inr:before {
  content: "";
  display: block;
  width: calc(100% / 4 - 20px);
  order: 1;
}
.l-header_utility_nav_item_child_inr:after {
  content: "";
  display: block;
  width: calc(100% / 4 - 20px);
}
.l-header_utility_nav_item_child_inr > li {
  width: calc(100% / 4 - 20px);
  margin-top: 10px;
  padding-left: 1.4em;
}

/* > ICON */
.l-header_utility_nav_item_child_inr li {
  position: relative;
  padding-left: 1.2em;
}
.l-header_utility_nav_item_child_inr li:hover::before,
.l-header_utility_nav_item_child_inr li:focus::before,
.l-header_utility_nav_item_child_inr li:hover::after,
.l-header_utility_nav_item_child_inr li:focus::after {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
}
.l-header_utility_nav_item_child_inr li:hover::before,
.l-header_utility_nav_item_child_inr li:focus::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid #1f5173;
  border-right: 2px solid #1f5173;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-header_utility_nav_item_child_inr li > a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}
.l-header_utility_nav_item_child_inr li > a:hover,
.l-header_utility_nav_item_child_inr li > a:focus {
  color: #1f5173;
}

@media only screen and (max-width: 1200px) {
  .l-header_utility_nav_item_child {
    display: none;
  }
}

/* ----- utility ----- */
.l-header_utility_sub {
  display: flex;
  justify-content: flex-end;
  font-size: 1.6rem;

  margin-top: 5px;
}

.l-header_utility_sub > *:not(:first-child) {
  margin-left: 20px;
}

/* Link */
.l-header_utility_sub_link {
  display: flex;
  align-items: center;
}
.l-header_utility_sub_link > a {
  display: block;
  color: inherit;
  /* arrow */
  padding-left: 1em;
}
.l-header_utility_sub_link > a::before {
  border-color: #1f5173;
}

/* Translate */
.l-header_utility_sub_translate > a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 1em;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border: 1px solid #1f5173;
  border-radius: 3px;
}
.l-header_utility_sub_translate > a:hover,
.l-header_utility_sub_translate > a:focus {
  opacity: 0.7;
}

.l-header_utility_sub_form form {
  height: 100%;
  border-radius: 3px;
  position: relative;
}
.l-header_utility_sub_form form input {
  width: 260px;
  height: 100%;
  padding: 4px 1em;
  text-align: left;
  background: #fff;
  margin-right: 4em;

  border: 1px solid #1f5173;
  border-radius: 3px 0 0 3px;
}
.l-header_utility_sub_form form button {
  background: #1f5173;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 4em;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;

  border: 1px solid #1f5173;
  border-radius: 0 3px 3px 0;
}

@media only screen and (max-width: 1200px) {
  .l-header_utility_sub {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
  .l-header_utility_sub > *:not(:first-child) {
    margin-top: 20px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 1200px) {
  #nav-toggle .hamburger {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 999;
  }
  #nav-toggle .on,
  #nav-toggle .off {
    display: inline-block;
    text-align: center;
    padding-top: 24px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0;
  }
  #nav-toggle span.line {
    display: block;
    height: 5px;
    width: 40px;
    background: #1f5173;
    /* box-shadow: 0 0 1px #f0f0f0; */
    position: absolute;
    top: 0;
    left: 4px;
    transition: 0.35s ease-in-out;
  }
  #nav-toggle span.line:nth-child(1) {
    top: 2px;
  }
  #nav-toggle span.line:nth-child(2) {
    top: 14px;
  }
  #nav-toggle .off {
    display: none;
  }

  .open #nav-toggle .on {
    display: none;
  }
  .open #nav-toggle .off {
    display: block;
    font-weight: 400;
  }
  .open #nav-toggle span.line:nth-child(1) {
    top: 11px;
    transform: rotate(145deg);
  }
  .open #nav-toggle span.line:nth-child(2) {
    top: 11px;
    transform: rotate(-145deg);
  }
  .open #global-nav {
    transform: translateY(100vh);
  }

  #gloval-nav {
    background: rgba(247, 245, 240, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    overflow: scroll;
    padding: 60px 50px 50px;

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .open {
    overflow: hidden;
  }
  .open #gloval-nav {
    visibility: visible;
    opacity: 1;
  }
  .open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 0.9s ease;
  }
}

/*==================================
Footer
==================================*/
.l-footer {
  margin-top: 160px;
}
@media only screen and (max-width: 767px) {
  .l-footer {
    margin-top: 80px;
  }
}

.l-footer_inr {
  background: url(/assets/images/common/bg_footer.jpg) no-repeat top center/cover;
  color: #fff;
}

.l-footer_logo > a {
  display: block;
  width: 230px;
  height: 66px;

  background: url(/assets/images/common/logo_wh.svg) no-repeat center/cover;
}
.l-footer_logo > a:hover,
.l-footer_logo > a:focus {
  opacity: 0.8;
}

.l-footer_info {
  padding-top: 120px;
}

.l-footerLink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -10px;
}
.l-footerLink > li {
  margin-top: 10px;
}
.l-footerLink > li:not(:first-of-type) {
  margin-left: 1em;
}

.l-footer_copy {
  text-align: center;
  padding: 20px 0;
}

@media only screen and (max-width: 767px) {
  .l-footerLink > li {
    margin-top: 5px;
    width: 100%;
    text-align: center;
  }
  .l-footerLink > li:not(:first-of-type) {
    margin-left: auto;
    padding-left: 0;
  }
}

/* TOPのみ */
.is-gyoseiTop .l-footer {
  margin-top: 0;
}
.is-gyoseiTop .l-footer_inr {
  background: none;
}
.is-gyoseiTop .l-footer_info {
  padding-top: 0;
}

.bg_footer2 {
  background: url(/assets/images/index/bg_footer2.jpg) no-repeat center/cover;
}

/*==================================
PageTop
==================================*/
#page_top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  display: none;
}
#page_top a {
  display: block;
  width: 80px;
  height: 80px;
}
@media only screen and (max-width: 767px) {
  #page_top {
    right: 20px;
    bottom: 20px;
  }
  #page_top a {
    width: 60px;
    height: 60px;
  }
}

/*==================================
News - 新着情報
==================================*/
/* 一覧 */
.c-newsFrame {
  background: #f7f5f0;
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .c-newsFrame {
    padding: 20px;
  }
}

/* タブ */
.c-tabBtns {
  display: flex;
  justify-content: space-between;
}
.c-tabBtns_item {
  width: calc(100% / 3 - 6px);
  position: relative;
}
.c-tabBtns_item:nth-of-type(n + 2) {
  margin-left: 6px;
}

.c-tabBtns_item > a {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 2px solid #bebebe;
  margin-bottom: 2px;

  text-decoration: none;
  color: inherit;
}
.c-tabBtns_item > a.is-active {
  margin-bottom: 0;
  border-bottom: 4px solid #1f5173;
}

.js-tab .js-tab_content > * {
  display: none;
}
.js-tab .js-tab_content > :first-child {
  display: block;
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .c-tabBtns_item {
    width: calc(100% / 3);
  }
  .c-tabBtns_item:nth-of-type(n + 2) {
    margin-left: 4px;
  }

  .c-tabBtns_item > a {
    padding: 10px 7px;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

/* newsBody - 本体 */
.c-newsList_item {
  padding: 20px 0;
  border-bottom: 1px solid #b1b1b1;
}
.c-newsList_item_head {
  display: flex;
  align-items: center;
}
.c-newsList_item_head > :not(:first-child) {
  margin-left: 1em;
}
.c-newsList_item_date {
  font-size: 1.6rem;
}
.c-newsList_item_body {
  flex: 1;
  margin-top: 12px;
}

@media only screen and (max-width: 767px) {
  .c-newsList_item_date {
    font-size: 1.4rem;
  }
}

/* topNews - 高さ固定 */
.c-newsList--hFix {
  height: 370px;
  overflow-y: auto;
  margin-bottom: 0;
}
.c-newsList--hFix2 {
  height: 100%;
  overflow-y: auto;
  margin-bottom: 0;
}

.c-newsList_btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Category - カテゴリ */
.c-newsBox {
  padding: 20px 40px;
  background: #f7f5f0;
}
.c-newsBox .c-newsList_item:first-of-type {
  border-top: 1px solid #b1b1b1;
}
.c-newsTtl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-newsTtl_ttl {
  font-size: 2.8rem;
  font-weight: 700;
}
.c-newsTtl_btn > a {
  display: inline-block;
}
.c-newsTtl_btn > a::before {
  left: 0;
  width: 0.6em;
  height: 0.6em;
}
.c-newsTtl_btn > a span {
  padding-left: 1.4em;
}

@media only screen and (max-width: 767px) {
  .c-newsBox {
    padding: 10px 20px 20px;
  }
  .c-newsTtl {
    margin-bottom: 10px;
  }
  .c-newsTtl_ttl {
    font-size: 2.4rem;
  }
  .c-newsList_item_head {
    flex-wrap: wrap;
  }
}

/* カテゴリアイコン */
.c-label {
  display: inline-block;
  background: #e4d69c;
  font-size: 1.6rem;
  text-align: center;
  width: 8em;
  padding: 0 1em;
}

@media only screen and (max-width: 767px) {
  .c-label {
    font-size: 1.4rem;
  }
}

/* NEWアイコン */
.c-label01 {
  display: inline-block;
  font-weight: 700;
  margin-left: 1em;
  color: #c62828;
}

/* ページャー */
.c-paging_list {
  display: flex;
  justify-content: center;
  text-align: center;
}

.c-paging_list li:not(:first-of-type) {
  margin-left: 6px;
}

.c-paging_list li > a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-weight: 700;
  text-decoration: none;
  width: 36px;
  height: 36px;
  border: 1px solid #1f5173;
}

.c-paging_list li > a.is-current,
.c-paging_list li > a:hover,
.c-paging_list li > a:focus {
  background: #1f5173;
  color: #fff;
}

.c-paging_list li.c-paging_prev > a,
.c-paging_list li.c-paging_next > a {
  border: none;
}

.c-paging_arrow {
  border: none;
  position: relative;
  width: 100%;
  height: 100%;
}
.c-paging_arrow::before,
.c-paging_arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
}
.c-paging_arrow::before {
  width: 36px;
  height: 36px;
}
.c-paging_arrow::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
}
.c-paging_arrow.arrow-left::after {
  right: -6px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.c-paging_arrow.arrow-right::after {
  left: 11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*==================================
EasySearch - かんたん検索
==================================*/
/* Frame */
.c-easysearch {
  border: 1px solid #1f5173;
}
.c-easysearch_ttl {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;

  background: #1f5173;
  color: #fff;
  padding: 16px 20px;
}

@media only screen and (max-width: 767px) {
  .c-easysearch_ttl {
    padding: 12px 20px;
  }
}

/* searchList - 本体共通 */
.c-searchList {
  display: flex;
}

.c-searchList li > a {
  display: block;
  color: #1f5173;
  font-weight: 700;
}
.c-searchList li > a:hover,
.c-searchList li > a:focus {
  opacity: 0.7;
}

.c-searchList li > a span {
  display: inline-block;
  position: relative;
}
.c-searchList li > a span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

/* トップページ */
.c-searchList__top {
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -20px;
}

.c-searchList__top li {
  width: calc(100% / 5);
  border-left: 2px solid #1f5173;

  margin-top: 20px;
}

.c-searchList__top li:nth-of-type(5),
.c-searchList__top li:last-of-type {
  border-right: 2px solid #1f5173;
}

.c-searchList__top li > a {
  text-decoration: none;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.c-searchList__top li > a span {
  padding-top: calc(70px + 20px);
}

.c-searchList__top li > a span::before {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 70px;
  height: 70px;
}

@media only screen and (max-width: 1199px) {
  .c-searchList__top li {
    width: calc(100% / 4);
  }
  .c-searchList__top li:nth-of-type(5) {
    border-right: none;
  }
  .c-searchList__top li:nth-of-type(4),
  .c-searchList__top li:nth-of-type(8) {
    border-right: 2px solid #1f5173;
  }
  .c-searchList__top li > a {
    font-size: 1.6rem;
    padding: 10px 0;
  }
  .c-searchList__top li > a span {
    padding-top: calc(50px + 10px);
  }
  .c-searchList__top li > a span::before {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .c-searchList__top li {
    width: calc(100% / 2);
    margin-top: 10px;
  }
  .c-searchList__top li:nth-of-type(3),
  .c-searchList__top li:nth-of-type(6),
  .c-searchList__top li:nth-of-type(9) {
    border-right: none;
  }
  .c-searchList__top li:nth-of-type(even) {
    border-right: 2px solid #1f5173;
  }
  .c-searchList__top li > a span {
    padding-top: calc(40px + 10px);
  }
  .c-searchList__top li > a span::before {
    width: 40px;
    height: 40px;
  }
}

/* 下層右カラム */
.c-searchList__side {
  flex-direction: column;
  background: #fff;
}

.c-searchList__side li > a {
  padding: 20px;
  border-top: 1px solid #1f5173;
}

.c-searchList__side li > a span {
  line-height: 46px;
  padding-left: calc(46px + 20px);
}

.c-searchList__side li > a span::before {
  width: 46px;
  height: 46px;
}

@media only screen and (max-width: 1199px) {
  .c-searchList__side li > a {
    padding: 14px 20px;
  }
  .c-searchList__side li > a span {
    line-height: 32px;
    padding-left: calc(32px + 20px);
  }
  .c-searchList__side li > a span::before {
    width: 32px;
    height: 32px;
  }
}

/* アイコン */
.icon-file::before {
  background: url(/assets/images/common/icon-file.svg) no-repeat center/cover;
}
.icon-syringe::before {
  background: url(/assets/images/common/icon-syringe.svg) no-repeat center/cover;
}
.icon-care::before {
  background: url(/assets/images/common/icon-care.svg) no-repeat center/cover;
}
.icon-ring::before {
  background: url(/assets/images/common/icon-ring.svg) no-repeat center/cover;
}
.icon-pregnant::before {
  background: url(/assets/images/common/icon-pregnant.svg) no-repeat center/cover;
}
.icon-house::before {
  background: url(/assets/images/common/icon-house.svg) no-repeat center/cover;
}
.icon-biz::before {
  background: url(/assets/images/common/icon-biz.svg) no-repeat center/cover;
}
.icon-hands::before {
  background: url(/assets/images/common/icon-hands.svg) no-repeat center/cover;
}
.icon-dl::before {
  background: url(/assets/images/common/icon-dl.svg) no-repeat center/cover;
}
.icon-exc::before {
  background: url(/assets/images/common/icon-exc.svg) no-repeat center/cover;
}
