@charset "UTF-8";
@import url(product_search.css);

:root {
  --color-text: #333;
  --color-text-light: #666;
  --color-kubota: #00a8a9;
  --color-kubota-text: #008486;
  --color-mono-dark: var(--color-font);
  --color-mono-light: #dedede;
  --color-mono-lighter: #f5f5f5;
  --color-border: var(--color-mono-light);
  --color-border-dark: #cccccc;
  --color-border-light: #f1f1f1;
  --color-alpha-dark: rgba(0, 0, 0, 0.6);
  --color-link: var(--color-kubota-text);
  --color-link-dark: #003A58;
  --fz-l: 1.125rem;
  --fz-s: 0.875rem;
  --fz-xs: 0.8rem;
}

/* common
--------------------------------------------------------- */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1);
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  line-height: 1.7;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"MS Pゴシック","MS PGothic",Helvetica,Arial,sans-serif;
  font-size: 100%;
  color: var(--color-text);
  background: #ffffff;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-kubota);
}
@media screen and (min-width: 768px) {
  body::before {
    position: fixed;
    z-index: 99;
  }
}


/* ----- a ----- */
a:link {
  color: var(--color-link-dark);
  text-decoration: none;
}

a:visited {
  color: #471f99;
}

a:hover {
  color: var(--color-link);
  text-decoration: underline;
}

a:active {
  color: var(--color-link-dark);
}

img {
  height: auto;
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
  padding: 0;
}

dl dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}
p + p {
  margin: 27px 0 0 0;
}
p + .list {
  margin: 27px 0 0 0;
}
p + .list.block_Section {
  margin-top: 48px;
}
p + .list.block_Section--Lebel2 {
  margin-top: 27px;
}
p + .list.block_Paragraph {
  margin-top: 18px;
}
p + .figure {
  margin: 27px 0 0 0;
}

p.txt_Lead + p,
p.txt_Lead--large + p,
p.txt_Lead--medium + p,
p.media_Lead + p {
  margin: 0;
}

em {
  font-style: normal;
}

summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

ul.textLink {
  display: flex;
  flex-direction: column;
  gap: 10px;
  li {
    a {
      display: inline-block;
      padding-left: 20px;
      background: url(../img/icon/icon_link_arrow_dark.svg) no-repeat 0 .45em;
      color: var(--color-link-dark);
      &:hover {
        color: var(--color-link);
      }
    }
  }
}


/* wrap
--------------------------------------------------------- */
#wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 3px;
  height: auto;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .is-fixed #wrap {
    padding-top: 48px;
  }
}

#wrap__Inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-right: 38px;
  padding-left: 38px;
}

#main__Content {
  margin: 0 auto 60px;
}

/* ページタイトル */
#wrap .pageHeader {
  margin-bottom: 30px;
  padding-top: 15px;
  @media screen and (max-width: 767px) {
    padding-inline: 15px;
  }
}
#wrap .pageHeader .pageHeader__h1 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 26px;
  line-height: 1.2;
  border-bottom: 1px solid var(--color-border-light);
  @media screen and (max-width: 767px) {
    font-size: 36px;
  }
}

