  @charset "utf-8";

/* ======================================================
 * layout_pc.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Assist
 * - Footer
 * - Other
 * - Clearfix
 * Media Queries
 * Print
====================================================== */

@media print, screen and (min-width: 768px) {
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */

  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  .Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-family: "Noto Sans CJK JP";
    z-index: 9999;
  }
  .HeaderBody {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 80px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }
  .header-identity_link,
  .gnav-list_link,
  .subnavi-list_link,
  .utility-english_link {
    color: #333 !important;
  }

  /* header-identity */
  .header-identity {
    width: 356px;
  }
  .header-identity_link {
    overflow: hidden;
    display: block;
    width: 100%;
    height: 30px;
    background: url(/jp/common/img/com_logo01.png) no-repeat 0 50%;
    white-space: nowrap;
    text-indent: 100%;
  }
  .search-area {
    display: none;
  }
  .search-area_inner {
    position: absolute;
    top: 80px;
    left: 0;
    padding: 25px 80px;
    width: 100%;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .search-form {
    flex-grow: 1;
    position: relative;
    border-bottom: 1px solid #fff;
    padding: 10px 0 10px 50px;
  }
  .search-form::before {
    position: absolute;
    left: 11px;
    top: 10px;
    background: url(/jp/common/img/com_sprite01.png) no-repeat -80px -282px;
    display: inline-block;
    width: 26px;
    height: 26px;
    content: "";
    margin-right: 15px;
  }
  .search-form input {
    border: none;
    outline: none;
  }
  .search-form input[type="text"] {
    background-color: #444;
    color: #fff;
    height: 26px;
    padding: 0;
    margin-right: 20px;
    width: calc(100% - 60px);
  }
  .search-form input[type="submit"] {
    background: url(/jp/common/img/com_sprite01.png) no-repeat 0 -282px;
    width: 31px;
    height: 18px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
	.search-form input:-ms-input-placeholder {
		color: #777;
	}
  .search-area .search-close {
    margin-left: 90px;
    width: 29px;
    height: 29px;
  }
  .search-area .search-close a {
    background: url(/jp/common/img/com_sprite01.png) no-repeat -40px -282px;
    display: block;
    width: 29px;
    height: 29px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
  }

  /* gnav */
  .gnav {
    -webkit-flex: 1;
    flex: 1;
  }
  .gnav-body {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .gnav-main {
    padding: 0 45px;
  }
  .gnav-list {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    height: 78px;
  }
  .gnav-list_link {
    display: block;
    padding: 0 18px;
    font-weight: 500;
    text-decoration: none !important;
  }
  .gnav-list_item.is-current .gnav-list_label,
  .gnav-list_link:hover .gnav-list_label {
    display: block;
    position: relative;
  }
  .gnav-list_item.is-current .gnav-list_label::before,
  .gnav-list_link .gnav-list_label::before {
    opacity: 0;
    -webkit-transition: opacity .2s ease-out 0s;
    transition: opacity .2s ease-out 0s;
  }
  .gnav-list_item.is-current .gnav-list_label::before,
  .gnav-list_link:hover .gnav-list_label::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #e50014;
    opacity: 1;
  }

  /* gnav-sub */
  .gnav-sub-body {
    padding: 0 48px 0 0;
  }
  .gnav-sub-list {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .gnav-sub-list_link {
    display: block;
    padding: 0 25px;
    font-size: 1.5rem;
    color: #333 !important;
    text-decoration: none !important;
  }
  .gnav-sub-list_item.is-current .gnav-sub-list_label,
  .gnav-sub-list_link:hover .gnav-sub-list_label {
    display: block;
    position: relative;
  }
  .gnav-sub-list_item.is-current .gnav-sub-list_label::before,
  .gnav-sub-list_link .gnav-sub-list_label::before {
    opacity: 0;
    -webkit-transition: opacity .2s ease-out 0s;
    transition: opacity .2s ease-out 0s;
  }
  .gnav-sub-list_item.is-current .gnav-sub-list_label::before,
  .gnav-sub-list_link:hover .gnav-sub-list_label::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #e50014;
    opacity: 1;
  }

  /* utility */
  .utility {
    margin-left: 30px;
  }
  .utility-body {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .utility-english_link {
    position: relative;
    display: block;
    padding-top: 24px;
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .utility-english_link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    background: url(/jp/common/img/com_sprite01.png) no-repeat -40px -80px;
  }
  .utility-search {
    margin-left: 30px;
  }
  .utility-search_button {
    overflow: hidden;
    position: relative;
    display: block;
    width: 36px;
    height: 36px;
    border: 1px solid #aaa;
    white-space: nowrap;
    text-indent: 100%;
    cursor: pointer;
  }
  .utility-search_button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 16px;
    height: 17px;
    margin: -8px 0 0 -9px;
    background: url(/jp/common/img/com_sprite01.png) no-repeat 0 -80px;
  }
  .is-active .utility-search_button {
    border: 1px solid #e50014;
    background-color: #e50014;
  }
  .is-active .utility-search_button::before {
    background: url(/jp/common/img/com_sprite01.png) no-repeat -160px -282px;
  }

  /* sp-header-menu */
  .sp-header-menu {
    display: none;
  }

  /* ------------------------------------------------------
   * megadrop
  ------------------------------------------------------ */
  .megadrop {
    position: absolute;
    top: 79px;
    left: 0;
    width: 100%;
    border-top: 1px solid #ddd;
    z-index: 999;
  }
  .megadrop-block {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 30px 50px;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .megadrop-block_inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .megadrop-block_inner_body {
    display: -webkit-flex;
    display: flex;
    position: relative;
    margin-top: 20px;
  }
  .megadrop-block_inner_body > * {
    width: calc((100% - 72px) / 3);
    margin-left: 36px;
  }
  .megadrop-block_inner_body > *:nth-child(3n+1) {
    margin-left: 0;
  }
  .megadrop-block_inner_body > .megadrop-block_lead {
    position: absolute;
    left: 36px;
  }
  .megadrop-block_title-v2 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
  }
  .megadrop-block_title-v2 + * {
    margin-top: 15px;
  }
  .megadrop-block_title_link {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff !important;
  }
  .megadrop-block_lead + *,
  .megadrop-block_lead + * + * {
    margin-top: 3em;
  }
  .megadrop-block_list > ul > *:first-child,
  .megadrop-block_list > .megadrop-block_list_box:first-child {
    margin-top: 0;
  }
  .megadrop-block_list > ul > li {
    margin-top: 10px;
  }
  .megadrop-block_list > ul > li > ul {
    margin-left: 1.5em;
  }
  .megadrop-block_list_box {
    margin-top: 20px;
  }
  .megadrop-block_title_link::before {
    content: "";
		position: absolute;
		top: 17px;
		left: 0;
		width: 12px;
		height: 12px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
  }
  .megadrop-block_list_link {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff !important;
  }
  .megadrop-block_list_link::before {
    content: "";
		position: absolute;
		top: 11px;
		left: 3px;
		width: 10px;
		height: 10px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
  }
  .megadrop-block_list_link-v2 {
    position: relative;
    display: table;
    width: 100%;
    background-color: #fff;
    color: #333 !important;
  }
  .megadrop-block_list_link.a-blank::after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-left: 8px;
    background: url(/jp/common/img/com_sprite01.png) no-repeat -40px 0;
    vertical-align: baseline;
  }
  .megadrop-block_list_link-v2.a-blank::after {
    content: "";
    overflow: hidden;
    position: relative;
    display: table-cell;
    width: 204px;
    height: 130px;
    border-left: 1px solid #ebebeb;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }
  .megadrop-block_list_link-v2.a-blank span::after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-left: 8px;
    background: url(/jp/common/img/com_sprite01.png) no-repeat 0 0;
    vertical-align: baseline;
  }
  .megadrop-block_list_link-v2::before {
    content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 8px;
		height: 8px;
    margin-top: -4px;
		border-top: 1px solid #e50014;
		border-right: 1px solid #e50014;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
  }
  .megadrop-block_list_label {
    display: table-cell;
    width: calc(100% - 204px);
    height: 130px;
    padding: 10px 10px 10px 30px;
    vertical-align: middle;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .megadrop-block_list_link-v2::after {
    content: "";
    overflow: hidden;
    position: relative;
    display: table-cell;
    width: 204px;
    height: 130px;
    border-left: 1px solid #ebebeb;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
  }
  .megadrop-block_list_link-v2[data-box-background="glance"]::after {
    background-image: url(/jp/common/img/gnav_im01.jpg);
  }
  .megadrop-block_list_link-v2[data-box-background="scene"]::after {
    background-image: url(/jp/common/img/gnav_im02.png);
  }
  .megadrop-block_list_link-v2[data-box-background="strength"]::after {
    background-image: url(/jp/common/img/gnav_im03.jpg);
  }
  .megadrop-block_list_link-v2[data-box-background="hsse"]::after {
    background-image: url(/jp/common/img/gnav_im04.jpg);
  }
  .megadrop-block_list_link-v2[data-box-background="initiative"]::after {
    background-image: url(/jp/common/img/gnav_im08.jpg);
  }
  .megadrop-block_list_link-v2[data-box-background="plan"]::after {
    background-image: url(/jp/common/img/gnav_im05.png);
  }
  .megadrop-block_list_link-v2[data-box-background="summary"]::after {
    background-image: url(/jp/common/img/gnav_im06.png);
  }
  .megadrop-block_list_link-v2[data-box-background="reports"]::after {
    background-image: url(/jp/common/img/gnav_im09.png);
  }
  .megadrop-block_list_link-v2[data-box-background="media"]::after {
    background-image: url(/jp/common/img/gnav_im07.jpg);
  }
  .megadrop-block_list_link-v2[data-box-background="hydrogen"]::after {
    background-image: url(/jp/common/img/gnav_im10.jpg);
  }
  .megadrop-block_list_link-v2[data-box-background="plasticrecycle"]::after {
    background-image: url(/jp/common/img/gnav_im11.jpg);
  }
  .megadrop-block_list_link-v2[data-box-background="CCS"]::after {
    background-image: url(/jp/common/img/gnav_im12.jpg);
  }
  .megadrop-block_list_link-v2[data-box-background="hub"]::after {
    background-image: url("/jp/common/img/gnav_im14.png");
  }
  .megadrop-block_list_link-v2[data-box-background="semiconductor-special"]::after {
    background-image: url("/jp/common/img/gnav_im13.jpg");
  }
  .megadrop-block_list_link-v2[data-box-background="modular-construction-methods"]::after {
    background-image: url(/jp/common/img/gnav_im15.jpg);
  }

  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
    overflow: hidden;
    padding-top: 80px;
  }

  /* ----- pageGuide ----- */
  .pageGuide {
    width: 100%;
    margin-top: 15px;
  }

  /* breadcrumbs */
  .breadcrumbs {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0;
  }
  .container[data-wide="true"] .breadcrumbs {
    max-width: 100%;
  }
  .breadcrumbs > li {
    position: relative;
    float: left;
    padding: 0 13px 0 20px;
    font-size: 1.3rem;
  }
  .breadcrumbs > li::before {
    content: ">";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    font-weight: normal !important;
  }
  .breadcrumbs > li:first-child {
    padding-left: 0;
  }
  .breadcrumbs > li:first-child::before {
    display: none;
  }
  .breadcrumbs > li:last-child {
    font-weight: bold;
    color: #666;
  }

  /* ----- pageHead ----- */
  .pageHead {
    display: none;
  }
  .pageHead > *:first-child {
    margin-top: 0 !important;
  }
  .pageHead .heading-lv1 {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ----- container ----- */
  .container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
  }
  .container[data-wide="true"] {
    -webkit-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    padding: 0 80px;
  }

  /* contents */
  .container[data-wide="true"] .contents {
    min-height: 0%;
  }
  .contents {
    width: 100%;
    margin-top: 20px;
  }
  .container[data-sidebar="true"] .contents {
    width: calc(100% - 288px);
  }
  .contents > *:first-child {
    margin-top: 0;
  }

  /* sidebar */
  .container[data-sidebar="true"] .sidebar {
    width: 240px;
    margin-top: 20px;
    margin-left: 48px;
  }
  .sidebar > *:first-child {
    margin-top: 0;
  }
  .sidebar-trigger {
    display: none;
  }

  /* sidebar-nav */
  .sidebar-nav {
    border-left: 1px solid #ddd;
  }
  .nav_head {
    padding: 3px 0 3px 20px;
    border-left: 3px solid #e50014;
    font-family: "Noto Sans CJK JP";
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .nav_head > a {
    color: #333 !important;
  }
  .nav_block {
    padding: 20px 0 10px;
  }
  .nav_block + .nav_block {
    border-top: 1px solid #ddd;
  }
  .nav_block > *:first-child {
    margin-top: 0 !important;
  }
  .nav_title {
    padding: 0 10px 0 25px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #e50014;
    line-height: 1.4;
  }
  .nav_category.stage1 {
    margin-top: 15px;
  }
  .nav_title + .nav_category.stage1 {
    margin-top: 10px;
  }
  .nav_category.stage1 > li > a {
    display: block;
    margin-left: 25px;
    font-size: 1.5rem;
    color: #333;
    line-height: 1.4;
  }
  .nav_category.stage1 > li > a > span {
    position: relative;
    display: block;
    padding: 10px 10px 10px 20px;
  }
  .nav_category.stage1 > li > a > span::before {
    content: "";
		position: absolute;
		top: 15px;
		left: -2px;
		width: 9px;
		height: 9px;
		border-top: 1px solid #e50014;
		border-right: 1px solid #e50014;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
  }
  .nav_category.stage1 > .is-current > a {
    font-weight: bold;
  }
  .nav_category.stage2 {
    position: relative;
    margin-top: 5px;
    padding-top: 10px;
  }
  .nav_category.stage2::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 25px);
    height: 1px;
    background-color: #ddd;
  }
  .nav_category.stage2 > li > a {
    display: block;
    padding-left: 45px;
    font-size: 1.4rem;
    color: #333;
    line-height: 1.4;
  }
  .nav_category.stage2 > li > a > span {
    position: relative;
    display: block;
    padding: 10px 10px 10px 20px;
  }
  .nav_category.stage2 > li > a > span::before {
    content: "";
		position: absolute;
		top: 15px;
		left: 0;
		width: 8px;
		height: 8px;
		border-top: 1px solid #e50014;
		border-right: 1px solid #e50014;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
  }
  .nav_category.stage2 > .is-current > a {
    background-color: #f4f4f4;
    font-weight: bold;
  }
  .nav_category.stage2 > .is-current > a > span::before {
    border-color: #999;
  }
  .nav_category.stage3 {
    position: relative;
    margin-top: 5px;
  }
  .nav_category.stage3 > li > a {
    display: block;
    padding-left: 45px;
    font-size: 1.4rem;
    color: #333;
    line-height: 1.4;
  }
  .nav_category.stage3 > li > a > span {
    position: relative;
    display: block;
    padding: 7px 10px 7px 20px;
  }
  .nav_category.stage3 > li > a > span::before {
    position: absolute;
    top: 12px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e50014;
    content: "";
  }
  .nav_category.stage3 > .is-current > a {
    font-weight: bold;
  }
  .nav_category.stage1 > li > a.a-blank > span::after,
  .nav_category.stage2 > li > a.a-blank > span::after,
  .nav_category.stage3 > li > a.a-blank > span::after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-left: 8px;
    background: url(/jp/common/img/com_sprite01.png) no-repeat 0 0;
    vertical-align: middle;
  }

  /* sidebar-banner */
  .sidebar-banner {
    margin-top: 30px;
  }
  .sidebar-banner > *:first-child {
    margin-top: 0;
  }
  .banner_image {
    margin-top: 20px;
  }

  /* ------------------------------------------------------
   * Assist
  ------------------------------------------------------ */
  .Assist {
    margin-top: 100px;
    font-family: "Noto Sans CJK JP";
  }

  /* assist-sitemap */
  .assist-sitemap_trigger {
    height: 50px;
    padding: 10px 60px 10px 10px;
    background-color: #333;
    text-align: center;
    cursor: pointer;
  }
  .assist-sitemap_trigger_label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    color: #fff;
  }
  .assist-sitemap_trigger_label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-top: -7px;
    background: url(/jp/common/img/com_sprite01.png) no-repeat -400px -80px;
  }
  .is-open .assist-sitemap_trigger_label::before {
    background-position: -440px -80px;
  }
  .assist-sitemap_wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 40px 80px;
  }
  .assist-sitemap_column {
    width: 20%;
    padding: 0 10px 0 20px;
  }
  .assist-sitemap_column:first-child {
    padding-left: 0;
  }
  .assist-sitemap_column:nth-child(3) {
    -webkit-flex: 1;
    flex: 1;
  }
  .assist-sitemap_column > *:first-child {
    margin-top: 0;
  }
  .assist-sitemap_column_head {
    margin-top: 30px;
    line-height: 1.4;
  }
  .assist-sitemap_column_head > a {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    font-weight: 500;
    font-size: 1.8rem;
    color: #333 !important;
  }
  .assist-sitemap_column_head-v2 {
    margin: 20px 0 0 20px;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .assist-sitemap_column_head > a::before {
    content: "";
		position: absolute;
		top: 10px;
		left: 0;
		width: 8px;
		height: 8px;
		border-top: 1px solid #e50014;
		border-right: 1px solid #e50014;
		-webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
  }
  .assist-sitemap_column_list {
    margin: 20px 0 0 20px;
  }
  .assist-sitemap_column_head-v2 + .assist-sitemap_column_list {
    margin: 10px 0 0 40px;
  }
  .assist-sitemap_column_list > li {
    margin-top: 8px;
    line-height: 1.2;
  }
  .assist-sitemap_column_list > li:first-child {
    margin-top: 0;
  }
  .assist-sitemap_column_list > li > a {
    font-size: 1.4rem;
    color: #333 !important;
  }
  .assist-sitemap_inner {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .assist-sitemap_inner_column {
    width: 50%;
  }
  .assist-sitemap_inner_column-v2 {
    margin-left: 20px;
  }
  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  .Footer {
    position: relative;
    margin-top: 100px;
    padding: 0 80px;
    background-color: #e50014;
    font-family: "Noto Sans CJK JP";
  }
  .Assist + .Footer {
    margin-top: 0;
  }
  .FooterUtility {
    -webkit-flex: 1;
    flex: 1;
  }
  .footer_inner {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    height: 100px;
  }

  /* footer-utility-list */
  .footer-utility-list {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .footer-utility-list_item {
    margin-left: 50px;
  }
  .footer-utility-list_item:first-child {
    margin-left: 0;
  }
  .footer-utility-list_link {
    font-size: 1.5rem;
    color: #fff !important;
  }

  /* footer-sns-list */
  .footer-sns-list {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 70px;
  }
  .footer-sns-list_item {
    width: 50px;
    height: auto;
  }
  .footer-sns-list_item + .footer-sns-list_item {
    margin-left: 15px;
  }

  /* footer-copyright */
  .footer-copyright {
    margin-top: 10px;
  }
  .footer-copyright_label {
    display: inline-block;
    font-size: 1.3rem;
    color: #fff;
  }
  .footer-copyright_label br {
    display: none;
  }

  /* Pagetop */
  .Pagetop {
    position: fixed;
    right: 0;
    bottom: 0;
    display: inline-block;
    z-index: 1;
  }
  .Pagetop.is-page-end {
    position: absolute;
  }
  .pagetop_link {
    overflow: hidden;
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #e50014;
    border: 1px solid #e50014;
    text-indent: 100%;
    white-space: nowrap;
  }
  .pagetop_link::after {
    content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 14px;
		height: 14px;
    margin: -3px 0 0 -7px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(-45deg);
	  transform: rotate(-45deg);
  }
  .pagetop_link:hover {
    background-color: #fff;
  }
  .pagetop_link:hover::after {
    border-color: #e50014;
  }

  /* ------------------------------------------------------
   * Other
  ------------------------------------------------------ */

  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .breadcrumbs::after {
    display: block;
    clear: both;
    content: "";
  }
}

/* ======================================================
 * Media Queries
====================================================== */
@media screen and (min-width: 768px) and (max-width: 1800px) {
  .HeaderBody,
  .container[data-wide="true"] {
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .gnav-main {
    padding: 0 0 0 45px;
  }
  .gnav-sub-list_link {
    padding: 0 15px;
  }
  .utility {
    margin-left: 20px;
  }
  .utility-search {
    margin-left: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .HeaderBody,
  .container[data-wide="true"] {
    padding: 0 30px;
  }
  .gnav-list_link {
    padding: 0 12px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  .gnav-list_link {
    font-size: 1.5rem;
  }
  .gnav-sub-list_link {
    font-size: 1.4rem;
  }
  .utility-english_link {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1432px) {
  .gnav-main {
    padding: 0 0 0 20px;
  }
  .gnav-list_link {
    padding: 0 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .gnav-main {
    padding: 0 0 0 18px;
  }
  .gnav-sub-list_link {
    padding: 0 8px;
  }
  .utility {
    margin-left: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1360px) {
  .header-identity {
    width: 300px;
  }
  .header-identity_link {
    background-size: 100% !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .header-identity {
    width: 200px;
  }
  .header-identity_link {
    background-size: contain;
  }
  .gnav-list_link {
    padding: 0 8px;
  }
  .gnav-sub-list_link {
    padding: 0 5px;
  }
  .assist-sitemap_wrap {
    padding: 30px 10px;
  }
  .Footer {
    padding: 0 30px;
  }
  .footer-utility-list_item {
    margin-left: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1150px) {
  .HeaderBody {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .header-identity_link {
    height: 40px;
  }
  .gnav-body {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .gnav-main {
    padding: 0;
  }
  .gnav-list,
  .gnav-sub-list {
    height: 40px;
    padding-bottom: 10px;
  }
  .gnav-list_link {
    padding-left: 45px;
  }
  .gnav-sub-list_link {
    padding-left: 30px;
  }
  .gnav-list_link,
  .gnav-sub-list_link {
    padding-right: 0;
  }
  .gnav-list_item:first-child .gnav-list_link,
  .gnav-sub-list_item:first-child .gnav-sub-list_link {
    padding-left: 0;
  }
  .gnav-list_item:last-child .gnav-list_link,
  .gnav-sub-list_item:last-child .gnav-sub-list_link {
    padding-right: 0;
  }
  .gnav-list_item.is-current .gnav-list_label::before,
  .gnav-list_link:hover .gnav-list_label::before {
    bottom: 0;
  }
  .utility {
    position: absolute;
    top: 8px;
    right: 30px;
  }
  .utility-english_link {
    padding: 0 0 0 24px;
  }
  .utility-english_link::before {
    top: 50%;
    left: 0;
    margin: -10px 0 0;
  }
  .utility-search_button {
    width: 26px;
    height: 26px;
  }
  .megadrop-block_list_label {
    width: 50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .gnav-list_link {
    padding-left: 15px;
    font-size: 1.4rem;
  }
  .gnav-sub-list_link {
    padding-left: 10px;
    font-size: 1.3rem;
  }
  .container[data-sidebar="true"] .contents {
    width: calc(100% - 224px);
  }
  .container[data-sidebar="true"] .sidebar {
    width: 200px;
    margin-left: 24px;
  }
  .nav_title {
    padding: 0 10px 0 15px;
  }
  .nav_category.stage1 > li > a {
    margin-left: 15px;
  }
  .nav_category.stage2 > li > a {
    padding-left: 25px;
  }
  .nav_category.stage3 > li > a {
    padding-left: 25px;
  }
  .assist-sitemap_wrap {
    padding: 30px 20px;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .assist-sitemap_column {
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
  .assist-sitemap_column:first-child {
    margin-top: 0;
  }
  .assist-sitemap_column_head {
    margin-top: 20px;
  }
  .assist-sitemap_column_head-v2 {
    margin: 15px 0 0 20px;
  }
  .assist-sitemap_column_list,
  .assist-sitemap_column_head-v2 + .assist-sitemap_column_list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 20px;
  }
  .assist-sitemap_column_list > li,
  .assist-sitemap_column_list > li:first-child {
    margin: 5px 15px 0 0;
  }
  .assist-sitemap_inner {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .assist-sitemap_inner_column {
    width: 100%;
  }
  .Footer {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    height: auto;
    padding: 10px 30px;
  }
  .FooterUtility {
    -webkit-flex: auto;
    flex: auto;
  }
  .FooterBody {
    padding-top: 3px;
  }
}

/* ======================================================
 * Print
====================================================== */
@media print {
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
  .Pagetop {display:none!important;}

  body {
    min-width: 1260px;
  }
  .HeaderBody,
  .container,
  .Footer {
    padding: 0 10px !important;
  }
  .Header {
    position: relative;
  }
  .Main {
    padding-top: 0;
  }
  .gnav-main {
    padding: 0 0 0 30px;
  }
  .gnav-list_link,
  .gnav-sub-list_link {
    padding: 0 10px;
  }
}