@charset "UTF-8";
/*--------------------------------------------------
 * common styles
 *-------------------------------------------------*/

body#index {
  overflow-x: hidden;/* トップページ横スクロール解消 */
}

 ul {
  list-style: none;
}
body {
  //font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic", YuGothic, Meiryo,sans-serif;
  font-family: 'Lato', 'Noto Sans JP', '游ゴシック体', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #222222;
	//line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  background:#fff;
	}

body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* a {
  text-decoration: none;
  cursor: pointer;
  color: #222222;
 } */

/* a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none; } */

h1, h2, h3, h4 {
  font-weight: normal; }

img {
  image-rendering: -webkit-optimize-contrast;
}

#wrapper {
  position: relative;
  padding-top: 70px; }

#header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 94000; }

#header .header-inner {
  height: 70px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 0 12px;
}

  #header .logo-direct-div {
    position: relative;
    z-index: 1; }
    #header .logo-direct-div img {
      width: 220px;
      float: right;
      margin-right: 10px;
      margin-top: 10px;
      z-index: 2; }
    #header .logo-direct-div a {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      text-indent: -999px;
      z-index: 3;
      /* 必要であればリンク要素の重なりのベース順序指定 */ }


  #header .logo {
    float: left;
    height: 70px;
    overflow: hidden;
    //padding-top: 20px;
    position: relative;
    z-index: 5;
  }

  #header .logo img {
    width: 200px;
    }
    @media screen and (max-width: 768px) {
      #header .logo img {
        width: 185px;
         }
           }

      #header .logo a {
        display: flex;
        height: 70px;
        align-items: center;
      }

  #header .search-area {
    -webkit-transition: height 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
    -o-transition: height 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
    transition: height 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
    height: 0;
    overflow: hidden;
    position: relative;
	  width: 450px;
    margin: 0 0 0 auto;
}
    #header .search-area .search-area-inner {
      border: 1px solid rgb(151, 151, 151);
      padding: 10px 10px;
      background-color: #fff; }
    #header .search-area input[type="text"] {
      width: 100%;
      padding: 10px;
      border: 0;
      outline: 0;
      font-size: 15px; }
    #header .search-area .close-search-form-btn {
      width: 30px;
      height: 30px;
      position: absolute;
      right: 40px;
      top: 14px; }
      #header .search-area .close-search-form-btn:before, #header .search-area .close-search-form-btn:after {
        position: absolute;
        left: 4px;
        content: ' ';
        display: block;
        width: 22px;
        top: 14px;
        height: 1px;
        background-color: #999; }
      #header .search-area .close-search-form-btn:before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      #header .search-area .close-search-form-btn:after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
  #header.mode-search .search-area {
    height: 59px;
	    width: 450px;
    margin: 0 0 0 auto;
}

#nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
   @media screen and (max-width: 768px) {
    #nav {
            padding-top: 0;
            justify-content: flex-end;
       }
         }

  #nav a {
    display: block;
    color: #222;
    font-size: 13px;
    font-weight: bold;
    -webkit-transition: opacity 1s cubic-bezier(0.065, 0.535, 0.155, 0.98);
    -o-transition: opacity 1s cubic-bezier(0.065, 0.535, 0.155, 0.98);
    transition: opacity 1s cubic-bezier(0.065, 0.535, 0.155, 0.98); }
    #nav a:hover {
      opacity: 0.75;
      background: -moz-radial-gradient(#ececec, #ffffff);
      background: -webkit-radial-gradient(#ececec, #ffffff);
      background: radial-gradient(#ececec, #ffffff);
    }
  #nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0; }

    @media screen and (max-width: 970px) {
      #nav ul {
        white-space: nowrap;
      }
    }

    #nav ul li {
      position: relative;
      margin-left: 20px; }
      #nav ul li .dropdown-menu-inner {
        position: relative;
        overflow: hidden;
        background-color: #fff;
        border-radius: 2px;
        border: 1px solid #eee;
        -webkit-box-shadow: 0px 3px 6px 2px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 3px 6px 2px rgba(0, 0, 0, 0.1); }
      #nav ul li .dropdown-menu {
        padding-top: 20px;
        display: none;
        opacity: 0;
        position: absolute;
        left: -45px;
        top: 20px;
        -webkit-transition: opacity 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), -webkit-transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        transition: opacity 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), -webkit-transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        -o-transition: opacity 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        transition: opacity 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        transition: opacity 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), -webkit-transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        z-index: 20; }
        #nav ul li .dropdown-menu .item a {
          width: 180px;
          height: 40px;
          line-height: 40px;
          padding-left: 20px; }
          #nav ul li .dropdown-menu .item a:hover {
            background-color: #f5f5f5; }
        #nav ul li .dropdown-menu:before, #nav ul li .dropdown-menu:after {
          content: ' ';
          position: absolute;
          left: 50%;
          margin-left: -4px; }
        #nav ul li .dropdown-menu:before {
          top: 12px;
          border-right: 8px solid transparent;
          border-bottom: 8px solid #eee;
          border-left: 8px solid transparent; }
        #nav ul li .dropdown-menu:after {
          top: 14px;
          border-right: 8px solid transparent;
          border-bottom: 8px solid #fff;
          border-left: 8px solid transparent; }
      #nav ul li.dropdown-opened .dropdown-menu {
      	z-index:10000;
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0); }
  #nav .nav-menu a {
    //height: 68px;
    //line-height: 68px;
    letter-spacing: 0.4px;
    padding: 0 2px;
    display: inline-block;
     }
    #nav .nav-menu a.js-show-megamenu {
      width: 80px;
      text-align: right; }

      #nav .nav-menu a.js-show-megamenu:before {
        position: absolute;
        content: "";
        width: 90px;
        height: 70px;
        bottom: -26px;
        right: 0;
    }

    #nav .nav-menu a.jsm-02:before {
      position: absolute;
      content: "";
      width: 90px;
      height: 70px;
      bottom: -26px;
      right: 0;
  }

    #nav .nav-menu a.js-show-megamenu:hover:before {
      width:100vw;
    }

    #nav .nav-menu a.has-submenu span {
      padding-right: 16px;
      position: relative; }
      #nav .nav-menu a.has-submenu span:after {
        display: inline-block;
        content: ' ';
        position: absolute;
		right: -3px;
        top: 3px;
        width: 6px;
        height: 6px;
        border-bottom: 2px solid #666;
        border-right: 2px solid #666;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0.4; }
  #nav .nav-btns .menu-search {
    //margin-top: 20px;
    position: relative;
    padding-left: 21px;
    margin-left: 22px; }

    #nav .nav-btns .menu-search:after {
      content: ' ';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 2px;
      height: 40px;
      background-color: #222;
      opacity: 0.2;
    }

      ul.nav-btns {
        align-items: center;
      }

      #nav .nav-btns .menu-search .btn-search {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
      }

      #nav .nav-btns .menu-search .btn-search .icn-search {
        display: block;
        width: 20px;
        height: 20px;
        background-image: url("../img/icn_search.svg");
        background-repeat: no-repeat;
        position: relative;
        //top: 5px;
        left: 5px; }
  #nav .nav-btns .menu-hum {
    //margin-top: 9px;
    margin-left: 10px; }
    #nav .nav-btns .menu-hum a {
      font-size: 9px;
      letter-spacing: 3px;
      //padding: 10px; }
      #nav .nav-btns .menu-hum a .icn-menu {
        position: relative;
        display: block;
        height: 18px;
        width: 26px;
        margin: 0 auto;
        margin-bottom: 3px;
        left: -2px; }
        #nav .nav-btns .menu-hum a .icn-menu:before, #nav .nav-btns .menu-hum a .icn-menu:after, #nav .nav-btns .menu-hum a .icn-menu span {
          display: block;
          content: ' ';
          width: 26px;
          height: 2px;
          background-color: #222;
          position: absolute;
          left: 0; }
        #nav .nav-btns .menu-hum a .icn-menu:before {
          top: 0; }
        #nav .nav-btns .menu-hum a .icn-menu span {
          top: 12px; }
        #nav .nav-btns .menu-hum a .icn-menu:after {
          top: 6px; }

#megamenu {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding-top: 5px;
  margin-top: 60px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), -webkit-transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
  transition: opacity 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), -webkit-transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
  -o-transition: opacity 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
  transition: opacity 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
  transition: opacity 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98), -webkit-transform 0.28s cubic-bezier(0.065, 0.535, 0.155, 0.98);
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px);
  border-bottom: 1px solid #eee;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff; }
  #megamenu.megamenu-inner {
    height: 0;
    overflow: hidden; }
  #megamenu .megamenu-nav {
    text-align: center;
    border-bottom: 1px solid #F0F0F0; }
    #megamenu .megamenu-nav li {
      display: inline-block;
      margin: 0 15px; }
      #megamenu .megamenu-nav li a {
        position: relative;
        display: block;
        padding: 20px 0;
        font-size: 14px; }
        #megamenu .megamenu-nav li a.active {
          color: #11347C; }
          #megamenu .megamenu-nav li a.active:after {
            content: ' ';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #11347C; }

#megamenu-content {
  padding: 40px 0; }
  #megamenu-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 1024px; }
    #megamenu-content ul li {
      /* width: 12%; */
      width: calc(100% / 8);
      //margin: 15px 0;
      //margin: 10px;
     }
      #megamenu-content ul li a {
        display: block;
        text-align: center;
        -webkit-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        -o-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98); }
        #megamenu-content ul li a:hover {
          opacity: 0.75; }
        #megamenu-content ul li a span, #megamenu-content ul li a img {
          display: inline-block;
          max-width:100%; }
        #megamenu-content ul li a .img-wrap {
          width: 110px;
          height: 110px;
          margin: 0 auto 10px;
          text-align: center;
          position: relative; }
          #megamenu-content ul li a .img-wrap img {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto; }
        #megamenu-content ul li a span {
          font-size: 12px;
          text-align: center;
          color: #555555; }
  #megamenu-content .megamenu-categories {
    display: none; }

.megamenu-opened #megamenu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1; }
  .megamenu-opened #megamenu .megamenu-inner {
    height: auto; }

/* #footer {
  background: url("../img/bg_footer_h.jpg") no-repeat;
  background-size: 100% auto;
  padding-top: 300px; }
  #footer .footer-inner {
    padding: 80px 0;
    background-color: rgba(50, 50, 50, 0.95); }
    #footer .footer-inner .footer-menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin: 0 -15px;
      margin-top: 70px; }
      #footer .footer-inner .footer-menu .footer-menu-col {
        color: #fff;
        width: 20%; }
        #footer .footer-inner .footer-menu .footer-menu-col dl {
          padding: 0 15px;
          margin-bottom: 35px; }
          #footer .footer-inner .footer-menu .footer-menu-col dl dt {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
            margin-bottom: 10px;
            font-size: 14px; }
        #footer .footer-inner .footer-menu .footer-menu-col a {
          font-size: 13px;
          color: rgba(255, 255, 255, 0.8);
          font-weight: 300;
          line-height: 28px; }
          #footer .footer-inner .footer-menu .footer-menu-col a:hover {
            text-decoration: underline; }
  #footer .copyright {
    background-color: #f0f0f0;
    color: #aaa;
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 300; } */

.container {
  padding: 0px;
  max-width: 1300px;
  margin: 0 auto; }

.is-bg-stripe {
  background: url("../img/bg_pattern01.jpg"); }

.is-bg-grid {
  background: url("../img/bg_pattern02.jpg"); }

.is-bg-white { background: #fff; }

.btn {
  display: block;
  text-align: center;
  /* margin: 10px; */
 }
  .btn .arrow {
    content: ' ';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 4px;
    position: relative;
    top: -1px; }

  .btn .arrow-blue {
    content: ' ';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #11347c;
    border-right: 1px solid #11347c;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 4px;
    position: relative; }

.btn-default {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #eee;
  color: #11347C;
  font-size: 17px;
  letter-spacing: 2px;
  text-align: center;
  padding: 12px 0;
  -webkit-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
  -o-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
  transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98); }
  .btn-default:hover {
    opacity: 0.75; }

.is-sp, .is-sp-inline {
  display: none !important; }

.is-pc {
  display: block; }

.is-pc-inline {
  display: inline; }

#globalMenu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(17, 52, 124, 0.98);
  color: #fff;
  z-index: 95000;
  -webkit-transition: all 0.4s cubic-bezier(0.065, 0.535, 0.155, 0.98);
  -o-transition: all 0.4s cubic-bezier(0.065, 0.535, 0.155, 0.98);
  transition: all 0.4s cubic-bezier(0.065, 0.535, 0.155, 0.98);
  overflow: hidden;
  overflow-y: auto;
  opacity: 0; }
  #globalMenu .menu-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  #globalMenu .main-menu {
    width: 63%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    #globalMenu .main-menu .menu-list {
      overflow: hidden;
      width: 42%; }
      #globalMenu .main-menu .menu-list li {
        margin-bottom: 25px; }
        #globalMenu .main-menu .menu-list li a {
          font-size: 24px;
          font-weight: 300;
          color: #fff;
          letter-spacing: 2px;
          -webkit-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
          -o-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
          transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98); }
          #globalMenu .main-menu .menu-list li a:hover {
            opacity: 0.75; }
          #globalMenu .main-menu .menu-list li a span {
            display: block;
            font-size: 12px;
            letter-spacing: 3px;
            opacity: 0.4;
            margin-top: 5px; }
  #globalMenu .menu-sub {
    width: 27%;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 40px; }
    #globalMenu .menu-sub .bnr-direct {
      max-width: 201px;
      margin-bottom: 30px; }
    #globalMenu .menu-sub .bnr-direct img{
        max-width: 100%;
        }

    #globalMenu .menu-sub .shop-links ul {
      line-height: 2em; }

    #globalMenu .menu-sub .shop-links ul li a {
      color: white; }
    #globalMenu .menu-sub .menu-logo-area {
      opacity: 0.5;
      padding: 0 3px; }
      #globalMenu .menu-sub .menu-logo-area img {
        width: 120px; }
      #globalMenu .menu-sub .menu-logo-area p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        margin-top: 8px; }
    #globalMenu .menu-sub .menu-sns {
      margin-top: 30px; }
      #globalMenu .menu-sub .menu-sns ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        #globalMenu .menu-sub .menu-sns ul li {
          margin-right: 15px; }