.section-inner {
  @media screen and (max-width: 767px) {
    padding-inline: 15px;
  }
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {
  #wrap {
    min-width: 1000px;
  }

  #wrap__Inner {
    max-width: 1525px !important;
    min-width: 1000px;
  }
  #wrap__Inner:after {
    content: "";
    clear: both;
    display: block;
  }

  /* column--is1 */
  body.column--is1 #wrap__Inner {
    max-width: 1525px;/*1600px*/
    min-width: 1000px;
    margin: 0 auto;
    padding-right: 38px;
    padding-left: 38px;
  }

  body.column--is1:not(.page--Hero) #main__Content {
    margin: 0 auto 90px;
  }

  /* column--is1(page--Hero) */
  body.column--is1.page--Hero #wrap__Inner {
    /*max-width: 100%;*/
    /*min-width: 100%;*/
    padding-right: 0;
    padding-left: 0;
  }
  body.column--is1.page--Hero #main__Content {
    max-width: 100%;
    min-width: 100%;
  }
  body.column--is1.page--Hero .breadCrumbs {
    padding-left: 0;
  }
  body.column--is1.page--Hero .breadCrumbs__Inner {
    position: relative;
    display: inline-block;
    margin-top: 18px;
    padding: 5px 17px 5px 38px;
    z-index: 3;
    line-height: 1.2;
    background: #fff;
  }
  #wrap .main_h1 {
    margin: 0 auto !important;
    max-width: 1525px;
  }
  body.column--is1.page--Hero .hero {
    position: relative;
    width: 100%;
    height: auto;
    margin: -101px 0 0 0;
    z-index: 2;
  }
  body.column--is1.page--Hero .hero .hero_Img {
    width: 100%;
    height: auto;
  }
  body.column--is1.page--Hero .hero .heading_Hero {
    max-width: 1525px;/*1600px*/
    min-width: 1000px;
    margin: 0 auto;
    line-height: 1.2;
    font-weight: normal;
  }
  body.column--is1.page--Hero .hero .heading_Hero > span {
    display: inline-block;
    margin-bottom: 5px;
    padding: 2px 28px 2px 38px;
    background: #ffffff;
  }
  body.column--is1.page--Hero .hero .heading_Hero > span.heading_Bottom {
    margin-top: -6px;
  }
  body.column--is1.page--Hero .hero .heading_Hero strong {
    font-weight: normal;
    font-size: 2.3125rem;
    color: #008486;
  }
  body.column--is1.page--Hero .hero .heading_Hero .sub {
    display: block;
    margin-top: -5px;
    padding-left: 2px;
    font-size: 1rem;
    font-weight: normal;
    color: #333333;
  }
  body.column--is1.page--Hero .hero .heading_Hero--sub {
    max-width: 1525px;/*1600px*/
    min-width: 1000px;
    margin: 0 auto;
    margin-bottom: 0;
  }
  body.column--is1.page--Hero .hero .heading_Hero--sub span {
    display: inline-block;
    padding: 2px 18px 2px 42px;
    line-height: 1.2;
    color: #333333;
    font-size: 1.375rem;
    font-weight: normal;
    font-style: normal;
    background: #fff;
  }
  body.column--is1.page--Hero .hero .hero__Inner {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -40px;
  }
  body.column--is1.page--Hero .hero + .area_Index {
    margin-top: 60px;
  }

  .hero__Lead {
    padding: 53px 0 48px;
    color: #ffffff;
    font-size: 1.125rem;
  }
  .hero__Lead .txt {
    margin-bottom: 0;
    text-align: center;
  }
  .hero__Lead .list_Note {
    margin-top: 15px;
  }
  .hero__Lead + .block_Section {
    margin-top: 62px;
  }

  /* column--is1(page--minWidth) */
  body.column--is1.page--minWidth #wrap__Inner {
    max-width: 1000px;
    min-width: 1000px;
  }

  /* column--is2 */
  #column--is2 {
    width: 100%;
    float: left;
    margin-right: -673px;
  }
  #column--is2 #main__Content {
    width: 673px;
    float: right;
  }

  /* site__Inner */
  .site__Inner {
    max-width: 1525px;/*1600px*/
    min-width: 1000px;
    margin: 0 auto;
    padding-right: 38px;
    padding-left: 38px;
  }
}
/*-- //pc --*/
/*-- smartPhone --*/
@media screen and (max-width: 767px) {
  #wrap__Inner {
    padding: 0;
  }

  /* column--is1 */
  body.column--is1 #wrap__Inner {
    padding: 38px 15px 0;
  }

  /* column--is1(page--Hero) */
  body.column--is1.page--Hero #wrap__Inner {
    padding: 0;
  }

  #main__Content {
    margin: 0 auto 40px;
    padding: 0;
  }

  /* column--is2 */
  #column--is2 #main__Content {
    padding: 38px 15px 0;
  }

  .site__Inner {
    padding: 0 15px;
  }

  /* hero */
  .hero {
    width: 100%;
  }
  .hero .hero_Img {
    width: 100%;
    height: auto;
  }

  .heading_Hero {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-size: 2rem;
    font-weight: normal;
    color: #008486;
  }
  .heading_Hero strong {
    font-weight: normal;
    color: #008486;
  }
  .heading_Hero .sub {
    display: block;
    margin-top: 0;
    font-size: 1rem;
    font-weight: normal;
    color: #333333;
  }

  .heading_Hero--sub {
    margin: 0;
    padding: 0;
  }
  .heading_Hero--sub em {
    display: inline-block;
    line-height: 1.2;
    color: #333333;
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    background: #ffffff;
  }

  .hero__Inner {
    padding: 19px 15px;
  }

  .hero__Lead {
    padding: 40px 0;
    color: #ffffff;
    background: #008486;
  }
  .hero__Lead .txt {
    margin-bottom: 0;
    text-align: left;
  }
  .hero__Lead .list_Note {
    margin-top: 15px;
  }
  .hero__Lead + .block_Section {
    margin-top: 40px;
  }

  .area_Index {
    margin-top: 0;
  }
}
/*-- //smartPhone --*/
/* loader
--------------------------------------------------------- */
#loader__Wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  background: #ffffff;
  z-index: 1;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin-top: -7px;
  margin-left: -75px;
  text-align: center;
  z-index: 2;
}

/* gHeader
--------------------------------------------------------- */
/*-- gHeader_Top --*/
.gHeader-Top .site__Inner {
  display: table;
  width: 100%;
}

