@charset "UTF-8";
/* ------------------------------
header リンクhovet.current設定
------------------------------ */
header .aside_wrap a {
  display: block;
}

header .nav_links nav:not(.hb_menu) li a {
  position: relative;
  -webkit-transition: .5s all;
  transition: .5s all;
}

header .nav_links nav:not(.hb_menu) li a::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 0;
  top: auto;
  left: 0;
  right: auto;
  bottom: -3px;
  -webkit-transition: .5s all;
  transition: .5s all;
  border-bottom: solid 1px transparent;
}

header .nav_links nav:not(.hb_menu) li:hover a, header .nav_links nav:not(.hb_menu) li.current a {
  color: #cfad68;
}

header .nav_links nav:not(.hb_menu) li:hover a::after, header .nav_links nav:not(.hb_menu) li.current a::after {
  width: 100%;
  border-color: #cfad68;
}

header .aside_wrap a {
  -webkit-transition: .5s all;
  transition: .5s all;
}

header .aside_wrap a:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: transparent;
  color: #202020;
}

/* ------------------------------
breadcrumbs hovet.current設定
------------------------------ */
.breadcrumb p {
  padding: 0 4px;
  background-color: #fcf4e2;
}

.breadcrumb a {
  -webkit-transition: .5s all;
  transition: .5s all;
  position: relative;
}

.breadcrumb a::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 0;
  top: auto;
  left: -4px;
  right: auto;
  bottom: 0;
  -webkit-transition: .5s all;
  transition: .5s all;
  z-index: -1;
  background-color: #fcf4e2;
}

.breadcrumb a:hover::before {
  width: 100%;
  padding: 0 4px;
}

/* ------------------------------
footer リンク設定
------------------------------ */
footer nav {
  width: 100%;
  margin: 48px 0 0 0;
}

footer nav ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer a {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  font-weight: normal;
}

footer a {
  -webkit-transition: .5s all;
  transition: .5s all;
  position: relative;
}

footer a::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 0;
  top: auto;
  left: 0;
  right: auto;
  bottom: -1px;
  -webkit-transition: .5s all;
  transition: .5s all;
  border-bottom: 1px transparent solid;
}

footer a:hover::after {
  width: 100%;
  border-color: #fff;
}

/* ------------------------------
続きを読む →　の矢印hover設定
------------------------------ */
.guide_link {
  max-width: calc(100% - 73px);
  margin-right: 73px;
}

.guide_link a {
  display: inline-block;
  position: relative;
}

.main_guide_arrow::after,
.sub_guide_arrow::after {
  border-bottom-right-radius: 10px;
}

.main_guide_arrow::before,
.sub_guide_arrow::before {
  border-top-right-radius: 10px;
}

.main_guide_arrow {
  position: absolute;
  width: 45px;
  margin: 0;
  left: calc(100% + 24px);
}

.main_guide_arrow:before {
  width: 100%;
  -webkit-transition: .5s all;
  transition: .5s all;
}

.sub_guide_arrow {
  position: absolute;
  left: calc(100% + 70px);
}

.main_guide_arrow,
.sub_guide_arrow {
  -webkit-transition: .5s all;
  transition: .5s all;
}

.guide_link:hover a .main_guide_arrow {
  width: calc(100% - (100% - 75px));
}

.guide_link:hover a .sub_guide_arrow {
  left: calc(100% + 70px + 30px);
}

/* ------------------------------
お知らせのhovet設定
------------------------------ */
.news_list li a > p {
  position: relative;
  z-index: 1;
}

.news_list li a > p::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 0;
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
  -webkit-transition: .5s all;
  transition: .5s all;
  background-color: #f2f2f2;
  z-index: -1;
}

.news_list li:hover a > p::after {
  width: 100%;
}

/* ------------------------------
連載企画扉ページのhover設定
------------------------------ */
.article_link {
  position: relative;
  z-index: 1;
}

.article_link::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 0;
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
  -webkit-transition: .5s all;
  transition: .5s all;
  background-color: #f2f2f2;
  z-index: -1;
}

.article_link:hover::after {
  width: 100%;
}

/* ------------------------------
TOPページ hover設定
------------------------------ */
/*--- ヒーローエリアスライド ---*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hd_main_visual .txt_vertical {
  opacity: 0;
  /*初期想定
        animation: fadeIn .5s ease forwards;
        animation-delay:.3s;
        */
  -webkit-animation: fadeIn 2s ease forwards;
          animation: fadeIn 2s ease forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