.global-menu-opened {
  overflow: hidden; }
  .global-menu-opened #globalMenu {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1); }
    .global-menu-opened #globalMenu .btn-close {
      position: absolute;
      right: 32px;
      top: 30px;
      color: #fff;
      font-size: 10px;
      letter-spacing: 2px; }
      .global-menu-opened #globalMenu .btn-close span {
        display: block;
        position: relative;
        width: 40px;
        height: 42px;
        margin: 0 auto;
        text-align: center;
        left: -2px; }
        .global-menu-opened #globalMenu .btn-close span:before, .global-menu-opened #globalMenu .btn-close span:after {
          display: block;
          content: ' ';
          width: 40px;
          height: 1px;
          background-color: #fff;
          position: absolute;
          left: 0;
          top: 20px;
          margin: 0 auto; }
        .global-menu-opened #globalMenu .btn-close span:before {
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
        .global-menu-opened #globalMenu .btn-close span:after {
          -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }

@media screen and (max-width: 980px) {
  .is-pc, .is-pc-inline {
    display: none !important;
  }
  #nav .nav-btns .menu-search:after {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block; }
  .is-sp-inline {
    display: inline; }
  .btn .arrow {
    top: -2px; }
  #wrapper {
    overflow: hidden;
    }
  .container {
    //padding: 0 24px;
    max-width: initial;
    width: 100%;
    padding: 0 5%;}
  #header {
    height: 56px; }
    #header .header-inner {
    z-index:99999;
      height: 70px;
      }
      #header .logo a {
        width: 180px;
        padding-left: 0;
        padding-top: 0px;
      }
	#header .logo-direct-div {
		display: none;
	}
    #header .search-area .search-area-inner {
      padding: 8px 20px; }
    #header .search-area .close-search-form-btn {
      right: 20px;
      top: 13px; }
  #nav .nav-btns .menu-search {
    margin-left: 0;
    padding-left: 0;
   }
    #nav .nav-btns .menu-search:after {
      display: none; }
  #nav .nav-btns .menu-hum {
    margin-top: 2px;
  }
    #nav .nav-btns .menu-hum a {
      padding: 6px;
      font-weight: 600;
      letter-spacing: 1px; }
      #nav .nav-btns .menu-hum a .icn-menu {
        margin-bottom: 0;
        left: 0; }
  #globalMenu {
    max-width: 100%;
    width: 100%;
    padding: 0; }
    #globalMenu .menu-content {
      max-width: 100%;
      padding: 60px 40px 60px 40px;
      display: block; }
    #globalMenu .main-menu {
      display: block;
      width: 100%; }
      #globalMenu .main-menu .menu-list {
        width: 100%; }
        #globalMenu .main-menu .menu-list li a {
          font-size: 20px; }
          #globalMenu .main-menu .menu-list li a span {
            display: inline-block;
            font-size: 10px;
            margin-top: 0;
            margin-left: 4px;
            letter-spacing: 1px; }
    #globalMenu .menu-sub {
      width: 100%;
      padding: 0;
      padding-top: 40px;
      margin-top: 10px;
      border-left: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .global-menu-opened #globalMenu .btn-close {
    right: 15px;
    top: 13px; }
  #footer {
    padding-top: 100px; }
    #footer .footer-inner {
      background-color: #323232; }
      #footer .footer-inner .footer-menu .footer-menu-col {
        width: 50%; }
        #footer .footer-inner .footer-menu .footer-menu-col.sp-col2 {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          #footer .footer-inner .footer-menu .footer-menu-col.sp-col2 dl {
            width: 50%; } }

.category-search-group {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2); }
  .category-search-group .menu-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .category-search-group .menu-tab li {
      width: 33.3333%; }
      .category-search-group .menu-tab li .menu {
        display: block;
        height: 60px;
        line-height: 60px;
        text-align: center;
        font-size: 18px;
        letter-spacing: 4px;
        background-color: #11347c;
        color: #fff;
        font-weight: 300;
        position: relative; }
      .category-search-group .menu-tab li:last-child {
        width: 35%; }
      .category-search-group .menu-tab li .business {
        background-color: #11347C; }
      .category-search-group .menu-tab li .active {
        background-color: #fff !important;
        color: #222 !important;
        font-weight: 400; }
  .category-search-group .category-search-content {
    display: none;
    padding: 40px 0; }

.business-contact-area {
  padding: 30px 0;
  margin-top: 60px; }
  .business-contact-area .area-ttl {
    font-size: 30px;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px; }
  .business-contact-area .business-contact-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px; }
    .business-contact-area .business-contact-btns li {
      margin: 0 auto;
      width: 50%;
      padding: 15px; }
      .business-contact-area .business-contact-btns li .btn {
        background-color: #fff;
        height: 80px;
        line-height: 80px;
        font-size: 22px;
        font-weight: 400;
        letter-spacing: 3px;
        -webkit-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        -o-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98); }
        .business-contact-area .business-contact-btns li .btn:hover {
          opacity: 0.75; }
        .business-contact-area .business-contact-btns li .btn .icn {
          display: inline-block;
          width: 30px;
          height: 30px;
          position: relative;
          top: 9px;
          margin-right: 15px; }
        .business-contact-area .business-contact-btns li .btn .icn-document {
          background: url("../img/icn_document.svg") no-repeat; }
        .business-contact-area .business-contact-btns li .btn .icn-contact {
          background: url("../img/icn_contact.svg") no-repeat; }
      .business-contact-area .business-contact-btns li .btn-download {
        border: 2px solid #11347C;
        line-height: 76px;
        color: #11347C; }
        .business-contact-area .business-contact-btns li .btn-download .icn {
          top: 7px; }
      .business-contact-area .business-contact-btns li .btn-contact {
        background-color: #11347C;
        color: #fff; }
  .business-contact-area .tel-txt {
    font-size: 34px;
    letter-spacing: 2px;
    font-weight: 300;
    text-align: center;
    margin-top: 20px; }
    .business-contact-area .tel-txt span {
      display: inline-block;
      padding: 0 100px;
      position: relative;
      text-align: center; }
      .business-contact-area .tel-txt span:before, .business-contact-area .tel-txt span:after {
        content: ' ';
        position: absolute;
        width: 74px;
        height: 0;
        border-top: 1px solid #222;
        top: 24px; }
      .business-contact-area .tel-txt span:before {
        left: 0; }
      .business-contact-area .tel-txt span:after {
        right: 0; }

.sec-top {
  position: relative;
  padding: 30px 0 10px; }
  .sec-top .sec-head {
    position: relative;
    margin-bottom: 10px;
    clear: both;
    overflow: hidden; }
    .sec-top .sec-head .sec-ttl {
      font-size: 34px;
      letter-spacing: 0.1em; }
      .sec-top .sec-head .sec-ttl span {
        display: inline-block;
        margin-left: 10px;
        font-size: 19px;
        color: #11347C;
        letter-spacing: 1px;
        font-family: 'Oswald', sans-serif;
        font-weight: bold; }
    .sec-top .sec-head .btn-more {
      position: absolute;
      right: 0;
      bottom: 0;
      background-color: #11347c;
      border: 2px solid #e8e8e8;
      color: #fff;
      font-size: 18px;
      font-weight: 500;
      padding: 8px 14px;
      letter-spacing: 1px;
      -webkit-transition: opacity 0.2s ease;
      -o-transition: opacity 0.2s ease;
      transition: opacity 0.2s ease; }
      .sec-top .sec-head .btn-more:hover {
        opacity: 0.8; }

#index .slick-dotted.slick-slider {
  margin: 0; }

#index .slick-dots {
  bottom: -32px;
  z-index: 999; }
  #index .slick-dots li {
    margin: 0; }
    #index .slick-dots li button:before {
      width: 16px;
      height: 16px; }

#index #topSlider .item img {
  display: block;
  width: 100%; }

#index #topSlider .slick-arrow {
  z-index: 999;
  width: 44px;
  height: 44px;
  opacity: 0.8; }
  #index #topSlider .slick-arrow:before {
    font-size: 0;
    position: relative;
    content: ' ';
    display: block;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-top: 0px;
    opacity: 1; }
  #index #topSlider .slick-arrow:hover {
    opacity: 0.6; }

#index #topSlider .slick-next {
  right: 24px; }
  #index #topSlider .slick-next:before {
    margin-left: -11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }

#index #topSlider .slick-prev {
  left: 20px; }
  #index #topSlider .slick-prev:before {
    margin-left: -4px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }

#index .category-search-group .category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 30px;
  margin-top: -30px; }
  #index .category-search-group .category-list li {
    width: 16.6666%;
    margin-top: 30px; }
  #index .category-search-group .category-list .item {
    position: relative;
    display: block;
    text-align: center; }
    #index .category-search-group .category-list .item .item-img-wrap {
      max-width: 100px;
      margin: 0 auto;
      position: relative; }
      #index .category-search-group .category-list .item .item-img-wrap:before {
        content: "";
        display: block;
        padding-top: 100%; }
    #index .category-search-group .category-list .item .item-img {
      width: 100%;
      background-position: center center;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-repeat: no-repeat;
      background-size: 100% auto;
      background-position: center center;
      margin: 0 auto;
      -webkit-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }



      #index .category-search-group .category-list .item .item-img.mobilebattery {background-image: url("../img/cat_mbank.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.mobilebattery {background-image: url("../img/cat_mbank_on.svg"); }
      #index .category-search-group .category-list .item .item-img.cable {background-image: url("../img/cat_cable.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.cable {background-image: url("../img/cat_cable_on.svg"); }

      #index .category-search-group .category-list .item .item-img.charger {background-image: url("../img/cat_charger.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.charger {background-image: url("../img/cat_charger_on.svg"); }

      #index .category-search-group .category-list .item .item-img.audio {background-image: url("../img/cat_audio.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.audio {background-image: url("../img/cat_audio_on.svg"); }

      #index .category-search-group .category-list .item .item-img.car {background-image: url("../img/cat_car.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.car {background-image: url("../img/cat_car_on.svg"); }

      #index .category-search-group .category-list .item .item-img.pc {background-image: url("../img/cat_pc.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.pc {background-image: url("../img/cat_pc_on.svg"); }

      #index .category-search-group .category-list .item .item-img.stand {background-image: url("../img/cat_stand.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.stand {background-image: url("../img/cat_stand_on.svg"); }

      #index .category-search-group .category-list .item .item-img.goods {background-image: url("../img/cat_spacc.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.goods {background-image: url("../img/cat_spacc_on.svg"); }

      #index .category-search-group .category-list .item .item-img.case {background-image: url("../img/cat_case.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.case {background-image: url("../img/cat_case_on.svg"); }

      #index .category-search-group .category-list .item .item-img.protectglass {background-image: url("../img/cat_glass.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.protectglass {background-image: url("../img/cat_glass_on.svg"); }

      #index .category-search-group .category-list .item .item-img.outdoor {background-image: url("../img/cat_acc.svg"); }
      #index .category-search-group .category-list .item:hover .item-img.outdoor {background-image: url("../img/cat_acc_on.svg"); }


      #index .category-search-group .category-list .item .item-img.iphone {background-image: url("../img/cat_iphone.svg"); }
      #index .category-search-group .category-list .item .item-img.apple {background-image: url("../img/cat_apple.svg"); }



      #index .category-search-group .category-list .item .item-img.beach {background-image: url("../img/cat_beach.svg"); }
      #index .category-search-group .category-list .item .item-img.outdoorscene {background-image: url("../img/cat_outdoor.svg"); }
      #index .category-search-group .category-list .item .item-img.disaster {background-image: url("../img/cat_disaster.svg"); }
      #index .category-search-group .category-list .item .item-img.running {background-image: url("../img/cat_running.svg"); }


      #index .category-search-group .category-list .item .item-img.office-scene {
        background-image: url("../img/top_business/office-scene.png"); }
      #index .category-search-group .category-list .item .item-img.cafe-scene {
        background-image: url("../img/top_business/cafe-scene.png"); }
      #index .category-search-group .category-list .item .item-img.school-scene {
        background-image: url("../img/top_business/school-scene.png"); }
      #index .category-search-group .category-list .item .item-img.drive-scene {
        background-image: url("../img/top_business/drive-scene.png"); }
      #index .category-search-group .category-list .item .item-img.services-scene {
        background-image: url("../img/top_business/services-scene.png"); }
      #index .category-search-group .category-list .item .item-img.shop-scene {
        background-image: url("../img/top_business/shop-scene.png"); }
    #index .category-search-group .category-list .item img {
      max-width: 100%;
      display: inline-block; }
    #index .category-search-group .category-list .item span {
      display: block;
      margin-top: 8px;
      font-size: 13px;
      font-weight: 300;
      text-align: center; }
    #index .category-search-group .category-list .item:hover .item-img.iphone {background-image: url("../img/cat_iphone_on.svg"); }
    #index .category-search-group .category-list .item:hover .item-img.apple {background-image: url("../img/cat_apple_on.svg"); }



    #index .category-search-group .category-list .item:hover .item-img.beach {background-image: url("../img/cat_beach_on.svg"); }
    #index .category-search-group .category-list .item:hover .item-img.outdoorscene {background-image: url("../img/cat_outdoor_on.svg"); }
    #index .category-search-group .category-list .item:hover .item-img.disaster {background-image: url("../img/cat_disaster_on.svg"); }
    #index .category-search-group .category-list .item:hover .item-img.running {background-image: url("../img/cat_running_on.svg"); }



    #index .category-search-group .category-list .item:hover span {
      color: #11347C;
      font-weight: 400; }