.gHeader-Top--Left {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

.gHeader-Top--Right {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
}
.gHeader-Top--Right:after {
  content: "";
  clear: both;
  display: block;
}

/*-- logoArea --*/
.logoArea {
  display: table;
  line-height: 1;
}
.logoArea .logo_Main {
  display: table-cell;
  vertical-align: middle;
  border-right: 1px solid #dedede;
}
.logoArea .logo_Main a {
  display: block;
}
.logoArea .site_Grouping {
  display: table-cell;
  vertical-align: middle;
  color: #666666;
  font-weight: 400;
}

.site_Grouping a {
  font-weight: normal;
  text-decoration: none;
}
.site_Grouping a:link {
  color: #666666;
}
.site_Grouping a:visited {
  color: #471f99;
}
.site_Grouping a:active {
  color: #666666;
}
.site_Grouping a:hover {
  color: #008486;
}
.site_Grouping a.current {
  font-weight: bold;
  color: #008486;
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {
  #gHeader {
    border-bottom: 3px solid var(--color-border-light);
  }

  .gHeader-Top {
    height: 80px;
  }
  .gHeader-Top .site__Inner {
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .hMenu--pc {
    border-top: 1px solid var(--color-border-light);
    background: white;
    width: 100%;
  }
  .hMenu--pc.js-nav-fixed.is-fixed {
    position: fixed;
    top: 3px;
    z-index: 99;
    border-top: 0;
    border-bottom: 2px solid var(--color-border-light);
    transition: top 0.3s;
  }
  .is-fixed.is-scroll-fixed .hMenu--pc.js-nav-fixed.is-fixed {
    top: -50px;
  }

  /*-- logoArea --*/
  .logoArea .logo_Main {
    padding-right: 22px;
  }
  .logoArea .logo_Main img {
    width: 190px;
    height: auto;
  }
  .logoArea .site_Grouping {
    padding-left: 19px;
    font-size: 0.875rem;
  }
  .logoArea .site_Grouping dd {
    margin-top: 6px;
  }
  .logoArea .site_Grouping dd li {
    display: inline-block;
    margin-right: 10px;
  }
  .logoArea .site_Grouping dd li.current {
    font-weight: bold;
    color: #008486;
  }

  /*-- hMenu_Content_search --*/
  #hMenu_Content_search--pc {
    display: none;
    padding: 30px 0 27px;
    border-bottom: 1px solid #dedede;
  }
  #hMenu_Content_search--pc.open {
    display: block;
  }

  .hMenu--pc .siteSearch_Wrap {
    width: 924px;
    opacity: 0;
  }
  .hMenu--pc .siteSearch_Input {
    width: 885px;
  }

  /*-- hMenu--smp --*/
  .hMenu--smp,
  #hMenu_Toggle--smp {
    display: none;
  }

  /*-- gHeader-Utility--pc --*/
  .gHeader-Utility--pc {
    float: right;
    display: table;
    line-height: 1;
    font-size: var(--fz-s);
  }
  .gHeader-Utility--pc:after {
    content: "";
    clear: both;
    display: block;
  }
    .gHeader-Utility--pc .btn_K-iss {
        display: table-cell;
        vertical-align: middle;
        padding-right: 15px;
    }
    .gHeader-Utility--pc .btn_K-iss a {
        color: #666666;
        text-decoration: none;
    }
    .gHeader-Utility--pc .btn_K-iss a:hover {
        color: #008486;
        text-decoration: none;
    }

  .gHeader-Utility--pc .btn_Contactus {
    display: table-cell;
    vertical-align: middle;
  }
  .gHeader-Utility--pc .btn_Contactus a {
    color: #666666;
    text-decoration: none;
  }
  .gHeader-Utility--pc .btn_Contactus a:hover {
    color: #008486;
    text-decoration: none;
  }
  .gHeader-Utility--pc .btn_Network {
    display: table-cell;
    vertical-align: middle;
    padding-left: 26px;
  }
  .gHeader-Utility--pc .btn_Network a {
    display: block;
    width: 22px;
    height: 22px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    vertical-align: middle;
    background: url(../img/icon/btn_network_off.png) no-repeat 0 0;
    -webkit-background-size: 22px;
    background-size: 22px;
  }
  .gHeader-Utility--pc .btn_Network a:hover {
    opacity: 0.7;
  }
  .gHeader-Utility--pc .btn_Search {
    display: table-cell;
    vertical-align: middle;
    padding-left: 24px;
  }
  .gHeader-Utility--pc .btn_Search a {
    display: block;
    width: 24px;
    height: 24px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    vertical-align: middle;
    background: url(../img/icon/btn_site_search.png) no-repeat 0 0;
    -webkit-background-size: 24px;
    background-size: 24px;
  }
  .gHeader-Utility--pc .btn_Search a.open {
    background: url(../img/icon/btn_site_search_close.png) no-repeat 0 0;
  }
  .gHeader-Utility--pc .btn_Search a:hover {
    opacity: 0.7;
  }

  .gHeader-Utility--pc .btn_Language {
    display: table-cell;
    vertical-align: middle;
    padding-right: 25px;
  }
  .gHeader-Utility--pc .btn_Language a {
    color: var(--color-link);
    text-decoration: none;
  }
  .gHeader-Utility--pc .btn_Language a.activeOn{
    text-decoration: underline;
  }
  .gHeader-Utility--pc .btn_Language a:hover {
    color: #008486;
    text-decoration: none;
  }


  /*-- gNav --*/
  #gNav_Wrap--pc > .site__Inner {
    display: flex;
    align-items: center;
    position: relative;
  }
  #gNav_Wrap--pc .site__Inner .gNavTitle {
    display: none;
    width: 220px;
    margin: 0;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    @starting-style {
      width: 0px;
    }
  }
  .is-fixed #gNav_Wrap--pc .site__Inner .gNavTitle {
    display: block;
    opacity: 1;
    transition: .4s;
  }
  #gNav_Wrap--pc .gNav {
    /* position: relative; */
    height: 43px;
  }
  #gNav_Wrap--pc .gNav > li {
    display: inline-block;
  }
  #gNav_Wrap--pc .gNav > li > a {
    display: block;
    padding: 10px 18px 10px 18px;
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: bold;
  }
  #gNav_Wrap--pc .gNav > li > a:hover {
    color: #008486;
  }
  #gNav_Wrap--pc .gNav > li > a.current,
  #gNav_Wrap--pc .gNav > li > a.open {
    color: #000;
  }
  #gNav_Wrap--pc .gNav > li:first-child a {
    padding-left: 0;
  }

  /*-- hMenu(pc) --*/
  .hMenu_Content--pc {
    display: none;
    width: 100%;
    height: auto;
    max-height: calc(100svh - 127px);
    position: absolute;
    top: 45px;
    left: 0;
    z-index: 9990;
    /* border-bottom: 3px solid #00a8a9; */
    background: var(--color-border-light);
    overflow: auto;
  }
  .is-fixed .hMenu_Content--pc {
    max-height: calc(100svh - 45px);
  }
  .hMenu_Content--pc a {
    text-decoration: none;
    color: var(--color-link-dark);
    font-weight: normal;
  }
  .hMenu_Content--pc a:hover {
    color: #008486;
  }
  .hMenu_Content_list--pc .hMenu_Content_list_ul--pc {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 35px 45px;
  }
  .hMenu_Content_list--pc .hMenu_Content_list_ul--pc.-col1 {
    grid-template-columns: 1fr;
  }
  .hMenu_Content_list--pc .hMenu_Content_list_ul--pc + .hMenu_Content_list_ul--pc {
    margin-top: 35px;
  }
  .hMenu_Content_list--pc a.app-link {
    margin-left: 25px;
  }
  .hMenu_Content_heading--pc a {
    font-size: 18px;
  }
  .hMenu_Content--pc .hMenu_Content_item_icon--pc {
    img {
      margin-right: 15px;
      vertical-align: middle;
    }
  }
  .hMenu_Content--pc.open {
    display: block;
    height: auto;
  }

  .hMenu_Toggle--pc {
    position: relative;
  }
  .hMenu_Toggle--pc span {
    padding-right: 20px;
    background: url(../img/icon/icon_arrow_black_down.png) no-repeat 100% 55%;
    background-size: 13px auto;
  }
  .hMenu_Toggle--pc:hover {
    cursor: pointer;
  }

  .hMenu_Toggle--pc.open {
    color: #000;
  }
  .hMenu_Toggle--pc.open:after {
    --size: 12px;
    content: "";
    display: block;
    position: absolute;
    top: 36px;
    left: calc(50% - (var(--size) / 2));
    z-index: 9999;
    background: var(--color-border-light);
    height: calc(tan(60deg) * var(--size) / 2);
    width: var(--size);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }
  .hMenu_Toggle--pc.open span {
    background: url(../img/icon/icon_arrow_black_up.png) no-repeat 100% 50%;
    background-size: 13px auto;
  }

  .hMenu_Content_heading--pc {
    margin-bottom: 35px;
    padding: 0;
  }
  .hMenu_Content_heading--pcul.list_Link.link--Next > *, .hMenu_Content_heading--pc.list_Link.link--Next:not(ul) {
    margin-left: auto;
  }

  .hMenu_Content--pc .site__Inner {
    padding-top: 45px;
    padding-bottom: 60px;
  }
  .hMenu_Content_list--pc .list {
    padding: 0;
  }
  .hMenu_Content_list--pc .list li {
    margin-bottom: 0;
  }

  #megaMenu_Overlay {
    display: none;
    position: fixed;
    top: 283px;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
  }
  #megaMenu_Overlay.open {
    display: block;
  }
}
/*-- //pc --*/

