@charset "utf-8";

/* ======================================================
 * layout_sp.css
 * ------------------------------------------------------
 * @media only screen and (max-width: 767px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Assist
 * - Footer
 * - Other
 * - Clearfix
 * Media Queries
====================================================== */

@media only screen and (max-width: 767px) {
  
  .is-scroll-prevent {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
  
  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  .Header {
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    background-color: #fff;
    height: 60px;
    padding: 5px 5px 5px 15px;
    z-index: 1000;
  }
  
  /* ----- header-identity ----- */
  .header-identity img {
    width: auto;
    height: 26px;
  }
  
  /* ----- header-utility ----- */
  .header-utility_list > li {
    display: none;
  }
  .header-utility_list > .header-utility_search {
    position: absolute;
    top: 5px;
    right: 60px;
    display: block;
  }
  .header-utility_search_link {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
  }
  .header-utility_search_link::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    display: block;
    width: 18px;
    height: 18px;
    margin-left: -9px;
    background: url(../img/com_sprite01.png) no-repeat -120px -60px;
    background-size: 240px auto;
  }
  .header-utility_search_label {
    position: absolute;
    bottom: 8px;
    left: 0;
    display: block;
    width: 100%;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  .header-search {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(217, 224, 228, .8);
    z-index: 2000;
  }
  .header-search_inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
  }
  .header-search_block {
    width: 100%;
    padding: 0 20px;
  }
  .header-site-search {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .header-site-search_input {
    width: calc(100% - 60px);
    height: 50px;
    padding: 0 10px;
    background-color: #ecf0f2;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    font-size: 1.6rem;
    outline: none;
  }
  .header-site-search_submit-wrap {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 0 0 10px;
    cursor: pointer;
  }
  .header-site-search_submit-wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    background: url(../img/com_sprite01.png) no-repeat -160px -60px;
    background-size: 240px auto;
    cursor: pointer;
    pointer-events: none;
  }
  .header-site-search_submit {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
    font-size: 0;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .header-search_block-v2 {
    margin-top: 30px;
  }
  .header-search_close_link {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    background-color: #333;
    border: none;
    border-radius: 50%;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    cursor: pointer;
  }
  .header-search_close_link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    background: url(../img/com_sprite01.png) no-repeat -180px -60px;
    background-size: 240px auto;
    cursor: pointer;
  }
  .header-utility_list > .header-utility_menu {
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
  }
  .header-utility_menu_link {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
  }
  .header-utility_menu_link::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    display: block;
    width: 18px;
    height: 18px;
    margin-left: -9px;
    background: url(../img/com_sprite01.png) no-repeat -140px -60px;
    background-size: 240px auto;
  }
  .header-utility_menu_link.is-open::before {
    background-position: -180px -60px;
  }
  .header-utility_menu_label {
    position: absolute;
    bottom: 8px;
    left: 0;
    display: block;
    width: 100%;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  
  /* ------------------------------------------------------
   * Gnav
  ------------------------------------------------------ */
  .GnavBody {
    display: none;
  }
  
  /* ------------------------------------------------------
   * MegaDrop
  ------------------------------------------------------ */
  .MegaDrop {
    display: none;
    overflow: scroll;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 25px 20px 120px;
    background-color: #d9e0e4;
    -webkit-overflow-scrolling: touch;
  }
  .MegaDropBody > *:first-child {
    margin-top: 0;
  }
  .MegaDrop .header-utility_global_link,
  .MegaDrop .header-utility_catalog_link {
    position: relative;
    display: block;
    padding: 15px 30px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.8rem;
    color: #333;
    line-height: 1.2;
    text-align: center;
  }
  .MegaDrop .header-utility_global_link::before,
  .MegaDrop .header-utility_catalog_link::before {
    content: "";
    position: absolute;
    bottom: -3px;
    right: -1px;
    width: 0;
    height: 0;
    border-top: solid 9px #ccc;
    border-right: solid 9px #d9e0e4;
    border-bottom: solid 9px #d9e0e4;
    border-left: solid 9px #ccc;
    border-radius: 9px 0 0 0;
  }
  .MegaDrop .header-utility_global_label,
  .MegaDrop .header-utility_catalog_label {
    position: relative;
    display: inline-block;
  }
  .MegaDrop .header-utility_global_label {
    padding-left: 45px;
  }
  .MegaDrop .header-utility_global_label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    background-image: url(../img/com_sprite01.png);
    background-repeat: no-repeat;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }
  .MegaDrop .header-utility_global_label::before {
    background-position: -120px 0;
  }
  .MegaDrop .header-utility_catalog_link {
    margin-top: 15px;
  }
  .MegaDrop .header-utility_sample_link {
    position: relative;
    display: block;
    margin-top: 15px;
    padding: 18px 40px;
    background-color: #ef7c0a;
    border-radius: 10px;
    box-shadow: 0 2px 0 0 rgba(204, 204, 204, 1);
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
  }
  .MegaDrop .header-utility_sample_link::before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 0;
    border-top: solid 9px #bc5e00;
    border-right: solid 9px #d9e0e4;
    border-bottom: solid 9px #d9e0e4;
    border-left: solid 9px #bc5e00;
    border-radius: 9px 0 0 0;
  }
  .MegaDrop .header-utility_sample_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background: url(../img/com_sprite01.png) no-repeat -140px 0;
    background-size: 240px auto;
  }
  .MegaDrop .header-utility_sample_label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    line-height: 1.4;
  }
  .MegaDrop .header-utility_sample_label br {
    display: none;
  }
  .MegaDrop .header-utility_sample_label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 24px;
    height: 18px;
    margin-top: -9px;
    background: url(../img/com_sprite01.png) no-repeat -200px 0;
    background-size: 240px auto;
  }
  .MegaDrop .header-utility_access {
    overflow: hidden;
    margin-top: 31px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-bottom-width: 3px;
    border-radius: 10px;
  }
  .MegaDrop .header-utility_access_link {
    position: relative;
    display: block;
    padding: 20px;
    font-weight: 700;
    font-size: 1.8rem;
    color: #333;
    line-height: 1.4;
    text-align: center;
  }
  .MegaDrop .header-utility_access_link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 17px;
    height: 1px;
    margin-top: -1px;
    background-color: #333;
  }
  .MegaDrop .header-utility_access_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 28px;
    display: block;
    width: 1px;
    height: 17px;
    margin-top: -9px;
    background-color: #333;
  }
  .MegaDrop .header-utility_access_link.is-open::after {
    display: none;
  }
  .MegaDrop .header-access {
    display: none;
    padding: 16px 15px 15px;
    background-color: #f8f9fa;
  }
  .MegaDrop .header-access-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .MegaDrop .header-access-list_item {
    width: calc((100% - 10px) / 2);
    margin: 10px 0 0 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-bottom-width: 3px;
    border-radius: 8px;
  }
  .MegaDrop .header-access-list_item:nth-child(-n+2) {
    margin-top: 0;
  }
  .MegaDrop .header-access-list_item:nth-child(2n-1) {
    margin-left: 0;
  }
  .MegaDrop .header-access-list_link {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    height: 100%;
    padding: 12px 10px 11px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
  }
  .MegaDrop .header-access-list_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background: url(../../../english/common/img/com_sprite01.png) no-repeat -120px 0;
    background-size: 240px auto;
  }
  .MegaDrop .header-utility_access_label {
    display: inline-block;
    line-height: 1.4;
  }
  .megadrop-block,
  .megadrop-block_recruit {
    overflow: hidden;
    margin-top: 29px;
    background-color: #333;
    border-radius: 10px;
  }
  .megadrop-block_title > span,
  .megadrop-block_title > a,
  .megadrop-block_recruit > a {
    position: relative;
    display: block;
    padding: 20px;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }
  .megadrop-block_title > span::before,
  .megadrop-block_title > a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 17px;
    height: 1px;
    margin-top: -1px;
    background-color: #fff;
  }
  .megadrop-block_title > span::after,
  .megadrop-block_title > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 28px;
    display: block;
    width: 1px;
    height: 17px;
    margin-top: -9px;
    background-color: #fff;
  }
  .megadrop-block_title.is-open > span::after,
  .megadrop-block_title.is-open > a::after{
    display: none;
  }
  .megadrop-block_list {
    position: relative;
    display: none;
    padding: 18px 15px;
  }
  .megadrop-block_list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    background-color: #ccc;
  }
  .megadrop-block_list .megadrop-block_list {
    display: block;
    padding: 0;
  }
  .megadrop-block .pickup_title {
      color: #fff;
      font-weight: bold;
      font-size: 2.0rem;
    }
  .megadrop-block .pickup_detail {
      color: #fff;
      font-size: 1.4rem;
    }
  .catalog-layout .megadrop-block_list {
    display: block;
  }
  .megadrop-block_list .megadrop-block_list::before {
    display: none;
  }
  .megadrop-block_list > li:not(.megadrop-block_list-top) {
    margin-top: 18px;
    line-height: 1.4;
  }
  .megadrop-block_list_item > a {
    font-size: 1.4rem;
    color: #fff;
  }
  .megadrop-block_column_item {
    position: relative;
    background-color: #fff;
  }
  .megadrop-block_column_label {
    position: relative;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, .85);
    font-weight: 700;
    font-size: 1.6rem;
    color: #333;
    line-height: 1.2;
    text-align: center;
  }
  .megadrop-block[data-megadrop-category="about"] .megadrop-block_list-top {
    display: none;
  }
  .megadrop-block[data-megadrop-category="about"] .megadrop-block_list-top + li {
    margin-top: 0;
  }
  .megadrop-block_list-top > a,
  .megadrop-block .pickup_title .pickup_mark{
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    line-height: 1.4;
  }
  .megadrop-block_list-top > a,
  .megadrop-block .pickup_title .pickup_mark{
    position: relative;
    display: inline-block;
    padding-left: 30px;
  }
  .megadrop-block_list-top > a::before,
  .megadrop-block .pickup_title .pickup_mark::before{
    content: "";
    position: absolute;
    top: .3em;
    left: 0;
    display: inline-block;
    width: 30px;
    height: 20px;
    background: url(../img/com_sprite01.png) no-repeat -120px -40px;
    background-size: 240px auto;
  }
  
  /* catalog-layout */
  .MegaDrop .catalog-layout {
    display: none;
  }
  .MegaDrop .catalog-layout_download {
    margin-top: 18px;
    padding: 0 15px 18px;
  }
  .MegaDrop .catalog-layout_download_block {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 120px;
    padding: 18px 0;
    background-color: #f9f9f9;
    color: #333;
    text-decoration: none;
  }
  .MegaDrop .catalog-layout_title {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    width: calc(100% - 146px);
    padding-right: 18px;
    text-align: center;
    line-height: 1.2;
    order: 2;
  }
  .MegaDrop .catalog-layout_title_label {
    display: block;
    font-size: 1.4rem;
  }
  .MegaDrop .catalog-layout_title_label-v2 {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.8rem;
  }
  .MegaDrop .catalog-layout_image {
    position: relative;
    width: 146px;
    padding: 0 18px;
    text-align: center;
    order: 1;
  }
  .MegaDrop .catalog-layout_image > figure {
    position: absolute;
    top: 0;
    left: 18px;
    display: inline-block;
    width: 110px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  }
  
  /* megadrop-support */
  .megadrop-support-faq {
    padding: 18px 15px;
    background-color: #484848;
  }
  .megadrop-support-faq_title {
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.4;
  }
  .megadrop-support-faq_list {
    margin-top: 15px;
  }
  .megadrop-support-faq_list_item {
    margin-top: 10px;
  }
  .megadrop-support-faq_list_item:first-child {
    margin-top: 0;
  }
  .megadrop-support-faq_list_item > a {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.4;
  }
  .megadrop-support-faq_list_item > a::before {
    content: "";
    position: absolute;
    top: -.1em;
    left: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/com_sprite01.png) no-repeat -180px -20px;
    background-size: 240px auto;
  }
  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
    padding-top: 60px;
  }
  .MainBody {
    padding-top: 25px;
  }
  
  /* ----- pageGuide ----- */
  .pageGuide {
    display: none;
    width: 100%;
  }
  /* breadcrumbs */
  .breadcrumbs {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 0;
  }
  .container[data-wide="true"] .breadcrumbs {
    max-width: 100%;
  }
  .breadcrumbs > li {
    position: relative;
    float: left;
    padding: 0 13px 0 20px;
  }
  .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: 700;
  }
  
  /* ----- pageHead ----- */
  .pageHead {
    padding: 0 15px;
  }
  
  /* ----- container ----- */
  .container {
    overflow: hidden;
    margin-top: 30px;
    padding: 0px 8px;
  }
  
  /* contents */
  .contents > *:first-child,
  .contents > section:first-child > * {
    margin-top: 0;
  }
  /* sidebar */
  .sidebar {
    display: none;
  }
  
  /* yupogreen */
  .yupogreen_contents .heading-lv1{
      margin-top: 35px;
  }
  .yupogreen_contents p{
      margin-top: 20px !important;
  }
  .yupogreen_contents .column-layout{
      margin-top: 20px;
  }
  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  .Footer {
    margin-top: 40px;
    border-top: 1px solid #ccc;
  }
  .FooterUtility {
    padding: 20px 15px 30px;
  }
  .footer-sitemap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer-sitemap-block {
    width: 100%;
    /*! margin: 15px 0 0 6px; */
    margin: 20px 0px;
  }
  .footer-sitemap-block.wx{width:46%;display: none;}
  .footer-sitemap-block dt{margin-bottom: 20px;}
  .footer-sitemap-block dd{margin:5px 0px;}
  .footer-sitemap-block:nth-child(-n+3) {
    /*! margin-top: 0; */
  }
  footer-sitemap-block.wx{width:48% !important;;}
  .footer-sitemap-block:nth-child(3n+1) {
    /*! margin-left: 0; */
  }
  .footer-sitemap-block:last-child {
    /*! display: -webkit-flex; */
    /*! display: flex; */
    /*! -webkit-flex-wrap: wrap; */
    /*! flex-wrap: wrap; */
    /*! -webkit-justify-content: space-between; */
    /*! justify-content: space-between; */
    width: 100%;
    /*! margin: 20px -15px 0; */
    /*! padding: 30px 15px 0; */
    border-top: 1px solid #ccc;
    /*! display: none; */
  }
  .footer-sitemap-block:last-child .footer-sitemap-block_link {
    width: calc((100% - 10px) / 3);
    margin-top: 20px;
  }
  .footer-sitemap-block:last-child .footer-sitemap-block_link:nth-child(-n+3) {
    margin-top: 0;
  }
  .footer-sitemap-block_link > a {
    position: relative;
    display: block;
    padding-left: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    color: #333;
    line-height: 1.4;
  }
  .footer-sitemap-block_link > a::before {
    content: "";
    position: absolute;
    top: .1em;
    left: 0;
    display: inline-block;
    width: 23px;
    height: 15px;
    background: url(../img/com_sprite01.png) no-repeat -160px -40px;
    background-size: 240px auto;
  }
  .footer-sitemap-block:last-child .footer-sitemap-block_link > a {
    padding-left: 0;
  }
  .footer-sitemap-block:last-child .footer-sitemap-block_link > a::before {
    display: none;
  }
  .footer-sitemap-block_link-v2 {
    display: none;
  }
  .FooterBody {
    padding: 0 15px 20px;
  }
  
  /* ----- footer-link ----- */
  .footer-link {
    padding: 20px 0 15px;
    border-top: 1px solid #ccc;
  }
  .footer-link-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .footer-link-list_item {
    width: calc((100% - 20px) / 2);
    margin-top: 10px;
  }
  .footer-link-list_item:nth-child(-n+2) {
    margin-top: 0;
  }
  .footer-link-list_item > a {
    display: block;
    font-weight: 500;
    font-size: 1.3rem;
    color: #333;
    line-height: 1.4;
  }
  
  /* ----- footer-copyright ----- */
  .footer-copyright {
    padding-right: 45px;
    font-size: 1.2rem;
  }
  
  /* ----- Pagetop ----- */
  .Pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 500;
  }
  .Pagetop > a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
  }
  .Pagetop > a:hover {
    opacity: .8;
  }
  .Pagetop > a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 20px;
    height: 10px;
    margin: -5px 0 0 -10px;
    background: url(../img/com_sprite01.png) no-repeat -220px -20px;
    background-size: 240px auto;
  }
  
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .breadcrumbs::after {
    display: block;
    clear: both;
    content: "";
  }
}