#index #infoGrid {
  position: relative;
  margin: -5px; }
  #index #infoGrid .grid-sizer {
    width: 25%; }
  #index #infoGrid .grid-item {
    width: 25%;
    padding: 5px; }
    #index #infoGrid .grid-item a {
      display: block;
      width: 100%;
      -webkit-transition: opacity 0.2s ease;
      -o-transition: opacity 0.2s ease;
      transition: opacity 0.2s ease; }
      #index #infoGrid .grid-item a img {
        width: 100%; }
      #index #infoGrid .grid-item a:hover {
        opacity: 0.8; }
    #index #infoGrid .grid-item .item-inner {
      position: relative; }
      #index #infoGrid .grid-item .item-inner iframe {
        width: 100% !important; }
      #index #infoGrid .grid-item .item-inner .item-cat {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 12px;
        padding: 0 6px;
        height: 24px;
        line-height: 24px;
        color: #fff;
        letter-spacing: 1px; }
      #index #infoGrid .grid-item .item-inner .cat-product {
        background-color: #DC7E6F; }
      #index #infoGrid .grid-item .item-inner .cat-topic {
        background-color: #DBD861; }
      #index #infoGrid .grid-item .item-inner .item-date {
        position: absolute;
        right: 0;
        top: 0;
        height: 24px;
        line-height: 24px;
        font-size: 12px;
        background-color: rgba(0, 0, 0, 0.3);
        color: #fff;
        padding: 0 6px;
        letter-spacing: 1px; }
      #index #infoGrid .grid-item .item-inner .item-content {
        position: absolute;
        left: 0;
        width: 100%;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.3);
        color: #fff;
        font-size: 13px;
        padding: 8px; }
    #index #infoGrid .grid-item.col2 {
      width: 50%; }
      #index #infoGrid .grid-item.col2 .item-inner .item-content {
        padding: 15px; }
  #index #infoGrid .item-social {
    background: url("../img/info_bnr_bg.jpg");
    background-size: 100% auto;
    padding: 0;
    text-align: center; }
    #index #infoGrid .item-social .item-ttl {
      letter-spacing: 4px;
      font-size: 18px;
      margin-bottom: 15px; }
    #index #infoGrid .item-social .item-desc {
      font-size: 11px;
      color: #888;
      letter-spacing: 2px;
      padding-top:10px;
    }
    #index #infoGrid .item-social .item-social-list {
      text-align: center;
      padding: 0 70px;
      margin-top: 25px; }
      #index #infoGrid .item-social .item-social-list li {
        display: inline-block;
        width: 24%;
        text-align: center; }
        #index #infoGrid .item-social .item-social-list li a {
          display: inline-block;
          padding: 10px;
          border-radius: 30px; }
          #index #infoGrid .item-social .item-social-list li a img {
            width: 90%; }

#index #topTopics {
  width: 100%;
  overflow: hidden;
  background-color: #F4F4F1;
  padding-bottom: 100px; }
  #index #topTopics .topic-list {
    padding: 0 40px;
    max-width: 1140px;
    margin: 0 auto; }
    #index #topTopics .topic-list .slick-list {
      overflow: visible; }
    #index #topTopics .topic-list .slick-arrow {
      width: 64px;
      height: 64px;
      background-color: #fff;
      opacity: 1;
      -webkit-box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.08);
      box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.08);
      border-radius: 32px;
      z-index: 99;
      margin-top: -20px;
      -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
      transition: opacity .3s ease; }
      #index #topTopics .topic-list .slick-arrow:before {
        position: relative;
        content: ' ';
        display: block;
        left: 50%;
        //top: 50%;
        width: 8px;
        height: 8px;
        margin-top: 0px;
        opacity: 1; }
    #index #topTopics .topic-list .slick-next {
      right: 20px; }
      #index #topTopics .topic-list .slick-next:before {
        margin-left: -5px;
        border-top: 2px solid #444;
        border-right: 2px solid #444;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
    #index #topTopics .topic-list .slick-prev {
      left: 20px; }
      #index #topTopics .topic-list .slick-prev:before {
        margin-left: -3px;
        border-bottom: 2px solid #444;
        border-left: 2px solid #444;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
    #index #topTopics .topic-list .item {
      padding: 0 20px; }
      #index #topTopics .topic-list .item a {
        display: block;
        -webkit-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        -o-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98); }
        #index #topTopics .topic-list .item a:hover {
          opacity: 0.75; }
      #index #topTopics .topic-list .item .item-img img {
        width: 100%;
        display: block; }
      #index #topTopics .topic-list .item .item-content {
        background-color: #fff;
        padding: 20px 25px 25px 25px;
        letter-spacing: 1px; }
        #index #topTopics .topic-list .item .item-content .item-date {
          font-size: 12px;
          color: #888; }
        #index #topTopics .topic-list .item .item-content .item-ttl {
          margin-top: 8px;
          font-size: 16px;
          font-weight: 600; }
        #index #topTopics .topic-list .item .item-content .item-desc {
          font-size: 13px;
          margin-top: 15px;
          color: #808080;
          line-height: 20px; }
        #index #topTopics .topic-list .item .item-content .item-tags {
          margin-top: 15px; }
          #index #topTopics .topic-list .item .item-content .item-tags li {
            display: inline-block;
            margin-right: 2px; }
            #index #topTopics .topic-list .item .item-content .item-tags li a {
              display: block;
              color: #fff;
              font-size: 11px;
              padding: 3px 5px;
              background-color: #888;
              border-radius: 1px;
              text-align: center; }
              #index #topTopics .topic-list .item .item-content .item-tags li a.tag1 {
                background-color: #e3b630; }
              #index #topTopics .topic-list .item .item-content .item-tags li a.tag2 {
                background-color: #e35330; }

#index #topSupport {
  padding: 80px 0;}
  #index #topSupport .business-sec-ttl {
    position: absolute;
    top: -29px;
    left: 0;
    width: 100%; }
    #index #topSupport .business-sec-ttl .business-sec-ttl-inner {
      position: relative;
      width: 280px;
      background-color: #11347C;
      border-radius: 4px;
      color: #fff;
      font-size: 22px;
      letter-spacing: 4px;
      text-align: center;
      margin: 0 auto;
      height: 58px;
      line-height: 58px;
      padding-top: 2px; }
      #index #topSupport .business-sec-ttl .business-sec-ttl-inner:after {
        position: absolute;
        left: 0;
        bottom: -20px;
        content: ' ';
        display: block;
        border-right: 140px solid transparent;
        border-top: 20px solid #11347C;
        border-left: 140px solid transparent; }
  #index #topSupport .top-support-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -12px; }
    #index #topSupport .top-support-list li {
      width: 50%;
      padding: 12px; }
      #index #topSupport .top-support-list li a {
        display: block;
        position: relative; }
        #index #topSupport .top-support-list li a img {
          display: block;
          width: 100%; }
        #index #topSupport .top-support-list li a .support-txt {
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          width: 100%;
          background-color: rgba(0, 0, 0, 0.4);
          padding: 30px 35px;
          -webkit-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
          #index #topSupport .top-support-list li a .support-txt .support-list-ttl {
            color: #fff;
            font-size: 24px;
            letter-spacing: 2px;
            font-weight: 300; }
          #index #topSupport .top-support-list li a .support-txt .sub-ttl {
            font-size: 14px;
            letter-spacing: 2px;
            margin-top: 8px;
            color: #fff;
            opacity: 0.8; }
        #index #topSupport .top-support-list li a .more-txt {
          position: absolute;
          right: 30px;
          bottom: 30px;
          color: #fff;
          font-size: 14px;
          letter-spacing: 2px;
          font-weight: 300;
          display: inline-block;
          overflow: hidden; }
          #index #topSupport .top-support-list li a .more-txt .support-arrow {
            content: ' ';
            display: inline-block;
            width: 8px;
            height: 8px;
            border-top: 1px solid #fff;
            border-right: 1px solid #fff;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            margin-left: 3px;
            position: relative;
            top: -1px;
            margin-right: 10px;
            -webkit-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            transition: all 0.2s ease; }
        #index #topSupport .top-support-list li a:hover .support-txt {
          background-color: rgba(0, 0, 0, 0.25); }
        #index #topSupport .top-support-list li a:hover .more-txt .support-arrow {
          margin-right: 2px; }

#index #topBusiness .cate-study-list .item {
  margin-bottom: 30px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  #index #topBusiness .cate-study-list .item .item-img {
    width: 42%; }
    #index #topBusiness .cate-study-list .item .item-img a {
      display: block;
      width: 100%;
      height: 278px;
      background-repeat: no-repeat;
      background-size: cover;
      overflow: hidden;
      -webkit-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
      -o-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
      transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98); }
      #index #topBusiness .cate-study-list .item .item-img a:hover {
        opacity: 0.75; }
  #index #topBusiness .cate-study-list .item .item-content {
    width: 58%;
    padding: 40px 50px; }
    #index #topBusiness .cate-study-list .item .item-content .item-ttl {
      font-size: 24px;
      letter-spacing: 2px; }
    #index #topBusiness .cate-study-list .item .item-content .item-subttl {
      margin-top: 8px;
      font-size: 16px;
      color: #444; }
    #index #topBusiness .cate-study-list .item .item-content .item-desc {
      margin-top: 20px;
      margin-bottom: 20px;
      font-size: 14px;
      color: #888;
      letter-spacing: 1px; }
    #index #topBusiness .cate-study-list .item .item-content .btn {
      max-width: 200px; }

#index #topNews .news-sections-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 65px 0;
  margin: 0 30px; }
  #index #topNews .news-sections-wrap .sec-news {
    width: 32%;
    padding: 0 30px;
    }
    #index #topNews .news-sections-wrap .sec-news .sec-head {
      margin-bottom: 30px; }
      #index #topNews .news-sections-wrap .sec-news .sec-head .sec-ttl {
        text-align: center;
        font-size: 24px;
        font-weight: 300;
        letter-spacing: 3px; }
        #index #topNews .news-sections-wrap .sec-news .sec-head .sec-ttl:after {
          content: ' ';
          display: block;
          width: 64px;
          margin: 0 auto;
          height: 0;
          border-bottom: 1px solid #222;
          margin-top: 20px; }
    #index #topNews .news-sections-wrap .sec-news .top-news-list {
      margin-bottom: 25px; }
      #index #topNews .news-sections-wrap .sec-news .top-news-list li {
        padding: 22px 0;
        border-bottom: 1px dotted #e0e0e0; }
      #index #topNews .news-sections-wrap .sec-news .top-news-list .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        -o-transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98);
        transition: opacity 0.35s cubic-bezier(0.065, 0.535, 0.155, 0.98); }
        #index #topNews .news-sections-wrap .sec-news .top-news-list .item:hover {
          opacity: 0.75; }
        #index #topNews .news-sections-wrap .sec-news .top-news-list .item .item-img {
          /* width: 30%; プレスリリース画像のmarginnずれ解消のためコメントアウト*/
         }
          #index #topNews .news-sections-wrap .sec-news .top-news-list .item .item-img img {
            width: 100px !important;
            height: auto !important; }
        #index #topNews .news-sections-wrap .sec-news .top-news-list .item .item-content {
          width: 70%;
          padding: 10px 0 0 25px;
          letter-spacing: 2px; }
          #index #topNews .news-sections-wrap .sec-news .top-news-list .item .item-content .item-date {
            font-size: 12px;
            color: #888;
            font-weight: 300; }
          #index #topNews .news-sections-wrap .sec-news .top-news-list .item .item-content .item-ttl {
            margin-top: 5px;
            font-size: 14px;
            line-height: 22px; }

#index #topNews .btn-default {
  max-width: 240px;
  margin: 0 auto;
  font-size: 15px;
  padding: 10px 0 10px; }