/* グローバルナビゲーションの幅ごとのスタイル調整 */
@media (width < 1270px) {
  .is-fixed #gNav_Wrap--pc .gNav > li > a {
    padding-inline: 10px;
  }
}
@media (width < 1170px) {
  #gNav_Wrap--pc .gNav > li > a {
    padding-inline: 15px;
  }
  .is-fixed #gNav_Wrap--pc .gNav > li > a {
    padding-inline: 5px;
    font-size: 0.85em;
  }
  .is-fixed #gNav_Wrap--pc .site__Inner .gNavTitle {
    width: 165px;
    font-size: 0.9em;
  }
}

/*-- smartPhone --*/
@media screen and (max-width: 767px) {
  #gNav_Wrap--pc .site__Inner .gNavTitle {
    display: none;
  }

  input.siteSearch_Input {
    width: 90%;
    font-size: 1.125rem;
  }

  #gHeader {
    border-bottom: 1px solid var(--color-border-dark);
  }

  /*-- gHeader_Top --*/
  .gHeader-Top {
    padding: 20px 0 21px;
  }

  .gHeader-Utility--pc,
  .hMenu--pc {
    display: none;
  }

  /*-- logoArea --*/
  .logoArea .logo_Main {
    padding-right: 13px;
  }
  .logoArea .logo_Main img {
    width: 160px;
  }
  .logoArea .site_Grouping {
    padding-left: 12px;
    font-size: 0.625rem;
  }
  .logoArea .site_Grouping dd {
    display: none;
  }

  #hMenu_Toggle--smp {
    line-height: 1;
    margin: 0;
  }
  #hMenu_Toggle--smp .txt {
    display: inline-block;
    padding-right: 9px;
    vertical-align: middle;
    font-size: 0.875rem;
    font-weight: normal;
    color: #008486;
  }
  #hMenu_Toggle--smp #icon {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 22px;
    vertical-align: middle;
  }
  #hMenu_Toggle--smp #icon #icon_Inner {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 22px;
    height: 2px;
    background: #00a8a9;
    transition: .2s;
  }
  #hMenu_Toggle--smp #icon #icon_Inner:before, #hMenu_Toggle--smp #icon #icon_Inner:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 22px;
    height: 2px;
    background: #00a8a9;
    transition: .3s;
  }
  #hMenu_Toggle--smp #icon #icon_Inner:before {
    margin-top: -10px;
  }
  #hMenu_Toggle--smp #icon #icon_Inner:after {
    margin-top: 8px;
  }
  #hMenu_Toggle--smp #icon.close {
    width: 22px;
    height: 22px;
  }
  #hMenu_Toggle--smp #icon.close #icon_Inner, #hMenu_Toggle--smp #icon.close #icon_Inner:before, #hMenu_Toggle--smp #icon.close #icon_Inner:after {
    width: 24px;
  }
  #hMenu_Toggle--smp #icon.close #icon_Inner {
    left: 0;
    background: transparent;
  }
  #hMenu_Toggle--smp #icon.close #icon_Inner:before,
  #hMenu_Toggle--smp #icon.close #icon_Inner:after {
    margin-top: -2px;
  }
  #hMenu_Toggle--smp #icon.close #icon_Inner:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  #hMenu_Toggle--smp #icon.close #icon_Inner:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }

  /*-- hMenu(smp) --*/
  .hMenu--smp {
    position: absolute;
    top: 79px;
    left: 0;
    width: 100%;
    display: none;
    padding: 25px 19px 30px;
    border-top: 1px solid var(--color-border-dark);
    border-bottom: 2px solid var(--color-kubota);
    z-index: 9999;
    background: #ffffff;
  }
  .hMenu--smp.open {
    display: block;
  }
  .hMenu--smp a {
    display: block;
    font-size: 1rem;
  }
  .hMenu--smp a:hover {
    text-decoration: none;
  }
  .hMenu--smp .gNav .hMenu--smp_details {
    padding: 9px 15px;
    font-size: 1.125rem;
    font-weight: normal;
    color: var(--color-link-dark);
    summary {
      position: relative;
    }
    summary::before {
      content: "";
      position: absolute;
      top: calc(50% - 0px);
      right: 0;
      width: 15px;
      height: 1px;
      background-color: var(--color-link-dark);
    }
    summary::after {
      content: "";
      position: absolute;
      top: 8px;
      right: 7px;
      width: 1px;
      height: 15px;
      background-color: var(--color-link-dark);
      transition: opacity 0.3s;
    }
  }
  .hMenu--smp .gNav .hMenu--smp_details[open] {
    summary::after {
      opacity: 0;
    }
  }

  .hMenu--smp .gNav > li > a {
    position: relative;
    padding: 9px 15px;
    font-size: 1.125rem;
    font-weight: normal;
    color: var(--color-link-dark);
  }
  .hMenu--smp .gNav > li > a::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--color-link-dark);
    border-right: 1px solid var(--color-link-dark);
    rotate: 45deg;
  }
  .hMenu--smp .langNav {
    margin-top: 20px;
    padding-left: 15px;
  }
  .hMenu--smp .langNav > li {
    font-size: 18px;
  }
  .hMenu--smp .langNav > li > a.gNav_language{
    display: inline;
    font-size: 18px;
  }
  .hMenu--smp .gNav > li > a.current {
    color: #008486;
  }
  .hMenu--smp .gNav .gNav_Layer2 li:nth-of-type(1) a {
    padding-top: 10px;
  }
  .hMenu--smp .gNav .gNav_Layer2 li:nth-last-of-type(1) a {
    padding-bottom: 10px;
  }
  .hMenu--smp .gNav .gNav_Layer2 a {
    position: relative;
    padding: 6px 0;
    padding-right: 25px;
    font-size: 0.9rem;
    color: var(--color-link-dark);
  }
  .hMenu--smp .gNav .gNav_Layer2 a:not([target="_blank"]):after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 5px;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--color-link-dark);
    border-right: 1px solid var(--color-link-dark);
    rotate: 45deg;
  }
  .hMenu--smp .gNav .gNav_Layer2 a[target="_blank"]:after {
    position: absolute;
    top: calc(50% - 8px);
    right: 1px;
  }
  .hMenu--smp .gNav .gNav_Layer2 .gNav_Layer2__product_search {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-dark);
  }
  .hMenu--smp .site_Grouping {
    padding: 10px 15px;
    font-size: 1rem;
    background: #f5f5f5;
  }
  .hMenu--smp .site_Grouping dt {
    display: inline-block;
    margin-right: 10px;
    color: #333333;
  }
  .hMenu--smp .site_Grouping dd {
    display: inline-block;
  }
  .hMenu--smp .site_Grouping dd ul li {
    display: inline-block;
    margin-right: 14px;
  }
  .hMenu--smp .site_Grouping dd ul li:last-child {
    margin-right: 0;
  }

  .gHeader-Utility--smp {
    margin-top: 15px;
  }
  .gHeader-Utility--smp a {
    position: relative;
    padding: 9px 15px;
    font-size: 1rem;
    color: var(--color-link-dark);
  }
  .gHeader-Utility--smp a:not([target="_blank"]):after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--color-link-dark);
    border-right: 1px solid var(--color-link-dark);
    rotate: 45deg;
  }
  .gHeader-Utility--smp a[target="_blank"]:after {
    position: absolute;
    top: calc(50% - 5px);
    right: 16px;
  }
  .gHeader-Utility--smp li:first-child a {
    padding: 12px 15px 6px;
  }
  .gHeader-Utility--smp li.network a:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    padding-right: 24px;
    background: url(../img/icon/btn_network_off.png) no-repeat left center;
    background-size: 14px 14px;
  }

  /*-- hMenu_Content_search --*/
  #hMenu_Content_search--smp {
    padding: 17px 18px;
  }
  #hMenu_Content_search--smp .siteSearch_Input {
    width: 90%;
    font-size: 1.125rem;
  }
}
/*-- //smartPhone --*/
/* form
--------------------------------------------------------- */
/*-- siteSearch_Wrap --*/
.siteSearch_Wrap {
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-bottom: 4px solid #00a8a9;
}
.siteSearch_Wrap .siteSearch_Inner {
  margin: 0 0 8px 0;
  border-left: 1px solid #00a8a9;
  background: #ffffff;
}

