@charset "utf-8";

/* ======================================================
 * home.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Footer
 * - Page Components
 * - Clearfix
 * PC Media Queries
 * @media only screen and (max-width: 767px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Footer
 * - Page Components
 * - Clearfix
 * SP Media Queries
 * Print
====================================================== */

/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 768px) {
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
    margin-top: 0;
  }
  
  /* ----- container ----- */
  .container {
    position: relative;
    width: 100%;
    padding: 0;
    background-color: #eaebed;
    overflow: hidden;
  }
  .container::after {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    opacity: 0.0;
    content: "";
    -webkit-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
  }
  .container.is-blur::after {
    opacity: 1.0;
  }
  .container .home-setting,
  .container .home-setting > img {
    position: fixed;
    top: 0;
  }
  .container .home-setting > .home-setting-image {
    z-index: 1;
  }
  .container .home-setting > .home-setting-filter {
    -webkit-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
  }
  .container.is-blur .home-setting > .home-setting-filter {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  /* ----- contents ----- */
  .contents {
    position: relative;
    z-index: 1;
  }
  
  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  /* ------------------------------------------------------
   * Page Components
  ------------------------------------------------------ */
  /* ----- home-hero ----- */
  .home-hero {
    width: 100%;
    margin-bottom: 10%;
  }
  .home-hero .hero_lead {
    width: 100%;
    margin-top: 14.6%;
    text-align: center;
  }
  .home-hero .hero_lead .hero_lead_text02 {
    margin-top: 9px;
  }
  [class*="js-hero_lead_text"] {
    opacity:0;
    transform:translateY(10px);
    -webkit-transform:translateY(10px);
    -moz-transform:translateY(10px);
    -ms-transform:translateY(10px);
    -webkit-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
  }
  [class*="js-hero_lead_text"].is-text-active {
    opacity:1;
    transform:translateY(0);
    -webkit-transform:translateY(0);
    -moz-transform:translateY(0);
    -ms-transform:translateY(0);
  }
  
  /* ----- home-info ----- */
  .home-info {
    position: relative;
    z-index: 10;
    margin-top: 13%;
  }
  /* emergency_news */
  .home-info .emergency_news {
    max-width: 1200px;
    display: -webkit-flex;
    display: flex;
    margin: 0 auto 40px;
    padding: 0 20px;
  }
  .home-info .emergency_news .emergency_news_layout {
    width: 100%;
    padding: 16px 22px;
    background-color: #fff;
    border: 1px solid #ba0000;
  }
  .home-info .emergency_news .emergency_news_layout .emergency_text {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ba0000;
    line-height: 1.2;
    text-decoration: none;
  }
  .home-info .emergency_news .emergency_news_layout a:hover {
    text-decoration: underline;
  }
  .home-info .emergency_news .emergency_news_layout a.a-blank::after,
  .home-info .emergency_news .emergency_news_layout a.a-pdf::after {
    display: inline-block;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    content: "";
  }
  .home-info .emergency_news .emergency_news_layout a.a-blank::after {
    width: 12px;
    height: 10px;
    margin: .5em 0 0 12px;
    background-position: 0 -200px;
  }
  .home-info .emergency_news .emergency_news_layout a.a-pdf::after {
    width: 43px;
    height: 18px;
    margin: .35em 0 0 12px;
    background-position: 0 -250px;
  }
  
  /* info_news */
  .home-info .info_news {
    max-width: 1480px;
    padding: 0 40px;
    margin: 0 auto;
  }
  .home-info .info_news .info_news_inner {
    position: relative;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 32px 0 32px 32px;
  }
  .home-info .info_news .info_news_inner::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-info .info_news .home-news-layout {
    position: relative;
    z-index: 1;
    flex: 1;
  }
  .home-info .info_news .home-news-layout a {
    display: inline-block;
    text-decoration: none;
  }
  .home-info .info_news .home-news-layout .block {
    display: block;
  }
  .home-info .info_news .home-news-layout .home_news_property {
    float: left;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 10px;
  }
  .home-info .info_news .home-news-layout .news_date {
    min-width: 124px;
    font-weight: bold;
    color: #fff;
  }
  .home-info .info_news .home-news-layout [class*="news_icon"] {
    position: relative;
    display: inline-block;
    min-width: 84px;
    margin-left: 17px;
    padding: 0 10px;
    color: #7a9df4;
    text-align: center;
  }
  .home-info .info_news .home-news-layout [class*="news_icon"]::before,
  .home-info .info_news .home-news-layout [class*="news_icon"]::after {
    position: absolute;
    top: 3px;
    width: 1px;
    height: 100%;
    background-color: #4972d8;
    content: "";
  }
  .home-info .info_news .home-news-layout [class*="news_icon"]::before {
    left: 0;
  }
  .home-info .info_news .home-news-layout [class*="news_icon"]::after {
    right: 0;
  }
  .home-info .info_news .home-news-layout .home_news_title {
    overflow: hidden;
    line-height: 1.6;
    color: #fff;
  }
  .home-info .info_news .home-news-layout .a-blank .home_news_title::after,
  .home-info .info_news .home-news-layout .a-pdf .home_news_title::after {
    vertical-align: top;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    content: "";
  }
  .home-info .info_news .home-news-layout .a-blank .home_news_title::after {
    width: 12px;
    height: 10px;
    background-position: -50px -200px;
  }
  .home-info .info_news .home-news-layout .a-pdf .home_news_title::after {
    width: 43px;
    height: 18px;
    background-position: 0 -250px;
  }
  .home-info .info_news .home-news-layout .a-blank .home_news_title::after {
    display: inline-block;
    margin: .5em 0 0 12px;
  }
  .home-info .info_news .home-news-layout .a-pdf .home_news_title::after {
    display: inline-block;
    margin: .35em 0 0 12px;
  }
  .home-info .info_news .news_navi-anchor {
    position: relative;
    z-index: 1;
    margin: 0 -28px 0 34px;
  }
  .home-info .info_news .news_navi-anchor .home_navi-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .home-info .info_news .news_navi-anchor li {
    display: -webkit-flex;
    display: flex;
  }
  .home-info .info_news .news_navi-anchor li + li {
    margin-left: 15px;
  }
  .home-info .info_news .news_navi-anchor li > a {
    position: relative;
    display: inline-block;
    min-width: 137px;
    padding: 4px 20px;
    background: #022a8d;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow:hidden;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-info .info_news .news_navi-anchor li > a:hover {
    opacity: 1.0;
  }
  .home-info .info_news .news_navi-anchor li > a::before {
    position: absolute;
    top: 16px;
    right: 8px;
    width: 7px;
    height: 4px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat -150px 0;
    content: "";
    z-index: 1;
  }
  .home-info .info_news .news_navi-anchor li > a::after {
    position: absolute;
    left: -10%;
    bottom: 0;
    width: 0;
    height: 120%;
    background: #00154a;
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    content: "";
  }
  .home-info .info_news .news_navi-anchor li > a:hover::after {
    left: -10%;
    width: 120%;
  }
  .home-info .info_news .news_navi-anchor li > a > .link_label {
    position: relative;
    z-index: 1;
  }
  
  /* ----- home-link-button ----- */
  .home-link-button {
    display: table;
    z-index: 1;
  }
  .home-link-button > .no-link {
    display: block;
  }
  .home-link-button > a,
  .home-link-button > .no-link {
    position: relative;
    display: table-cell;
    min-width: 190px;
    padding: 8px 10px;
    background: #022a8d;
    color: #fff;
    font-size: 2.0rem;
    text-align: center;
    text-decoration: none;
    overflow:hidden;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    box-shadow: 5px 5px 25px rgba(0,0,0,0.4);
  }
  .home-link-button > a::after,
  .home-link-button > .no-link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 120%;
    left: -10%;
    bottom: 0;
    background: #00154a;
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-link-button > a .link_label,
  .home-link-button > .no-link .link_label{
    position: relative;
    z-index: 1;
  }
  .home-link-button > a:hover {
    opacity: 1.0;
  }
  .home-link-button > a:hover,
  a:hover .home-link-button > .no-link {
    box-shadow: 0px 0px 10px rgba(0,0,0,0.6);
  }
  .home-link-button > a:hover::after,
  a:hover .home-link-button > .no-link::after{
    left: -10%;
    width: 120%;
  }
  
  /* ----- home-wrap ----- */
  .home-wrap {
    margin-top: 126px;
  }
  .home-hero + .home-wrap {
    margin-top: 0;
  }
  .home-wrap .home-inner {
    max-width: 1480px;
    margin: 0 auto;
  }
  /* home_heading_layout */
  .home-wrap .home_heading_layout {
    margin-bottom: 50px;
    text-align: center;
  }
  .home-wrap .home_heading_layout a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 2px;
    color: #000;
  }
  .home-wrap .home_heading_layout a:hover {
    opacity: 1.0;
    color: #5f7ce5;
  }
  .home-wrap .home_heading_layout a::after {
    position: absolute;
    top: 0.8em;
    right: -34px;
    width: 15px;
    height: 29px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat -350px -50px;
    content: "";
  }
  .home-wrap .home_heading_layout a:hover::after {
    position: absolute;
    top: 0.8em;
    right: -34px;
    width: 15px;
    height: 29px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat -450px -50px;
    content: "";
  }
  .home-wrap .home_heading_layout .home_title {
    line-height: 1.0;
    font-size: 4.8rem;
    font-weight: bold;
  }
  .home-wrap .home_heading_layout .home_caption {
    margin-top: 10px;
    line-height: 1.0;
    font-size: 2.1rem;
  }
  /* home-column-layout */
  .home-wrap .home-column-layout[data-row-pc]:not([data-row-pc="1"]) {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .home-wrap .home-column-layout[data-row-pc] > * {
    margin-left: 50px;
  }
  .home-wrap .home-column-layout[data-row-pc="2"] > *:nth-child(-n+2),
  .home-wrap .home-column-layout[data-row-pc="3"] > *:nth-child(-n+3) {
    margin-top: 0 !important;
  }
  .home-wrap .home-column-layout[data-row-pc="1"] > *,
  .home-wrap .home-column-layout[data-row-pc="2"] > *:nth-child(2n+1),
  .home-wrap .home-column-layout[data-row-pc="3"] > *:nth-child(3n+1) {
    margin-left: 0 !important;
  }
  .home-wrap .home-column-layout[data-row-pc="2"] > * {
    width: calc((100% - 50px) / 2);
  }
  .home-wrap .home-column-layout[data-row-pc="3"] > * {
    width: calc((100% - 100px) / 3);
  }
  /* for IE11 & Edge */
  [data-browser="ie11"] .home-wrap .home-column-layout[data-row-pc="2"] > * { width: calc(((100% - 50px) / 2) - 0.1px); }
  [data-browser="ie11"] .home-wrap .home-column-layout[data-row-pc="3"] > * { width: calc(((100% - 100px) / 3) - 0.1px); }
  [data-browser="edge"] .home-wrap .home-column-layout[data-row-pc="2"] > * { width: calc(((100% - 50px) / 2) - 0.1px); }
  [data-browser="edge"] .home-wrap .home-column-layout[data-row-pc="3"] > * { width: calc(((100% - 100px) / 3) - 0.1px); }
  
  .home-wrap .home-column-layout .home_column_item {
    position: relative;
    padding: 0 20px;
  }
  .home-wrap .home-column-layout .home_column_item > a {
    text-decoration: none;
  }
  .home-wrap .home-column-layout .home_column_item > .a-blank::after,
  .home-wrap .home-column-layout .home_column_item > .a-pdf::after {
    display: none;
  }
  .home-wrap .home-column-layout .home_column_item > a:hover {
    opacity: 1.0;
  }
  .home-wrap .home-column-layout .home_column_item .block {
    display: block;
  }
  .home-wrap .home-column-layout .home_column_item > a .home_column_image {
    overflow: hidden;
    box-shadow: 5px 5px 25px rgba(0,0,0,0.4);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-wrap .home-column-layout .home_column_item > a:hover .home_column_image {
    box-shadow: 0px 0px 10px rgba(0,0,0,0.6);
  }
  .home-wrap .home-column-layout .home_column_item > a .home_column_image img {
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-wrap .home-column-layout .home_column_item > a:hover .home_column_image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .home-wrap .home-column-layout .home_column_item .home_column_title {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 0 0 12px 40px;
    border-bottom: 1px solid #022a8d;
    font-size: 2.6rem;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
  }
  .home-wrap .home-column-layout .home_column_item .home-link-button {
    position: absolute;
    right: 0;
    bottom: -16px;
  }
  .home-wrap .home-column-layout .home_column_item .a-blank .home-link-button .no-link,
  .home-wrap .home-column-layout .home_column_item .a-pdf .home-link-button .no-link {
    position: relative;
  }
  .home-wrap .home-column-layout .home_column_item .a-pdf .home-link-button .no-link {
    padding: 8px 70px 8px 10px;
  }
  .home-wrap .home-column-layout .home_column_item .a-blank .home-link-button .no-link::before,
  .home-wrap .home-column-layout .home_column_item .a-pdf .home-link-button .no-link::before {
    position: absolute;
    top: 50%;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    content: "";
    z-index: 1;
  }
  .home-wrap .home-column-layout .home_column_item .a-blank .home-link-button .no-link::before {
    right: 15px;
    width: 12px;
    height: 10px;
    margin-top: -5px;
    background-position: -50px -200px;
  }
  .home-wrap .home-column-layout .home_column_item .a-pdf .home-link-button .no-link::before {
    right: 15px;
    width: 43px;
    height: 18px;
    margin-top: -8px;
    background-position: 0 -250px;
  }
  
  /* home-slide-link */
  .home-slide-link {
    margin-top: 70px;
  }
  .home-slide-link .home_slide_inner .js-home_images_area {
    -webkit-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  .home-slide-link .home_slide_inner .js-home_text_area {
    -webkit-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  .home-slide-link .home_slide_inner.is-move .js-home_images_area,
  .home-slide-link .home_slide_inner.is-move .js-home_text_area {
    opacity: 0;
  }
  .home-slide-link[data-slide-link="right"] .home_slide_inner.is-move .js-home_images_area {
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }
  .home-slide-link[data-slide-link="right"] .home_slide_inner.is-move .js-home_text_area {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
  }
  .home-slide-link[data-slide-link="left"] .home_slide_inner.is-move .js-home_images_area {
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }
  .home-slide-link[data-slide-link="left"] .home_slide_inner.is-move .js-home_text_area {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }
  
  /* home-link-wrap */
  .home-link-wrap {
    position: relative;
    height: 420px;
  }
  .home-link-wrap .home_link_layout {
    position: absolute;
  }
  .home-link-wrap .home_link_layout a:hover {
    opacity: 1.0;
  }
  .home-link-wrap.type-link-right .home_link_layout {
    right: 0;
  }
  .home-link-wrap.type-link-left .home_link_layout {
    left: 0;
  }
  
  /* home_images_area */
  .home-link-wrap .home_link_layout > a .home_images_area {
    position: relative;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
  }
  .home-link-wrap .home_link_layout a:hover .home_images_area {
    box-shadow: 0px 5px 10px rgba(0,0,0,0.5);
  }
  .home-link-wrap .home_link_layout > a .home_images_area::after {
    position: absolute;
    top: 20px;
    width: 104%;
    height: 100%;
    background: url(/common/img/com_bg01_pc.png) repeat;
    content: "";
    z-index: -1;
  }
  .home-link-wrap.type-link-right .home_link_layout > a .home_images_area::after {
    right: 0;
  }
  .home-link-wrap.type-link-left .home_link_layout > a .home_images_area::after {
    left: -8px;
  }
  .home-link-wrap .home_link_layout > a .home_images_area .home_images_inner {
    overflow: hidden;
  }
  .home-link-wrap .home_link_layout > a .home_images_area .home_images_inner img {
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-link-wrap .home_link_layout > a:hover .home_images_area .home_images_inner img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  
  /* home_text_area */
  .home-link-wrap .home_link_layout > a .home_text_area {
    position: absolute;
    display: inline-block;
    bottom: 32px;
    color: #fff;
    z-index: 1;
  }
  .home-link-wrap.type-link-right .home_text_area {
    left: -445px;
  }
  .home-link-wrap.type-link-left .home_text_area {
    right: -386px;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner {
    position: relative;
    padding: 65px 120px 65px 120px;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.3);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-link-wrap .home_link_layout > a:hover .home_text_area .home_text_inner::after {
    box-shadow: 0px 5px 10px rgba(0,0,0,0.5);
    background: rgba(0,0,0,1.0);
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title {
    position: relative;
    z-index: 1;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title::before,
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title::after {
    position: absolute;
    background-color: #4972d8;
    content: "";
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title::before {
    top: -37px;
    left: -28px;
    width: 1px;
    height: 100px;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title::after {
    top: -18px;
    left: -48px;
    width: 70px;
    height: 1px;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home-link-button {
    position: absolute;
    right: -32px;
    bottom: -14px;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  
  /* ----- home-wrap-v2 ----- */
  .home-wrap-v2 {
    margin-top: 126px;
    padding: 70px 0;
    background: rgba(0,0,0,0.5);
  }
  .home-wrap-v2 .home-inner {
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
  }
  
  /* home-link-layout */
  .home-link-layout {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .home-link-layout .home_link_item {
    position: relative;
    width: 50%;
  }
  .home-link-layout .home_link_item .block {
    display: block;
  }
  .home-link-layout .home_link_item > a {
    position: relative;
    width: 110%;
    text-decoration: none;
    overflow: hidden;
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
  }
  .home-link-layout .home_link_item[data-link-item="ir"] > a {
    z-index: 1;
    left: -10%;
  }
  .home-link-layout .home_link_item > a:hover {
    opacity: 1.0;
  }
  .home-link-layout .home_link_item > a .home-link_set {
    position: absolute;
    width: 126%;
  }
  .home-link-layout .home_link_item[data-link-item="ir"] > a .home-link_set {
    left: 0;
  }
  .home-link-layout .home_link_item[data-link-item="csr"] > a .home-link_set {
    right: -30px;
  }
  .home-link-layout .home_link_item > a .home-link_set img {
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-link-layout .home_link_item > a:hover .home-link_set img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .home-link-layout .home_link_item > a .home-link_detail {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 64px 0;
  }
  .home-link-layout .home_link_item[data-link-item="ir"] > a .home-link_detail {
    padding-left: 65px;
  }
  .home-link-layout .home_link_item[data-link-item="csr"] > a .home-link_detail {
    padding-right: 65px;
  }
  .home-link-layout .home_link_item > a .home-link_detail .home_link_title {
    margin-left: -5%;
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    -webkit-transform: skewX(27.4deg);
    transform: skewX(27.4deg);
  }
  .home-link-layout .home_link_item > a .home-link_detail .home-link-button {
    margin-left: 5%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transform: skewX(27.4deg);
    transform: skewX(27.4deg);
  }
  .home-link-layout .home_link_item > .a-pdf .home-link_detail .home-link-button .no-link {
    padding: 8px 40px 8px 10px;
  }
  .home-link-layout .home_link_item > .a-blank .home-link_detail .home-link-button .no-link::before,
  .home-link-layout .home_link_item > .a-pdf .home-link_detail .home-link-button .no-link::before {
    position: absolute;
    top: 50%;
    right: 10px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    content: "";
    z-index: 1;
  }
  .home-link-layout .home_link_item > .a-blank .home-link_detail .home-link-button .no-link::before {
    width: 12px;
    height: 10px;
    margin-top: -5px;
    background-position: -50px -200px;
  }
  .home-link-layout .home_link_item > .a-pdf .home-link_detail .home-link-button .no-link::before {
    width: 43px;
    height: 18px;
    margin-top: -8px;
    background-position: 0 -250px;
  }
  
  /* ----- home-wrap-v3 ----- */
  .home-wrap-v3 {
    margin-top: 126px;
  }
  .home-wrap-v3 .home-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .home-wrap-v3 .home_heading_layout {
    text-align: center;
  }
  .home-wrap-v3 .home_heading_layout .home_title_lv2 {
    font-size: 3.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.0;
  }
  .home-wrap-v3 .home_heading_layout .home_caption_v2 {
    font-size: 1.9rem;
  }
  
  /* topics-slider-layout */
  .topics-slider-layout {
    margin-top: 10px;
  }
  .topics-slider-layout .topics_list {
    margin: 0 -20px;
  }
  .topics-slider-layout .topics_list .topics_item {
    margin: 20px;
  }
  .topics-slider-layout .topics_list .topics_item .block {
    display: block;
  }
  .topics-slider-layout .topics_list .topics_item > .block {
    position: relative;
    width: 100%;
    text-decoration: none;
  }
  .topics-slider-layout .topics_list .topics_item > a:hover {
    opacity: 1.0;
  }
  .topics-slider-layout .topics_list .topics_item > .block.a-blank::after,
  .topics-slider-layout .topics_list .topics_item > .block.a-pdf::after {
    position: absolute;
    top: 12px;
    content: "";
  }
  .topics-slider-layout .topics_list .topics_item > .block.a-blank::after {
    right: 12px;
    width: 12px;
    height: 10px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat -50px -200px;
  }
  .topics-slider-layout .topics_list .topics_item > .block.a-pdf::after {
    right: 0;
    width: 43px;
    height: 18px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat 0 -250px;
  }
  
  /* topics_images */
  .topics-slider-layout .topics_list .topics_item > .block .topics_images {
    position: relative;
    overflow: hidden;
    box-shadow: 3px 3px 16px rgba(0,0,0,0.5);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .topics-slider-layout .topics_list .topics_item > a:hover .topics_images {
    box-shadow: 3px 3px 8px rgba(0,0,0,0.6);
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_images img {
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .topics-slider-layout .topics_list .topics_item > a:hover .topics_images img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  /* topics_date */
  .topics-slider-layout .topics_list .topics_item > .block .topics_date {
    position: absolute;
    top: 12px;
    left: 0;
    overflow: hidden;
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_date .topics_date_inner {
    position: relative;
    padding: 3px 30px 5px 18px;
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_date .topics_date_inner::after {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_date .topics_date_inner .date_label {
    position: relative;
    z-index: 1;
    color: #fff;
  }
  
  /* topics_detail */
  .topics-slider-layout .topics_list .topics_item > .block .topics_detail {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px 0 15px;
    background: -moz-linear-gradient(top, rgba(255,255,255,0), #000);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0), #000);
    background: linear-gradient(to bottom, rgba(255,255,255,0), #000);
    color: #fff;
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_detail .topics_title {
    position: relative;
    padding: 0 20px; 
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_detail .topics_title::after {
    position: absolute;
    top: 12px;
    left: 0;
    width: 14px;
    height: 1px;
    background-color: #3569ec;
    content: "";
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_detail .topics_text {
    overflow: hidden;
    padding: 10px 20px 0;
    font-size: 1.5rem;
    color: #fff;
  }
  
  /* slick-dots */
  .topics-slider-layout .slick-dots {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 10px;
  }
  .topics-slider-layout .slick-dots > li {
    width: 13px;
    height: 13px;
    background-color: #a3a4a5;
    border: none;
    border-radius: 50%;
    text-indent: -9999px;
  }
  .topics-slider-layout .slick-dots > li:hover {
    cursor: pointer;
  }
  .topics-slider-layout .slick-dots > li.slick-active {
    background-color: #000;
  }
  .topics-slider-layout .slick-dots > li + li {
    margin-left: 17px;
  }
  
  /* ----- home-wrap-v4 ----- */
  .home-wrap-v4 {
    margin-top: 70px;
    padding: 70px 0;
    background: rgba(0,0,0,0.5);
  }
  .home-wrap-v4 .home-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* home-tab-layout */
  .home-wrap-v4 .home-tab-layout > *:first-child {
    margin-top: 0 !important;
  }
  .home-wrap-v4 .home-tab-layout > .home_tab_navi {
    max-width: 930px;
    margin: 0 auto;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_navi.tab_top .home_tab_list > li {
    padding-bottom: 9px;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_navi.tab_bottom .home_tab_list > li {
    padding-top: 9px;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-pc-row] > li {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    margin-left: 30px;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-pc-row="1"] > li,
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-pc-row="2"] > li:nth-child(2n+1),
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-pc-row="3"] > li:nth-child(3n+1) {
    margin-left: 0 !important;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-pc-row="2"] > li {
    width: calc((100% - 30px) / 2);
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-pc-row="3"] > li {
    width: calc((100% - 60px) / 3);
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list > li > a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 10px 5px 9px;
    background-color: #fff;
    font-size: 1.8rem;
    color: #000;
    text-decoration: none;
    text-align: center;
    box-shadow: 3px 3px 16px rgba(0,0,0,0.5);
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list > li > a:hover {
    background-color: #eaeaea;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.6);
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list > .is-current > a {
    background-color: #000;
    font-weight: bold;
    color: #fff;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list > .is-current > a:hover {
    opacity: 1.0;
    background-color: #000;
    cursor: auto;
    box-shadow: 3px 3px 16px rgba(0,0,0,0.5);
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list > .is-current > a .is-balloon {
    position: absolute;
    bottom: -18px;
    left: 0;
    display: block;
    width: 100%;
    height: 18px;
    background: url(/common/img/com_balloon_bg01_pc.png) no-repeat center top;
    background-size: 100% 18px;
  }
  .home-wrap-v4 .home-tab-layout > .home_tab_detail {
    display: none;
    padding: 30px 0 0;
  }
  .home-wrap-v4 .home-tab-layout > .home_tab_detail > *:first-child,
  .home-wrap-v4 .home-tab-layout > .home_tab_detail > section:first-child [class*="heading"] {
    margin-top: 0 !important;
  }
  
  /* home-news-layout */
  .home-wrap-v4 .home-news-layout {
    box-shadow: 3px 3px 16px rgba(0,0,0,0.5);
  }
  .home-wrap-v4 .home-news-layout .home_news_area {
    padding: 38px 50px 28px;
    border-top: 1px solid #000;
    background-color: #fff;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .news_article + .news_article {
    margin-top: 20px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .block {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    outline: none;
    text-decoration: none;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .news_detail {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex: 1;
    flex: 1;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .news_property {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 18px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .news_date {
    font-size: 1.4rem;
    color: #000;
  }
  .home-wrap-v4 .home-news-layout .home_news_area [class*="news_icon"] {
    position: relative;
    display: inline-block;
    min-width: 100px;
    margin-left: 18px;
    padding: 0 10px;
    color: #022a8d;
    text-align: center;
  }
  .home-wrap-v4 .home-news-layout .home_news_area [class*="news_icon"]::before,
  .home-wrap-v4 .home-news-layout .home_news_area [class*="news_icon"]::after {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #022a8d;
    content: "";
  }
  .home-wrap-v4 .home-news-layout .home_news_area [class*="news_icon"]::before {
    left: 0;
  }
  .home-wrap-v4 .home-news-layout .home_news_area [class*="news_icon"]::after {
    right: 0;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .news_title {
    -webkit-flex: 1;
    flex: 1;
    line-height: 1.6;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.csr_news_area .news_title {
    line-height: 1.2;
  }
  .home-wrap-v4 .home-news-layout .home_news_area a:hover {
    opacity: 1.0;
  }
  .home-wrap-v4 .home-news-layout .home_news_area a .news_title {
    color: #000;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-wrap-v4 .home-news-layout .home_news_area a:hover .news_title {
    color: #5f7ce5;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-blank .news_title::after,
  .home-wrap-v4 .home-news-layout .home_news_area .a-pdf .news_title::after {
    vertical-align: top;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    content: "";
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-blank .news_title::after {
    width: 12px;
    height: 10px;
    background-position: 0 -200px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-pdf .news_title::after {
    width: 43px;
    height: 18px;
    background-position: 0 -250px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-blank::after,
  .home-wrap-v4 .home-news-layout .home_news_area .a-pdf::after {
    display: none;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-blank .news_title::after {
    display: inline-block;
    margin: .5em 0 0 12px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-pdf .news_title::after {
    display: inline-block;
    margin: .35em 0 0 12px;
  }
  .home-wrap-v4 .more-link-button {
    margin-top: 0;
    padding: 0 20px 20px 0;
    background-color: #fff;
  }
  
  /* ir_news_area */
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td {
    padding: 10px 10px 0 0;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr:first-child > td {
    padding-top: 0;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td.day {
    width: 12%;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td.icon {
    width: 8%;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td.icon > img {
    vertical-align: middle;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td.txt {
    width: 66%;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td.pdf {
    width: 14%;
    padding-right: 0;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td.pdf > img {
    vertical-align: middle;
    margin-left: 5px;
  }
  
  /* more-link-button */
  .more-link-button {
    text-align: right;
  }
  .more-link-button > a {
    display: inline-block;
    position: relative;
    min-width: 76px;
    padding: 6px 20px;
    background: #022a8d;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    overflow:hidden;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    box-shadow: 3px 3px 16px rgba(0,0,0,0.5);
  }
  .more-link-button > .a-blank {
    padding: 6px 40px 6px 20px;
  }
  .more-link-button > .a-pdf {
    padding: 6px 65px 6px 20px;
  }
  .more-link-button > .a-blank,
  .more-link-button > .a-pdf {
    position: relative;
  }
  .more-link-button > .a-blank::before,
  .more-link-button > .a-pdf::before {
    position: absolute;
    top: 50%;
    right: 10px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    content: "";
    z-index: 1;
  }
  .more-link-button > .a-blank::before {
    width: 12px;
    height: 10px;
    margin-top: -5px;
    background-position: -50px -200px;
  }
  .more-link-button > .a-pdf::before {
    width: 43px;
    height: 18px;
    margin-top: -9px;
    background-position: 0 -250px;
  }
  .more-link-button > a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 120%;
    left: -10%;
    bottom: 0;
    background: #00154a;
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .more-link-button > a .link_label {
    position: relative;
    z-index: 1;
  }
  .more-link-button > a:hover {
    opacity: 1.0;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  }
  .more-link-button > a:hover::after {
    left: -10%;
    width: 120%;
  }
  
  /* ----- home-wrap-v5 ----- */
  .home-wrap-v5 {
    padding: 30px 20px;
    background-color: #dfdfdf;
  }
  .home-wrap-v5 .home-inner {
    max-width: 1110px;
    margin: 0 auto;
  }
  .home-wrap-v5 .home-link-button {
    margin-top: 0;
  }
  .home-wrap-v5 .home-link-button > li {
    position: relative;
    display: -webkit-flex;
    display: flex;
  }
  /* for IE11 & Edge */
  [data-browser="ie11"] .home-wrap-v5 .home-link-button[data-row-pc="3"] > li { width: calc(((100% - 72px) / 3) - 0.1px); }
  [data-browser="edge"] .home-wrap-v5 .home-link-button[data-row-pc="3"] > li { width: calc(((100% - 72px) / 3) - 0.1px); }
  
  .home-wrap-v5 .home-link-button > li::after {
    position: absolute;
    top: 50%;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    content: "";
  }
  .home-wrap-v5 .home-link-button > li.is-stockprice::after {
    left: 12px;
    width: 29px;
    height: 30px;
    margin-top: -15px;
    background-position: -200px -750px;
  }
  .home-wrap-v5 .home-link-button > li.is-company::after {
    left: 12px;
    width: 40px;
    height: 29px;
    margin-top: -15px;
    background-position: -350px -750px;
  }
  .home-wrap-v5 .home-link-button > li.is-settlement::after {
    left: 14px;
    width: 35px;
    height: 28px;
    margin-top: -14px;
    background-position: 0 -800px;
  }
  .home-wrap-v5 .home-link-button > li > a {
    position: relative;
    -webkit-display: flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    padding: 13px 13px 13px 60px;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    overflow:hidden;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-wrap-v5 .home-link-button > li > a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 120%;
    left: -10%;
    bottom: 0;
    background: #eaeaea;
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-wrap-v5 .home-link-button > li > a:hover {
    opacity: 1.0;
  }
  .home-wrap-v5 .home-link-button > li > a:hover::after {
    left: -10%;
    width: 120%;
  }
  .home-wrap-v5 .home-link-button > li > a .link_label {
    position: relative;
    z-index: 1;
    display: inline-block;
    line-height: 1.5;
  }
  .home-wrap-v5 .home-link-button > li > .a-blank {
    padding-right: 35px;
  }
  .home-wrap-v5 .home-link-button > li > .a-pdf {
    padding-right: 70px;
  }
  
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .home-info .info_news .home-news-layout .home_news_detail::after {
    display: block;
    clear: both;
    content: "";
  }
}

/* ======================================================
 * PC Media Queries
====================================================== */
/* ------------------------------------------------------
   * Page Components
  ------------------------------------------------------ */
/* ----- home-hero ----- */
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .hero_lead_text01 img {
    width: 700px;
    height: auto;
  }
  .hero_lead_text02 img {
    width: 400px;
    height: auto;
  }
}

/* ----- home-link-button ----- */
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .home-link-button > a,
  .home-link-button > .no-link {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 819px) {
  .home-link-button > a,
  .home-link-button > .no-link {
    min-width: 150px;
    font-size: 1.6rem;
  }
}

/* home-column-layout */
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .home-wrap .home-column-layout .home_column_item .home_column_title {
    top: 15px;
    padding-left: 35px;
    font-size: 2.0rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .home-wrap .home-column-layout .home_column_item .home_column_title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .home-wrap .home-column-layout[data-row-pc] > * {
    margin-left: 20px;
  }
  .home-wrap .home-column-layout[data-row-pc="3"] > * {
    width: calc((100% - 40px) / 3);
  }
  /* for IE11 & Edge */
  [data-browser="ie11"] .home-wrap [data-row-pc="3"].home-column-layout > * {width: calc(((100% - 40px) / 3) - 0.1px);}
  [data-browser="edge"] .home-wrap [data-row-pc="3"].home-column-layout > * {width: calc(((100% - 40px) / 3) - 0.1px);}
  
  .home-wrap .home-column-layout .home_column_item .home_column_title {
    top: 10px;
    padding: 0 0 8px 30px;
    font-size: 1.6rem;
  }
}

/* home-link-layout */
@media screen and (min-width: 1180px) and (max-width: 1279px) {
  .home-link-layout .home_link_item > a .home-link_detail {
    padding: 55px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1179px) {
  .home-link-layout .home_link_item[data-link-item="ir"] > a .home-link_set {
    left: -30px;
  }
  .home-link-layout .home_link_item > a .home-link_detail {
    padding: 45px 0;
  }
  .home-link-layout .home_link_item > a .home-link_detail .home_link_title {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1036px) and (max-width: 1072px) {
  .home-link-layout .home_link_item > a .home-link_set {
    width: 130%;
  }
}
@media screen and (min-width: 1004px) and (max-width: 1035px) {
  .home-link-layout .home_link_item > a .home-link_set {
    width: 135%;
  }
}
@media screen and (min-width: 964px) and (max-width: 1003px) {
  .home-link-layout .home_link_item > a .home-link_set {
    width: 140%;
  }
}
@media screen and (min-width: 900px) and (max-width: 963px) {
  .home-link-layout .home_link_item > a .home-link_set {
    width: 150%;
  }
}
@media screen and (min-width: 820px) and (max-width: 899px) {
  .home-link-layout .home_link_item > a .home-link_set {
    width: 165%;
  }
}
@media screen and (min-width: 768px) and (max-width: 819px) {
  .home-link-layout .home_link_item > a .home-link_set {
    width: 175%;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .home-info .info_news .info_news_inner {
    display: block;
    padding: 32px;
  }
  .home-info .info_news .news_navi-anchor .home_navi-inner {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .home-info .info_news .news_navi-anchor {
    position: absolute;
    bottom: -17px;
    width: 100%;
    margin: 0 0 0 -32px;
  }
  .home-info .info_news .home-news-layout .home_news_detail {
    display: block;
  }
}

/* ----- home-link-wrap ----- */
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .home-link-wrap .home_link_layout {
    width: 80%;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner {
    padding: 45px 80px 45px 80px;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title {
    font-size: 2.5rem;
  }
  /* home_text_area */
  .home-link-wrap.type-link-right .home_text_area {
    left: -10%;
  }
  .home-link-wrap.type-link-left .home_text_area {
    right: -10%;
  }
  .home-link-wrap .index_link_layout .home_text_area .home_text_inner {
    padding: 40px 56px 50px 89px;
  }
  .home-link-wrap .index_link_layout .home_text_area .home_text_inner .home_title {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1549px) {
  .home-link-wrap.type-link-right .home_link_layout {
    right: -10%;
  }
  .home-link-wrap.type-link-left .home_link_layout {
    left: -10%;
  }
  /* home_text_area */
  .home-link-wrap.type-link-right .home_text_area {
    left: -11%;
  }
  .home-link-wrap.type-link-left .home_text_area {
    right: -11%;
  }
}
@media screen and (min-width: 768px) and (max-width: 834px) {
  .home-link-wrap {
    height: 250px;
  }
}
@media screen and (min-width: 835px) and (max-width: 1024px) {
  .home-link-wrap {
    height: 280px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .home-link-wrap {
    height: 360px;
  }
}
/* topics_detail */
@media screen and (min-width: 768px) and (max-width: 980px) {
  .topics-slider-layout .topics_list .topics_item > .block .topics_detail .topics_title,
  .topics-slider-layout .topics_list .topics_item > .block .topics_detail .topics_text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* ======================================================
 * SP
====================================================== */
@media only screen and (max-width: 767px) {
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
    margin-top: 0;
  }
  
  /* ----- container ----- */
  .container {
    position: relative;
    width: 100%;
    padding: 0;
    background-color: #eaebed;
    overflow: hidden;
  }
  .container::after {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    opacity: 0.0;
    content: "";
    -webkit-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
  }
  .container.is-blur::after {
    opacity: 1.0;
  }
  .container .home-setting,
  .container .home-setting > img {
    position: fixed;
    top: 0;
  }
  .container .home-setting > .home-setting-image {
    z-index: 1;
  }
  .container .home-setting > .home-setting-filter {
    -webkit-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
  }
  .container.is-blur .home-setting > .home-setting-filter {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  /* ----- contents ----- */
  .contents {
    position: relative;
    z-index: 1;
  }
  
  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  /* ------------------------------------------------------
   * Page Components
  ------------------------------------------------------ */
  /* ----- home-hero ----- */
  .home-hero {
    position: relative;
    width: 100%;
  }
  .home-hero .hero_lead {
    width: 100%;
    margin-top: 40%;
    padding: 0 10px;
    text-align: center;
  }
  .home-hero .hero_lead .hero_lead_text02 {
    margin-top: 8px;
    padding: 0 37px;
  }
  [class*="js-hero_lead_text"] {
    opacity:0;
    transform:translateY(10px);
    -webkit-transform:translateY(10px);
    -moz-transform:translateY(10px);
    -ms-transform:translateY(10px);
    -webkit-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
  }
  [class*="js-hero_lead_text"].is-text-active {
    opacity:1;
    transform:translateY(0);
    -webkit-transform:translateY(0);
    -moz-transform:translateY(0);
    -ms-transform:translateY(0);
  }
  
  /* ----- home-info ----- */
  .home-info {
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
  }
  /* emergency_news */
  .home-info .emergency_news {
    display: -webkit-flex;
    display: flex;
    margin-top: 30%;
    padding: 0 10px;
  }
  .home-info .emergency_news .emergency_news_layout {
    width: 100%;
    padding: 6px 10px;
    background-color: #fff;
    border: 1px solid #ba0000;
  }
  .home-info .emergency_news .emergency_news_layout .emergency_text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ba0000;
    line-height: 1.6;
    text-decoration: none;
  }
  .home-info .emergency_news .emergency_news_layout a.a-blank::after,
  .home-info .emergency_news .emergency_news_layout a.a-pdf::after {
    display: inline-block;
    margin: .5em 0 0 5px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    background-size: 250px auto;
    content: "";
  }
  .home-info .emergency_news .emergency_news_layout a.a-blank::after {
    width: 12px;
    height: 10px;
    background-position: -50px -100px;
  }
  .home-info .emergency_news .emergency_news_layout a.a-pdf::after {
    width: 32px;
    height: 13px;
    background-position: -25px -125px;
  }
  
  /* info_news */
  .home-info .info_news {
    margin-top: 30%;
  }
  .home-info .emergency_news + .info_news {
    margin-top: 10px;
  }
  .home-info .info_news .info_news_inner {
    position: relative;
    height: 100%;
    padding: 15px 0 35px;
    background: rgba(0,0,0,0.8);
    box-shadow: 5px 5px 25px rgba(0,0,0,0.4);
  }
  .home-info .info_news .home-news-layout {
    padding: 0 10px;
  }
  .home-info .info_news .home-news-layout a {
    text-decoration: none;
  }
  .home-info .info_news .home-news-layout .block {
    display: block;
  }
  .home-info .info_news .home-news-layout .home_news_detail {
  }
  .home-info .info_news .home-news-layout .home_news_property {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .home-info .info_news .home-news-layout .news_date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
  }
  .home-info .info_news .home-news-layout .news_icon {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    padding: 0 5px;
    font-size: 1.1rem;
    color: #7a9df4;
    text-align: center;
  }
  .home-info .info_news .home-news-layout .news_icon::before,
  .home-info .info_news .home-news-layout .news_icon::after {
    position: absolute;
    top: 1px;
    width: 1px;
    height: 1.2em;
    background-color: #4972d8;
    content: "";
  }
  .home-info .info_news .home-news-layout .news_icon::before {
    left: 0;
  }
  .home-info .info_news .home-news-layout .news_icon::after {
    right: 0;
  }
  .home-info .info_news .home-news-layout .home_news_title {
    line-height: 1.5;
    margin-top: 5px;
    font-size: 1.2rem;
    color: #fff;
  }
  .home-info .info_news .home-news-layout .a-blank .home_news_title::after,
  .home-info .info_news .home-news-layout .a-pdf .home_news_title::after {
    vertical-align: top;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    background-size: 250px auto;
    content: "";
  }
  .home-info .info_news .home-news-layout .a-blank .home_news_title::after {
    width: 12px;
    height: 10px;
    background-position: -75px -100px;
  }
  .home-info .info_news .home-news-layout .a-pdf .home_news_title::after {
    width: 32px;
    height: 12px;
    background-position: -25px -125px;
  }
  .home-info .info_news .home-news-layout .a-blank .home_news_title::after {
    display: inline-block;
    margin: .5em 0 0 12px;
  }
  .home-info .info_news .home-news-layout .a-pdf .home_news_title::after {
    display: inline-block;
    margin: .35em 0 0 12px;
  }
  .home-info .info_news .news_navi-anchor {
    position: absolute;
    bottom: -18px;
    width: 100%;
  }
  .home-info .info_news .news_navi-anchor .home_navi-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .home-info .info_news .news_navi-anchor li {
    display: -webkit-flex;
    display: flex;
    box-shadow: 5px 5px 25px rgba(0,0,0,0.4);
  }
  .home-info .info_news .news_navi-anchor li + li {
    margin-left: 20px;
  }
  .home-info .info_news .news_navi-anchor li > a {
    position: relative;
    display: inline-block;
    min-width: 132px;
    padding: 6px 20px;
    background: #022a8d;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow:hidden;
  }
  .home-info .info_news .news_navi-anchor li > a::before {
    position: absolute;
    top: 15px;
    right: 8px;
    width: 9px;
    height: 5px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat -175px 0;
    background-size: 250px auto;
    content: "";
    z-index: 1;
  }
  
  /* ----- home-link-button ----- */
  .home-link-button {
    position: relative;
    display: table;
    z-index: 1;
  }
  .home-link-button > .no-link {
    display: block;
  }
  .home-link-button > a,
  .home-link-button > .no-link {
    position: relative;
    display: table-cell;
    min-width: 130px;
    padding: 8px 10px;
    background: #022a8d;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    overflow:hidden;
    box-shadow: 5px 5px 25px rgba(0,0,0,0.4);
  }
  
  /* ----- home-wrap ----- */
  .home-wrap {
    margin-top: 45px;
  }
  .home-hero + .home-wrap {
    margin-top: 0;
  }
  .home-wrap .home-inner {
    width: 100%;
    margin: 0 auto;
  }
  /* home_heading_layout */
  .home-wrap .home_heading_layout {
    margin-bottom: 16px;
    text-align: center;
  }
  .home-wrap .home_heading_layout a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 1px;
    color: #000;
  }
  .home-wrap .home_heading_layout a::after {
    position: absolute;
    top: 6px;
    right: -15px;
    width: 6px;
    height: 11px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat -200px -25px;
    background-size: 250px auto;
    content: "";
  }
  .home-wrap .home_heading_layout .home_title {
    line-height: 1.0;
    font-size: 2.3rem;
    font-weight: bold;
  }
  .home-wrap .home_heading_layout .home_caption {
    margin-top: 3px;
    line-height: 1.0;
    font-size: 1.2rem;
  }
  /* home-column-layout */
  .home-wrap .home-column-layout {
    padding: 0 57px;
  }
  .home-wrap .home-column-layout[data-row-sp]:not([data-row-sp="1"]) {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .home-wrap .home-column-layout[data-row-sp] > * {
    margin-top: 30px;
    margin-left: 50px;
  }
  .home-wrap .home-column-layout[data-row-sp="1"] > *:first-child,
  .home-wrap .home-column-layout[data-row-sp="2"] > *:nth-child(-n+2),
  .home-wrap .home-column-layout[data-row-sp="3"] > *:nth-child(-n+3) {
    margin-top: 0 !important;
  }
  .home-wrap .home-column-layout[data-row-sp="1"] > *,
  .home-wrap .home-column-layout[data-row-sp="2"] > *:nth-child(2n+1),
  .home-wrap .home-column-layout[data-row-sp="3"] > *:nth-child(3n+1) {
    margin-left: 0 !important;
  }
  .home-wrap .home-column-layout[data-row-sp="2"] > * {
    width: calc((100% - 50px) / 2);
  }
  .home-wrap .home-column-layout[data-row-sp="3"] > * {
    width: calc((100% - 100px) / 3);
  }
  .home-wrap .home-column-layout .home_column_item {
    position: relative;
    padding: 0 18px;
  }
  .home-wrap .home-column-layout .home_column_item > a {
    text-decoration: none;
  }
  .home-wrap .home-column-layout .home_column_item .block {
    display: block;
  }
  .home-wrap .home-column-layout .home_column_item > a .home_column_image {
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 3px 3px 20px rgba(0,0,0,0.2);
  }
  .home-wrap .home-column-layout .home_column_item .home_column_title {
    position: absolute;
    top: 10px;
    left: 0;
    padding: 0px 0 8px 30px;
    border-bottom: 1px solid #022a8d;
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
  }
  .home-wrap .home-column-layout .home_column_item .home-link-button {
    position: absolute;
    right: 0;
    bottom: -10px;
  }
  .home-wrap .home-column-layout .home_column_item .a-pdf .home-link-button .no-link {
    padding: 8px 50px 8px 10px;
  }
  .home-wrap .home-column-layout .home_column_item .a-blank .home-link-button .no-link,
  .home-wrap .home-column-layout .home_column_item .a-pdf .home-link-button .no-link {
    position: relative;
  }
  .home-wrap .home-column-layout .home_column_item .a-blank .home-link-button .no-link::before,
  .home-wrap .home-column-layout .home_column_item .a-pdf .home-link-button .no-link::before {
    position: absolute;
    top: 50%;
    right: 10px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    background-size: 250px auto;
    content: "";
  }
  .home-wrap .home-column-layout .home_column_item .a-blank .home-link-button .no-link::before {
    width: 12px;
    height: 10px;
    margin-top: -5px;
    background-position: -75px -100px;
  }
  .home-wrap .home-column-layout .home_column_item .a-pdf .home-link-button .no-link::before {
    width: 32px;
    height: 13px;
    margin-top: -6px;
    background-position: -25px -125px;
  }
  
  /* home-slide-link */
  .home-slide-link {
    margin-top: 16px;
  }
  .home-slide-link + .home-slide-link {
    margin-top: 35px;
  }
  .home-slide-link .home_slide_inner .js-home_images_area {
    -webkit-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  .home-slide-link .home_slide_inner .js-home_text_area {
    -webkit-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  .home-slide-link .home_slide_inner.is-move .js-home_images_area,
  .home-slide-link .home_slide_inner.is-move .js-home_text_area {
    opacity: 0;
  }
  .home-slide-link[data-slide-link="right"] .home_slide_inner.is-move .js-home_images_area {
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }
  .home-slide-link[data-slide-link="right"] .home_slide_inner.is-move .js-home_text_area {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
  }
  .home-slide-link[data-slide-link="left"] .home_slide_inner.is-move .js-home_images_area {
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }
  .home-slide-link[data-slide-link="left"] .home_slide_inner.is-move .js-home_text_area {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }
  
  /* home-link-wrap */
  .home-link-wrap .home_link_layout {
    position: relative;
  }
  .home-link-wrap .home_link_layout a {
    text-decoration: none;
  }
  /* home_images_area */
  .home-link-wrap .home_link_layout > a .home_images_area {
    position: relative;
  }
  .home-link-wrap .home_link_layout > a .home_images_area::after {
    position: absolute;
    top: 10px;
    width: 107%;
    height: 100%;
    background: url(/common/img/com_bg01_sp.png) repeat;
    background-size: 10px auto;
    content: "";
  }
  .home-link-wrap.type-link-right .home_link_layout > a .home_images_area::after {
    right: 0;
  }
  .home-link-wrap.type-link-left .home_link_layout > a .home_images_area::after {
    left: 0;
  }
  .home-link-wrap.type-link-right .home_link_layout .home_images_area {
    margin-left: 70px;
  }
  .home-link-wrap.type-link-left .home_link_layout .home_images_area {
    margin-right: 70px;
  }
  .home-link-wrap .home_link_layout > a .home_images_area .home_images_inner {
    position: relative;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
    z-index: 1;
  }
  
  /* home_text_area */
  .home-link-wrap .home_link_layout > a .home_text_area {
    position: absolute;
    top: 50%;
    margin-top: -32px;
  }
  .home-link-wrap.type-link-right .home_link_layout > a .home_text_area {
    left: 0;
  }
  .home-link-wrap.type-link-left .home_link_layout > a .home_text_area {
    right: 0;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title_area {
    position: relative;
    display: -webkit-flex;
    display: flex;
  }
  .home-link-wrap.type-link-right .home_link_layout .home_text_area .home_text_inner .home_title_area {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .home-link-wrap.type-link-left .home_link_layout .home_text_area .home_text_inner .home_title_area {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title_area .home_title {
    position: relative;
    z-index: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    height: 81px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.3;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title_area .home_title::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
    box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
  }
  .home-link-wrap.type-link-right .home_link_layout .home_text_area .home_text_inner .home_title_area .home_title {
    padding: 20px 35px 16px 60px;
    left: -25px;
  }
  .home-link-wrap.type-link-left .home_link_layout .home_text_area .home_text_inner .home_title_area .home_title {
    padding: 20px 62px 16px 55px;
    right: -25px;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title_area .home_title .title_label {
    position: relative;
    z-index: 1;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title_area .home_title .title_label::before,
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title_area .home_title .title_label::after {
    position: absolute;
    background-color: #4972d8;
    content: "";
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title_area .home_title .title_label::before {
    top: -18px;
    left: -18px;
    width: 1px;
    height: 50px;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home_title_area .home_title .title_label::after {
    top: -9px;
    left: -28px;
    width: 35px;
    height: 1px;
  }
  .home-link-wrap .home_link_layout > a .home_text_area .home_text_inner .home-link-button {
    position: absolute;
    margin-top: -15px;
  }
  .home-link-wrap.type-link-right .home_link_layout > a .home_text_area .home_text_inner .home-link-button {
    right: 56px;
  }
  .home-link-wrap.type-link-left .home_link_layout > a .home_text_area .home_text_inner .home-link-button {
    right: 10px;
  }
  
  /* ----- home-wrap-v2 ----- */
  .home-wrap-v2 {
    margin-top: 45px;
    padding: 20px 10px;
    background: rgba(0,0,0,0.5);
  }
  .home-wrap-v2 .home-inner {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  
  /* home-link-layout */
  .home-link-layout {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .home-link-layout .home_link_item {
    position: relative;
    width: 50%;
  }
  .home-link-layout .home_link_item .block {
    display: block;
  }
  .home-link-layout .home_link_item > a {
    position: relative;
    width: 120%;
    text-decoration: none;
    overflow: hidden;
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
  }
  .home-link-layout .home_link_item[data-link-item="ir"] > a {
    z-index: 1;
    left: -20%;
  }
  .home-link-layout .home_link_item > a .home-link_set {
    position: absolute;
    width: 136%;
  }
  .home-link-layout .home_link_item[data-link-item="ir"] > a .home-link_set {
    left: 0;
  }
  .home-link-layout .home_link_item[data-link-item="csr"] > a .home-link_set {
    right: -30px;
  }
  .home-link-layout .home_link_item > a .home-link_detail {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 15px 0;
    -webkit-transform: skewX(27.4deg);
    transform: skewX(27.4deg);
  }
  .home-link-layout .home_link_item[data-link-item="ir"] > a .home-link_detail {
    padding-left: 20px;
  }
  .home-link-layout .home_link_item[data-link-item="csr"] > a .home-link_detail {
    padding-right: 20px;
  }
  .home-link-layout .home_link_item > a .home-link_detail .home_link_title {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
  }
  .home-link-layout .home_link_item > a .home-link_detail .home-link-button {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 2px;
  }
  .home-link-layout .home_link_item > .a-pdf .home-link_detail .home-link-button .no-link {
    padding: 8px 30px 8px 0;
  }
  .home-link-layout .home_link_item > .a-blank .home-link_detail .home-link-button .no-link,
  .home-link-layout .home_link_item > .a-pdf .home-link_detail .home-link-button .no-link {
    position: relative;
  }
  .home-link-layout .home_link_item > .a-blank .home-link_detail .home-link-button .no-link::before,
  .home-link-layout .home_link_item > .a-pdf .home-link_detail .home-link-button .no-link::before {
    position: absolute;
    top: 50%;
    right: 10px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    background-size: 250px auto;
    content: "";
  }
  .home-link-layout .home_link_item > .a-blank .home-link_detail .home-link-button .no-link::before {
    width: 12px;
    height: 10px;
    margin-top: -5px;
    background-position: -75px -100px;
  }
  .home-link-layout .home_link_item > .a-pdf .home-link_detail .home-link-button .no-link::before {
    width: 32px;
    height: 13px;
    margin-top: -6px;
    background-position: -25px -125px;
  }
  
  /* ----- home-wrap-v3 ----- */
  .home-wrap-v3 {
    margin-top: 75px;
    padding: 0 10px;
  }
  .home-wrap-v3 .home-inner {
    width: 100%;
    margin: 0 auto;
  }
  .home-wrap-v3 .home_heading_layout {
    text-align: center;
  }
  .home-wrap-v3 .home_heading_layout .home_title_lv2 {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.0;
  }
  .home-wrap-v3 .home_heading_layout .home_caption_v2 {
    font-size: 1.0rem;
  }
  
  /* topics-slider-layout */
  .topics-slider-layout {
    margin-top: 10px;
  }
  .topics-slider-layout .topics_list {
    margin: 0 -10px;
  }
  .topics-slider-layout .topics_list .topics_item {
    margin: 10px;
  }
  .topics-slider-layout .topics_list .topics_item .block {
    display: block;
  }
  .topics-slider-layout .topics_list .topics_item > .block {
    position: relative;
    width: 100%;
    text-decoration: none;
  }
  .topics-slider-layout .topics_list .topics_item > .block.a-blank::after,
  .topics-slider-layout .topics_list .topics_item > .block.a-pdf::after {
    position: absolute;
    top: 4px;
    content: "";
  }
  .topics-slider-layout .topics_list .topics_item > .block.a-blank::after {
    right: 5px;
    width: 12px;
    height: 10px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat -75px -100px;
    background-size: 250px auto;
  }
  .topics-slider-layout .topics_list .topics_item > .block.a-pdf::after {
    right: 0;
    width: 32px;
    height: 13px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat -25px -125px;
    background-size: 250px auto;
  }
  
  /* topics_images */
  .topics-slider-layout .topics_list .topics_item > .block .topics_images {
    box-shadow: 3px 3px 16px rgba(0,0,0,0.5);
  }
  
  /* topics_date */
  .topics-slider-layout .topics_list .topics_item > .block .topics_date {
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 1.2rem;
    overflow: hidden;
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_date .topics_date_inner {
    position: relative;
    padding: 1px 25px 3px 10px;
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_date .topics_date_inner::after {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    -webkit-transform: skewX(-27.4deg);
    transform: skewX(-27.4deg);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_date .topics_date_inner .date_label {
    position: relative;
    z-index: 1;
    color: #fff;
  }
  
  /* topics_detail */
  .topics-slider-layout .topics_list .topics_item > .block .topics_detail {
    padding: 10px 0;
    background: rgba(0,0,0,1.0);
    color: #fff;
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_detail .topics_title {
    position: relative;
    padding: 0 20px; 
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_detail .topics_title::after {
    position: absolute;
    top: 7px;
    left: 0;
    width: 14px;
    height: 1px;
    background-color: #3569ec;
    content: "";
  }
  .topics-slider-layout .topics_list .topics_item > .block .topics_detail .topics_text {
    overflow: hidden;
    padding: 5px 18px 0px;
    font-size: 1.0rem;
    color: #fff;
  }
  
  /* slick-dots */
  .topics-slider-layout .slick-dots {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 10px;
  }
  .topics-slider-layout .slick-dots > li {
    width: 11px;
    height: 11px;
    background-color: #a3a4a5;
    border: none;
    border-radius: 50%;
    text-indent: -9999px;
  }
  .topics-slider-layout .slick-dots > li:hover {
    cursor: pointer;
  }
  .topics-slider-layout .slick-dots > li.slick-active {
    background-color: #000;
  }
  .topics-slider-layout .slick-dots > li + li {
    margin-left: 14px;
  }
  
  /* ----- home-wrap-v4 ----- */
  .home-wrap-v4 {
    margin-top: 30px;
    padding: 20px 10px;
    background: rgba(0,0,0,0.5);
  }
  .home-wrap-v4 .home-inner {
    width: 100%;
    margin: 0 auto;
  }
  
  /* home-tab-layout */
  .home-wrap-v4 .home-tab-layout > *:first-child {
    margin-top: 0 !important;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_navi.tab_top .home_tab_list > li {
    padding-bottom: 9px;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_navi.tab_bottom .home_tab_list > li {
    padding-top: 9px;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-sp-row] > li {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    margin-left: 10px;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-sp-row="1"] > li,
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-sp-row="2"] > li:nth-child(2n+1),
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-sp-row="3"] > li:nth-child(3n+1) {
    margin-left: 0 !important;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-sp-row="2"] > li {
    width: calc((100% - 10px) / 2);
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list[data-tab-sp-row="3"] > li {
    width: calc((100% - 20px) / 3);
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list > li > a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 7px 5px 9px;
    background-color: #fff;
    font-size: 1.2rem;
    color: #000;
    text-decoration: none;
    text-align: center;
    box-shadow: 3px 3px 16px rgba(0,0,0,0.5);
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list > .is-current > a {
    background-color: #000;
    color: #fff;
  }
  .home-wrap-v4 .home-tab-layout .home_tab_list > .is-current > a .is-balloon {
    position: absolute;
    bottom: -12px;
    left: 0;
    display: block;
    width: 100%;
    height: 12px;
    background: url(/common/img/com_balloon_bg01_sp.png) no-repeat center top;
    background-size: 100% 12px;
  }
  .home-wrap-v4 .home-tab-layout > .home_tab_detail {
    display: none;
    padding: 20px 0 0;
  }
  .home-wrap-v4 .home-tab-layout > .home_tab_detail > *:first-child,
  .home-wrap-v4 .home-tab-layout > .home_tab_detail > section:first-child [class*="heading"] {
    margin-top: 0 !important;
  }
  
  /* home-news-layout */
  .home-wrap-v4 .home-news-layout {
    box-shadow: 3px 3px 16px rgba(0,0,0,0.5);
  }
  .home-wrap-v4 .home-news-layout .home_news_area {
    padding: 20px;
    border-top: 1px solid #000;
    background-color: #fff;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .news_article + .news_article {
    margin-top: 20px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .block {
    outline: none;
    text-decoration: none;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .news_detail {
  }
  .home-wrap-v4 .home-news-layout .home_news_area .news_property {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .news_date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
  }
  .home-wrap-v4 .home-news-layout .home_news_area [class*="news_icon"] {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    padding: 0 10px;
    font-size: 1.1rem;
    color: #022a8d;
    text-align: center;
  }
  .home-wrap-v4 .home-news-layout .home_news_area [class*="news_icon"]::before,
  .home-wrap-v4 .home-news-layout .home_news_area [class*="news_icon"]::after {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #022a8d;
    content: "";
  }
  .home-wrap-v4 .home-news-layout .home_news_area [class*="news_icon"]::before {
    left: 0;
  }
  .home-wrap-v4 .home-news-layout .home_news_area [class*="news_icon"]::after {
    right: 0;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .news_title {
    -webkit-flex: 1;
    flex: 1;
    line-height: 1.6;
    font-size: 1.2rem;
  }
  .home-wrap-v4 .home-news-layout .home_news_area a .news_title {
    font-size: 1.2rem;
    color: #000;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-blank .news_title::after,
  .home-wrap-v4 .home-news-layout .home_news_area .a-pdf .news_title::after {
    vertical-align: top;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    background-size: 250px auto;
    content: "";
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-blank .news_title::after {
    width: 12px;
    height: 10px;
    background-position: -50px -100px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-pdf .news_title::after {
    width: 32px;
    height: 13px;
    background-position: -25px -125px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-blank::after,
  .home-wrap-v4 .home-news-layout .home_news_area .a-pdf::after {
    display: none;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-blank .news_title::after {
    display: inline-block;
    margin: .4em 0 0 5px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area .a-pdf .news_title::after {
    display: inline-block;
    margin: .35em 0 0 10px;
  }
  .home-wrap-v4 .more-link-button {
    margin-top: 0;
    padding: 0 0 15px 0;
    background-color: #fff;
  }
  
  /* ir_news_area */
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr + tr > td:first-child {
    padding-top: 10px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td.icon {
    display: inline-block;
    padding-left: 5px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td.icon > img {
    vertical-align: middle;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td.txt {
    display: table;
    margin-left: -74px;
  }
  .home-wrap-v4 .home-news-layout .home_news_area.ir_news_area > table > tbody > tr > td.pdf {
    display: table;
    margin-left: -74px;
  }
  
  /* more-link-button */
  .more-link-button {
    text-align: center;
  }
  .more-link-button > a {
    display: inline-block;
    position: relative;
    min-width: 97px;
    padding: 4px 20px 6px;
    background: #022a8d;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    overflow:hidden;
    box-shadow: 3px 3px 16px rgba(0,0,0,0.4);
  }
  .more-link-button > .a-blank::before,
  .more-link-button > .a-pdf::before {
    position: absolute;
    top: 50%;
    right: 10px;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    background-size: 250px auto;
    content: "";
    z-index: 1;
  }
  .more-link-button > .a-blank::before {
    width: 12px;
    height: 10px;
    margin-top: -5px;
    background-position: -75px -100px;
  }
  .more-link-button > .a-pdf::before {
    width: 32px;
    height: 13px;
    margin-top: -6px;
    background-position: -25px -125px;
  }
  
  /* ----- home-wrap-v5 ----- */
  .home-wrap-v5 {
    padding: 20px 10px;
    background-color: #dfdfdf;
  }
  .home-wrap-v5 .home-inner {
    width: 100%;
    margin: 0 auto;
  }
  .home-wrap-v5 .home-link-button {
    width: 100%;
    margin-top: 0;
  }
  .home-wrap-v5 .home-link-button > li {
    position: relative;
    display: -webkit-flex;
    display: flex;
  }
  .home-wrap-v5 .home-link-button > li + li {
    margin-top: 15px;
  }
  .home-wrap-v5 .home-link-button > li::after {
    position: absolute;
    top: 50%;
    background: url(/common/img/cmn_sprite_ic01.png) no-repeat;
    background-size: 250px auto;
    content: "";
  }
  .home-wrap-v5 .home-link-button > li.is-stockprice::after {
    left: 13px;
    width: 24px;
    height: 25px;
    margin-top: -12px;
    background-position: -125px -375px;
  }
  .home-wrap-v5 .home-link-button > li.is-company::after {
    left: 9px;
    width: 34px;
    height: 25px;
    margin-top: -12px;
    background-position: -200px -375px;
  }
  .home-wrap-v5 .home-link-button > li.is-settlement::after {
    left: 9px;
    width: 32px;
    height: 26px;
    margin-top: -13px;
    background-position: -25px -400px;
  }
  .home-wrap-v5 .home-link-button > li > a {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 13px 35px;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
  }
  .home-wrap-v5 .home-link-button > li > a .link_label {
    display: inline-block;
    line-height: 1.5;
  }
  .home-wrap-v5 .home-link-button > li > .a-pdf {
    padding: 13px 20px;
  }
  
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }
}

/* ======================================================
 * SP Media Queries
====================================================== */
/* ----- home-hero ----- */
@media screen and (min-width: 500px) and (max-width: 767px) {
  .home-hero .hero_lead {
    margin-top: 20%;
  }
  .hero_lead_text01 img {
    width: 500px;
  }
  .hero_lead_text02 img {
    width: 360px;
  }
  .home-info .emergency_news {
    margin-top: 15%;
  }
  .home-link-wrap .home_link_layout > a .home_images_area .home_images_inner > img {
    width: 100%;
  }
}
/* ----- home-wrap ----- */
@media screen and (min-width: 550px) and (max-width: 620px) {
  /* home-column-layout */
  .home-wrap .home-column-layout .home_column_item .home_column_title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 621px) and (max-width: 720px) {
  /* home-column-layout */
  .home-wrap .home-column-layout .home_column_item .home_column_title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 721px) and (max-width: 767px) {
  /* home-column-layout */
  .home-wrap .home-column-layout .home_column_item .home_column_title {
    font-size: 2.2rem;
  }
}

/* ======================================================
 * Print
====================================================== */
@media print {
}