@media screen and (max-width: 768px) {
  .sec-top {
    padding: 40px 0 45px; }
    .sec-top .sec-head {
      margin-bottom: 20px;
      padding: 3px 0; }
      .sec-top .sec-head .sec-ttl {
        font-size: 24px; }
        .sec-top .sec-head .sec-ttl span {
          font-size: 12px;
          margin-left: 4px; }
      .sec-top .sec-head .btn-more {
        bottom: 0;
        padding: 6px 10px;
        right: 30px;
       }
  .category-search-group .menu-tab li .menu {
    font-size: 14px;
    letter-spacing: 0; }
  .business-contact-area {
    margin-top: 20px;
    padding-bottom: 0; }
    .business-contact-area .area-ttl {
      font-size: 24px; }
    .business-contact-area .business-contact-btns {
      display: block;
      margin: 0; }
      .business-contact-area .business-contact-btns li {
        width: 100%;
        padding: 0;
        margin-bottom: 15px; }
        .business-contact-area .business-contact-btns li .btn {
          font-size: 20px; }
          .business-contact-area .business-contact-btns li .btn .icn {
            margin-right: 10px; }
    .business-contact-area .tel-txt {
      font-size: 25px;
      letter-spacing: 1px; }
      .business-contact-area .tel-txt span {
        padding: 0; }
        .business-contact-area .tel-txt span:before, .business-contact-area .tel-txt span:after {
          display: none; }
  #index .slick-dots {
    bottom: -24px; }
  #index .category-search-group .category-search-content {
    padding: 30px 0 10px 0; }
  #index .category-search-group .category-list {
    padding: 0 14px;
    margin-top: 0; }
    #index .category-search-group .category-list li {
      width: 33.3333%;
      padding: 0 10px;
      margin-bottom: 22px;
      margin-top: 0; }
  #index .category-search-group .category-list .item span {
    font-size: 12px;
    letter-spacing: 0; }
  #index #topSlider .slick-arrow {
    width: 34px;
    height: 34px; }
    #index #topSlider .slick-arrow:before {
      width: 12px;
      height: 12px; }
  #index #topSlider .slick-next {
    right: 4px; }
    #index #topSlider .slick-next:before {
      margin-left: -10px; }
  #index #topSlider .slick-prev {
    left: 4px; }


  #infoGrid {
    margin: 0;
    margin-top: -10px; }
    #infoGrid .grid-sizer {
      width: 100%; }
    #infoGrid .grid-item {
      width: 100% !important;
      padding: 10px 0; }
      #infoGrid .grid-item.col2 {
        width: 100% !important; }
    #infoGrid .item-social {
      padding: 30px 0; }
      #infoGrid .item-social .item-ttl {
        font-size: 20px; }
      #infoGrid .item-social .item-desc {
        padding: 0 30px;
        line-height: 22px; }
      #infoGrid .item-social .item-social-list {
        padding: 0 10px; }
        #infoGrid .item-social .item-social-list li {
          margin: 0 -5px; }
          #infoGrid .item-social .item-social-list li a img {
            width: 100%; }




  #index #topTopics {
    overflow: hidden; }
    #index #topTopics .topic-list {
      margin: 0 -8px;
      padding: 0 24px;
      max-width: initial; }
      #index #topTopics .topic-list .item {
        padding: 0 10px; }
      #index #topTopics .topic-list .slick-arrow {
        width: 58px;
        height: 58px; }
      #index #topTopics .topic-list .slick-next {
        right: -15px; }
        #index #topTopics .topic-list .slick-next:before {
          margin-left: -14px; }
      #index #topTopics .topic-list .slick-prev {
        left: -15px; }
        #index #topTopics .topic-list .slick-prev:before {
          margin-left: 5px; }
  #index #topSupport .business-sec-ttl {
    top: -27px; }
    #index #topSupport .business-sec-ttl .business-sec-ttl-inner {
      width: 220px;
      height: 52px;
      line-height: 52px;
      font-size: 20px;
      letter-spacing: 2px; }
      #index #topSupport .business-sec-ttl .business-sec-ttl-inner:after {
        bottom: -12px;
        border-right: 110px solid transparent;
        border-top: 12px solid #11347C;
        border-left: 110px solid transparent; }
  #index #topSupport .top-support-list {
    display: block;
    margin: 0; }
    #index #topSupport .top-support-list li {
      width: 100%;
      padding: 0;
      margin-bottom: 15px; }
      #index #topSupport .top-support-list li a .support-txt {
        padding: 20px 25px; }
        #index #topSupport .top-support-list li a .support-txt .support-list-ttl {
          font-size: 22px; }
  #index #topBusiness .cate-study-list .item {
    display: block; }
    #index #topBusiness .cate-study-list .item .item-img {
      width: 100%; }
      #index #topBusiness .cate-study-list .item .item-img a {
        height: 60vw; }
    #index #topBusiness .cate-study-list .item .item-content {
      width: 100%;
      padding: 22px 22px; }
      #index #topBusiness .cate-study-list .item .item-content .item-ttl {
        font-size: 19px;
        letter-spacing: 0; }
      #index #topBusiness .cate-study-list .item .item-content .btn {
        max-width: 100%;
        width: 100%; }
  #index #topNews .news-sections-wrap {
    display: block;
    padding: 40px 0;
    margin: 0; }
    #index #topNews .news-sections-wrap .sec-news {
      width: 100%;
      padding: 0;
      margin-bottom: 40px; }
      #index #topNews .news-sections-wrap .sec-news:first-child, #index #topNews .news-sections-wrap .sec-news:last-child {
        padding: 0; }
      #index #topNews .news-sections-wrap .sec-news:last-child {
        margin-bottom: 0; }
      #index #topNews .news-sections-wrap .sec-news .sec-head {
        margin-bottom: 20px; }
        #index #topNews .news-sections-wrap .sec-news .sec-head .sec-ttl {
          font-size: 22px; }
          #index #topNews .news-sections-wrap .sec-news .sec-head .sec-ttl:after {
            margin-top: 14px;
            width: 48px; }
      #index #topNews .news-sections-wrap .sec-news .top-news-list li {
        padding: 15px 0; }
      #index #topNews .news-sections-wrap .sec-news .top-news-list .item .item-content {
        padding: 1px 0 0 15px; }
        #index #topNews .news-sections-wrap .sec-news .top-news-list .item .item-content .item-date {
          font-size: 11px; }
        #index #topNews .news-sections-wrap .sec-news .top-news-list .item .item-content .item-ttl {
          font-size: 13px;
          line-height: 19px; }
  #index #topNews .btn-default {
    width: 100%;
    max-width: 100%; }
	#header.mode-search .search-area {
		z-index: 5000;
		width: 100%;
	}
	#header .search-area {
		width: 100%;
	}
}


/* table */
.post table { margin:0 0 24px 0;  background: #fff !important;}
.post td, .post th { border:1px solid #ccc; padding:10px 15px 7px; line-height:2; }
.post th { background:#f2f2f2; font-weight:normal; }

.w3eden .media-body {
		width: 100% !important;
}
.hyou_title{background: #e1e1e1 !important; text-align:justify; vertical-align:middle;}






/* レイアウト部品 */
.comp-bread {
  margin-bottom: 15px;
 }
  .comp-bread a {
    position: relative;
    display: inline-block;
    font-size: 12px;
    padding: 5px 17px 5px 0;
    margin-right: 10px;
    letter-spacing: 1px;
    color: #555555;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s; }
    .comp-bread a:hover {
      opacity: 0.8; }
    .comp-bread a::after {
      display: block;
      position: absolute;
      width: 7px;
      height: 7px;
      content: "";
      top: 0;
      bottom: 0;
      right: 0;
      margin: auto;
      border-top: 1px solid #aaa;
      border-right: 1px solid #aaa;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .comp-bread a:nth-of-type(1) {
      color: #a9a9a9; }
    .comp-bread a:nth-last-of-type(1) {
      padding: 5px 0; }
      .comp-bread a:nth-last-of-type(1)::after {
        display: none; }
  .comp-bread.white {
    margin-bottom: 15px; }
    .comp-bread.white a {
      color: #fff;
      -webkit-transition: opacity .4s;
      -o-transition: opacity .4s;
      transition: opacity .4s; }
      .comp-bread.white a:hover {
        opacity: 0.8; }
      .comp-bread.white a::after {
        border-top: 1px solid #fff;
        border-right: 1px solid #fff; }

@media screen and (max-width: 750px) {
    .comp-bread a {
      position: relative;
      display: inline-block;
      font-size: 10px;
      padding: 5px 17px 5px 0;
      margin-right: 10px;
      letter-spacing: 1px;
      color: #555555;
      -webkit-transition: opacity .4s;
      -o-transition: opacity .4s;
      transition: opacity .4s; }
      .comp-bread a:hover {
        opacity: 0.8; }
      .comp-bread a::after {
        display: block;
        position: absolute;
        width: 7px;
        height: 7px;
        content: "";
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        border-top: 1px solid #aaa;
        border-right: 1px solid #aaa;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .comp-bread a:nth-of-type(1) {
        color: #a9a9a9; }
      .comp-bread a:nth-last-of-type(1) {
        padding: 5px 0; }
        .comp-bread a:nth-last-of-type(1)::after {
          display: none; }
    .comp-bread.white {
      margin-bottom: 0px; }
      .comp-bread.white a {
        color: #fff;
        -webkit-transition: opacity .4s;
        -o-transition: opacity .4s;
        transition: opacity .4s; }
        .comp-bread.white a:hover {
          opacity: 0.8; }
        .comp-bread.white a::after {
          border-top: 1px solid #fff;
          border-right: 1px solid #fff; } }

.comp-numtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px; }
  .comp-numtitle .num {
    display: block;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    background-color: #3c5a72;
    border-radius: 100px;
    line-height: 38px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold; }
  .comp-numtitle .txt {
    width: calc(100% - 48px);
    display: block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 1.6px;
    color: #3c5a72; }

.comp-linetitle {
  //width: 50%;
  margin-bottom: 50px; }
  .comp-linetitle .ja {
    //padding-left: calc(50vw - 540px);
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #36466d;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 2px solid #36466d; }
  .comp-linetitle .en {
    font-family: 'futura', sans-serif;
    //padding-left: calc(50vw - 540px);
    display: block;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 2px;
    color: #36466d; }

@media screen and (max-width: 1100px) {
  .comp-linetitle {
    width: 60%;
    margin-bottom: 60px; }
    .comp-linetitle .ja {
      padding-left: calc(50vw - 360px); }
    .comp-linetitle .en {
      font-family: 'futura', sans-serif;
      spadding-left: calc(50vw - 360px); } }


@media screen and (max-width: 740px) {
  .comp-linetitle {
    width: 95vw;
    margin-bottom: 20px;
    margin-top: 50px;
  }
    .comp-linetitle .ja {
      padding-left: 5vw;
      font-size: 24px;
      letter-spacing: 1px;
      border-bottom: 2px solid #36466d; }
    .comp-linetitle .en {
      padding-left: 5vw;
      font-size: 14px; } }

.comp-variation span {
  position: relative;
  display: inline-block;
  border-radius: 100px;
  background-color: #f1f1f1;
  padding: 5px 15px;
  font-size: 12px;
  color: #222;
  margin-right: 5px;
  margin-bottom: 10px; }
  .comp-variation span::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    margin: auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .comp-variation span:nth-last-of-type(1) {
    margin-right: 0; }

.comp-variation.list span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  border-radius: 0;
  background-color: rgba(51, 51, 51, 0.8);
  padding: 10px 0px 10px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  color: #fff;
  margin-right: 0px; }
  .comp-variation.list span::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    margin: auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

@media screen and (max-width: 740px) {
  .comp-variation span {
    position: relative;
    display: inline-block;
    border-radius: 100px;
    background-color: #f1f1f1;
    padding: 5px 10px;
    font-size: 12px;
    color: #222;
    margin-right: 5px;
    margin-bottom: 10px; }
    .comp-variation span::before {
      display: block;
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 9px;
      margin: auto;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .comp-variation span:nth-last-of-type(1) {
      margin-right: 0; }
  .comp-variation.list span {
    padding: 5px 0px 5px 5px;
    font-size: 12px; }
    .comp-variation.list span::before {
      display: none; } }

.comp-variationlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (max-width: 1000px) {
    .comp-variationlist {
      max-width: 700px; } }
  @media screen and (max-width: 500px) {
    .comp-variationlist {
      max-width: 90%; } }
  .comp-variationlist .variation_item {
    width: 258px;
    margin-right: 15px;
    background: #f4f4f4;
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    .comp-variationlist .variation_item:nth-of-type(4n) {
      margin-right: 0; }
    .comp-variationlist .variation_item:nth-last-of-type(1) {
      margin-right: 0; }
    .comp-variationlist .variation_item .img_wrap {
      background: #fff;
      padding: 15px 15px 30px;
      position: relative; }
    .comp-variationlist .variation_item .txt_wrap {
      margin: 15px 0; }
      .comp-variationlist .variation_item .txt_wrap .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 10px; }
        .comp-variationlist .variation_item .txt_wrap .item .txt {
          display: block;
          width: 80px;
          margin-right: 10px;
          padding: 7px 0;
          color: #fff;
          font-size: 12px;
          font-weight: bold;
          background-color: #e0c888;
          text-align: center; }
        .comp-variationlist .variation_item .txt_wrap .item .content {
          width: calc(100% - 90px);
          display: block;
          font-size: 12px; }

@media screen and (max-width: 740px) {
  .comp-variationlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto; } }
  @media screen and (max-width: 740px) and (max-width: 1000px) {
    .comp-variationlist {
      max-width: 700px; } }
  @media screen and (max-width: 740px) and (max-width: 500px) {
    .comp-variationlist {
      max-width: 90%; } }

@media screen and (max-width: 740px) {
    .comp-variationlist .variation_item {
      width: 49%;
      margin-right: 2%;
      padding: 10px; }
      .comp-variationlist .variation_item:nth-of-type(2n) {
        margin-right: 0; }
      .comp-variationlist .variation_item .img_wrap {
        padding: 10px 10px 30px; }
      .comp-variationlist .variation_item .txt_wrap {
        margin: 15px 0; }
        .comp-variationlist .variation_item .txt_wrap .item {
          display: block; }
          .comp-variationlist .variation_item .txt_wrap .item .txt {
            width: 100%;
            margin-right: 0px;
            font-size: 12px;
            margin-bottom: 5px;
            padding: 5px 0; }
          .comp-variationlist .variation_item .txt_wrap .item .content {
            width: 100%; } }

.comp-itemtags span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.3px;
  color: #cd9a03;
  border: 1px solid #cd9a03;
  border-radius: 5px;
  padding: 7px 12px;
  margin-right: 3px; }

.comp-itemtags a {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.3px;
  color: #cd9a03;
  border: 1px solid #cd9a03;
  border-radius: 5px;
  padding: 7px 12px;
  margin-right: 3px;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s; }
  .comp-itemtags a:hover {
    opacity: 0.8; }

.comp-itemspec {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (max-width: 1000px) {
    .comp-itemspec {
      max-width: 700px; } }
  @media screen and (max-width: 500px) {
    .comp-itemspec {
      max-width: 90%; } }
  .comp-itemspec .spec_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px dotted #d8d8d8; }
    .comp-itemspec .spec_item .title {
      display: block;
      width: 160px;
      text-align: center;
      padding: 10px 0;
      background-color: #f8f8f8;
      margin-right: 20px;
      font-size: 13px;
      letter-spacing: 1px;
      color: #222; }
    .comp-itemspec .spec_item .content {
      width: calc(100% - 180px);
      font-size: 12px;
      line-height: 1.6;
      letter-spacing: 1px;
      color: #222; }

@media screen and (max-width: 740px) {
  .comp-itemspec {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto; } }
  @media screen and (max-width: 740px) and (max-width: 1000px) {
    .comp-itemspec {
      max-width: 700px; } }
  @media screen and (max-width: 740px) and (max-width: 500px) {
    .comp-itemspec {
      max-width: 90%; } }

@media screen and (max-width: 740px) {
    .comp-itemspec .spec_item {
      display: block;
      padding-bottom: 7px;
      margin-bottom: 7px;
      border-bottom: 0px; }
      .comp-itemspec .spec_item .title {
        width: 100%;
        padding: 10px 0;
        margin-right: 0px;
        font-size: 13px;
        margin-bottom: 10px; }
      .comp-itemspec .spec_item .content {
        width: 100%;
        font-size: 12px; } }

.comp-cartbutton a {
  text-align: center;
  max-width: 530px;
  -webkit-box-shadow: 0 2px 4px 0 #aaaaaa;
  box-shadow: 0 2px 4px 0 #aaaaaa;
  margin: 0 auto;
  background-color: #102e78;
  display: block;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #fff;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s; }
  .comp-cartbutton a:hover {
    opacity: 0.8; }
  .comp-cartbutton a span {
    display: inline-block;
    padding: 20px 20px 20px 35px;
    position: relative; }
    .comp-cartbutton a span::before, .comp-cartbutton a span::after {
      display: block;
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; }
    .comp-cartbutton a span::before {
      width: 23px;
      height: 23px;
      left: 0;
      background-image: url(../img/icon/icon_cart.svg); }
    .comp-cartbutton a span::after {
      width: 10px;
      height: 10px;
      content: "";
      right: 0;
      margin: auto;
      border-top: 1px solid #fff;
      border-right: 1px solid #fff;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
  .comp-cartbutton a.contact-ver {
    background-color: #e3a92b !important; }
    .comp-cartbutton a.contact-ver::before {
      background-image: url(../img/icon/send.svg); }

.comp-cartbutton.large a {
  max-width: 980px; }

.comp-cartbutton.small a {
  font-size: 16px;
  letter-spacing: 1px; }
  .comp-cartbutton.small a span {
    display: inline-block;
    padding: 10px 20px 10px 35px; }

@media screen and (max-width: 740px) {
  .comp-cartbutton a {
    max-width: 90vw;
    margin: 0 auto;
    font-size: 18px; }
    .comp-cartbutton a span {
      display: inline-block;
      padding: 15px 20px 15px 35px;
      position: relative; }
  .comp-cartbutton.large a {
    max-width: 90vw; }
  .comp-cartbutton.small a {
    font-size: 14px;
    letter-spacing: 1px; }
    .comp-cartbutton.small a span {
      padding: 5px 20px 5px 20px; }
      .comp-cartbutton.small a span::before, .comp-cartbutton.small a span::after {
        display: none; } }

.comp-contactbutton {
  margin-top: 20px; }
  .comp-contactbutton a {
    text-align: center;
    max-width: 530px;
    -webkit-box-shadow: 0 2px 4px 0 #aaaaaa;
    box-shadow: 0 2px 4px 0 #aaaaaa;
    margin: 0 auto;
    background-color: #e3a92b;
    display: block;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #fff;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s; }
    .comp-contactbutton a:hover {
      opacity: 0.8; }
    .comp-contactbutton a span {
      display: inline-block;
      padding: 20px 20px 20px 35px;
      position: relative; }
      .comp-contactbutton a span::before, .comp-contactbutton a span::after {
        display: block;
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover; }
      .comp-contactbutton a span::before {
        width: 23px;
        height: 23px;
        left: 0;
        background-image: url(../img/icon/send.svg); }
      .comp-contactbutton a span::after {
        width: 10px;
        height: 10px;
        content: "";
        right: 0;
        margin: auto;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
  .comp-contactbutton.large a {
    max-width: 980px; }
  .comp-contactbutton.small a {
    font-size: 16px;
    letter-spacing: 1px; }
    .comp-contactbutton.small a span {
      display: inline-block;
      padding: 10px 20px 10px 35px; }

@media screen and (max-width: 740px) {
  .comp-cartbutton a {
    max-width: 90vw;
    margin: 0 auto;
    font-size: 18px; }
    .comp-cartbutton a span {
      display: inline-block;
      padding: 15px 20px 15px 35px;
      position: relative; }
  .comp-cartbutton.large a {
    max-width: 90vw; }
  .comp-cartbutton.small a {
    font-size: 14px;
    letter-spacing: 1px; }
    .comp-cartbutton.small a span {
      padding: 5px 20px 5px 20px; }
      .comp-cartbutton.small a span::before, .comp-cartbutton.small a span::after {
        display: none; } }

/* ページ別 */
#itemDetail .detail-main {
  width: 100%;
  position: relative;
  //padding-top: 60px;
  padding-top: 40px;
  margin-bottom: 80px; }
  #itemDetail .detail-main .flex_wrap {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
    @media screen and (max-width: 1000px) {
      #itemDetail .detail-main .flex_wrap {
        max-width: 700px; } }
    @media screen and (max-width: 500px) {
      #itemDetail .detail-main .flex_wrap {
        max-width: 90%; } }
    #itemDetail .detail-main .flex_wrap .txt_wrap {
      width: 540px;
      margin-right: 60px; }
      #itemDetail .detail-main .flex_wrap .txt_wrap .item_name {
        font-size: 20px;
        font-weight: bold;
        line-height: 1.6;
        letter-spacing: 1.5px;
        color: #222; }
      #itemDetail .detail-main .flex_wrap .txt_wrap .flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 10px auto 20px; }
        #itemDetail .detail-main .flex_wrap .txt_wrap .flex .series {
          font-size: 12px;
          font-weight: normal;
          line-height: normal;
          letter-spacing: 0.1em;
          color: #fff;
          padding: 3px 12px;
          background-color: #36466d; }
        #itemDetail .detail-main .flex_wrap .txt_wrap .flex .price {
          display: block;
          font-size: 12px;
          line-height: normal;
          letter-spacing: 0.1em;
          color: #222; }
          #itemDetail .detail-main .flex_wrap .txt_wrap .flex .price font {
            display: inline-block;
            padding: 0 0.25em;
            font-size: 18px;
            font-weight: bold;
            line-height: normal;
            letter-spacing: 0.1em;
            color: #36466d; }
      #itemDetail .detail-main .flex_wrap .txt_wrap .comp-variation {
        margin-bottom: 20px; }
      #itemDetail .detail-main .flex_wrap .txt_wrap .description {
        margin-top: 35px; }
        #itemDetail .detail-main .flex_wrap .txt_wrap .description .ttl {
          font-size: 18px;
          font-weight: bold;
          line-height: 1.56;
          letter-spacing: 0.1em;
          color: #36466d;
          margin-bottom: 10px; }
          #itemDetail .detail-main .flex_wrap .txt_wrap .description .ttl span {
            display: block; }
        #itemDetail .detail-main .flex_wrap .txt_wrap .description .txt {
          font-size: 14px;
          line-height: 1.83;
          letter-spacing: 0.9px;
          color: #333; }
    #itemDetail .detail-main .flex_wrap .img_wrap {
      width: calc(100% - 600px); }
      #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider {
        width: 420px;
        overflow: hidden; }
        #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider .slick-arrow {
          display: none !important; }
        #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider .slick-dots {
          position: absolute;
          bottom: 10px;
          list-style: none;
          display: block;
          text-align: left;
          padding: 0;
          margin: 0;
          width: 100%;
          text-align: center; }
          #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider .slick-dots li {
            position: relative;
            display: inline-block;
            height: 10px;
            width: 10px;
            margin: 0 10px;
            padding: 0;
            cursor: pointer; }
            #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider .slick-dots li button {
              -webkit-appearance: none;
              -moz-appearance: none;
              appearance: none;
              border: 1px solid #333;
              background: transparent;
              display: block;
              height: 10px;
              width: 10px;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              border-radius: 50%;
              outline: 0;
              line-height: 0;
              font-size: 0;
              color: transparent;
              padding: 5px;
              cursor: pointer; }
              #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider .slick-dots li button::before {
                display: none !important; }
            #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider .slick-dots li.slick-active button {
              background: #333; }
        #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider .item_box {
          padding: 0 40px 40px; }
          #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider .item_box a {
            display: block;
            height: 420px;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover; }
  #itemDetail .detail-main .comp-cartbutton {
    margin-top: 50px; }

#itemDetail .detail-description {
  background: #f4f4f4;
  padding-bottom: 80px; }
  #itemDetail .detail-description .inner {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (max-width: 1000px) {
      #itemDetail .detail-description .inner {
        max-width: 700px; } }
    @media screen and (max-width: 500px) {
      #itemDetail .detail-description .inner {
        max-width: 90%; } }
    #itemDetail .detail-description .inner .desc_item .img_wrap {
      border: solid 1px #e0c888;
      background: #fff; }
    #itemDetail .detail-description .inner .desc_item .txt_wrap {
      margin-top: 20px; }
      #itemDetail .detail-description .inner .desc_item .txt_wrap p {
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: 1px;
        color: #333333; }
        #itemDetail .detail-description .inner .desc_item .txt_wrap p span {
          display: block; }
    #itemDetail .detail-description .inner .desc_wrap {
      padding: 60px 0;
      border-bottom: 1px dotted #e0c888;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      #itemDetail .detail-description .inner .desc_wrap .img_wrap {
        width: 295px;
        margin-right: 40px; }
      #itemDetail .detail-description .inner .desc_wrap .txt_wrap {
        width: calc(100% - 335px); }
      #itemDetail .detail-description .inner .desc_wrap.last {
        border: 0px;
        padding-bottom: 100px; }
    #itemDetail .detail-description .inner .desc_flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 60px 0;
      border-bottom: 1px dotted #e0c888; }
      #itemDetail .detail-description .inner .desc_flex .flex_item {
        width: 520px; }