/*-- siteSearch_Input --*/
input.siteSearch_Input {
  display: inline-block;
  vertical-align: middle;
  padding: 1px 12px;
  color: #666666;
  font-size: 1.875rem;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  border: none;
}

input.siteSearch_Input::-webkit-input-placeholder {
  color: #c6cbcc;
  font-weight: normal;
}

input.siteSearch_Input:-ms-input-placeholder {
  color: #c6cbcc;
  font-weight: normal;
}

input.siteSearch_Input::-moz-placeholder {
  color: #c6cbcc;
  font-weight: normal;
}

/*-- siteSearch_Btn --*/
.siteSearch_Btn {
  display: inline-block;
  vertical-align: middle;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  border: none;
}

/*-- country_Select_Wrap --*/
.country_Select_Wrap {
  overflow: hidden;
  display: inline-block;
  line-height: 1;
}

/*-- select --*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  text-indent: 0.01px;
  text-overflow: '';
}

select::-ms-expand {
  display: none;
}

select.country_Select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  min-width: 295px;
  margin: 0 auto;
  height: 50px;
  line-height: 50px;
  vertical-align: top;
  padding: 0 90px 0 50px;
  vertical-align: top;
  color: #666666;
  font-size: 1.375rem;
  outline: none;
  border: 1px solid #dedede;
  background: #ffffff url(../img/form/form_select.png) no-repeat 100% 50%;
  -webkit-background-size: 59px 48px;
  background-size: 59px 48px;
}

#check_yn1,
#check_yn2 {
  margin-top: 27px;
}

/*-- input --*/
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
  text-transform: uppercase;
  cursor: pointer;
}

input[type="text"]:focus {
  outline: 0;
}

input[type="button"].btn_formGo {
  display: inline-block;
  width: 190px;
  height: 50px;
  margin: 0 0 0 10px;
  line-height: 50px;
  vertical-align: top;
  font-size: 1.375rem;
  font-weight: normal;
  color: #ffffff;
  border: solid 1px #ffffff;
  background: #008486 url(../img/form/form_btn_go_off.png) no-repeat 50% 50%;
  -webkit-background-size: 48px 18px;
  background-size: 48px 18px;
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {
  input[type="button"].btn_formGo:hover {
    background: #ffffff url(../img/form/form_btn_go_on.png) no-repeat 50% 50%;
    -webkit-background-size: 48px 18px;
    background-size: 48px 18px;
  }
}
/*-- //pc --*/
/* breadcrumb
--------------------------------------------------------- */
body .breadCrumbs {
  max-width: 1525px;/*1600px*/
  min-width: 1000px;
  margin: 0 auto 59px;
  padding-right: 38px;
  padding-left: 38px;
  word-wrap: break-word;
  overflow: hidden;
}

.breadCrumbs__Inner {
  padding-top: 20px;
  font-size: 0.75rem;
}
.breadCrumbs__Inner a,
.breadCrumbs__Inner a[target="_blank"],
.breadCrumbs__Inner a[href$=".pdf"] {
  position: relative;
  padding-right: 10px;
  text-decoration: underline;
  color: var(--color-link);
}
.breadCrumbs__Inner a:after,
.breadCrumbs__Inner a[target="_blank"]:after,
.breadCrumbs__Inner a[href$=".pdf"]:after {
  content: ">" !important;
  padding-left: 10px;
  color: var(--color-text) !important;
  display: inline-block;
}
.breadCrumbs__Inner a:hover,
.breadCrumbs__Inner a[target="_blank"]:hover,
.breadCrumbs__Inner a[href$=".pdf"]:hover {
  color: #008486;
  text-decoration: none;
}
.breadCrumbs__Inner em {
  font-weight: normal;
  font-style: normal;
  color: var(--color-text-light);
}

/*-- smartPhone --*/
@media screen and (max-width: 767px) {
  /*-- breadCrumbs --*/
  .breadCrumbs {
    display: none;
  }
}
/*-- //smartPhone --*/
/* localNav
--------------------------------------------------------- */
#localNav {
  border-bottom: 1px solid #dedede;
}