@-webkit-keyframes scrollIcon {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes scrollIcon {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.page_scroll_content div .page_scroll_icon {
  display: block;
  padding-top: 50px;
}

.page_scroll_content div .page_scroll_icon span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: scrollIcon 2s infinite;
  animation: scrollIcon 2s infinite;
  opacity: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page_scroll_content div .page_scroll_icon span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.page_scroll_content div .page_scroll_icon span:nth-of-type(2) {
  top: 10px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}

.page_scroll_content div .page_scroll_icon span:nth-of-type(3) {
  top: 20px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.top_main_visual_news {
  position: absolute;
  bottom: 36px;
  font-size: 1.6rem;
  width: 100%;
  max-width: 1047px;
  left: calc((100% - 1047px) / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top_main_visual_news h2 {
  color: #fff;
  position: relative;
  letter-spacing: .16em;
  font-weight: 400;
  margin: 0 0 0 24px;
  width: 12%;
}

.top_main_visual_news h2::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 0;
  top: calc(50% - .5px);
  left: calc(65% + 8px);
  right: auto;
  bottom: 0;
  -webkit-transition: .5s all;
  transition: .5s all;
  background-color: #202020;
}

.top_main_visual_news ul {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 937px;
  padding: 14px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .5s all;
  transition: .5s all;
}

.top_main_visual_news ul .flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.top_main_visual_news ul .flex > p {
  white-space: nowrap;
}

.top_main_visual_news ul .flex a {
  color: #202020;
  text-decoration: none;
  display: block;
  position: relative;
}

.top_main_visual_news ul .flex a::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 0;
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
  -webkit-transition: .5s all;
  transition: .5s all;
  border-bottom: 1px transparent solid;
}

.top_main_visual_news ul .tag {
  margin: 0 32px;
  padding: 2px 8px;
  background-color: #aadded;
}

.top_main_visual_news:hover ul {
  background-color: white;
}

.top_main_visual_news:hover ul .flex a::after {
  width: 100%;
  border-color: #202020;
}

/*--- 実績紹介 ---*/
main .performance_wrap ul li.mp_items_inner a {
  display: block;
}

main .performance_wrap ul li.mp_items_inner figure .mp_items_img {
  max-width: 480px;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

main .performance_wrap ul li.mp_items_inner figure img {
  max-width: none;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -webkit-transition: .5s all;
  transition: .5s all;
}

main .performance_wrap ul li.mp_items_inner figure .parent_content_text {
  position: relative;
  z-index: 1;
}

main .performance_wrap ul li.mp_items_inner figure .parent_content_text::after {
  content: "";
  display: block;
  position: absolute;
  height: 0.5em;
  width: 0;
  top: auto;
  left: -0.3em;
  right: auto;
  bottom: 0;
  -webkit-transition: .5s all;
  transition: .5s all;
  background-color: #fff;
  z-index: -1;
  padding: 0 .3em 0 0;
}

main .performance_wrap ul li.mp_items_inner figure:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

main .performance_wrap ul li.mp_items_inner figure:hover .parent_content_text::after {
  width: 100%;
}

.accordion_sub_menu {
  margin: 0 0 0 68px;
}

.accordion_sub_menu .parent_content_text {
  position: relative;
  z-index: 1;
}

.accordion_sub_menu .parent_content_text::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: #202020;
  top: 9px;
  left: -23px;
}

.accordion_sub_menu .parent_content_text::after {
  content: "";
  display: block;
  position: absolute;
  height: 0.5em;
  width: 0;
  top: auto;
  left: -24px;
  right: auto;
  bottom: 0;
  -webkit-transition: .5s all;
  transition: .5s all;
  z-index: -1;
  padding: 0 .3em 0 0;
}

.accordion_sub_menu .parent_content_text:hover::after {
  width: calc(100% + 24px);
  background-color: #EBDBBC;
}

/*--- バナー ---*/
.top_bn_wrap {
  margin: 168px auto;
}

.top_bn_wrap > div {
  max-width: 1080px;
  margin: 0 auto;
}

.top_bn_wrap img {
  width: 100%;
}

.top_bn_wrap .guide_link {
  text-align: right;
  margin-top: 16px;
}

.top_bn_wrap img {
  -webkit-transition: .5s all;
  transition: .5s all;
}

.top_bn_wrap:hover img {
  opacity: .7;
}

/*---要素がページ下部に表示されたらアニメーション (main内のsectionとfooterが対象）*/
@-webkit-keyframes topAnimation_bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes topAnimation_bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes topAnimation_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes topAnimation_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes topAnimation_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes topAnimation_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.top_main_visual.animation .top_main_visual_news h2::after {
  width: 70px;
}

.top_about_wrap .about_image,
.top_about_wrap .hd_group h1,
.top_about_wrap .hd_group p,
.top_about_wrap .desc p,
.top_about_wrap .guide_link_content {
  opacity: 0;
  overflow-y: hidden;
}

.top_about_wrap.animation .about_image {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.top_about_wrap.animation .hd_group h1 {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.top_about_wrap.animation .hd_group p {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.top_about_wrap.animation .desc > p {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.top_about_wrap.animation .desc > p:last-of-type {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.top_about_wrap.animation .guide_link_content {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.top_concept_wrap .concept_image img,
.top_concept_wrap .hd_group h1,
.top_concept_wrap .hd_group p,
.top_concept_wrap .desc p,
.top_concept_wrap .guide_link_content {
  opacity: 0;
  overflow-y: hidden;
}

.top_concept_wrap.animation .concept_image img {
  -webkit-animation: topAnimation_left 1s ease forwards;
          animation: topAnimation_left 1s ease forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.top_concept_wrap.animation .hd_group h1 {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.top_concept_wrap.animation .hd_group p {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.top_concept_wrap.animation .desc > p {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.top_concept_wrap.animation .desc > p:last-of-type {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.top_concept_wrap.animation .guide_link_content {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.top_product_wrap .hd_product_content,
.top_product_wrap .hd_product_group > *,
.top_product_wrap .product_image,
.top_product_wrap .summary > p,
.top_product_wrap .product_summary .guide_link {
  opacity: 0;
  overflow-y: hidden;
}

.top_product_wrap .product_bg::before {
  opacity: 0;
}

.top_product_wrap.animation .hd_product_content {
  -webkit-animation: topAnimation_left 1s ease forwards;
          animation: topAnimation_left 1s ease forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.top_product_wrap.animation .product_bg::before {
  -webkit-animation: topAnimation_right 1s ease forwards;
          animation: topAnimation_right 1s ease forwards;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.top_product_wrap.animation .hd_product_group > * {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
}

.top_product_wrap.animation .hd_product_group > .product_number {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.top_product_wrap.animation .hd_product_group > h2 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.top_product_wrap.animation .hd_product_group > .date {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.top_product_wrap.animation .product_image {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.top_product_wrap.animation .summary > p {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
}

.top_product_wrap.animation .summary > p:first-of-type {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.top_product_wrap.animation .summary > p:last-of-type {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.top_product_wrap.animation .product_summary .guide_link {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.top_news_wrap .news_bg,
.top_news_wrap .item_content_front,
.top_news_wrap .news_list > div {
  opacity: 0;
  overflow-y: hidden;
}

.top_news_wrap.animation .news_bg {
  -webkit-animation: fadeIn 1s ease forwards;
          animation: fadeIn 1s ease forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.top_news_wrap.animation .item_content_front {
  -webkit-animation: topAnimation_left 1s ease forwards;
          animation: topAnimation_left 1s ease forwards;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.top_news_wrap.animation .news_list > div {
  -webkit-animation: topAnimation_right 1s ease forwards;
          animation: topAnimation_right 1s ease forwards;
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.top_bn_wrap img {
  opacity: 0;
  overflow-y: hidden;
}

.top_bn_wrap.animation img {
  -webkit-animation: fadeIn 2s ease forwards;
          animation: fadeIn 2s ease forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.performance_wrap .multiple_items li a {
  opacity: 0;
  overflow-y: hidden;
}

.performance_wrap.animation .hd_performance {
  -webkit-animation: topAnimation_left 1s ease forwards;
          animation: topAnimation_left 1s ease forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.performance_wrap.animation .multiple_items li a {
  -webkit-animation: topAnimation_bottom 1s ease forwards;
          animation: topAnimation_bottom 1s ease forwards;
}

/* ------------------------------
下層ページサイドナビのhovet.current設定
------------------------------ */
.side_menu nav aside ul li.current {
  background-color: #202020;
}

.side_menu nav aside ul li.current a {
  color: #fff;
}

.side_menu nav aside ul li.current a::before {
  background-color: #9d8148;
}

.side_menu nav aside ul li:not(.ac_active_menu):not(.current) a::before {
  -webkit-transition: .5s all;
  transition: .5s all;
}

.side_menu nav aside ul li:not(.ac_active_menu):not(.current) a:hover::before {
  width: 100%;
}

/* ------------------------------
下層ページ 次へ・前へリンクのhover設定
------------------------------ */
.page_links a span, .page_links_line_none a span {
  position: relative;
}

.page_links a span::after, .page_links_line_none a span::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 0;
  top: auto;
  left: 0;
  right: auto;
  bottom: -1px;
  -webkit-transition: .5s all;
  transition: .5s all;
  border-bottom: 1px transparent solid;
}

.page_links a span:hover::after, .page_links_line_none a span:hover::after {
  width: 100%;
  border-color: #202020;
}

.page_links .next_page a::after, .page_links_line_none .next_page a::after {
  left: auto;
  right: 0;
}

/* ------------------------------
下層ページ コンテンツ(.article_hero)内 通常テキストリンクのhover設定
※ .page_links内のaは除外、またaタグに何かクラス指定している場合も除外
------------------------------ */
.article_hero > *:not(.page_links) a:not([class]), .article_hero > *:not(.page_links) .external_link, .article_hero *:not(.side_menu) a:not([class]), .article_hero *:not(.side_menu) .external_link, .article_hero *:not(.news_list_content) a:not([class]), .article_hero *:not(.news_list_content) .external_link, .article_hero *:not(.work_guide) a:not([class]), .article_hero *:not(.work_guide) .external_link, .article_hero *:not(.page_links_line_none) a:not([class]), .article_hero *:not(.page_links_line_none) .external_link, .article_hero *:not(.item_row) a:not([class]), .article_hero *:not(.item_row) .external_link, .article_hero *:not(.parent_content) a:not([class]), .article_hero *:not(.parent_content) .external_link, .article_hero *:not(.article_link) a:not([class]), .article_hero *:not(.article_link) .external_link, .article_hero *:not(.history_link) a:not([class]), .article_hero *:not(.history_link) .external_link, .article_hero *:not(.guide_link) a:not([class]), .article_hero *:not(.guide_link) .external_link, .article_hero *:not(.next_page) a:not([class]), .article_hero *:not(.next_page) .external_link {
  color: #07228f;
  border-bottom: solid 1px #07228f;
  text-decoration: none;
  -webkit-transition: .5s all;
  transition: .5s all;
}

.article_hero > *:not(.page_links) a:not([class]):hover, .article_hero > *:not(.page_links) .external_link:hover, .article_hero *:not(.side_menu) a:not([class]):hover, .article_hero *:not(.side_menu) .external_link:hover, .article_hero *:not(.news_list_content) a:not([class]):hover, .article_hero *:not(.news_list_content) .external_link:hover, .article_hero *:not(.work_guide) a:not([class]):hover, .article_hero *:not(.work_guide) .external_link:hover, .article_hero *:not(.page_links_line_none) a:not([class]):hover, .article_hero *:not(.page_links_line_none) .external_link:hover, .article_hero *:not(.item_row) a:not([class]):hover, .article_hero *:not(.item_row) .external_link:hover, .article_hero *:not(.parent_content) a:not([class]):hover, .article_hero *:not(.parent_content) .external_link:hover, .article_hero *:not(.article_link) a:not([class]):hover, .article_hero *:not(.article_link) .external_link:hover, .article_hero *:not(.history_link) a:not([class]):hover, .article_hero *:not(.history_link) .external_link:hover, .article_hero *:not(.guide_link) a:not([class]):hover, .article_hero *:not(.guide_link) .external_link:hover, .article_hero *:not(.next_page) a:not([class]):hover, .article_hero *:not(.next_page) .external_link:hover {
  opacity: .7;
}

.article_hero > *:not(.page_links) a:not([class]), .article_hero > *:not(.page_links) .pdf_link, .article_hero *:not(.side_menu) a:not([class]), .article_hero *:not(.side_menu) .pdf_link, .article_hero *:not(.news_list_content) a:not([class]), .article_hero *:not(.news_list_content) .pdf_link, .article_hero *:not(.work_guide) a:not([class]), .article_hero *:not(.work_guide) .pdf_link, .article_hero *:not(.page_links_line_none) a:not([class]), .article_hero *:not(.page_links_line_none) .pdf_link, .article_hero *:not(.item_row) a:not([class]), .article_hero *:not(.item_row) .pdf_link, .article_hero *:not(.parent_content) a:not([class]), .article_hero *:not(.parent_content) .pdf_link, .article_hero *:not(.article_link) a:not([class]), .article_hero *:not(.article_link) .pdf_link, .article_hero *:not(.history_link) a:not([class]), .article_hero *:not(.history_link) .pdf_link, .article_hero *:not(.guide_link) a:not([class]), .article_hero *:not(.guide_link) .pdf_link, .article_hero *:not(.next_page) a:not([class]), .article_hero *:not(.next_page)
.pdf_link {
  color: #07228f;
  border-bottom: solid 1px #07228f;
  text-decoration: none;
  -webkit-transition: .5s all;
  transition: .5s all;
}

.article_hero > *:not(.page_links) a:not([class]):hover, .article_hero > *:not(.page_links) .pdf_link:hover, .article_hero *:not(.side_menu) a:not([class]):hover, .article_hero *:not(.side_menu) .pdf_link:hover, .article_hero *:not(.news_list_content) a:not([class]):hover, .article_hero *:not(.news_list_content) .pdf_link:hover, .article_hero *:not(.work_guide) a:not([class]):hover, .article_hero *:not(.work_guide) .pdf_link:hover, .article_hero *:not(.page_links_line_none) a:not([class]):hover, .article_hero *:not(.page_links_line_none) .pdf_link:hover, .article_hero *:not(.item_row) a:not([class]):hover, .article_hero *:not(.item_row) .pdf_link:hover, .article_hero *:not(.parent_content) a:not([class]):hover, .article_hero *:not(.parent_content) .pdf_link:hover, .article_hero *:not(.article_link) a:not([class]):hover, .article_hero *:not(.article_link) .pdf_link:hover, .article_hero *:not(.history_link) a:not([class]):hover, .article_hero *:not(.history_link) .pdf_link:hover, .article_hero *:not(.guide_link) a:not([class]):hover, .article_hero *:not(.guide_link) .pdf_link:hover, .article_hero *:not(.next_page) a:not([class]):hover, .article_hero *:not(.next_page) .pdf_link:hover {
  opacity: .7;
}

/*.article_hero{
    > *:not(.history_link){
        a:not([class]),.external_link{
            color: #07228f;
            border-bottom: solid 1px #07228f;
            text-decoration: none;
            transition: .5s all;

            &:hover{
                opacity: .7;
            }
        }
    }
}*/
@media screen and (max-width: 1308px) {
  .guide_link {
    max-width: 100%;
  }
}

/*--------------------
     tablet
--------------------*/
@media screen and (max-width: 1024px) {
  .top_bn_wrap {
    margin: 84px auto;
    padding: 0 18px;
  }
  .top_main_visual_news {
    position: absolute;
    bottom: 12px;
    font-size: 1.4rem;
    width: 100%;
    max-width: 1047px;
    left: 0;
    display: block;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top_main_visual_news h2 {
    margin: 0;
    width: auto;
  }
  .top_main_visual_news h2::after {
    display: none;
  }
  .top_main_visual_news ul {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: none;
    padding: 14px 12px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: .5s all;
    transition: .5s all;
  }
  .top_main_visual_news ul .flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .top_main_visual_news ul .flex a {
    color: #202020;
    text-decoration: none;
    display: block;
    position: relative;
  }
  .top_main_visual_news ul .flex a::after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 0;
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
    -webkit-transition: .5s all;
    transition: .5s all;
    border-bottom: 1px transparent solid;
  }
  .top_main_visual_news ul .tag {
    margin: 0 8px;
    padding: 2px 4px;
    background-color: #aadded;
  }
  .top_main_visual_news:hover ul {
    background-color: white;
  }
  .top_main_visual_news:hover ul .flex a::after {
    width: 100%;
    border-color: #202020;
  }
  main .performance_wrap ul li.mp_items_inner figure .mp_items_img {
    max-width: 100%;
    width: 100%;
    height: 320px;
    overflow: hidden;
  }
  
  .top_about_wrap.animation .hd_group h1:after,
  .top_concept_wrap.animation .hd_group h1:after {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    margin: 22px 0 0;
    border-bottom: 1px solid #b2b2b2;
  }
  .top_about_wrap.animation .hd_group p,
  .top_concept_wrap.animation .hd_group p {
    font-size: 2.0rem;
  }
}