#itemDetail .detail-relation {
  padding: 80px 0 10px;
  background: #f4f4f4; }
  #itemDetail .detail-relation .related_items {
    position: relative;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px #e0c888;
    padding: 65px 35px 35px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 70px; }
    @media screen and (max-width: 1000px) {
      #itemDetail .detail-relation .related_items {
        max-width: 700px; } }
    @media screen and (max-width: 500px) {
      #itemDetail .detail-relation .related_items {
        max-width: 90%; } }
    #itemDetail .detail-relation .related_items .relation_ttl {
      font-size: 18px;
      font-weight: bold;
      letter-spacing: 1.4px;
      color: #fff;
      padding: 7px 10px;
      background-color: #e3a92b;
      position: absolute;
      top: -15px;
      left: 20px; }
    #itemDetail .detail-relation .related_items .relationItemSlider .slick-list {
      overflow: hidden; }
    #itemDetail .detail-relation .related_items .relationItemSlider .slick-arrow {
      width: 60px;
      height: 60px;
      background-color: #e0c888;
      opacity: 1;
      -webkit-box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.08);
      box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.08);
      border-radius: 100px;
      z-index: 99;
      -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
      transition: opacity .3s ease;
      line-height: 0;
      font-size: 0;
      position: absolute;
      top: 0;
      bottom: 0px;
      margin: auto; }
      #itemDetail .detail-relation .related_items .relationItemSlider .slick-arrow::before {
        position: relative;
        content: ' ';
        display: block;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 12px;
        height: 12px;
        margin-top: 0px;
        opacity: 1; }
      #itemDetail .detail-relation .related_items .relationItemSlider .slick-arrow.slick-prev {
        left: -65px; }
        #itemDetail .detail-relation .related_items .relationItemSlider .slick-arrow.slick-prev::before {
          left: 2px;
          border-bottom: 2px solid #fff;
          border-left: 2px solid #fff;
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
      #itemDetail .detail-relation .related_items .relationItemSlider .slick-arrow.slick-next {
        right: -65px; }
        #itemDetail .detail-relation .related_items .relationItemSlider .slick-arrow.slick-next::before {
          right: 2px;
          border-top: 2px solid #fff;
          border-right: 2px solid #fff;
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
    #itemDetail .detail-relation .related_items .relationItemSlider .item_box {
      padding: 0 7px; }
      #itemDetail .detail-relation .related_items .relationItemSlider .item_box .img_wrap {
        margin-bottom: 10px; }
        #itemDetail .detail-relation .related_items .relationItemSlider .item_box .img_wrap a {
          display: block;
          width: 100%;
          height: 190px;
          position: relative;
          background: #fff;
          -webkit-transition: opacity .4s;
          -o-transition: opacity .4s;
          transition: opacity .4s; }
          #itemDetail .detail-relation .related_items .relationItemSlider .item_box .img_wrap a:hover {
            opacity: 0.8; }
          #itemDetail .detail-relation .related_items .relationItemSlider .item_box .img_wrap a img {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            width: auto;
            height: 190px; }
      #itemDetail .detail-relation .related_items .relationItemSlider .item_box .txt_wrap a {
        display: block;
        -webkit-transition: opacity .4s;
        -o-transition: opacity .4s;
        transition: opacity .4s; }
        #itemDetail .detail-relation .related_items .relationItemSlider .item_box .txt_wrap a:hover {
          opacity: 0.8; }
        #itemDetail .detail-relation .related_items .relationItemSlider .item_box .txt_wrap a .copy {
          display: block;
          font-size: 14px;
          font-weight: bold;
          line-height: 1.6;
          letter-spacing: 1px;
          color: #3c5a72;
          margin-bottom: 5px; }
        #itemDetail .detail-relation .related_items .relationItemSlider .item_box .txt_wrap a .name {
          display: block;
          font-size: 12px;
          line-height: 1.6;
          letter-spacing: 1px;
          color: #333; }

#itemDetail .detail-variation {
  padding: 80px 0; }

#itemDetail .detail-spec {
  padding: 80px 0; }

#itemDetail #product-specification td {
  line-height: 2em; }

#itemDetail #product-specification table th {
  width: 30%; }

#itemDetail .minitbl tr td {
  padding: 0; }

#itemDetail table {
  width: 100%;
  border-spacing: 0;
  font-size: 14px; }

#itemDetail table th {
  color: #000000;
  padding: 5px;
  background: #e1e1e1;
  border: 1px solid #999;
  text-align: center;
  font-weight: normal; }

#itemDetail table tr td {
  padding: 1px 8px;
  border: 1px solid #999; }

#itemDetail table tr {
  background: #fff; }

#itemDetail table tr:nth-child(2n+1) {
  background: #fff; }

#itemDetail table tr:hover {
  background: #cecfd0; }

@media screen and (max-width: 740px) {
  /* ページ別 */
  #itemDetail .detail-main {
    padding-top: 0px;
    margin-bottom: 80px; }
    #itemDetail .detail-main .flex_wrap {
      max-width: 1080px;
      margin-left: auto;
      margin-right: auto;
      display: block; } }
    @media screen and (max-width: 740px) and (max-width: 1000px) {
      #itemDetail .detail-main .flex_wrap {
        max-width: 700px; } }
    @media screen and (max-width: 740px) and (max-width: 500px) {
      #itemDetail .detail-main .flex_wrap {
        max-width: 90%; } }