#localNav a {
  text-decoration: none;
}

/*-- localNav__heading --*/
.localNav__heading {
  margin: 0;
  padding-bottom: 14px;
  line-height: 1.2;
  font-size: 1.375rem;
}

.localNav__heading a {
  padding-right: 16px;
  font-size: 1.375rem;
  font-weight: normal;
  color: #008486;
  word-wrap: break-word;
  overflow: hidden;
  background: url(../img/icon/icon_link_arrow.png) no-repeat 100% 45%;
  -webkit-background-size: 9px 14px;
  background-size: 9px 14px;
}

/*-- layer --*/
.layer:not(.layer2) {
  display: none;
  padding: 0 25px;
}
.layer:not(.layer2) > li:before {
  top: 8px;
  left: 0;
}
.layer:not(.layer2) > li:last-child {
  padding-bottom: 10px;
}
.layer:not(.layer2) > li > a {
  margin-bottom: 11px;
  padding-left: 15px;
  font-size: 0.875rem;
}

.layer.open {
  display: block;
}

.layer li {
  position: relative;
}
.layer li:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url(../img/icon/icon_link_arrow.png) no-repeat;
  -webkit-background-size: 9px 14px;
  background-size: 9px 14px;
}

.layer li a {
  display: inline-block;
}
.layer li a:link {
  color: #666666;
}
.layer li a:visited {
  color: #471f99;
}
.layer li a:active {
  color: #666666;
}
.layer li a:hover {
  color: #008486;
}
.layer li a.current {
  font-weight: bold;
  color: #008486;
}

/*-- layer2 --*/
.layer2 > li {
  border-top: 1px solid #dedede;
}
.layer2 > li:before {
  top: 20px;
  left: 15px;
}
.layer2 > li > a {
  display: block;
  padding: 14px 31px 14px 30px;
}

/*-- layer3 --*/
.layer3 {
  margin-top: -8px;
}

/*-- current --*/
.layer .currentLayer {
  display: block;
}
.layer .nextLayer {
  display: block;
}

a.currentParent {
  font-weight: bold;
}

.currentLayer {
  background: #f5f5f5;
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {
  #localNav {
    margin: 0 729px 78px 0;
  }
}
/*-- //pc --*/
/*-- smartPhone --*/
@media screen and (max-width: 767px) {
  #localNav {
    margin: 0;
    border-top: 3px solid #dedede;
  }

  .localNav__heading {
    padding: 18px 15px;
  }

  .layer2 > li > a {
    padding: 16px 31px 16px 30px;
  }

  .layer:not(.layer2) {
    padding: 0 32px;
  }

  .layer:not(.layer2) > li > a {
    margin-bottom: 10px;
  }
}
/*-- //smartPhone --*/
/* pageTop
--------------------------------------------------------- */
#pageTop {
  position: fixed;
  margin-bottom: 0;
  z-index: 10;
}
#pageTop a {
  display: block;
}
#contactBtn {
  position: fixed;
  margin-bottom: 0;
  z-index: 10;
}
#contactBtn a {
  display: block;
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {
  /*-- pageTop --*/
  #pageTop {
    bottom: 100px;
    right: 10px;
  }
  #pageTop a:hover {
    opacity: 0.7;
  }
  #contactBtn {
    bottom: 187px;
    right: -140px;
    width: 220px;
    border-radius: 10px 0 0 10px;
    box-shadow:0px 0px 1px 0px rgba(0,0,0,0.6);
    background: #fff url(../img/icon/icon_contact.png) 5px center no-repeat;
  }
  #contactBtn a {
    color: #333333;
    line-height: 65px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all .6s ease;
  }
  #contactBtn a span{
    padding-left: 50px;
  }
  #contactBtn:hover{
    right: 0px;
    transition: all .6s ease;
  }
}
/*-- //pc --*/
/*-- smartPhone --*/
@media screen and (max-width: 767px) {
  #pageTop {
    bottom: 40px;
    right: 15px;
  }
  #pageTop a img {
    width: 30px;
  }
  #contactBtn {
    bottom: 187px;
    right: -165px;
    width: 220px;
    border-radius: 10px 0 0 10px;
    box-shadow:0px 0px 1px 0px rgba(0,0,0,0.6);
    background: #fff url(../img/icon/icon_contact.png) 5px center no-repeat;
    background-size: 40px;
  }
  #contactBtn a {
    color: #333333;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all .6s ease;
  }
  #contactBtn a span{
    padding-left: 50px;
  }
  #contactBtn:hover{
    right: 0px;
    transition: all .6s ease;
  }
}
/*-- //smartPhone --*/
/*-- relation
------------------------------------------------------------*/
/*-- relationNav --*/
#relationNav .list a {
  font-size: 1.125rem;
  text-decoration: none;
}
#relationNav .list a:link {
  color: #666666;
}
#relationNav .list a:visited {
  color: #471f99;
}
#relationNav .list a:active {
  color: #666666;
}
#relationNav .list a:hover {
  color: #008486;
}
#relationNav .list a.current {
  font-weight: bold;
  color: #008486;
}

/*-- block_Relation --*/
.block_Relation {
  border-top: 1px solid #dedede;
}
.block_Relation .media_Body {
  word-wrap: break-word;
  overflow: hidden;
}

/*-- heading_Relation --*/
.heading_Relation {
  margin: 0 0 18px 0;
  padding: 0 0 8px 0;
  line-height: 1.3;
  font-size: 1.875rem;
  font-weight: normal;
  color: #333333;
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {
  #relationNav {
    padding: 51px 0 60px;
    border-top: 1px solid #dedede;
    background: #f5f5f5;
  }
  #relationNav .relationNav_Inner {
    width: 924px;
    margin: 0 auto;
  }
  #relationNav li {
    display: inline-block;
    margin: 0 68px 13px 0;
  }

  .heading_relationNav {
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1.3;
    text-align: center;
    font-size: 1.875rem;
    font-weight: normal;
  }
  .heading_relationNav a {
    text-decoration: none;
  }
  .heading_relationNav a:link {
    color: #333333;
  }
  .heading_relationNav a:visited {
    color: #471f99;
  }
  .heading_relationNav a:active {
    color: #333333;
  }
  .heading_relationNav a:hover {
    color: #008486;
  }
  .heading_relationNav a.current {
    font-weight: bold;
    color: #008486;
  }
  .heading_relationNav a:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background: url(../img/icon/icon_link_arrow_large.png) no-repeat 100% 50%;
    -webkit-background-size: 10px 16px;
    background-size: 10px 16px;
  }

  /*-- block_Relation --*/
  .block_Relation {
    padding: 32px 0 60px;
  }
}
/*-- //pc --*/
/*-- smartPhone --*/
@media screen and (max-width: 767px) {
  #relationNav {
    padding: 0;
    text-align: left;
    border-top: 3px solid #dedede;
  }
  #relationNav .relationNav_Inner {
    width: 100%;
  }
  #relationNav li {
    display: block;
    margin-top: 0;
    position: relative;
    border-top: 1px solid #dedede;
  }
  #relationNav li:before {
    top: 18px;
    left: 15px;
    content: "";
    position: absolute;
    display: inline-block;
    width: 9px;
    height: 14px;
    z-index: 2;
    background: url(../img/icon/icon_link_arrow.png) no-repeat;
    -webkit-background-size: 9px 14px;
    background-size: 9px 14px;
  }
  #relationNav li a {
    display: block;
    text-decoration: none;
    padding: 16px 31px 16px 30px;
  }
  #relationNav li a:before {
    content: "";
    display: none;
  }
  #relationNav li a.current {
    background: #f5f5f5;
  }

  .heading_relationNav {
    padding: 18px 15px;
    margin: 0;
    line-height: 1.2;
    font-size: 1.375rem;
  }
  .heading_relationNav a {
    padding-right: 16px;
    font-size: 1.375rem;
    font-weight: normal;
    color: #008486;
    word-wrap: break-word;
    overflow: hidden;
    background: url(../img/icon/icon_link_arrow.png) no-repeat 100% 45%;
    -webkit-background-size: 9px 14px;
    background-size: 9px 14px;
  }

  /*-- block_Relation --*/
  .block_Relation {
    padding: 32px 0;
  }
  .block_Relation img {
    width: 100%;
  }

  .block_Relation--information .dl_Detail {
    display: none;
  }

  body:not(.column--is1) .block_Relation {
    border-top: none;
  }

  /*-- heading_Relation --*/
  .heading_Relation {
    margin: 0 0 16px 0;
    font-size: 1.5625rem;
  }
}
/*-- //smartPhone --*/
/* box_LocalArea
--------------------------------------------------------- */
.box_LocalArea {
  margin-bottom: 70px;
  padding: 40px 0 54px;
  text-align: center;
}
.box_LocalArea .box_LocalArea--dt {
  margin-bottom: 20px;
  font-size: 1.875rem;
}
.box_LocalArea select.country_Select {
  display: inline-block;
  min-width: 367px;
  padding: 0 90px 0 38px;
}
.box_LocalArea .box_LocalArea__Inner {
  font-size: 1.125rem;
}
.box_LocalArea .box_LocalArea__Inner .list {
  text-align: left;
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {
  .box_LocalArea--dt {
    width: 924px;
    margin: 0 auto;
    padding: 0 38px;
  }

  .box_LocalArea__Inner {
    width: 924px;
    margin: 0 auto;
    padding: 0 38px;
  }
  .box_LocalArea__Inner .list li {
    margin-right: 70px;
  }
}
/*-- //pc --*/
/*-- smartPhone --*/
@media screen and (max-width: 767px) {
  /* box_LocalArea
  --------------------------------------------------------- */
  .box_LocalArea {
    padding: 24px 15px;
  }
  .box_LocalArea .box_LocalArea--dt {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: #ffffff;
  }
  .box_LocalArea select.country_Select {
    display: inline-block;
    min-width: 290px;
    margin-bottom: 15px;
    padding: 0 52px 0 14px;
    height: 40px;
    line-height: 40px;
    font-size: 1.125rem;
  }
  .box_LocalArea input[type="button"].btn_formGo {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 1.125rem;
  }

  .box_LocalArea__Inner .list li {
    margin-right: 15px;
  }
}
/*-- //smartPhone --*/
/* footer
--------------------------------------------------------- */
#footer {
  border-top: 5px solid var(--color-kubota);
}

/*-- footer_Visual --*/
.footer_Visual div{
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-image: url("../img/footer/bg_foot.jpg");
  background-repeat: no-repeat;
  background-position: 50% 0;
  -webkit-background-attachment: fixed;
  background-attachment: fixed;
  -webkit-background-size: cover;
  background-size: cover;
}

/*-- footer_Banner --*/
.footer_Banner {
  color: #666666;
  font-size: 0.875rem;
  border-top: 1px solid #dedede;
  background: #ffffff;
  /*-- list_Banner --*/
}
.footer_Banner .list_Banner a {
  display: block;
  background: #ffffff;
}
.footer_Banner .list_Banner a img {
  background: #ffffff;
}
.footer_Banner .list_Banner .list_Banner--lead {
  margin: 12px 0 0 0;
  padding: 0;
}