@media screen and (max-width: 740px) {
      #itemDetail .detail-main .flex_wrap .txt_wrap {
        width: 100%;
        margin-right: 0px; }
        #itemDetail .detail-main .flex_wrap .txt_wrap .item_name {
          font-size: 20px;
          font-weight: bold;
          line-height: 1.6;
          letter-spacing: 1.5px;
          color: #222; }
        #itemDetail .detail-main .flex_wrap .txt_wrap .flex {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          margin: 10px auto 20px; }
          #itemDetail .detail-main .flex_wrap .txt_wrap .flex .series {
            font-size: 12px;
            font-weight: normal;
            line-height: normal;
            letter-spacing: 0.1em;
            color: #fff;
            padding: 3px 12px;
            background-color: #36466d; }
          #itemDetail .detail-main .flex_wrap .txt_wrap .flex .price {
            display: block;
            font-size: 12px;
            line-height: normal;
            letter-spacing: 0.1em;
            color: #222; }
            #itemDetail .detail-main .flex_wrap .txt_wrap .flex .price font {
              display: inline-block;
              padding: 0 0.25em;
              font-size: 18px;
              font-weight: bold;
              line-height: normal;
              letter-spacing: 0.1em;
              color: #36466d; }
        #itemDetail .detail-main .flex_wrap .txt_wrap .comp-variation {
          margin-bottom: 20px; }
        #itemDetail .detail-main .flex_wrap .txt_wrap .description {
          margin-top: 35px; }
          #itemDetail .detail-main .flex_wrap .txt_wrap .description .ttl {
            font-size: 18px;
            font-weight: bold;
            line-height: 1.56;
            letter-spacing: 0.1em;
            color: #36466d;
            margin-bottom: 10px; }
            #itemDetail .detail-main .flex_wrap .txt_wrap .description .ttl span {
              display: block; }
          #itemDetail .detail-main .flex_wrap .txt_wrap .description .txt {
            font-size: 14px;
            line-height: 1.83;
            letter-spacing: 0.9px;
            color: #333; }
      #itemDetail .detail-main .flex_wrap .img_wrap {
        width: 100%; }
        #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider {
          width: 100%; }
          #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider .item_box {
            padding: 0 40px 40px; }
            #itemDetail .detail-main .flex_wrap .img_wrap #itemImgSlider .item_box a {
              height: 90vw; }
    #itemDetail .detail-main .comp-cartbutton {
      margin-top: 30px; }
  #itemDetail .detail-description {
    background: #f4f4f4;
    padding-bottom: 80px; }
    #itemDetail .detail-description .inner {
      max-width: 1080px;
      margin-left: auto;
      margin-right: auto; } }
    @media screen and (max-width: 740px) and (max-width: 1000px) {
      #itemDetail .detail-description .inner {
        max-width: 700px; } }
    @media screen and (max-width: 740px) and (max-width: 500px) {
      #itemDetail .detail-description .inner {
        max-width: 90%; } }

@media screen and (max-width: 740px) {
      #itemDetail .detail-description .inner .desc_item .img_wrap {
        border: solid 1px #e0c888;
        background: #fff; }
      #itemDetail .detail-description .inner .desc_item .txt_wrap {
        margin-top: 20px; }
        #itemDetail .detail-description .inner .desc_item .txt_wrap p {
          font-size: 14px;
          line-height: 1.7;
          letter-spacing: 1px;
          color: #333333; }
          #itemDetail .detail-description .inner .desc_item .txt_wrap p span {
            display: block; }
      #itemDetail .detail-description .inner .desc_wrap {
        display: block;
        padding: 60px 0; }
        #itemDetail .detail-description .inner .desc_wrap .img_wrap {
          width: 100%;
          margin-right: 0px; }
        #itemDetail .detail-description .inner .desc_wrap .txt_wrap {
          width: 100%; }
      #itemDetail .detail-description .inner .desc_flex {
        display: block;
        padding: 60px 0; }
        #itemDetail .detail-description .inner .desc_flex .flex_item {
          width: 100%; }
  #itemDetail .detail-relation {
    padding: 80px 0 10px;
    background: #f4f4f4; }
    #itemDetail .detail-relation .related_items {
      position: relative;
      max-width: 1080px;
      margin-left: auto;
      margin-right: auto;
      border: solid 1px #e0c888;
      padding: 65px 35px 35px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      margin-bottom: 70px; } }
    @media screen and (max-width: 740px) and (max-width: 1000px) {
      #itemDetail .detail-relation .related_items {
        max-width: 700px; } }
    @media screen and (max-width: 740px) and (max-width: 500px) {
      #itemDetail .detail-relation .related_items {
        max-width: 90%; } }

@media screen and (max-width: 740px) {
      #itemDetail .detail-relation .related_items .relation_ttl {
        font-size: 18px;
        font-weight: bold;
        letter-spacing: 1.4px;
        color: #fff;
        padding: 7px 10px;
        background-color: #e3a92b;
        position: absolute;
        top: -15px;
        left: 20px; }
      #itemDetail .detail-relation .related_items .relationItemSlider .slick-list {
        overflow: hidden; }
      #itemDetail .detail-relation .related_items .relationItemSlider .slick-arrow {
        width: 50px;
        height: 50px;
        bottom: 40px; }
        #itemDetail .detail-relation .related_items .relationItemSlider .slick-arrow.slick-prev {
          left: -45px; }
        #itemDetail .detail-relation .related_items .relationItemSlider .slick-arrow.slick-next {
          right: -45px; }
  #itemDetail .detail-variation {
    padding: 60px 0; }
  #itemDetail .detail-spec {
    padding: 60px 0; } }






.descpict {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-content: stretch;

}
.descpict01 {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}




#product-image{width:100%; margin:0 auto;}

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.sc_table
{max-width: 1200px;
margin:0 auto;}


@media screen and (max-width: 1100px) {
	.slider_li01l{width:420px; height: 420px;}
}

@media screen and (max-width: 740px) {
	.slider_li01l{width:420px; height: 420px;}
}

@media screen and (max-width: 480px) {
	.slider_li01l{width:100%; height: 100%;}
}

.jumpbutton50{
  padding: 15px;
  margin: 15px 0px;
  position: relative;
  border: 2px solid #eee;
  color: #11347C;
  text-align: center;
  width: 100%;
  display: inline-block;
  text-decoration: none;

  background-color: #fff;
  border-radius: 10px;/*角の丸み*/
  font-weight: bold;
  }
.jumpbutton50 a{display: block;}

.jumpbutton50:active {
  /*押したとき*/
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}





.cform th {
	font-size: 14px;
	width: 20%; /*変なところで改行される場合はここの数字を変更します。*/
	border-bottom: solid 1px #d6d6d6;
	padding: 10px 0 10px 15px;
	font-weight: normal;
}

.cform td {
	font-size: 14px;
	line-height: 150%;
	border-bottom: solid 1px #d6d6d6;
	padding: 10px 5px;
}

.cform {
	width: 100%;
	margin: auto;
}

.cform [type=submit] {
	display: inline-block;
	font-size: 20px;
	padding: 10px 30px;
	text-decoration: none;
	background: #ff8f00;
	color: #FFF;
	border-bottom: solid 4px #B17C00;
	border-radius: 3px;
}

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
	width: 100%;
}

.cf_required{
	font-size: 8pt;
	padding: 5px;
	background: #ce0000;
	color: #fff;
	border-radius: 3px;
	margin-left: 10px;
	vertical-align: middle;
}

@media only screen and (max-width:767px) {
	.cform th,
	.cform td {
		width: 100%;
		display: block;
		border-top: none;
	}
}

.submit-btn input {
	background: #00142c;
	width: 60%;
	max-width: 550px;
	min-width: 220px;
	margin: 30px auto;
	display: block;
	border: 1px #00142c solid;
	text-align: center;
	padding: 5px;
	color: #fff;
	transition: all 0.4s ease;
}

.submit-btn input:hover {
	background: #fff;
	color: #00142c;
}

.ip11h {
  padding: 0.5em;/*文字周りの余白*/
  color: #010101;/*文字色*/
  background: #eaf3ff;/*背景色*/
  border-bottom: solid 3px #516ab6;/*下線*/
}

.info001{
	font-size:1.0em;
	width:100%;
    padding: 20px;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.info001s{
	font-size:1.2em;
	width:100%;
    padding: 20px;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

//Toppage_Product_List

#topInformation .sec-top{background:#F4F4F1; width:100%;}
.primary-wrapper{width:100%;}
.product-ribbon{width:100%;}
.product-area{max-width:1100px; margin: 0 auto;}
.prd_box{
	display: grid;
	//grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-template-columns: repeat(auto-fit, 250px);
	grid-auto-rows: 1fr;
	grid-gap: 0.8em;
	border: 0px solid #ddd;
	padding: 4em 0.8em;
	margin: 0 0 2em;
	justify-content: center;
	}

@media screen and (max-width: 1024px){
grid-template-columns: repeat(auto-fit, minmax(144px, 1fr));
}

/* .prd_box > div {background: #fff;} */

.product-item{
	//max-width: 250px;
	height: auto; border: none; position: relative; margin: 0 auto;}

.product-item li{
/* position: absolute; */
/* background:#11347c;  */
/* color: #fff; */
/* padding: 5px;  */
/* margin:0 auto; */
}

.flex_prd_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-item .prd_date{
  font-size:1em;
  top: 5px;
  left: 0;
  padding: 7px 0 4px 0;
  font-family: 'Oswald', sans-serif;
}

.product-item .prd_title{width: calc(100% – 20px);
  font-size:12px;
  bottom: 0;
  left: 0;
 //display: -webkit-box;
	//-webkit-box-orient: vertical;
	//-webkit-line-clamp: 2;
	overflow-y: scroll;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
  padding-bottom: 15px;
  line-height: 1.7;
}
.product-item .prd_title::-webkit-scrollbar {  /* Chrome, Safari 対応 */ display:none;}
.product-item img{width: 100%; height:auto;}
.product-item img:hover{-webkit-animation: zoom .3s; animation: zoom .3s;}
.product-item a {display: inline-block;}
/* .product-item a:hover {-webkit-animation: zoom .3s; animation: zoom .3s;} */
@-webkit-keyframes zoom {50% {-webkit-transform: scale(1.05);}}
@keyframes zoom {50% {transform: scale(1.05);}}
.prd-list li{position: relative;}
.prd-list-date {position: absolute; left: 0; bottom: 0; background-color: rgba(0,0,0,0.6);}
.prd-list-title {position: absolute; left: 0; bottom: 0; background-color: rgba(0,0,0,0.6);}
.prd-list-title a{color: #fff; padding: 5px; font-size: 130%;}
.banner-ribbon{}
.banner-area{max: width 14px;00px; margin: 0 auto;}
.bnr_box{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(338px, 1fr));
	grid-gap: 1.0em;
	border: 0px solid #ddd;
	padding: 2em 0;
	margin: 0 0 6em;
  justify-content: center;
	}
.bnr_box > div {}
.bnr_item{max-width: 530px; height: auto; border: none; position: relative; margin:0 auto;}
.bnr_item img{width: 100%;transition:0.3s;}
.bnr_item img:hover{opacity: 0.7;transition:0.3s;}






@media screen and (max-width: 740px) {
  .bnr_item0{max-width: 530px; height: auto; border: none; position: relative; margin:0 auto;}
  .bnr_item0 img{width: 100%;}

}


.info_ttl{
	display: inline-block;
	margin-left: 10px;
	font-size: 18px;
	color: #11347C;
	letter-spacing: 1px;
	}

.formstyle-cp1911 table th {
    background-color: #f5f5f5;
    width: 45%;
}

.firstv_topic {
counter-reset:list;
  list-style-type:none;
  font: 14px/1.6 'arial narrow', sans-serif;
  padding:0;
}

.firstv_point {
 position:relative;
  padding: 0 0 0 20px;
  margin: 7px 0 7px 0px;
  font-weight: bold;
  font-size:1.0em;
  line-height: 36px;
  border-bottom: dashed 1px #aaa;
}

.firstv_point:before {
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 0;
  width: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #aaa;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 720px){
#resp_table001 table { width: 100%;}
/*thとtdを縦並びにする*/
#resp_table001 th,
#resp_table001 td { display: block;}
/*trを横並びにする*/
#resp_table001 tr { font-size: 12px; display: inline-block;}
/*theadとtbodyをblock要素にしてfloat*/
#resp_table001 thead {display: block; float: left;}
#resp_table001 tbody {display: block; overflow-x: scroll;-webkit-overflow-scrolling: touch;white-space: nowrap;}
/*その他装飾*/
#resp_table001 tbody tr { width: 60%; margin-right: -6px;}/*px指定だとはみ出る*/
#resp_table001 tbody td:first-child { background-color: #f5f3ec;}
}


.item-social {
	background: url("../img/info_bnr_bg.jpg");
	background-size: 100% auto;
	padding: 0;
	text-align: center;
	}
.item-social .item-ttl {letter-spacing: 4px; font-size: 20px; margin-bottom: 5px; position: relative; top: 12px;}
.item-social .item-desc {font-size: 13px; color: #888; letter-spacing: 2px; position: relative; top: 15px;}
.item-social .item-social-list {
	text-align: center;
	//padding: 0 70px;
	/* margin-top: 25px; */
	}
.item-social .item-social-list li {display: inline-block; width: 24%; text-align: center; }
.item-social .item-social-list li a {display: flex; padding: 10px; border-radius: 30px; align-items: center;justify-content: center}
p.sns_p {font-size: 16px; font-weight: bold;}
.item-social .item-social-list li a img {width: 45%; padding: 10px; }
@media screen and (max-width:870px) {
  p.sns_p {display: none;}
  .item-social .item-social-list li a img {width: 70%;}
}
@media screen and (max-width:600px) {
  .item-social .item-social-list li a img {width: 80px;}
}
.btn-flat-logo {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #FFF;
  background: #00bcd4;
  transition: .4s;
}

.btn-flat-logo:hover {
  background: #1ec7bb;
}

br{
　display: block !important;
}


.mov_container{	width: 100%; background-color: #eee; padding:80px 0 50px 0; }
.movie-wrap{}
.mov_area{ text-align: center; display: flex; flex-wrap: wrap; justify-content: space-between }
.mov_area span{ display: block; margin: 10px; padding-top:10px; padding-bottom:10px; }

.mov_area a {
  border: 2px solid #11347c;
  font-weight: 500;
  padding: 12px;
  max-width: 320px;
  margin: 0 auto 30px;
}

.movarea_text{width:100%;}
.movitem>*:first-child { align-self: stretch; }
/* .movitem {margin: 0 auto;} */
.yt_title{ display: block; margin:30px;}

@media screen and (max-width: 1090px) {
.mov_area li { margin: 5px; list-style: none; width: 90%; text-align: center;
  //padding-left: 30px;
}.x_switch_pc{display:none;}}
@media screen and (min-width: 1091px) {.x_switch_sp{display:none;}}

/* 動画サイズ修正 */
@media screen and (max-width: 768px){
  .fitsize img{width: 100%;}
  .fitsize embed{width: 100%;}
  .fitsize object{width: 100%;}
  .fitsize iframe{width: 100%;}
  .ytp-cued-thumbnail-overlay-image{width: 100%;}
  }
  .movitem img {width: 100%;}
  .movitem {width: 32%;}
  @media screen and (max-width: 768px)
  {.movitem {width: 100%;}}
/* 動画サイズ修正 */

.center{ margin:0 auto; text-align: center; }

#breadcrumb { margin-right: auto; font-size:0.75em; margin-left:0; padding-left:1.2em; }
#breadcrumb ul{}
#breadcrumb ul li { display:inline!important; list-style: none; font-weight: bold;}
#breadcrumb li:after { content: '> '; padding: 0 3px; color: #555;}
#breadcrumb li:last-child:after { content: ''; }
#breadcrumb li a { text-decoration: none; color: gray; font-weight: bold;}
#breadcrumb li a:after { text-decoration: none;color: gray; content: '> '; padding: 0 3px; }
#breadcrumb li a:last-child:after { content: ''; }
.item-right{ text-align:right:}


.info_container{
	width:100%;
	margin:0 30px;
	}
@media screen and (max-width: 740px) {
.info_container{
	width:100%;
	margin:0px;
	padding:0 5%;
	}
}


.hyou{table-layout: fixed;}
table.hyou {border-collapse: collapse; text-align: left; line-height: 1.5; border: 1px solid #ccc; }
table.hyou thead {border-right: 1px solid #ccc; border-left: 1px solid #ccc; background: #04162e; }
table.hyou thead th {padding: 10px; font-weight: normal; vertical-align: top; color: #000;}
table.hyou tbody th {width: 150px; padding: 16px; font-weight: normal; vertical-align: top; border-bottom: 1px solid #ccc; background: #efefef; }
table.hyou td { width: 350px; padding: 10px !important; vertical-align: top; border-bottom: 1px solid #ccc; }

.flex-direction-nav a:before {z-index:6000;}
.flex-direction-nav{z-index:6000;}
//body {overflow-x: hidden;}
html {overflow: auto;}
.flexslider{}

.article-btn a{
 display:block;
 text-decoration:none;
 padding:7px 10px;
 border-radius:4px;
 font-weight:bold;
 color:#e34c26;
 background-color:white;
 border:2px solid #e34c26;
 transition:all 0.5s;
 text-align:center;
}
.article-btn a:hover{
	text-decoration:none !important;
	color:#fff !important;
 background-color:#e34c26;
 border:2px solid #e34c26;
}

	.cptbl_resp{overflow: auto; overflow-x: auto; white-space: nowrap;}
	.cptbl_resp:after {content: "※ このテーブルは横にスクロールできます。";}
@media screen and (max-width: 740px) {
	.cptbl_resp{overflow: auto; overflow-x: auto;}
}

.box11{
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.box11 p {
    margin: 0;
    padding: 0;
}

.rich_detail{
	background: #f4f4f4;
	margin:0 auto;
	}
.rich_detail_area{
	background: #f4f4f4;
	max-width: 1080px;
	margin:0 auto;
	text-align: center;
	}
@media screen and (max-width: 740px) {
	.rich_detail{}
	.rich_detail_area{}
  .rich_detail_area img {max-width: 100%;}
}


.info-window {
    width: 100%;
    font-size: 1.2em;
    border: 2px solid #f8f8f8;
    border-top: 10px solid #f8f8f8;
    padding: 20px;
    margin: 10px 0;
}

a.info-window{
	color:#f8f8f8;
}

.sbox {
    position: absolute;
    /*フォームの絶対位置*/
    left: 0;
    top: 0;
    width: 100%;
    outline: 0;
    /*クリック時の青い枠線消す*/
    height: 50px;
    /*検索ボックスの高さ*/
    padding: 0 10px;
    /*テキスト位置調整*/
    border-radius: 2px 0 0 2px;
    /*検索ボックスの角を丸める*/
    background: #eee;
    /*検索ボックスの背景カラー*/
    font-size: 16px;
	}


.inform_def{
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f5f5f5;
    padding: 30px;
    margin-bottom: 40px;
}
.inform_text{
	line-height: 1.3;
}

.inform_text ul {
  list-style:none;
}

.inform_text ul li{
	margin-bottom:8px;
	text-indent:-1em;
	padding-left:1em;
}


.form_result {
    display: block;
    margin: 0 15px 15px 15px;
    padding-bottom: 20px;
    height: auto;
    width: auto;

}

.form_result h2{font-size:2em; font-weight:bold;}
.form_result h3{font-size:1.6em; font-weight:bold;}
.form_result p{margin:10px 0;}

.voice_intro_container{width:100%;}
.voice_intro_pics{width:50%; float:left; padding:20px;}
.voice_intro_text{width:100%; margin:20px 10px;}
@media screen and (max-width: 740px) {
  .voice_intro_pics{width:100%; float:none;}
.voice_intro_text{width:100%; padding:20px 20px;}
}






.faq_top_container{
  display:-moz-flex;
    display:-webkit-flex;
    display:-o-flex;
    display:-ms-flex;
  display:flex;
  flex-wrap: wrap;
  width:100%;
  max-width: 1240px;
  margin: 0 0 10px;
  display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
.faq_top_container {
padding: 0 5vw;
  }
}

@media screen and (max-width: 768px) {
.faq_top_container {
display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(7, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  }
}


.g-div1 { grid-area: 1 / 1 / 2 / 5; }
.g-div2 { grid-area: 1 / 5 / 2 / 7; }
.g-div3 { grid-area: 2 / 1 / 3 / 3; }
.g-div4 { grid-area: 2 / 3 / 3 / 5; }
.g-div5 { grid-area: 2 / 5 / 3 / 7; }
.g-div6 { grid-area: 3 / 1 / 4 / 4; }
.g-div7 { grid-area: 3 / 4 / 4 / 7; }



@media screen and (max-width: 768px) {
.g-div1 { grid-area: 1 / 1 / 2 / 2; }
.g-div2 { grid-area: 2 / 1 / 3 / 2; }
.g-div3 { grid-area: 3 / 1 / 4 / 2; }
.g-div4 { grid-area: 4 / 1 / 5 / 2; }
.g-div5 { grid-area: 5 / 1 / 6 / 2; }
.g-div6 { grid-area: 6 / 1 / 7 / 2; }
.g-div7 { grid-area: 7 / 1 / 8 / 2; }
}







.faq_top_items{
  position: relative;
  min-width: 290px;
  /* margin:20px; */
  //float:left;
  text-align: center;
  padding:20px;
  background-color: #f1f1f1;
  //-webkit-box-flex:1;
	//-ms-flex-positive:1;
  flex-grow: 1;
  -ms-flex-negative:0;
	flex-shrink: 0;
  //flex-basis: 250px;
}



.faq_top_items img{
  height:auto;
  max-width: 200px;
  margin:0 auto;
}

.faq_top_items a{
  position: absolute;
  top: 0;
  left: 0;
  height:100%;
  width: 100%;
}

.faq_top_items a:hover {
  /* マウスオーバー時に色変更*/
  background-color: #ffffff61;
  transition: 0.3s;
}


.faq_top_items h3{
  font-size:1.4em;
  font-weight:bold;
  margin:20px 0;
}



.catlist_container{
  display: flex;
  flex-wrap: wrap;
  //width:100%;
  //max-width: 1080px;
  //margin: 0 auto;
}

.catlist_parbox{
  color:#fff !important;
  position: relative;
  margin:5px;
  text-align: center;
  padding:5px;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 250px;
  display: flex;
  flex-wrap: wrap;
}
.catlist_chilbox{
  color:#fff !important;
  position: relative;
  //margin:20px;
  border-radius: 5px;
  text-align: center;
  padding:20px;
  font-size:16px;
  background-color: #3c5a72;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 250px;
  }

  .catlist_chilbox a{
    color:#fff !important;
    //position: absolute;
    //top: 0;
    //left: 0;
    //height:100%;
    //width: 100%;
  }

.parbox_title{
width:100%;
font-weight: bold;
}
.genre_list{
    margin:10px;
    background-color: #e0c888;
  }



.general_flb_container {
  display: flex;
  flex-wrap: wrap;
  width:100%;
  max-width: 1130px;
  margin: 0 auto;
  justify-content: space-between;
}
.general_flb_items{
  width:45%;
  position: relative;
  margin:20px;
  border-radius: 15px;
  text-align: center;
  padding: 30px;
  background-color: #f1f1f1;
}

@media screen and (max-width: 740px) {
  .general_flb_items{width:100%;}
}


.general_flb_items:first-child {}
.general_flb_items:not(:first-child) {}
.general_flb_items span{padding:10px; line-height: 2em;}
.general_flb_items a{position: absolute; top: 0; left: 0; height:100%; width: 100%;}
.general_flb_items a:hover{opacity: 0.1; background-color: #000000; border-radius: 30px;}

.flb_items_red{background-color: #ff0101; color:#fff; font-weight:bold; font-size:1.4em;}
.flb_items_blue{background-color: #5faaff; color:#fff; font-weight:bold; font-size:1.4em;}
.bred{color:#ff0000; font-weight:bold; line-height: 2em;}

.button_01 {
  display: inline-block;
  text-align: left;
  background-image: linear-gradient(#eaeaea 0%, #c6c6c6 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.5), 0 2px 2px rgba(0, 0, 0, 0.19);
  color: #707070;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 1);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
}

.button_01:hover {
  opacity: 0.8;
}



table.bq_tbl {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table.bq_tbl-layout: fixed;
}

table.bq_tbl tr {
  background-color: #e6f2f5;
  padding: .35em;
  border-bottom: 2px solid #fff;
}
table.bq_tbl th,
table.bq_tbl td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}
table.bq_tbl th {
  font-size: .85em;
  color: #666;
}
table.bq_tbl thead tr{
  background-color: #167F92;
  color:#fff;
}
table.bq_tbl tbody th {
    background: #78bbc7;
    color: #fff;
}
.bq_tbl_num{
   text-align: left;
   font-size: .85em;
}
.bq_tbl_jan{
  text-align: right;
  color: #167F92;
  font-weight: bold;
}
.non{
  background:#fff
}
@media screen and (max-width: 600px) {
  table.bq_tbl {
    border: 0;
    width:100%
  }
  table.bq_tbl th{
    background-color: #167F92;
    display: block;
    border-right: none;
  }
  table.bq_tbl thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table.bq_tbl tr {
    display: block;
    margin-bottom: .625em;
  }
  table.bq_tbl td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: .8em;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }

  table.bq_tbl td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: #167F92;
  }
  table.bq_tbl td:last-child {
    border-bottom: 0;
  }
  table.bq_tbl tbody th {
    color: #fff;
}
}

.lc_box {
  display: flex;
  justify-content: space-around;
  border: 1px solid #7f7f7f;
  padding: 20px;
  margin: 20px 0;
  align-items: center;
  position: relative;
  transition: 0.3s;
  border-radius: 10px;
}

.lc_box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background:
    linear-gradient(to right, #11347C, #11347C 33.33%, transparent 33.33%, transparent 66.66%, #11347C 66.66%, #11347C) 100% 0 / 300% 1px no-repeat,
    linear-gradient(to bottom, transparent, transparent 33.33%, #11347C 33.33%, #11347C 66.66%, transparent 66.66%, transparent) 100% 100% / 1px 300% no-repeat,
    linear-gradient(to right, #11347C, #11347C 33.33%, transparent 33.33%, transparent 66.66%, #11347C 66.66%, #11347C) 0 100% / 300% 1px no-repeat,
    linear-gradient(to bottom, transparent, transparent 33.33%, #11347C 33.33%, #11347C 66.66%, transparent 66.66%, transparent) 0 0 / 1px 300% no-repeat;
  opacity: 0;
  animation: move 1s linear infinite;
  transition: opacity 0.3s;
  border-radius: 10px;
}

.lc_box:hover::before {
  opacity: 1;
}

@keyframes move {
  0% {
    background-position: 100% 0, 100% 100%, 0 100%, 0 0;
  }

  100% {
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  }
}

.lc_thumb {
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

.lc_thumb img {
  width: 100%;
  max-width: 200px;
  margin: 0;
}

.lc_content {
  flex: 1;
}

.lc_title {
  font-weight: 600;
  font-size: 17px;
  padding-bottom: 10px;
}

.lc_description {
  font-size: 16px;
}

.lc_box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

@media only screen and (max-width: 480px) {

  .lc_box {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .lc_thumb {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .lc_thumb img {
    max-width: 100%;
  }
  .lc_content {
    width: 100%;
  }
  .lc_title {
    font-size: 18px;
  }
  .lc_description {
    font-size: 14px;
  }
}



.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 14px;
  line-height: 14px;
        text-align: center;
}
.pagination-box {
  display: inline-block;
}
.pagination span, .pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 10px 15px 10px 15px;
  text-decoration: none;
  width: auto;
  color: #cacaca; /* 通常の文字色 */
  background: #3c5a72; /* 通常の背景色 */
}
.pagination a:hover{
  color: #47BEA0; /* マウスホバー時の文字色 */
  background: #F9D635; /* マウスホバー時の背景色 */
}
.pagination .current{
  padding: 10px 15px 10px 15px;
  color: #3c5a72; /* 現在のページの文字色 */
        background: #ffffff; /* 現在のページの背景色 */
        border: 1px solid #3c5a72;
}
@media only screen and (max-width: 413px) {
.pagination {
  font-size: 12px;
  line-height: 12px;
}
.pagination span, .pagination a {
  padding: 8px 10px 8px 10px;
}
.pagination .current{
  padding: 8px 10px 8px 10px;
}
}


#content_wpdm_packages_1 .col-lg-6 {    padding: 30px;}
.tax-wpdmcategory #header{}
.tax-wpdmcategory #headerimg{display: none;}

.w3eden .col-md-12 {
  margin: 14px 0;
}

#tophero {
   margin-top: 18px !important;
}


#tophero .slick-slide img {
  width: 100%;
}
#tophero .slick-slide {
  transition :  all ease-in-out .3s;
  opacity :  .2;
}

#tophero .slick-active {
  opacity :  .5;
}

#tophero .slick-current {
  opacity :  1;
}









@media only screen and (max-width: 750px) {
  .entry-content{margin-top:50px !important;}
  }





  .progressbar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 33.333%;
    color: #999999;
    font-weight: bold;
    counter-increment: steps;
}
.progressbar li:before {
    display: block;
    width: 34px;
    height: 34px;
    margin: 7px auto 17px auto;
    content: '';
    line-height: 32px;
    font-size: 12px;
    text-align: center;
    border-radius: 50%;
    background-color: #F5F5F5;
    content: counter(steps);
}
.progressbar li:after {
    position: absolute;
    z-index: -1;
    top: 15px;
    left: -50%;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #F5F5F5;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active,
.progressbar li.complete{
    color: #0070BD;
}
.progressbar li.active:before,
.progressbar li.complete:before {
    background-color: #0070BD;
    color: #FFF;
    font-size: 1.5em;
}
.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: #0070BD;
}

#pl_nav {
  list-style: none;
  display: flex;
  margin:5px;
}

#pl_nav li {
  width: 140px;
  text-align: center;
  background-color: #333;
  height: 50px;
  line-height: 50px;
  margin-right: 2px;
}

#pl_nav li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 20px;
}



#topAnnounce {
  color:#fff;
  font-weight:bold;
  font-size:1.2em;
  background-color:#11347c;
  padding: 10px 172px 10px 172px;
  text-align:center;
}

#topAnnounce img{
  width:20px;
  height:auto;
}

@media only screen and (max-width: 750px) {
  #topAnnounce {
    padding: 10px 5px 10px 5px;
    font-size:1.0em;}
  }

.displaynone{display:none;}
#yesno_wrap{
    max-width: 1080px;
    margin: 0 auto;
    }
ul#choices li button {text-align: center !important;}

@media screen and (max-width: 768px){
  .fitsize img{width: 100%;}
  .fitsize embed{width: 100%;}
  .fitsize object{width: 100%;}
  .fitsize iframe{width: 100%;}
  .ytp-cued-thumbnail-overlay-image{width: 100%;}
}

.mkYL { background: linear-gradient(rgba(255, 255, 255, 0) 40%, #F7FD9B 70%); }
.mkPN { background: linear-gradient(rgba(255, 255, 255, 0) 40%, #FBD4E6 70%); }
.mkGR { background: linear-gradient(rgba(255, 255, 255, 0) 40%, #B5F8D9 70%); }
.mkBL { background: linear-gradient(rgba(255, 255, 255, 0) 40%, #BFE1FC 70%); }

/*--------------------------------------
コンバージョンアップボタン 吹き出し赤色（中央寄せ）
--------------------------------------*/
.button2,
a.button2,
button.button2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.button2-c-wrap {
  margin: 30px 0;
  text-align: center;
}
a.button2-c {
  font-size: 1.15rem;
  width: 100%;
  position: relative;
  padding: 0.25rem 2rem 0.5rem 1.8rem;
  color: #fff;
  background: #e94919;
  -webkit-box-shadow: 0 5px 0 #d44114;
  box-shadow: 0 5px 0 #d44114;
}
a.button2-c span {
  font-size: 0.8rem;
  position: absolute;
  top: -0.75rem;
  left: calc(50% - 180px);
  display: block;
  width: 360px;
  padding: 0.25rem 0;
  color: #d44114;
  border: 2px solid #d44114;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
a.button2-c span:before,
a.button2-c span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}
a.button2-c span:before {
  bottom: -10px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #d44114 transparent transparent transparent;
}

a.button2-c span:after {
  bottom: -7px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

a.button2-c i {
  margin-right: 0.75rem;
}

a.button2-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #eb5b30;
  -webkit-box-shadow: 0 2px 0 #d44114;
  box-shadow: 0 2px 0 #d44114;
}
/*--------------------------------------
コンバージョンアップボタン 緑色（中央寄せ）
--------------------------------------*/
.button1,
a.button1,
button.button1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.button1-wrap {
  margin: 30px 0;
  text-align: center;
}

a.button1-c {
    font-size: 1.15rem;
    width: 100%;
    position: relative;
    padding: 0.25rem 2rem 0.5rem 3.5rem;
    color: #fff;
    background: #32b16c;
    -webkit-box-shadow: 0 5px 0 #2c9d60;
    box-shadow: 0 5px 0 #2c9d60;
}

a.button1-c span {
  font-size: 0.8rem;

  position: absolute;
  top: -10px;
  left: calc(50% - 150px);

  display: block;

  width: 300px;
  padding: 0.2rem 0;

  color: #32b16c;
  border: 2px solid #32b16c;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.button1-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #30a967;
  -webkit-box-shadow: 0 2px 0 #2c9d60;
  box-shadow: 0 2px 0 #2c9d60;
}

a.button1-c:hover:before {
  left: 2rem;
}
/*--------------------------------------
コンバージョンアップボタン 黄色（中央寄せ）
--------------------------------------*/
.button3,
a.button3,
button.button3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.button3-wrap {
  margin: 30px 0;
  text-align: center;
}

a.button3-c {
    font-size: 1.15rem;
    width: 100%;
    position: relative;
    padding: 0.25rem 2rem 0.5rem 2.1rem;
    color: #333;
    background: #fff100;
    -webkit-box-shadow: 0 5px 0 #2c9d60;
    box-shadow: 0 5px 0 #ccc100;
}

a.button3-c span {
    font-size: 0.8rem;
    position: absolute;
    top: -10px;
    left: calc(50% - 150px);
    display: block;
    width: 300px;
    padding: 0.2rem 0;
    color: #333;
    border: 2px solid #333;
    border-radius: 0.5rem;
    background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.button3-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #333;
  background: #fff100;
  -webkit-box-shadow: 0 2px 0 #ccc100;
  box-shadow: 0 2px 0 #ccc100;
}

a.button3-c:hover:before {
  left: 2rem;
}

/*--------------------------------------
コンバージョンアップボタン 青系（中央寄せ）
--------------------------------------*/
.button4,
a.button4,
button.button4 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.button4-wrap {
  margin: 30px 0;
  text-align: left;
}

a.button4-c {
    font-size: 1.15rem;
    width: 100%;
    position: relative;
    padding: 0.25rem 2rem 0.5rem 3.5rem;
    color: #fff;
    background: #0070bd;
    -webkit-box-shadow: 0 5px 0 #0084de;
    box-shadow: 0 5px 0 #0084de;
}

a.button4-c span {
  font-size: 0.8rem;

  position: absolute;
  top: -10px;
  left: calc(50% - 150px);

  display: block;

  width: 300px;
  padding: 0.2rem 0;

  color: #0070bd;
  border: 2px solid #0070bd;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.button4-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #0070bd;
  -webkit-box-shadow: 0 2px 0 #0084de;
  box-shadow: 0 2px 0 #0084de;
}

a.button4-c:hover:before {
  left: 2rem;
}


/***追従するトップへ戻るボタン***/
#fixedbtn {
  position: fixed;
  bottom: 1%;
  right: 1%;
  display: flex;
  align-items: center;
}
#fixedbtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0c3388;
  height: 60px;
  padding: 0;
  line-height: 1;
  color: #fff;
}

#fixedbtn a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #3f98ef;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


#fixedbtn a.fpagetop {
  margin-left: 4px;
  padding: 0 16px;
}
#fixedbtn a.fpagetop svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  margin: 0 auto;
}
#fixedbtn a:hover {
  background-color: rgba(0, 127, 235, 0.7);
}
@media screen and (max-width: 767px) {
  #fixedbtn {
    width: 100%;
  }
  #fixedbtn a.buy {
    width: calc(100% - 92px);
    font-size: 1.4rem;
  }
  #fixedbtn a.fpagetop {
    width: 90px;
    margin-left: 2px;
    padding: 0;
  }
}
/***トップへ戻るボタンここまで***/


/* 新トップへ戻るボタン */
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 5000;
  display: none; /* ロード時に一瞬表示される対策 */
}

#page_top a {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #11347c;
  transition: 0.3s;
  border-radius: 500px;
}

#page_top a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

#page_top a::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: 55%;
  left: 50%;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}
/* 新トップへ戻るボタン */





/* 導入商品 PNから移植230116 */
ul.column-list {
  margin: 64px auto 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 80px 40px
}

@media screen and (max-width: 767px) {
  ul.column-list {
      margin: 48px auto;
      gap: 40px
  }
}

ul.column-list li {
  width: calc(33.33333% - 28px)
}

@media screen and (max-width: 767px) {
  ul.column-list li {
      width: 100%;
      border-bottom: 1px #eeebe5 solid;
      padding-bottom: 32px
  }
}

ul.column-list li .img {
  width: 100%;
  height: 225px;
  position: relative;
  overflow: hidden
}

ul.column-list li .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%
}