/*-- footer_Message --*/
.footer_Message {
  display: table;
  margin: 0 auto;
  background: #ffffff;
}
.footer_Message .logo_Message {
  display: table-cell;
  vertical-align: middle;
}
.footer_Message .txt_Lead {
  display: table-cell;
  vertical-align: middle;
  color: #666666;
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {
  /*-- footer_Banner --*/
  .footer_Banner {
    padding: 60px 38px 54px;
    /*-- list_Banner --*/
  }
  .footer_Banner .list_Banner a:hover {
    opacity: 0.7;
  }

  /*-- footer_Message --*/
  .footer_Message {
    display: table;
    width: 924px;
    margin: 0 auto;
    padding: 68px 0;
    background: #ffffff;
  }
  .footer_Message .logo_Message {
    display: table-cell;
    width: 365px;
    text-align: left;
    vertical-align: middle;
  }
  .footer_Message .logo_Message img {
    width: 293px;
    height: auto;
  }
  .footer_Message .txt_Lead {
    display: table-cell;
    vertical-align: middle;
    color: #666666;
  }
}
/*-- //pc --*/
/*-- smartPhone --*/
@media screen and (max-width: 767px) {
  #footer {
    border-top: none;
  }

  /*-- footer_Banner --*/
  .footer_Banner {
    margin-bottom: 30px;
    padding: 30px 15px;
  }
  .footer_Banner .slick-slider .list_Banner--lead {
    min-height: 90px;
  }

  /*-- footer_Message --*/
  .footer_Message,
  .footer_Visual {
    display: none;
  }
}
/*-- //smartPhone --*/
/* gFooter
--------------------------------------------------------- */
#gFooter {
  color: #ffffff;
  background: var(--color-kubota-text);
}
#gFooter a {
  color: #ffffff;
  text-decoration: none;
}
#gFooter a:hover {
  text-decoration: underline;
}

/*-- gFooter-Bottom --*/
.gFooter-Bottom .gFooter-Utility a {
  font-size: 0.875rem;
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {
  /*-- gfNav --*/
  .gfNav {
    display: table;
    width: 100%;
    padding: 55px 0 45px;
    border-bottom: 1px solid #35babb;
  }
  .gfNav ul {
    display: table-cell;
    width: 20%;
    padding-right: 28px;
  }
  .gfNav ul li {
    margin-bottom: 9px;
  }

  /*-- gFooter-Bottom --*/
  .gFooter-Bottom {
    display: table;
    width: 100%;
    padding: 13px 0;
  }
  .gFooter-Bottom .gFooter-Utility {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
  }
  .gFooter-Bottom .gFooter-Utility li {
    display: inline-block;
    margin-right: 20px;
  }
  .gFooter-Bottom .gFooter-Info {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    text-align: right;
  }
  .gFooter-Bottom .gFooter-Info .logo_Co {
    margin: 0;
  }
  .gFooter-Bottom .gFooter-Info .copyright {
    margin: 0;
  }
  .gFooter-Bottom .gFooter-Info .copyright small {
    font-size: 0.875rem;
  }
  .gFooter-Bottom .logo_Co img {
    width: 200px;
    height: auto;
  }
}
/*-- //pc --*/
/*-- smartPhone --*/
@media screen and (max-width: 767px) {
  .gfNav {
    display: none;
  }

  .gFooter-Utility {
    display: block;
    width: 100%;
    padding: 22px 0;
    letter-spacing: -.4em;
    text-align: center;
    border-bottom: 1px solid #35babb;
  }
  .gFooter-Utility li {
    display: block;
    width: auto;
    margin: 0;
    text-align: center;
    letter-spacing: normal;
    list-style: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
  }
    #gFooter .gFooter-Bottom .gFooter-Utility li a::after{
        content: none;
    }

  .gFooter-Info {
    padding: 12px 0;
    text-align: center;
  }
  .gFooter-Info .copyright small {
    font-size: 0.6875rem;
  }

  .logo_Co img {
    width: 118px;
    height: auto;
  }

  .logo_Co,
  .copyright {
    margin: 0;
  }
}
/*-- //smartPhone --*/
/* cookie
--------------------------------------------------------- */
#cookieNotification {
  background: #f5f5f5;
  min-width: 1000px;
  display: none;
}

.cookieNotification__pad {
  margin-left: -56px;
  overflow: hidden;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.cookieNotification__text {
  padding-left: 56px;
  width: 66.67%;
}

.cookieNotification__action {
  padding-left: 28px;
  width: 33.33%;
}

.cookieNotification__text p {
  color: #333;
  margin: 15px 0;
}

#cookieNotification__button {
  display: block;
  white-space: nowrap;
  border-radius: 0;
  border: solid 1px #00a8a9;
  color: #00a8a9;
  background: #fff;
  padding: 7px 68px;
  font-size: 18px;
}

button#cookieNotification__button:focus {
  outline: 0;
}

.cookieNotification__text a:after,
#cookieNotification__button:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 14px;
  vertical-align: middle;
  background: url(../img/icon/icon_arrow_cookie_off.png) no-repeat 100% 50%;
  -webkit-background-size: 9px 14px;
  background-size: 9px 14px;
  margin: -.2em 0 0;
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {
  .cookieNotification__Inner {
    max-width: 1525px;/*1600px*/
    min-width: 1000px;
    margin: 0 auto;
    padding-right: 38px;
    padding-left: 38px;
  }

  .cookieNotification__text--details {
    margin-right: 60px;
  }

  #cookieNotification__button:hover {
    color: #ffffff;
    background: #00a8a9;
  }

  #cookieNotification__button:hover:after {
    background: url(../img/icon/icon_arrow_cookie_on.png) no-repeat 100% 50%;
    -webkit-background-size: 9px 14px;
    background-size: 9px 14px;
  }
}
/*-- //pc --*/
/*-- smartPhone --*/
@media print, screen and (max-width: 767px) {
  #cookieNotification {
    min-width: 0;
  }

  .cookieNotification__Inner {
    padding: 0 15px;
  }

  .cookieNotification__pad {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
  }

  .cookieNotification__text,
  .cookieNotification__action {
    width: 100%;
    padding-left: 0;
  }

  .cookieNotification__action {
    padding: 0 0 30px;
  }

  #cookieNotification__button {
    margin: 0 auto;
  }
}
/*-- //smartPhone --*/
/* skip
--------------------------------------------------------- */
#skipNav {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  z-index: 9999;
}
#skipNav #skipNav__Inner {
  display: block;
  width: 100%;
  height: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 1px;
  color: #ffffff;
  cursor: default;
  background: #666666;
}
#skipNav #skipNav__Inner a {
  color: #ffffff;
}

/* jsOff
--------------------------------------------------------- */
#jsOff {
  padding: 17px 0;
  background: #ffdddd;
}

#jsOff p {
  margin: 0 auto;
  color: #ff0000;
}