ul.column-list li .txt {
  padding-top: 24px
}

ul.column-list li .txt time {
  font-size: 1.2rem;
  color: rgba(59, 64, 67, 0.75)
}

ul.column-list li .txt p {
  margin-top: 8px;
  font-size: 1.6rem
}

@media screen and (max-width: 767px) {
  ul.column-list li .txt p {
      margin-top: 4px
  }
}

ul.column-list li .txt .items {
  display: flex
}

ul.column-list li .txt .items i {
  display: inline-block;
  font-size: 1rem;
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
  border: 1px rgba(59, 64, 67, 0.25) solid;
  margin-right: 8px;
  white-space: nowrap
}

ul.column-list li .txt .items span {
  padding-top: 3px;
  font-size: 1.2rem;
  line-height: 1.4
}

ul.column-list li .txt .items+p {
  margin-top: 8px
}

@media screen and (max-width: 767px) {
  ul.column-list li .txt .items+p {
      margin-top: 12px
  }
}

ul.column-list li a:hover img {
  //transform: translate(-50%, -50%) scale(1.03, 1.03)
      opacity: 0.8;
}
.object-fit {
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

/*--------------------------------------------------
 * Toppage_Parts_Style
 *-------------------------------------------------*/
.cta-info{
    font-size: 1em;
    letter-spacing: 2px;
    font-weight: 300;
    text-align: center;
    margin-top: 20px;
}

.casestudy-list a:hover {
  opacity: 0.75;
}
.casestudy-cname{
  font-size:1em !important;
}



/* columnlayout */
.column-layout,
.column-layout__flex {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .column-layout,
  .column-layout__flex {
    flex-direction: column;
  }
}

.column-layout__flex img,
.column-layout__flex__text {
  width: 50%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .column-layout__flex img,
  .column-layout__flex__text {
    width: 100%;
  }
}

.column01 {
  flex-direction: column;
}

.column01 img,
.column01 .column-layout__flex__text {
  width: 100%;
}
/* columnlayout */


/* よくある質問_検索フォーム */
form#search {
  display: flex;
}

button.search-btn {
  width: 20%;
  background-color: #3C5A72;
  color: #fff;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  transition: 0.3s;
}

button.search-btn:hover {
  opacity: 0.8;
  transition: 0.3s;
}

input#search-input {
  width: 80%;
  margin: 0 !important;
}
/* よくある質問_検索フォーム */


.faqgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .faqgrid {
    grid-template-columns: repeat(1, 1fr);
  }
}


  .mailfrm_header {text-align:center;}
@media screen and (max-width:768px) {
  .mailfrm_header {text-align:left;}
}

a.jump {height: 1px; display: block; padding-top: 40px; margin-top: -40px;}

/* アニメーション前のスタイル */
.js-marker {
  display: inline;
  position: relative;
  background-image: linear-gradient(90deg, #ffff66, #ffff66); /* 単色の場合は同じ色、グラデーションさせる場合は別々の色 */
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 30%; /* '30%'の部分にマーカーの太さを記入 */
  transition: all 1s ease-in-out; /* マーカーを引く速度を調整 */
  font-weight: bold; /* ついでに太字にしたい場合 */
}

/* アニメーション発火時 */
.js-marker.inview {
  background-size: 100% 30%; /* '30%'の部分は上で設定した太さに合わせる */
}
.marker {
  font-weight:bold;
  /* マーカーを引く
  rgba(255, 153, 0,0.5) の部分はマーカーの色を指定しています。
　実装される際は、お好きな色、透明度をお入れ下さい。 */
  background:linear-gradient(transparent 50%, rgba(255, 230, 0, 0.349) 50%); /* マーカーを引く */

  /* インライン属性を指定する */
  display: inline;
}

.normalist{
    list-style:disc;
    padding-left:30px;
  }
.spbr{display: none;}
@media screen and (max-width:768px) {.spbr{display: block;}}

.ctabtn01{
  width: 100%; padding: 14px 0 16px 0;
  font-size: 20px; position: relative; text-align: center; text-decoration: none; display: block;
  margin: 0 auto;
  color: #000000;
  background: #c2c2c2;
  line-height: 1;
  border-radius: 10px;
  transition: all .2s;
  box-shadow: 0 3px 5px rgb(0 0 0 / 50%);
  top: 50px;
}
.ctabtn01:hover{box-shadow: none; transform: scale(0.99, 0.99) translateY(2px);}
.drv_tablebg00{background-color: #878787 !important;}
.drv_tablebg01{background-color: #eee;}
.p-country-name{display: none !important;}


