@charset "UTF-8";
/**************************************************
    sass
***************************************************/
/* ---------- Media Query --------- */
/* ---------- Common --------- */
/**************************************************
	base
***************************************************/
/* -----------------------------------------------
	1. Body
-------------------------------------------------- */
body {
  min-width: 1200px;
  color: #333;
  text-align: left;
  margin: 0;
}

body, input, textarea, select {
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.8;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body, input, textarea, select {
    font-family: "Meiryo", sans-serif;
  }
}
/* -----------------------------------------------
	2. Elements
-------------------------------------------------- */
/* ---------- base ---------- */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
}

img, video {
  border: 0;
  vertical-align: bottom;
}

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

li {
  margin: 0;
  padding: 0;
}

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

/* ---------- text ---------- */
p {
  margin: 0 0 20px;
}

a {
  color: #397ecf;
  text-decoration: underline;
}

a:hover, a:active {
  color: #397ecf;
  text-decoration: none;
}

a:visited {
  color: #215ca1;
  text-decoration: underline;
}

a[nohref] {
  color: inherit;
}
a[nohref]:hover {
  text-decoration: none;
}

a.tel-link {
  text-decoration: none;
}

/* ---------- plain ---------- */
ul.plain, ol.plain, dl.plain {
  margin-left: 20px;
  margin-bottom: 20px;
}

.plain ul, .plain ol {
  margin: 0 0 0 20px;
}

ul.plain {
  list-style-type: disc;
}
ul.plain ul {
  list-style-type: circle;
}
ul.plain ul ul {
  list-style-type: square;
}

ol.plain, ol.plain ol {
  list-style-type: decimal;
}

/* -----------------------------------------------
	3. Helper Class
-------------------------------------------------- */
/* ---------- clear ---------- */
._clearfix {
  zoom: 1;
}
._clearfix:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

._float-l {
  float: left;
}

._float-r {
  float: right;
}

._clear {
  clear: both;
}

._hidden {
  display: none;
}

/* ---------- text ---------- */
._small {
  font-size: 88% !important;
}

._large {
  font-size: 113% !important;
}

._valignt {
  vertical-align: top !important;
}

._valignm {
  vertical-align: middle !important;
}

._valignb {
  vertical-align: bottom !important;
}

._txtc, ._txtc th, ._txtc td {
  text-align: center !important;
}

._txtr, ._txtr th, ._txtr td {
  text-align: right !important;
}

._txtl, ._txtl th, ._txtl td {
  text-align: left !important;
}

._wordbreak {
  word-break: break-all !important;
}

._nowrap {
  white-space: nowrap !important;
}

._image-text {
  overflow: hidden !important;
}

/* ---------- margin ---------- */
._zero {
  margin-bottom: 0 !important;
}

._half {
  margin-bottom: 10px !important;
}

._default {
  margin-bottom: 20px !important;
}

._middle {
  margin-bottom: 30px !important;
}

._double {
  margin-bottom: 40px !important;
}

._heading_first {
  margin-top: 0 !important;
}

/**************************************************
	structure
***************************************************/
#adminBox {
  margin-top: -74px;
  margin-bottom: 0;
}
#adminBox + .site-header {
  position: static;
}

#top #adminBox {
  margin-top: 0;
}

/* -----------------------------------------------
	1. Header
-------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  min-width: 1200px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  background: #fff;
  padding: 20px 40px;
  z-index: 1001;
}
.site-header .site-header-inner {
  display: flex;
  align-items: center;
}
.site-header .site-header-inner .logo {
  transition: 0.3s;
  margin-right: 50px;
}
.site-header .site-header-inner .logo a {
  display: block;
  text-indent: -9999px;
  width: 262px;
  height: 34px;
  background: url(../images/logo_header_on.png) no-repeat 0 0;
}
.site-header .site-header-inner .global-nav > ul {
  display: flex;
}
.site-header .site-header-inner .global-nav > ul > li {
  position: relative;
  margin: 0 13px;
}
.site-header .site-header-inner .global-nav > ul > li .has-child {
  cursor: pointer;
}
.site-header .site-header-inner .global-nav > ul > li > ul {
  z-index: 2;
  opacity: 0;
  position: absolute;
  top: calc(1.7em + 15px);
  left: -4em;
  width: 10em;
  padding: 0.5em 1.5em;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  background: rgba(57, 126, 207, 0.95);
  transition: all 0.3s;
  pointer-events: none;
}
.site-header .site-header-inner .global-nav > ul > li > ul.-active {
  opacity: 1;
  pointer-events: auto;
}
.site-header .site-header-inner .global-nav > ul > li > ul::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 0;
  background: transparent;
  width: 100%;
  height: 23px;
}
.site-header .site-header-inner .global-nav > ul > li > ul::after {
  content: "";
  position: absolute;
  top: -13px;
  left: calc(50% - 7.5px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 13px 7.5px;
  border-color: transparent transparent #397ecf transparent;
}
.site-header .site-header-inner .global-nav > ul > li > ul > li {
  padding: 0.5em 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
.site-header .site-header-inner .global-nav > ul > li > ul > li:last-child {
  border-bottom: 0;
}
.site-header .site-header-inner .global-nav > ul > li > ul > li a {
  color: #FFF !important;
  font-weight: bold;
  transition: all 0.3s;
}
.site-header .site-header-inner .global-nav > ul > li > ul > li a:hover {
  opacity: 0.8;
}
.site-header .site-header-inner .global-nav > ul > li a {
  display: block;
  padding: 0.2em 0;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
.site-header .site-header-inner .global-nav > ul > li:first-child {
  margin-left: 0;
}
.site-header .site-header-inner .global-nav > ul > li:last-child {
  margin-right: 0;
}
.site-header .english {
  font-family: "Barlow", sans-serif;
  margin-bottom: 0;
}
.site-header .english a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.site-header.is-animation {
  background: #fff;
  padding: 20px 40px;
}
.site-header.is-animation .site-header-inner .logo a {
  background: url(../images/logo_header_on.png) no-repeat 0 0;
}
.site-header.is-animation .site-header-inner .global-nav > ul > li a {
  color: #000;
}
.site-header.is-animation .english a {
  color: #000;
}

/* -----------------------------------------------
	2. Footer
-------------------------------------------------- */
.site-footer {
  background: #397ecf;
}
.site-footer .inner {
  width: 1200px;
  margin: 0 auto;
  padding: 30px 0 50px;
}
.site-footer .inner .headline {
  margin-bottom: 30px;
}
.site-footer .inner .headline > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.site-footer .inner .headline > ul li {
  width: calc((100% - 40px) / 2);
  display: flex;
  align-items: flex-end;
}
.site-footer .inner .headline > ul li .logo-footer {
  max-width: 250px;
  margin-right: 25px;
}
.site-footer .inner .headline > ul li .logo-footer img {
  width: 100%;
  height: auto;
}
.site-footer .inner .headline > ul li .lead {
  margin-bottom: 0;
  line-height: 1;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.site-footer .inner .headline > ul li .contact {
  background: #fff;
  color: #397ecf;
  text-align: center;
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 0;
  transition: 0.3s;
  border: 3px solid #fff;
  box-sizing: border-box;
  text-decoration: none;
}
.site-footer .inner .headline > ul li .contact:hover {
  background: #397ecf;
  transition: 0.3s;
  color: #fff;
  border: 3px solid #fff;
}
.site-footer .inner .address-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}
.site-footer .inner .address-list li {
  width: calc((100% - 40px) / 2);
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 16px 0;
}
.site-footer .inner .address-list li .contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.site-footer .inner .address-list li .contact a {
  text-decoration: none;
}
.site-footer .inner .address-list li .contact p {
  margin-bottom: 0;
  font-weight: bold;
}
.site-footer .inner .address-list li .contact p i {
  margin-top: -1px;
  font-style: normal;
  vertical-align: middle;
}
.site-footer .inner .address-list li .contact p em {
  font-style: normal;
  vertical-align: middle;
  margin-left: 10px;
}
.site-footer .inner .address-list li .contact p.location {
  font-size: 18px;
  padding-top: 5px;
}
.site-footer .inner .address-list li .contact p.tel {
  letter-spacing: 1px;
  font-family: "Barlow", sans-serif;
}
.site-footer .inner .address-list li .contact p.tel em {
  font-size: 28px;
}
.site-footer .inner .address-list li .contact p.fax {
  letter-spacing: 1px;
  font-family: "Barlow", sans-serif;
}
.site-footer .inner .address-list li .contact p.fax em {
  font-size: 20px;
}
.site-footer .inner .address-list li .address {
  font-size: 15px;
  margin: 4px 0 0;
}
.site-footer .copyright {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
  background: #fff;
  font-size: 11px;
  color: #999;
  text-align: center;
  display: block;
}

/* -----------------------------------------------
	3. Contents
-------------------------------------------------- */
.local-nav-wrap {
  background: #ecf1f6;
  padding: 60px 0;
}
.local-nav-wrap .local-nav {
  width: 1200px;
  margin: 0 auto;
  background: #ecf1f6;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.local-nav-wrap .local-nav li {
  text-align: center;
  margin: 0 1px;
  width: 100%;
}
.local-nav-wrap .local-nav li a {
  display: block;
  background: #fff;
  font-size: 14px;
  color: #000;
  padding: 1.2em 0 1em;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
}
.local-nav-wrap .local-nav li a::after {
  content: "";
  background: url(../images/ico_arrow_bottom_gray.png) no-repeat;
  background-size: 8px 4px;
  overflow: hidden;
  transform: rotate(-180deg);
  width: 8px;
  height: 4px;
  display: inline-block;
  position: absolute;
  top: calc(50% - 2px);
  right: 10px;
}
.local-nav-wrap .local-nav li a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.article, .common {
  display: flex;
}
.article .article-primary, .article .primary, .common .article-primary, .common .primary {
  width: calc(100% - 360px);
  flex: 1;
}
.article .article-primary .article-title, .article .primary .article-title, .common .article-primary .article-title, .common .primary .article-title {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.article .article-primary .article-title .h2a, .article .primary .article-title .h2a, .common .article-primary .article-title .h2a, .common .primary .article-title .h2a {
  margin-bottom: 0;
}
.article .article-primary .article-title .entry-date, .article .primary .article-title .entry-date, .common .article-primary .article-title .entry-date, .common .primary .article-title .entry-date {
  margin-bottom: 10px;
}
.article .article-primary .article-title .entry-date .entry-category::before, .article .primary .article-title .entry-date .entry-category::before, .common .article-primary .article-title .entry-date .entry-category::before, .common .primary .article-title .entry-date .entry-category::before {
  content: "|";
  display: inline-block;
  margin: 0 0.5em;
}
.article .article-primary .article-title .entry-date .entry-category a, .article .primary .article-title .entry-date .entry-category a, .common .article-primary .article-title .entry-date .entry-category a, .common .primary .article-title .entry-date .entry-category a {
  color: #333;
  text-decoration: none;
}
.article .article-primary .article-title .entry-date .entry-category a:hover, .article .primary .article-title .entry-date .entry-category a:hover, .common .article-primary .article-title .entry-date .entry-category a:hover, .common .primary .article-title .entry-date .entry-category a:hover {
  text-decoration: underline;
}
.article .article-primary .pager-wrap, .article .primary .pager-wrap, .common .article-primary .pager-wrap, .common .primary .pager-wrap {
  display: flex;
}
.article .article-primary .pager-wrap .pager, .article .primary .pager-wrap .pager, .common .article-primary .pager-wrap .pager, .common .primary .pager-wrap .pager {
  margin: 40px auto 0;
}
.article .side-secondary, .article .secondary, .common .side-secondary, .common .secondary {
  width: 360px;
  box-sizing: border-box;
  padding-left: 60px;
}

.common {
  padding: 20px 0 60px;
}

/* -----------------------------------------------
	4. lower
-------------------------------------------------- */
.page-title {
  background: #397ecf url(../images/bg_page_title.png) no-repeat center center;
  display: flex;
  align-items: center;
  height: 150px;
}
.page-title .title {
  width: 1200px;
  margin: 0 auto;
  color: #fff;
}
.page-title .title span {
  font-weight: bold;
  vertical-align: middle;
  display: inline-block;
}
.page-title .title span.ja {
  font-size: 30px;
}
.page-title .title span.ja small {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 10px;
}
.page-title .title span.en {
  font-size: 12px;
  margin-left: 20px;
  /*text-transform: uppercase;*/
}

.lower-inner {
  zoom: 1;
  width: 1200px;
  margin: 0 auto;
}
.lower-inner:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
.lower-inner > .inner {
  width: 980px;
  margin: 0 auto;
}

.side-nav .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.side-nav.-archive .list-b {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.side-nav.-archive .list-b > li {
  width: calc(50% - 20px);
}
.side-nav a {
  color: #333;
  text-decoration: none;
}
.side-nav a:hover {
  text-decoration: underline;
}

.side-category .title {
  background: #397ecf;
  color: #fff;
  font-weight: bold;
  padding: 16px 20px;
}
.side-category .local-nav li {
  border-bottom: 1px solid #d5dde6;
}
.side-category .local-nav li a {
  display: block;
  text-decoration: none;
  padding: 16px 20px;
  background: #ecf1f6;
  color: #000;
  transition: 0.3s;
}
.side-category .local-nav li a:hover, .side-category .local-nav li a.active {
  background: #d7e5f5;
  transition: 0.3s;
}

/* -----------------------------------------------
  Pager
-------------------------------------------------- */
.entry-pager {
  margin: 40px auto 30px;
  display: flex;
  justify-content: center;
}
.entry-pager li {
  margin: 0 1px;
}
.entry-pager li span {
  display: inline-block;
  padding: 0.4em 1em;
  color: #FFF;
  background: #397ecf;
  text-decoration: none;
}
.entry-pager li a {
  text-decoration: none;
}
.entry-pager li a span {
  color: #000;
  background: #d7e5f5;
}
.entry-pager li a:hover span {
  color: #fff;
  background: #397ecf;
}

.entry-nav {
  position: relative;
  background: #ebf2fa;
  margin: 40px 0 0;
  padding: 10px 20px;
  font-size: 0.88em;
  overflow: hidden;
  min-height: 1.7em;
}
.entry-nav a {
  color: #333;
  text-decoration: none;
}
.entry-nav a:hover {
  text-decoration: underline;
}
.entry-nav .previous {
  float: right;
}
.entry-nav .previous a {
  color: #333;
}
.entry-nav .previous a::after {
  display: inline-block;
  content: "";
  width: 5px;
  height: 10px;
  background: url(../images/ico_arrow_right_blue.png) no-repeat 0 0;
  background-size: 5px 10px;
  margin-left: 10px;
}
.entry-nav .index {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.entry-nav .index a {
  color: #333;
}
.entry-nav .next {
  float: left;
}
.entry-nav .next a {
  color: #333;
}
.entry-nav .next a::before {
  display: inline-block;
  content: "";
  width: 5px;
  height: 10px;
  background: url(../images/ico_arrow_right_blue.png) no-repeat 0 0;
  background-size: 5px 10px;
  transform: rotate(180deg);
  margin-right: 10px;
}

.entry-social {
  display: flex;
  justify-content: center;
  margin: 2em 0 0;
}
.entry-social > li {
  margin: 0 0.63em;
}
.entry-social > li a {
  display: inline-block;
  background: #DDD;
  width: 3em;
  height: 3em;
  border-radius: 50% 50%;
  text-indent: -9999px;
  transition: all 0.2s;
}
.entry-social > li a.facebook {
  background: transparent url(../images/ico_facebook.svg) no-repeat 50% 50%;
  background-size: 1.5em 1.5em;
  border: 1px solid #3b5998;
}
.entry-social > li a.facebook:hover {
  background-color: #3b5998;
  background-image: url(../images/ico_facebook_white.svg);
}
.entry-social > li a.twitter {
  background: transparent url(../images/ico_twitter.svg) no-repeat 50% 50%;
  background-size: 1.5em 1.5em;
  border: 1px solid #55acee;
}
.entry-social > li a.twitter:hover {
  background-color: #55acee;
  background-image: url(../images/ico_twitter_white.svg);
}
.entry-social > li a.line {
  background: transparent url(../images/ico_line.svg) no-repeat 50% 50%;
  background-size: 1.5em 1.5em;
  border: 1px solid #00B900;
}
.entry-social > li a.line:hover {
  background-color: #00B900;
  background-image: url(../images/ico_line_white.svg);
}

/**************************************************
	components
***************************************************/
/* -----------------------------------------------
	Animation
-------------------------------------------------- */
@keyframes bgscale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
@keyframes bgscale2 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.vegas-animation-zoomIn {
  animation: zoomIn ease-out forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(1) rotate(0.1deg);
  }
  100% {
    transform: scale(1.1) rotate(0.1deg);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* -----------------------------------------------
  a-blog cms
-------------------------------------------------- */
/* ---------- color ---------- */
.color-red {
  font-weight: bold;
  color: #F00;
}

.color-orange {
  font-weight: bold;
  color: #F60;
}

.color-green {
  font-weight: bold;
  color: #096;
}

.color-blue {
  font-weight: bold;
  color: #06C;
}

.color-pink {
  font-weight: bold;
  color: #F06;
}

.color-gray {
  font-weight: bold;
  color: #888;
}

.lite-editor-toolbox span[class*=color-] {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}
.lite-editor-toolbox .color-red {
  background-color: #F00;
}
.lite-editor-toolbox .color-orange {
  background-color: #F60;
}
.lite-editor-toolbox .color-green {
  background-color: #096;
}
.lite-editor-toolbox .color-blue {
  background-color: #06C;
}
.lite-editor-toolbox .color-pink {
  background-color: #F06;
}
.lite-editor-toolbox .color-gray {
  background-color: #888;
}

/* ---------- admin ---------- */
.entryFormColumn #more {
  display: none !important;
}

#adminBox {
  margin-bottom: 0;
}

.acms-entry + .acms-box-medium {
  margin-top: 20px;
}

/* ---------- grid ---------- */
.acms-grid > .column-image-center {
  margin-bottom: 20px;
}

.acms-grid > .column-image-left,
.box-a > .column-image-left,
.box-b > .column-image-left {
  padding-right: 25px;
}

.acms-grid > .column-image-right,
.box-a > .column-image-right,
.box-b > .column-image-right {
  padding-left: 25px;
}

.acms-grid > .list-a,
.acms-grid > .plain {
  padding-left: 10px;
}

.acms-grid > .box-a,
.acms-grid > .box-b,
.acms-grid > .box-c {
  margin-left: 10px;
  margin-right: 10px;
  padding: 30px 20px 10px;
}

.caption {
  display: block;
  font-size: 88%;
  margin-top: 0.5em;
  text-align: center;
}

/* -----------------------------------------------
	Icon
-------------------------------------------------- */
.ico-pdf::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/ico_pdf.svg) no-repeat 0 0;
  background-size: 18px 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.ico-xls::before, .ico-xlsx::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/ico_xls.svg) no-repeat 0 0;
  background-size: 18px 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.ico-doc::before, .ico-docx::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/ico_doc.svg) no-repeat 0 0;
  background-size: 18px 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.ico-ppt::before, .ico-pptx::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/ico_ppt.svg) no-repeat 0 0;
  background-size: 18px 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.ico-hexagon {
  position: relative;
  width: 10px;
  height: 5.77px;
  background-color: #397ecf;
  margin: 2.89px 14px 2.89px 0;
  display: inline-block;
}
.ico-hexagon::before, .ico-hexagon::after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.ico-hexagon::before {
  bottom: 100%;
  border-bottom: 2.89px solid #397ecf;
}
.ico-hexagon::after {
  top: 100%;
  width: 0;
  border-top: 2.89px solid #397ecf;
}

.ico-pdf-medium {
  color: #000;
  line-height: 30px;
}
.ico-pdf-medium span {
  background: url(../images/ico_pdf.png) no-repeat 0 0;
  display: inline-block;
  padding-left: 40px;
}
.ico-pdf-medium span small {
  display: inline-block;
}

/* -----------------------------------------------
	Heading
-------------------------------------------------- */
.spirits {
  background: url(../images/top/spirits_bg.png) no-repeat center center;
  padding: 50px 0;
  text-align: center;
}
.spirits .spirits-logo {
  margin-bottom: 20px;
}
.spirits .title {
  color: #ff5d64;
  font-weight: bold;
  font-size: 55px;
  line-height: 80px;
  border-top: 3px solid #ff5d64;
  border-bottom: 3px solid #ff5d64;
  padding: 0 10px;
  margin-bottom: 25px;
  display: inline-block;
}
.spirits .title span {
  margin: 0 12px;
}
.spirits .title span img {
  margin-top: -4px;
  vertical-align: middle;
}
.spirits .lead {
  color: #333;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}

.h2a {
  font-size: 30px;
  font-weight: bold;
  margin: 40px 0 20px;
}
.h2a span {
  display: block;
}
.h2a span.en {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  color: #999;
  letter-spacing: 0.1em;
  font-weight: normal;
  margin-top: -0.4em;
}

.h3a {
  font-size: 26px;
  font-weight: bold;
  margin: 40px 0 20px;
  position: relative;
  color: #397ecf;
}
.h3a::after {
  content: "";
  border-bottom: 1px solid #397ecf;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  z-index: 1;
}
.h3a span {
  background: #fff;
  position: relative;
  z-index: 2;
  padding-right: 20px;
}
.h3a.-black {
  color: #333;
}
.h3a.-black::after {
  border-bottom: 1px solid #333;
}

.h3b {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  margin: 40px auto 20px;
}

.h3c {
  clear: both;
  background: #f0f0f0;
  padding: 10px 20px;
  margin: 40px 10px 20px;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 767px) {
  .h3c {
    padding: 7px 15px;
    margin: 30px 0 15px;
    font-size: 15px;
  }
}
.clearHidden + .h3c, .h3c:first-child {
  margin-top: 20px;
}

.h4a {
  font-size: 24px;
  font-weight: bold;
  margin: 40px 0 20px;
  color: #397ecf;
}
.h4a.-black {
  color: #333;
}

.h4b {
  position: relative;
  color: #397ecf;
  font-size: 113%;
  font-weight: bold;
  padding-left: 1em;
  margin: 25px 10px 18px;
}
.h4b::before {
  width: 5px;
  height: 1em;
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  background: #397ecf;
}

.h4c {
  font-size: 18px;
  font-weight: bold;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  display: inline-block;
  padding: 0.2em 0 0.1em;
  margin-bottom: 30px;
}

.h5a {
  font-size: 24px;
  font-weight: bold;
  margin: 40px 0 20px;
}

.h5b {
  font-size: 113%;
  font-weight: bold;
  margin: 0 10px 16px;
}

/* -----------------------------------------------
	Column
-------------------------------------------------- */
.column2, .column3 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.column2 > li, .column3 > li {
  width: calc((100% - 40px) / 2);
}
.column2 > li .caption, .column3 > li .caption {
  color: #999;
}
.column2 > li img, .column3 > li img {
  width: 100%;
  height: auto;
}

.column3 {
  margin: 30px auto;
}
.column3 > li {
  width: calc((100% - 30px - 30px) / 3);
}

/* -----------------------------------------------
	Button
-------------------------------------------------- */
.button-a {
  display: block;
  background: #397ecf;
  text-align: center;
  color: #fff;
  padding: 1.2em 0;
  transition: 0.3s;
  border: 3px solid #397ecf;
  text-decoration: none;
}
.button-a:visited {
  color: #fff;
}
.button-a:hover {
  background: none;
  border: 3px solid #397ecf;
  color: #397ecf;
  transition: 0.3s;
}

.button-b {
  text-align: center;
  text-decoration: none;
  min-width: 330px;
  display: inline-block;
  box-sizing: border-box;
  padding: 0.8em 0;
  transition: all 0.3s;
  border: none;
  font-size: 18px;
}
.button-b.-confirm, .button-b.-primary, .button-b.-send {
  background: #397ecf;
  border: 1px solid #397ecf;
  color: #fff;
}
.button-b.-confirm:hover, .button-b.-primary:hover, .button-b.-send:hover {
  background: #fff;
  color: #397ecf;
}
.button-b.-back {
  background: #ddd;
  color: #000;
  border: 1px solid #ddd;
}
.button-b.-back:hover {
  background: #fff;
}
.button-b:hover {
  transition: all 0.3s;
}

.button-c {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  background: #ff5d64;
  border: 2px solid #ff5d64;
  color: #fff;
  text-align: none;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  padding: 10px 0;
  min-width: 600px;
  box-sizing: border-box;
}
.button-c:visited {
  color: #fff;
}
.button-c:hover {
  color: #ff5d64;
  background: #fff;
  transition: all 0.3s;
}

.read-more {
  margin-bottom: 0;
}
.read-more a {
  padding: 0.5em 0;
  display: block;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  text-decoration: none;
}
.read-more a::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.read-more a:hover {
  transition: 0.3s;
}
.read-more.-white a {
  width: 240px;
  color: #fff;
  border: 2px solid #fff;
}
.read-more.-white a::after {
  background: url(../images/ico_arrow_right_white.png) no-repeat 0 0;
  background-size: 5px;
  width: 5px;
  height: 10px;
  top: calc(50% - 5px);
  right: 20px;
}
.read-more.-white a:hover {
  background: #fff;
  color: #397ecf;
}
.read-more.-white a:hover::after {
  background: url(../images/ico_arrow_right_blue.png) no-repeat 0 0;
  background-size: 5px;
}
.read-more.-gray a {
  width: 200px;
  padding: 0.8em 0;
  color: #666;
  border: 1px solid #aaa;
  font-size: 14px;
}
.read-more.-gray a::after {
  background: url(../images/ico_arrow_right_gray.png) no-repeat 0 0;
  background-size: 5px;
  width: 5px;
  height: 10px;
  top: calc(50% - 5px);
  right: 20px;
}
.read-more.-gray a:hover {
  background: #aaa;
  color: #fff;
}
.read-more.-gray a:hover::after {
  background: url(../images/ico_arrow_right_white.png) no-repeat 0 0;
  background-size: 5px;
}
.read-more.-center a {
  margin: 0 auto;
}

/* -----------------------------------------------
	Box
-------------------------------------------------- */
.box-a, .box-b, .box-c {
  zoom: 1;
  padding: 30px 30px 10px;
  margin: 30px 0;
}
.box-a:after, .box-b:after, .box-c:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

.box-a {
  background: #ebf2fa;
}

.box-b {
  background: #f0f0f0;
}

.box-c {
  border: 1px solid #DDD;
}

/* -----------------------------------------------
	Breadcrumb
-------------------------------------------------- */
.breadcrumb-a {
  zoom: 1;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  font-size: 12px;
  font-weight: bold;
  margin: -14px auto 26px;
}
.breadcrumb-a:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
.breadcrumb-a li {
  float: left;
  margin: 0 2em 0 0;
}
.breadcrumb-a li a, .breadcrumb-a li span {
  padding: 0.4em 1em 0.4em 2em;
  float: left;
  text-decoration: none;
  background: #fff;
  position: relative;
  z-index: 1;
}
.breadcrumb-a li a::after, .breadcrumb-a li span::after {
  content: "";
  background: #fff;
  height: 2.5em;
  margin-top: -1.25em;
  position: absolute;
  right: -1em;
  top: 50%;
  width: 2.5em;
  z-index: -1;
  transform: rotate(45deg);
  border-radius: 0.4em;
}
.breadcrumb-a li a {
  color: #397ecf;
}

/* -----------------------------------------------
	Table
-------------------------------------------------- */
.table-a, .table-b, .table-c, .table-d {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 30px;
}

.table-a th, .table-a td {
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #ecf1f6;
}
.table-a th {
  background: #fff;
  padding: 0.6em 40px 0.6em 20px;
  font-weight: bold;
  font-size: 18px;
}
.table-a th i {
  position: relative;
  width: 10px;
  height: 5.77px;
  background-color: #397ecf;
  margin: 2.89px 10px 2.89px 0;
  display: inline-block;
}
.table-a th i::before, .table-a th i::after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.table-a th i::before {
  bottom: 100%;
  border-bottom: 2.89px solid #397ecf;
}
.table-a th i::after {
  top: 100%;
  width: 0;
  border-top: 2.89px solid #397ecf;
}
.table-a td {
  background: #fff;
  padding: 0.6em 40px 0.6em 0;
  flex: 1;
}

.table-b th, .table-b td {
  padding: 0.6em 1em;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #ecf1f6;
}
.table-b th {
  background: #d7e5f5;
  font-weight: bold;
  white-space: nowrap;
}
.table-b td {
  background: #fff;
}

.table-c {
  border-top: 1px solid #d5dde6;
}
.table-c th, .table-c td {
  padding: 0.6em 0.5em 0.5em;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #d5dde6;
}
.table-c th {
  background: #f0f4f8;
  border-right: 1px solid #d5dde6;
  font-weight: normal;
}
.table-c td {
  background: #ecf1f6;
}

.table-d, .column-table- table {
  margin-bottom: 30px;
}
.table-d thead th, .column-table- table thead th {
  background: #c3d8f1;
  text-align: center;
  border-top: 1px solid #99bde7;
  border-right: 1px solid #99bde7;
  border-bottom: 1px solid #99bde7;
}
.table-d thead th:first-child, .column-table- table thead th:first-child {
  border-left: 1px solid #99bde7;
}
.table-d th, .table-d td, .column-table- table th, .column-table- table td {
  padding: 1em 1.5em;
  text-align: left;
  vertical-align: middle;
  border-top: 1px solid #c3d8f1;
  border-bottom: 1px solid #c3d8f1;
}
.table-d th, .column-table- table th {
  white-space: nowrap;
  background: #ebf2fa;
  text-align: center;
  border-left: 1px solid #c3d8f1;
  font-weight: normal;
}
.table-d td, .column-table- table td {
  background: #fff;
  border-right: 1px solid #c3d8f1;
  border-left: 1px solid #c3d8f1;
}

/* -----------------------------------------------
	List
-------------------------------------------------- */
/* products */
.filter-nav {
  width: 1200px;
  margin: 40px auto 30px;
  display: flex;
}
.filter-nav li {
  width: 100%;
  margin-left: 1px;
  display: block;
  text-decoration: none;
  color: #000;
  background: #ecf1f6;
  text-align: center;
  font-size: 18px;
  padding: 0.8em 0;
  transition: 0.3s;
  cursor: pointer;
}
.filter-nav li:hover, .filter-nav li.active {
  background: #397ecf;
  color: #fff;
  transition: 0.3s;
}

.product-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  margin: -30px 0 0 -30px;
}
.product-list li {
  width: calc((100% - 30px - 30px - 30px - 30px) / 4);
  margin: 30px 0 0 30px;
}
.product-list li a {
  display: block;
  text-decoration: none;
  color: #333;
  position: relative;
  transition: 0.3s;
  border: 2px solid #eee;
  background: #fafafa;
}
.product-list li a .thumbnail {
  width: 100%;
  height: 167px;
  border-bottom: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.product-list li a .thumbnail img {
  width: auto;
  height: 70%;
}
.product-list li a .name {
  font-size: 18px;
  font-weight: bold;
  padding: 20px 20px 5px;
  line-height: 1.6;
  transition: 0.3s;
}
.product-list li a .description {
  padding: 5px 20px 20px;
  transition: 0.3s;
}
.product-list li a .description .label {
  color: #397ecf;
  border: 1px solid #397ecf;
  font-size: 12px;
  padding: 0.3em 1em 0.2em;
  margin-top: 12px;
  border-radius: 25px;
  display: inline-block;
}
.product-list li a:hover {
  transition: 0.3s;
  border: 2px solid #397ecf;
}

.other-product-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 0 50px -26px;
}
.other-product-list > li {
  width: calc((100% - 26px - 26px - 26px - 26px) / 4);
  margin: 26px 0 0 26px;
}
.other-product-list > li a {
  display: block;
  background: #fff;
  border: 5px solid #fff;
  color: #000;
  transition: 0.3s;
  position: relative;
  text-decoration: none;
}
.other-product-list > li a dl {
  display: flex;
  align-items: center;
}
.other-product-list > li a dl .photo {
  margin: 0 10px 0 0;
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.other-product-list > li a dl dd.caption {
  text-align: left;
  margin-top: 0;
}
.other-product-list > li a dl dd.caption span {
  display: block;
}
.other-product-list > li a dl dd.caption span.title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
.other-product-list > li a dl dd.caption span.lead {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 5px;
}
.other-product-list > li a::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  border-top: 25px solid transparent;
  border-right: 25px solid #eee;
  transition: 0.3s;
}
.other-product-list > li a:hover {
  transition: 0.3s;
  border: 5px solid #397ecf;
}
.other-product-list > li a:hover::after {
  border-top: 25px solid transparent;
  border-right: 25px solid #397ecf;
}

/* example */
.example-list-a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  margin: -30px 0 0 -30px;
}
.example-list-a li {
  width: calc((100% - 30px - 30px) / 2);
  margin: 30px 0 0 30px;
}
.example-list-a li .cover {
  display: block;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  display: flex;
  z-index: 1;
}
.example-list-a li .cover .image {
  position: relative;
  width: 55%;
  height: 230px;
  overflow: hidden;
}
.example-list-a li .cover .image img {
  width: 100%;
  height: auto;
}
.example-list-a li .cover .text {
  background: #397ecf;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  padding: 0 30px;
  box-sizing: border-box;
}
.example-list-a li .cover .text .tag {
  border: 1px solid #fff;
  display: inline-block;
  padding: 0.3em 1em 0.2em;
  color: #fff;
  font-size: 12px;
}
.example-list-a li .cover .text .title {
  font-size: 20px;
  line-height: 1.4;
  margin: 20px 0 0;
  color: #fff;
  font-weight: bold;
}
.example-list-a li .cover:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.example-list-b {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 0 50px -50px;
}
.example-list-b > li {
  width: calc((100% - 50px - 50px - 50px - 50px) / 4);
  margin: 30px 0 0 50px;
}
.example-list-b > li a {
  display: block;
  text-align: center;
  color: #333;
  transition: 0.3s;
  text-decoration: none;
}
.example-list-b > li a dl dt.thumbnail {
  width: 260px;
  height: 186px;
  overflow: hidden;
  margin-bottom: 14px;
}
.example-list-b > li a dl dt.thumbnail img {
  width: 260px;
  height: 186px;
  -o-object-fit: cover;
     object-fit: cover;
}
.example-list-b > li a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

/* news */
.news-list > li {
  margin-bottom: 1px;
}
.news-list > li a {
  background: #f6f6f6;
  color: #000;
  display: block;
  text-decoration: none;
}
.news-list > li a dl {
  display: flex;
  align-items: center;
  background: url(../images/ico_arrow_right_black.png) no-repeat 98% 50%;
  background-size: 6px 10px;
}
.news-list > li a dl dt, .news-list > li a dl dt {
  display: flex;
  align-items: center;
  height: 73px;
}
.news-list > li a dl dt {
  padding: 0 30px;
  min-width: 6em;
}
.news-list > li a dl dd {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 40px;
}
.news-list > li a:hover {
  background: #eee;
  text-decoration: none;
}

/* tag */
.tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -5px;
}
.tag-list > li {
  margin: 0 5px 10px;
}
.tag-list > li a {
  font-size: 12px;
  color: #666;
  padding: 0.3em 0.6em;
  border-radius: 5px;
  border: 1px solid #ccc;
  text-decoration: none;
}
.tag-list > li a:hover {
  text-decoration: none;
  background: #eee;
}

/* blog */
.article-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}
.article-list > li {
  width: calc((100% - 1px - 1px - 1px) / 3);
  margin: 0 1px 1px 0;
  display: flex;
}
.article-list > li a {
  display: block;
  background: #fafafa;
  transition: 0.3s;
  text-decoration: none;
}
.article-list > li a dl dt.thumbnail {
  position: relative;
  width: 279px;
  height: 154px;
  overflow: hidden;
}
.article-list > li a dl dt.thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.article-list > li a dl dd.caption {
  padding: 20px;
}
.article-list > li a dl dd.caption span {
  display: block;
}
.article-list > li a dl dd.caption span.title {
  color: #000;
}
.article-list > li a dl dd.caption span.date {
  color: #666;
  font-size: 14px;
}
.article-list > li a:hover {
  background: #eee;
  transition: 0.3s;
}

/* common */
.list-a, .list-b, .list-c {
  margin: 0 auto 30px;
}
.list-a li, .list-b li, .list-c li {
  text-indent: -0.8em;
  padding-left: 0.8em;
  margin-bottom: 8px;
}
.list-a li::before, .list-b li::before, .list-c li::before {
  content: "■";
  color: #397ecf;
  vertical-align: middle;
  margin-right: 0.8em;
  font-size: 10px;
}
.list-a li:last-child, .list-b li:last-child, .list-c li:last-child {
  margin-bottom: 0;
}

.list-b li::before {
  content: "";
  background: url(../images/ico_arrow_right_blue.png) no-repeat 0 46%;
  background-size: 4px;
  width: 4px;
  height: 8px;
  display: inline-block;
}

.list-c li::before {
  display: none;
}

/* -----------------------------------------------
	Blockquote
-------------------------------------------------- */
.blockquote-a {
  width: 100%;
  padding: 40px 50px 40px 140px;
  margin: 50px auto;
  box-sizing: border-box;
  position: relative;
  background: #ebf2fa;
}
.blockquote-a::before {
  content: url(../images/ico_blockquote.png);
  width: 91px;
  height: 97px;
  position: absolute;
  top: -10px;
  left: 30px;
  display: block;
}
.blockquote-a p {
  font-size: 15px;
  position: relative;
  z-index: 3;
  color: #000;
  line-height: 2.4;
  font-style: italic;
}
.blockquote-a p:last-child {
  margin-bottom: 0;
}
/* -----------------------------------------------
	Form
-------------------------------------------------- */
.form-step {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
  overflow: hidden;
  background: #d7e5f5;
  font-size: 14px;
  color: #999;
}
.form-step > li {
  position: relative;
  width: 33.3%;
  padding: 1em;
  text-align: center;
  white-space: nowrap;
}
.form-step > li:last-child {
  border-right: 0;
}
.form-step > li.-current, .form-step > li.-done {
  font-weight: bold;
  background: #397ecf;
  color: #fff;
}
.form-step > li.-current::after, .form-step > li.-done::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 50px;
  height: 50px;
  border-width: 1px 1px 0 0;
  background: #397ecf;
  transform: rotate(45deg);
}

.required, .any {
  color: #FFF;
  font-size: 12px;
  background: #ff5d64;
  padding: 0.1em 0.5em;
  font-size: 12px;
  display: inline-block;
  margin-right: 20px;
  float: right;
}

.any {
  background: #aaa;
}

.form-table {
  width: 100%;
  margin-bottom: 40px;
}
.form-table th, .form-table td {
  zoom: 1;
  border-bottom: 1px solid #dddddd;
}
.form-table th:after, .form-table td:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
.form-table th table th, .form-table th table td, .form-table td table th, .form-table td table td {
  border-bottom: none;
}
.form-table th {
  font-size: 0.94em;
  vertical-align: middle;
  padding: 1em 0;
}
.form-table td {
  padding: 1em 0;
}
.form-table table {
  width: 100%;
}
.form-table table th, .form-table table td {
  padding: 0.5em 1em 0.5em 0;
  vertical-align: middle;
}

.form-action {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.form-action > li {
  margin: 0 10px 20px;
}

.error {
  display: block;
  color: #ff0000;
  font-size: 0.88em;
  padding-top: 0.5em;
}

.alert {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.alert img {
  width: 100%;
  height: auto;
}

.text-field, .text-area, .select-box {
  width: 100%;
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 0.5em 1em;
  box-sizing: border-box;
}
.text-field.-error, .text-area.-error, .select-box.-error {
  background: #fff0f0;
  border-color: #f4c2c2;
}
.text-field.-inline, .text-area.-inline, .select-box.-inline {
  width: 20%;
  margin-right: 1em;
}
.text-field[disabled], .text-field[readonly], .text-area[disabled], .text-area[readonly], .select-box[disabled], .select-box[readonly] {
  color: #999;
  background: #DDD;
  border: 1px solid #CCC;
}
.text-field[name=inquiry], .text-area[name=inquiry], .select-box[name=inquiry] {
  height: 8em;
}

.radio-button, .check-box {
  margin: 0 0 0.5em;
}
.radio-button input, .check-box input {
  display: none;
}
.radio-button span, .check-box span {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  padding-right: 25px;
}
.radio-button span::before, .check-box span::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #d7d7d7;
  background: #F9F9F9;
  vertical-align: middle;
}
.radio-button input:checked + span::before, .check-box input:checked + span::before {
  border-color: #cacaca;
}
.radio-button input:checked + span::after, .check-box input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 5px;
  width: 9px;
  height: 9px;
  background: #ff5d64;
}
.radio-button.radio-button span::before, .check-box.radio-button span::before {
  border-radius: 50%;
}
.radio-button.radio-button input:checked + span::after, .check-box.radio-button input:checked + span::after {
  border-radius: 50%;
}

/* -----------------------------------------------
	FAQ
-------------------------------------------------- */
.accordion > ul > li {
  margin-bottom: 20px;
  background: #d7e5f5;
}
.accordion > ul > li > a {
  display: block;
  padding: 30px 80px;
  text-decoration: none;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  transition: all, 0.25s, linear;
  position: relative;
}
.accordion > ul > li > a:hover, .accordion > ul > li > a.active {
  text-decoration: none;
}
.accordion > ul > li > a::before {
  content: "";
  background: url(../images/ico_q.png) no-repeat;
  background-size: 25px;
  width: 25px;
  height: 28px;
  position: absolute;
  top: 31px;
  left: 30px;
}
.accordion > ul > li .inner {
  zoom: 1;
  display: none;
  padding: 0 80px 40px;
  margin: 0;
  position: relative;
}
.accordion > ul > li .inner:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
.accordion > ul > li .inner p {
  font-size: 15px;
  line-height: 2;
  color: #666;
}
.accordion > ul > li .inner p:last-child {
  margin-bottom: 0;
}
.accordion > ul > li:last-child {
  margin-bottom: 0;
}

.switch .menu {
  display: block;
  position: relative;
}
.switch .menu::after {
  content: "";
  background: url(../images/ico_plus.png) no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 30px;
  right: 30px;
  transition: all, 0.25s, linear;
}
.switch .menu.active::after {
  background: url(../images/ico_minus.png) no-repeat;
  background-size: 32px;
}
.switch > ul > li.open .menu::after {
  content: "";
  background: url(../images/ico_minus.png) no-repeat;
  background-size: 32px;
}
.switch > ul > li.open .menu.active::after {
  background: url(../images/ico_plus.png) no-repeat;
  background-size: 32px;
}
.switch > ul > li.open .inner {
  display: block;
}

/* -----------------------------------------------
	Tab
-------------------------------------------------- */
.tab {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  margin: 40px 0;
}
.tab > li {
  width: 50%;
  margin: 0;
  text-align: center;
}
.tab > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0.8em 1em;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.3s;
  background: #ecf1f6;
  color: #333;
  font-size: 18px;
}
.tab > li > a.-active {
  background: #397ecf;
  color: #fff;
}

@media (max-width: 767px) {
  .scroll-outer {
    position: relative;
    margin-bottom: 20px;
  }
  .scroll-outer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff);
  }
  .scroll-outer .scroll-wrap {
    clear: both;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .scroll-outer.-last::after {
    display: none;
  }
}
/**************************************************
	unique
***************************************************/
/* -----------------------------------------------
	All lower Page
-------------------------------------------------- */
#styleguide, #news, #products, #example, #oem, #company, #recruit, #blog, #contact, #technology, #sdgs {
  padding-top: 74px;
}

#top #adminBox + .site-header {
  background: #fff;
  padding: 20px 40px;
}
#top #adminBox + .site-header .site-header-inner .logo a {
  background: url(../images/logo_header_on.png) no-repeat 0 0;
}
#top #adminBox + .site-header .site-header-inner .global-nav > ul > li a {
  color: #000;
}
#top #adminBox + .site-header .english a {
  color: #000;
}

/* -----------------------------------------------
	/styleguide.html
-------------------------------------------------- */
#styleguide .site-content .lower-inner .flexbox {
  display: inline-flex;
}
#styleguide .site-content .lower-inner .flexbox .list-a, #styleguide .site-content .lower-inner .flexbox .list-b, #styleguide .site-content .lower-inner .flexbox .side-nav {
  margin-right: 40px;
}

/* -----------------------------------------------
	/top.html
-------------------------------------------------- */
#top .site-header {
  background: transparent;
  padding: 30px 40px;
}
#top .site-header.is-animation {
  background: #fff;
  padding: 20px 40px;
}
#top .site-header.is-animation .site-header-inner .logo a {
  background: url(../images/logo_header_on.png) no-repeat 0 0;
}
#top .site-header.is-animation .site-header-inner .global-nav > ul > li a {
  color: #000;
}
#top .site-header .site-header-inner .logo a {
  background: url(../images/logo_header.png) no-repeat 0 0;
}
#top .site-header .site-header-inner .global-nav > ul > li a {
  color: #FFF;
}
#top .site-header .english a {
  color: #fff;
}
#top .site-header.is-animation .english a {
  color: #000;
}
#top #hero {
  position: relative;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #top #hero {
    transform: rotate(0.1deg);
  }
}
#top #hero #slider img {
  width: 100%;
  max-width: calc(100vw - 17px);
  height: auto;
}
#top #hero #slider .vegas-wrapper {
  pointer-events: none;
}
#top #hero #slider .vegas-slide .vegas-slide-content {
  animation: fade-in 1s ease;
}
#top #hero #slider .vegas-slide .vegas-slide-content img {
  width: auto;
}
#top #hero #slider::after {
  content: "";
  background: url(../images/top/keyvisual_bg1.png) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
#top #hero .title1, #top #hero .title2, #top #hero .title3 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  z-index: 1000;
}
#top #hero .title1 .inner .sub, #top #hero .title2 .inner .sub, #top #hero .title3 .inner .sub {
  font-family: "Barlow", sans-serif;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
#top #hero .title1 {
  justify-content: center;
}
#top #hero .title1 .inner {
  position: absolute;
  top: calc(50% - 80px);
  left: 120px;
}
#top #hero .title1 .inner .copy {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
#top #hero .title1 .inner .sub {
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.1em;
}
#top #hero .title2 {
  justify-content: center;
}
#top #hero .title2 .inner {
  position: absolute;
  left: 0;
  bottom: 90px;
  width: 100%;
  text-align: center;
}
#top #hero .title2 .inner .copy {
  display: inline-block;
  color: #fff;
  font-size: 48px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-weight: bold;
  line-height: 100px;
  margin-bottom: 30px;
}
#top #hero .title2 .inner .sub {
  letter-spacing: 0.1em;
}
#top #hero .title3 {
  justify-content: flex-end;
}
#top #hero .title3 .inner {
  padding-right: 5%;
}
#top #hero .title3 .inner .copy {
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: bold;
}
#top #hero .title3 .inner .copy span {
  display: block;
}
#top #hero .title3 .inner .copy span.en {
  font-family: "Barlow", sans-serif;
  font-size: 48px;
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}
#top #hero .title3 .inner .copy span.ja {
  font-size: 28px;
}
#top #hero .title3 .inner .sub {
  font-family: "Barlow", sans-serif;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
#top #hero .dots {
  position: absolute;
  top: calc(50% - 85px);
  left: 30px;
}
#top #hero .dots > li {
  margin-bottom: 10px;
}
#top #hero .dots > li:last-child {
  margin-bottom: 0;
}
#top #hero .dots > li a {
  -webkit-appearance: none;
  display: block;
  width: 5px;
  height: 50px;
  padding: 0;
  text-indent: -9999px;
  background: #fff;
  border: none;
}
#top #hero .dots > li a.-active {
  background: #ff5d64;
}
#top .technology {
  background: #397ecf url(../images/top/technology_bg.png) no-repeat center center;
  height: 500px;
}
#top .technology > .inner {
  width: 1200px;
  height: 500px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}
#top .technology > .inner .catch {
  display: flex;
}
#top .technology > .inner .catch .title {
  margin-right: 40px;
}
#top .technology > .inner .catch .lead {
  color: #fff;
  margin: -4px 0 0;
}
#top .technology > .inner .technology-list > li a {
  background: url(../images/top/technology_bg_hexagon_white.png) no-repeat 0 0;
  display: block;
  width: 216px;
  height: 249px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s;
  z-index: 2;
  text-decoration: none;
}
#top .technology > .inner .technology-list > li a .inner .title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
#top .technology > .inner .technology-list > li a .inner .title::after {
  content: "";
  background: url(../images/ico_arrow_right_black.png) no-repeat 0 0;
  background-size: 6px;
  width: 6px;
  height: 12px;
  display: inline-block;
  position: absolute;
  top: calc(50% - 6px);
  right: -16px;
}
#top .technology > .inner .technology-list > li a .inner .lead {
  font-size: 12px;
  margin-bottom: 0;
}
#top .technology > .inner .technology-list > li a:hover {
  background: url(../images/top/technology_bg_hexagon_blue.png) no-repeat 0 0;
  color: #fff;
  transition: 0.3s;
}
#top .technology > .inner .technology-list > li a:hover .inner .title::after {
  background: url(../images/ico_arrow_right_white.png) no-repeat 0 0;
  background-size: 6px;
}
#top .technology > .inner .technology-list > li.nav {
  position: absolute;
}
#top .technology > .inner .technology-list > li.nav a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
#top .technology > .inner .technology-list > li.nav.-no01 {
  top: 224px;
  right: 457px;
}
#top .technology > .inner .technology-list > li.nav.-no01 .inner {
  padding-top: 70px;
}
#top .technology > .inner .technology-list > li.nav.-no01 a::after {
  background: url(../images/top/technology_img1.png) no-repeat 0 0;
  background-size: 140px;
  width: 140px;
  height: 54px;
  top: 42px;
}
#top .technology > .inner .technology-list > li.nav.-no02 {
  top: 23px;
  right: 338px;
}
#top .technology > .inner .technology-list > li.nav.-no02 .inner {
  padding-top: 68px;
}
#top .technology > .inner .technology-list > li.nav.-no02 a::after {
  background: url(../images/top/technology_img2.png) no-repeat 0 0;
  background-size: 81px;
  width: 81px;
  height: 101px;
  top: -10px;
}
#top .technology > .inner .technology-list > li.nav.-no03 {
  top: 224px;
  right: 221px;
}
#top .technology > .inner .technology-list > li.nav.-no03 .inner {
  padding-top: 70px;
}
#top .technology > .inner .technology-list > li.nav.-no03 a::after {
  background: url(../images/top/technology_img3.png) no-repeat 0 0;
  background-size: 70px;
  width: 70px;
  height: 69px;
  top: 28px;
}
#top .technology > .inner .technology-list > li.nav.-no03 a:hover::after {
  background: url(../images/top/technology_img3_white.png) no-repeat 0 0;
  background-size: 70px;
}
#top .technology > .inner .technology-list > li.-blue a {
  background: url(../images/top/technology_bg_hexagon_border.png) no-repeat 0 0;
  color: #fff;
}
#top .technology > .inner .technology-list > li.-blue a .inner .title::after {
  content: "";
  background: url(../images/ico_arrow_right_white.png) no-repeat 0 0;
  background-size: 6px;
}
#top .technology > .inner .technology-list > li.-blue a:hover {
  background: url(../images/top/technology_bg_hexagon_blue.png) no-repeat 0 0;
}
#top .technology > .inner .technology-list > li.-blue.-no04 {
  top: 23px;
  right: 104px;
}
#top .technology > .inner .technology-list > li.-blue.-no04 .inner {
  padding-top: 68px;
}
#top .technology > .inner .technology-list > li.-blue.-no04 a::after {
  background: url(../images/top/technology_img4_white.png) no-repeat 0 0;
  background-size: 40px;
  width: 40px;
  height: 40px;
  top: 50px;
}
#top .technology > .inner .technology-list > li.-blue.-no05 {
  top: 224px;
  right: -14px;
}
#top .technology > .inner .technology-list > li.-blue.-no05 .inner {
  padding-top: 70px;
}
#top .technology > .inner .technology-list > li.-blue.-no05 a::after {
  background: url(../images/top/technology_img5_white.png) no-repeat 0 0;
  background-size: 40px;
  width: 40px;
  height: 40px;
  top: 56px;
}
#top .technology > .inner .technology-map {
  display: none;
}
#top .movies {
  margin: auto;
  padding: 50px 0 30px;
  display: flex;
  justify-content: center;
}
#top .movies .js-modal-video {
  cursor: pointer;
  width: 33%;
  margin: 0 10px 0;
  max-width: 386px;
}
#top .movies .js-modal-video img {
  width: 100%;
}
#top .movies .js-modal-video .img {
  position: relative;
}
#top .movies .js-modal-video .img::after {
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(../images/top/icon_play.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#top .movies .js-modal-video:hover {
  opacity: 0.5;
  transition: 0.3s;
}
#top .products {
  background: #fafafa;
  padding: 40px 0 58px;
}
#top .products > .inner {
  width: 1200px;
  margin: 0 auto;
}
#top .products > .inner .index {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
#top .products > .inner .index .title {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  margin-right: 40px;
}
#top .products > .inner .index .title .en {
  margin: -2px 0 0 20px;
}
#top .products > .inner .index .more {
  margin-bottom: 0;
  line-height: 1;
}
#top .products > .inner .index .more a {
  background: url(../images/ico_arrow_right_gray.png) no-repeat 0 50%;
  background-size: 5px;
  color: #666;
  padding-left: 14px;
  text-decoration: none;
}
#top .products > .inner .index .more a:hover {
  text-decoration: underline;
}
#top .products .oem {
  position: relative;
  padding: 0;
  margin: 0 auto;
  z-index: 1;
}
#top .products .oem .wrap {
  background: url(../images/top/products_img2.jpg) no-repeat top right;
  max-width: 1400px;
  padding-top: 60px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#top .products .oem .wrap .caption {
  min-width: 600px;
  max-width: 600px;
  min-height: 343px;
  margin: 0 0 0 100px;
  box-sizing: border-box;
  background: #fff;
  border-left: 6px solid #397ecf;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  text-align: left;
  font-size: 100%;
}
#top .products .oem .wrap .caption .inner {
  padding: 40px 50px 50px;
}
#top .products .oem .wrap .caption .inner .title {
  font-size: 36px;
  font-weight: bold;
  color: #397ecf;
  margin-bottom: 6px;
}
#top .products .oem .wrap .caption .inner .lead {
  margin-bottom: 26px;
}
#top .products .oem::after {
  content: "";
  background: #ecf1f6;
  width: 55%;
  min-width: 780px;
  height: 400px;
  position: absolute;
  top: 30px;
  left: 0;
}
#top .recruit {
  background: url(../images/top/recruit_bg.png) no-repeat center 30px;
  text-align: center;
  padding: 60px 0 50px;
}
#top .recruit .title {
  font-size: 60px;
  color: #397ecf;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}
#top .recruit .sub-title {
  border-top: 3px solid #397ecf;
  border-bottom: 3px solid #397ecf;
  line-height: 32px;
  display: inline-block;
  font-size: 1px;
  line-height: 1px;
  padding: 10px 0;
  margin-bottom: 80px;
}
#top .recruit .lead {
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
#top .recruit .lead em {
  font-style: normal;
  font-size: 18px;
  font-weight: bold;
}
#top .company {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#top .company .inner {
  width: 100%;
  height: 100%;
  padding: 80px 0;
  display: block;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}
#top .company .inner .title {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
#top .company .inner .company-nav {
  display: flex;
  width: 470px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#top .company .inner .company-nav > li {
  font-size: 14px;
  color: #fff;
}
#top .company .inner .company-nav > li::after {
  content: "/";
  display: inline-block;
  color: #fff;
  margin: 0 0.5em;
}
#top .company .inner .company-nav > li:last-child::after {
  display: none;
}
#top .company .inner::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../images/top/company_bg.jpg) no-repeat center center;
  background-size: cover;
  transition: all 0.3s ease-out;
}
#top .company .inner::after {
  content: "";
  background: url(../images/ico_arrow_right_white.png) no-repeat 0 0;
  background-size: 5px;
  width: 5px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: calc(50% - 5px);
  right: 40px;
}
#top .company .inner:hover::before {
  opacity: 0.5;
  transform: scale(1.2);
}
#top .news {
  padding: 50px 0;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
#top .news .index {
  padding-right: 60px;
  margin: 0 0 0 auto;
  box-sizing: border-box;
}
#top .news .index .inner {
  text-align: center;
}
#top .news .index .title {
  font-size: 24px;
  font-weight: bold;
  writing-mode: vertical-rl;
  margin-bottom: 16px;
  display: inline-block;
  line-height: 1;
}
#top .news .index .title-en {
  line-height: 1;
  font-size: 1px;
  margin-bottom: 15px;
}
#top .news .index .next {
  margin: 0;
  display: inline-block;
}
#top .news .index .next a {
  text-indent: -9999px;
  display: block;
  border-radius: 50%;
  border: 1px solid #ccc;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  background: #fff;
}
#top .news .index .next a::after {
  content: "";
  background: url(../images/ico_arrow_right_black.png) no-repeat 0 0;
  background-size: 6px 10px;
  width: 6px;
  height: 10px;
  display: block;
}
#top .news .index .next a:hover {
  background: #ccc;
  transition: 0.3s;
}
#top .news .index .next a:hover::after {
  content: "";
  background: url(../images/ico_arrow_right_white.png) no-repeat 0 0;
  background-size: 6px 10px;
}
#top .news .news-list {
  width: calc(100% - 230px);
}
#top .blog {
  background: #fafafa;
  padding: 50px 0 60px;
}
#top .blog > .inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
#top .blog > .inner .index {
  padding-left: 60px;
  margin: 0 auto 0 0;
  box-sizing: border-box;
  order: 2;
}
#top .blog > .inner .index .inner {
  text-align: center;
}
#top .blog > .inner .index .title {
  font-size: 24px;
  font-weight: bold;
  writing-mode: vertical-rl;
  margin-bottom: 30px;
  display: inline-block;
  line-height: 1;
}
#top .blog > .inner .index .title-en {
  line-height: 1;
  font-size: 1px;
  margin-bottom: 15px;
}
#top .blog > .inner .index .next {
  margin: 0;
  display: inline-block;
}
#top .blog > .inner .index .next a {
  text-indent: -9999px;
  display: block;
  border-radius: 50%;
  border: 1px solid #ccc;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  background: #fff;
}
#top .blog > .inner .index .next a::after {
  content: "";
  background: url(../images/ico_arrow_right_black.png) no-repeat 0 0;
  background-size: 6px 10px;
  width: 6px;
  height: 10px;
  display: block;
}
#top .blog > .inner .index .next a:hover {
  background: #ccc;
  transition: 0.3s;
}
#top .blog > .inner .index .next a:hover::after {
  content: "";
  background: url(../images/ico_arrow_right_white.png) no-repeat 0 0;
  background-size: 6px 10px;
}
#top .blog > .inner .article-list {
  order: 1;
  display: flex;
}
#top .blog > .inner .article-list > li {
  width: calc((100% - 1px - 1px - 1px - 1px) / 4);
  margin: 0 1px 0 0;
}
#top .blog > .inner .article-list > li a {
  background: #fff;
}
#top .blog > .inner .article-list > li a dl dt.thumbnail {
  width: 290px;
  height: 160px;
  overflow: hidden;
}
#top .blog > .inner .article-list > li a dl dt.thumbnail img {
  width: 290px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
#top .blog > .inner .article-list > li a:hover {
  background: #eee;
  transition: 0.3s;
}

/* -----------------------------------------------
	/news/
-------------------------------------------------- */
#news .article {
  padding: 20px 0;
}

/* -----------------------------------------------
	/example/
-------------------------------------------------- */
#example .odd, #example .even {
  padding: 45px 0 60px;
}
#example .odd.-first, #example .even.-first {
  padding-top: 0;
}
#example .even {
  background: #fafafa;
}
#example .even .h3a span {
  background: #fafafa;
}
#example .example-photo {
  width: 1200px;
  padding: 10px 0 60px;
  margin: 0 auto;
}
#example .example-photo .cover {
  position: relative;
  display: flex;
  z-index: 1;
}
#example .example-photo .cover img {
  width: 55%;
  height: 55%;
}
#example .example-photo .cover .text {
  background: #397ecf;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  padding: 0 40px;
  box-sizing: border-box;
}
#example .example-photo .cover .text dl {
  text-align: center;
}
#example .example-photo .cover .text dl dt.tag {
  border: 1px solid #fff;
  display: inline-block;
  padding: 0.3em 1em 0.2em;
  margin-bottom: 16px;
  color: #fff;
  font-size: 14px;
}
#example .example-photo .cover .text dl dd.title {
  font-size: 28px;
  margin: 0 0 20px;
  color: #fff;
  font-weight: bold;
}
#example .example-photo .cover .text dl dd.lead {
  color: #fff;
  font-size: 18px;
  line-height: 2;
  position: relative;
}
#example .example-photo .cover .text dl dd.lead::before {
  content: "";
  border-bottom: 1px solid #fff;
  width: 100px;
  height: 1px;
  display: block;
  margin: 20px auto 25px;
}
#example .feature {
  background: #ecf1f6;
  padding: 1px 0 30px;
}
#example .other {
  background: #fafafa;
  padding: 1px 0 30px;
}

/* -----------------------------------------------
	/products/
-------------------------------------------------- */
#products #product-search .mix, #products #product-search .gap {
  display: inline-block;
}
#products #product-search .mix {
  display: none;
}
#products #product-search .gap {
  margin-bottom: 0 !important;
}
#products .product-list {
  padding: 20px 0 60px;
}
#products .product-detail {
  display: flex;
}
#products .product-detail .product-image {
  width: 580px;
  height: 350px;
  border: 10px solid #FFF;
  box-shadow: 0 0 1px #EEE;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#products .product-detail .product-image img {
  width: auto;
  height: 70%;
}
#products .product-detail .product-title {
  flex: 1;
  margin-left: 40px;
}
#products .product-detail .product-title .category {
  font-size: 16px;
  font-weight: bold;
  border-top: 2px solid #397ecf;
  border-bottom: 2px solid #397ecf;
  display: inline-block;
  padding: 0.3em 0 0.2em;
  margin-bottom: 26px;
}
#products .product-detail .product-title .catch {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.6;
}
#products .product-detail .product-title .lead {
  margin-bottom: 0;
}
#products .index {
  background: #ecf1f6;
  padding: 60px 0;
  margin-top: -30px;
}
#products .index .function-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
#products .index .function-list.-clone {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  transform: translateY(-200px);
  z-index: 1000;
}
#products .index .function-list.-clone.-fixed {
  transform: translateY(0);
}
#products .index .function-list li {
  text-align: center;
  margin: 0 1px;
  width: 100%;
}
#products .index .function-list li a {
  display: block;
  background: #fff;
  font-size: 14px;
  color: #000;
  padding: 1.2em 0 1em;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
}
#products .index .function-list li a::after {
  content: "";
  background: url(../images/ico_arrow_bottom_gray.png) no-repeat;
  background-size: 8px 4px;
  width: 8px;
  height: 4px;
  display: inline-block;
  position: absolute;
  top: calc(50% - 2px);
  right: 10px;
}
#products .index .function-list li a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
#products .index .h3b.-last {
  margin: 50px auto 10px;
}
#products .index .spec-list {
  display: flex;
}
#products .index .spec-list li {
  width: 50%;
}
#products .index .spec-list li .table-b {
  margin-bottom: 0;
}
#products .index .option-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -40px;
}
#products .index .option-list > li {
  width: calc((100% - 40px - 40px - 40px) / 3);
  margin-left: 40px;
  margin-bottom: 40px;
}
#products .index .option-list > li .thumbnail {
  position: relative;
  width: 300px;
  height: 180px;
  padding: 30px;
  box-sizing: border-box;
  background: #FFF;
  overflow: hidden;
}
#products .index .option-list > li .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 70%;
}
#products .index .option-list > li .thumbnail::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  content: "準備中";
  color: #CCC;
  font-weight: bold;
  width: 100%;
  height: 100%;
}
#products .index .option-list > li .name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0;
}
#products .index .option-list > li .name span.ja {
  font-weight: bold;
  margin-right: 0;
  flex: 1;
}
#products .index .option-list > li .name span.en {
  font-size: 12px;
}
#products .index .option-list > li .table-c {
  margin: 0;
  font-size: 13px;
}
#products .index .external-view {
  padding: 40px;
  background: #FFF;
}
#products .index .external-view img {
  max-width: 100%;
}
#products .index .download-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 30px;
}
#products .index .download-list > li {
  width: calc((100% - 40px) / 2);
}
#products .example .h3b {
  margin-bottom: 0;
}
#products .other {
  background: #fafafa;
  padding: 1px 0 50px;
}
#products .other .h3b {
  margin-bottom: 0;
}
#products .other .other-product-list {
  margin-bottom: 30px;
}
#products .catalogdl-unit {
  text-align: center;
  background: #ff5d64;
  color: #fff;
  padding: 20px 20px 40px;
}
#products .catalogdl-unit h2 {
  font-size: 150%;
  font-weight: bold;
}
#products .catalogdl-unit li {
  width: 400px;
  display: inline-block;
  margin: 0 20px;
  font-size: 130%;
}
#products .catalogdl-unit li a {
  display: block;
  background: #fff;
  color: #ff5d64;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  border: 3px solid #fff;
}
#products .catalogdl-unit li a:hover {
  background: #ff5d64;
  color: #fff;
}
#products .catalogdl-unit li a:active {
  background: #ff5d64;
  color: #fff;
}
#products .catalogdl-unit li a span {
  padding-left: 20px;
  font-size: 70%;
}
#products .catalog-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}
#products .catalog-list li {
  display: inline-flex;
  width: 250px;
  text-align: center;
  margin-bottom: 50px;
}
#products .catalog-list li img {
  max-width: 100%;
  border: 1px solid #ddd;
}
#products .catalog-list li a {
  text-decoration: none;
  color: #333;
}
#products .catalog-list li a:hover {
  opacity: 0.5;
}
#products .catalog-list li a:active {
  opacity: 0.5;
}
#products .catalog-list li dt {
  margin-bottom: 10px;
}
#products .catalog-list li dd.code {
  font-size: 78%;
  color: #999;
}
#products .center {
  text-align: center;
}

/* -----------------------------------------------
	/oem/
-------------------------------------------------- */
#oem .odd {
  padding: 20px 0 50px;
}
#oem .even {
  background: #fafafa;
  padding: 70px 0 50px;
}
#oem .graph {
  text-align: center;
  margin-bottom: 25px;
}
#oem .lead {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 0;
}

/* -----------------------------------------------
	/company/
-------------------------------------------------- */
#company .catch a {
  display: block;
  transition: 0.3s;
}
#company .catch a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
#company .catch .author {
  text-align: center;
  margin-bottom: 0;
}
#company .catch .author::before {
  content: "";
  border-bottom: 2px solid #ff5d64;
  width: 100px;
  height: 1px;
  display: block;
  margin: 20px auto 25px;
}
#company .spirits {
  padding: 1px 0 0;
  margin: 30px 0 0;
}
#company .description {
  margin: 50px auto 0;
  width: 950px;
}
#company .common.-last {
  padding-bottom: 0;
}
#company .sdgs {
  text-align: center;
  margin-top: 50px;
}
#company .sdgs a {
  transition: 0.5s;
}
#company .sdgs a:hover {
  opacity: 0.5;
}
#company .odd, #company .even {
  padding: 45px 0 60px;
}
#company .odd.-first, #company .even.-first {
  padding-top: 0;
}
#company .even {
  background: #fafafa;
}
#company .even .h3a span {
  background: #fafafa;
}
#company .message a {
  display: block;
  text-decoration: none;
  transition: 0.3s;
}
#company .message a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
#company .-message {
  position: relative;
  min-height: 1000px;
}
#company .-message .photo, #company .-message .photo-sub, #company .-message .title {
  position: absolute;
}
#company .-message .photo {
  left: 0;
  top: 0;
}
#company .-message .photo img {
  width: 600px;
}
#company .-message .photo-sub {
  left: 0;
  top: 420px;
}
#company .-message .photo-sub li {
  margin-bottom: 20px;
}
#company .-message .photo-sub img {
  width: 400px;
}
#company .-message .title {
  left: 650px;
  top: 145px;
}
#company .-message .title h3 {
  text-align: left !important;
  font-size: 35px;
}
#company .-message .comment {
  z-index: -1;
  background: #ecf1f6;
  padding: 100px 100px 100px 150px;
  /* width: 630px; */
  margin: 350px 0 0 auto;
}
#company .philosophy {
  text-align: center;
  font-size: 18px;
  line-height: 2.6;
  font-weight: bold;
}
#company .side-category {
  position: sticky;
  top: 80px;
}
#company .primary.-message .author {
  font-size: 20px;
  font-weight: bold;
}
#company .primary.-message p {
  font-size: 18px;
  line-height: 2;
}
#company .primary.-message .column2 {
  margin-top: 40px;
}

/* -----------------------------------------------
	/recruit/
-------------------------------------------------- */
#recruit .article {
  padding: 20px 0;
}
#recruit .intro {
  background: url(../recruit/images/bg_recruit.png) no-repeat top center;
  margin-top: -43px;
  text-align: center;
}
#recruit .intro .recruit-logo {
  text-align: right;
  padding-top: 25px;
}
#recruit .intro .catch-copy {
  writing-mode: vertical-rl;
  text-align: center;
  margin: -40px auto 0;
  font-size: 50px;
  font-weight: bold;
  color: #ff5d64;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 12px;
  display: inline-block;
}
#recruit .intro .catch-copy img {
  vertical-align: baseline;
  margin: 12px 0;
}
#recruit .intro .text {
  margin-top: -40px;
  text-align: left;
  position: relative;
}
#recruit .intro .text p {
  margin-bottom: 26px;
}
#recruit .intro .text::after {
  content: "";
  background: url(../recruit/images/img1.png) no-repeat;
  background-size: 412px 308px;
  width: 412px;
  height: 308px;
  position: absolute;
  top: 70px;
  right: 100px;
}
#recruit .introduction {
  margin-bottom: 100px;
}
#recruit .introduction.-lower {
  margin-bottom: 80px;
}
#recruit .person-list li.slick-slide {
  margin: 0 15px;
}
#recruit .person-list li.slick-slide:focus {
  outline: none;
}
#recruit .person-list li a {
  display: block;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
#recruit .person-list li a dl dt.thumbnail img {
  width: 100%;
  height: auto;
}
#recruit .person-list li a dl dd.description {
  background: #fafafa;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}
#recruit .person-list li a dl dd.description span.department {
  font-size: 14px;
  margin-right: 20px;
  line-height: 1;
}
#recruit .person-list li a dl dd.description span.name-ja {
  font-size: 20px;
  font-weight: bold;
}
#recruit .person-list li a dl dd.description span.name-en {
  font-size: 11px;
  margin-left: auto;
}
#recruit .person-list li a:hover {
  transition: 0.3s;
  color: #fff;
}
#recruit .person-list li a:hover dl dd.description {
  background: #397ecf;
}
#recruit .person-list li.-active a::after {
  content: "Looking";
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 4px solid #397ecf;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #397ecf;
  font-size: 20px;
}
#recruit .feature {
  background: #ecf1f6;
  padding: 1px 0 0;
  margin-bottom: 50px;
}
#recruit .feature .feature-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 1200px;
  margin: -50px auto 0;
}
#recruit .feature .feature-list li {
  width: calc((100% - 40px) / 2);
}
#recruit .feature .feature-list li dl dd {
  display: flex;
  align-items: center;
  padding: 20px 0 30px;
}
#recruit .feature .feature-list li dl dd .title span {
  display: block;
}
#recruit .feature .feature-list li dl dd .title span.main {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 4px;
}
#recruit .feature .feature-list li dl dd .read-more {
  margin: 0 0 0 auto;
}
#recruit .news {
  max-width: 1400px;
  margin: 0 auto;
}
#recruit .news .news-inner {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
#recruit .news .news-inner .index {
  padding-right: 60px;
  margin: 0 0 0 auto;
  box-sizing: border-box;
}
#recruit .news .news-inner .index .inner {
  text-align: center;
}
#recruit .news .news-inner .index .title {
  font-size: 24px;
  font-weight: bold;
  writing-mode: vertical-rl;
  margin-bottom: 16px;
  display: inline-block;
  line-height: 1;
}
#recruit .news .news-inner .index .title-en {
  line-height: 1;
  font-size: 1px;
  margin-bottom: 15px;
}
#recruit .news .news-inner .index .next {
  margin: 0;
  display: inline-block;
}
#recruit .news .news-inner .index .next a {
  text-indent: -9999px;
  display: block;
  border-radius: 50%;
  border: 1px solid #ccc;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  background: #fff;
}
#recruit .news .news-inner .index .next a::after {
  content: "";
  background: url(../images/ico_arrow_right_black.png) no-repeat 0 0;
  background-size: 6px 10px;
  width: 6px;
  height: 10px;
  display: block;
}
#recruit .news .news-inner .index .next a:hover {
  background: #ccc;
  transition: 0.3s;
}
#recruit .news .news-inner .index .next a:hover::after {
  content: "";
  background: url(../images/ico_arrow_right_white.png) no-repeat 0 0;
  background-size: 6px 10px;
}
#recruit .news .news-inner .news-list {
  width: calc(100% - 230px);
}
#recruit .news .button-c {
  margin-bottom: 40px;
}
#recruit #graduates, #recruit #career {
  padding: 0 0 30px;
}
#recruit .person {
  width: 1200px;
  margin: 0 auto;
}
#recruit .person .person-list {
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0 60px -30px;
}
#recruit .person .person-list li {
  width: calc((100% - 30px - 30px - 30px) / 3);
  margin: 30px 0 0 30px;
}
#recruit .person-title {
  position: relative;
}
#recruit .person-title .person-cover {
  margin-top: -43px;
}
#recruit .person-title .person-cover img {
  width: 100%;
  height: auto;
}
#recruit .person-title .person-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1200px;
  margin: 0 auto;
}
#recruit .person-title .person-detail {
  background: url(../recruit/person/images/bg_person_detail.png) no-repeat center center;
  text-align: center;
  width: 500px;
  height: 577px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 40px;
  right: 50px;
}
#recruit .person-title .person-detail .person-inner .catch {
  font-family: "Barlow", sans-serif;
  font-size: 30px;
  font-weight: bold;
}
#recruit .person-title .person-detail .person-inner .message {
  display: flex;
  margin-bottom: 40px;
}
#recruit .person-title .person-detail .person-inner .message span.ja {
  font-size: 50px;
  color: #ff5d64;
  font-weight: bold;
}
#recruit .person-title .person-detail .person-inner .message span.ja i {
  background: linear-gradient(transparent 80%, #feadb1 80%);
  font-style: normal;
  line-height: 1;
  display: inline-block;
}
#recruit .person-title .person-detail .person-inner .message span.ja .sub {
  font-size: 16px;
  color: #000;
  display: block;
  margin-top: -14px;
  background: none;
}
#recruit .person-title .person-detail .person-inner .message span.en {
  font-family: "Barlow", sans-serif;
  font-size: 30px;
  font-weight: bold;
  margin: 12px 14px 0;
}
#recruit .person-title .person-detail .person-inner .detail-list li.department {
  font-size: 16px;
}
#recruit .person-title .person-detail .person-inner .detail-list li.name-ja {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  margin: 6px 0;
}
#recruit .person-title .person-detail .person-inner .detail-list li.name-en {
  font-size: 11px;
  color: #397ecf;
  margin-bottom: 10px;
}
#recruit .person-title .person-detail .person-inner .detail-list li.other {
  font-size: 14px;
}
#recruit .person-article {
  background: #ecf1f6;
  padding: 60px 0 1323px;
}
#recruit .person-article .person-article-inner {
  width: 1260px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
#recruit .person-article .person-article-inner .text {
  background: #fff;
  width: 660px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
#recruit .person-article .person-article-inner .text .text-inner .title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}
#recruit .person-article .person-article-inner .text .text-inner p:last-child {
  margin-bottom: 0;
}
#recruit .person-article .person-article-inner .photo {
  width: 600px;
  position: absolute;
}
#recruit .person-article .person-article-inner .photo img {
  width: 100%;
  height: auto;
}
#recruit .person-article .person-article-inner.-first .text {
  top: 0;
  left: 0;
  z-index: 1;
  height: 440px;
  padding: 0 80px 30px 50px;
}
#recruit .person-article .person-article-inner.-first .photo {
  top: 40px;
  right: 30px;
  z-index: 2;
}
#recruit .person-article .person-article-inner.-second .text {
  top: 400px;
  right: 0;
  z-index: 1;
  padding: 0px 50px 0px 80px;
  height: 463px;
}
#recruit .person-article .person-article-inner.-second .photo {
  top: 400px;
  left: 30px;
  z-index: 2;
}
#recruit .person-article .person-article-inner.-third .text {
  top: 833px;
  left: 0;
  z-index: 1;
  height: 430px;
  padding: 10px 80px 0 50px;
}
#recruit .person-article .person-article-inner.-third .photo {
  top: 833px;
  right: 30px;
  z-index: 2;
}
#recruit .person-pager {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 60px;
}
#recruit .person-pager li a {
  display: block;
  padding: 1em 0;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
}
#recruit .person-pager li a:hover {
  transition: all 0.3s;
}
#recruit .person-pager li.pager-prev, #recruit .person-pager li.pager-next {
  flex-grow: 1;
}
#recruit .person-pager li.pager-prev a, #recruit .person-pager li.pager-next a {
  background: #397ecf;
  border: 2px solid #397ecf;
}
#recruit .person-pager li.pager-prev a:hover, #recruit .person-pager li.pager-next a:hover {
  color: #397ecf;
  background: #fff;
}
#recruit .person-pager li.pager-form {
  flex-grow: 2;
  margin: 0 1px;
}
#recruit .person-pager li.pager-form a {
  background: #ff5d64;
  border: 2px solid #ff5d64;
}
#recruit .person-pager li.pager-form a:hover {
  color: #ff5d64;
  background: #fff;
}

/* -----------------------------------------------
	/blog/
-------------------------------------------------- */
#blog .article {
  padding: 20px 0;
}

/* -----------------------------------------------
	/contact/
-------------------------------------------------- */
#contact .contact-form {
  padding: 0 0 60px;
}

/* -----------------------------------------------
	/technology/
-------------------------------------------------- */
#technology .odd, #technology .even {
  padding: 45px 0 60px;
}
#technology .odd.-first, #technology .even.-first {
  padding-top: 0;
}
#technology .odd.-last, #technology .even.-last {
  padding-bottom: 0;
}
#technology .odd .lead, #technology .even .lead {
  font-size: 18px;
  text-align: center;
}
#technology .odd .flow-list > li, #technology .even .flow-list > li {
  display: flex;
  align-items: center;
  margin-top: -20px;
}
#technology .odd .flow-list > li .circle, #technology .even .flow-list > li .circle {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background: #397ecf;
  font-family: "Barlow", sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-right: 20px;
  line-height: 1.4;
  text-align: center;
  box-sizing: border-box;
}
#technology .odd .flow-list > li .concept, #technology .even .flow-list > li .concept {
  font-size: 18px;
  margin-bottom: 0;
  letter-spacing: 0.2em;
  font-weight: bold;
}
#technology .odd .flow-list > li:first-child, #technology .even .flow-list > li:first-child {
  margin-top: 0;
}
#technology .odd .flow-list > li:nth-child(2) .circle, #technology .even .flow-list > li:nth-child(2) .circle {
  background: #c3d8f1;
}
#technology .odd .flow-list.-b > li:nth-child(2) .circle, #technology .even .flow-list.-b > li:nth-child(2) .circle {
  background: #fff;
  border: 2px solid #99bde7;
  font-size: 28px;
  color: #000;
}
#technology .odd .flow-list.-b > li:nth-child(3) .circle, #technology .even .flow-list.-b > li:nth-child(3) .circle {
  background: #c3d8f1;
}
#technology .even {
  background: #fafafa;
}
#technology .even .h3a span {
  background: #fafafa;
}
#technology .h3c {
  margin: 40px 0px 20px;
}
#technology .image-r {
  float: right;
  margin: 0 0 30px 30px;
}
#technology .image-l {
  float: left;
  margin: 0 30px 30px 0;
}
#technology .catch {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 60px;
}
#technology .technology-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 930px;
  margin: 40px auto;
}
#technology .technology-list > li {
  width: 33.3333333333%;
}
#technology .technology-list > li a {
  background: url(../images/technology_bg_hexagon_blue.png) no-repeat center center;
  display: block;
  text-decoration: none;
  color: #fff;
  height: 345px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s;
  z-index: 2;
  text-decoration: none;
}
#technology .technology-list > li a .inner .title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
#technology .technology-list > li a .inner .title::after {
  content: "";
  background: url(../images/ico_arrow_right_white.png) no-repeat 0 0;
  background-size: 6px;
  width: 6px;
  height: 12px;
  display: inline-block;
  position: absolute;
  top: calc(50% - 6px);
  right: -20px;
}
#technology .technology-list > li a .inner .lead {
  font-size: 14px;
  margin-bottom: 0;
}
#technology .technology-list > li a:hover {
  background: url(../images/technology_bg_hexagon_blue_on.png) no-repeat center center;
  transition: 0.3s;
}
#technology .technology-list > li.nav {
  position: relative;
}
#technology .technology-list > li.nav .inner {
  padding-top: 70px;
}
#technology .technology-list > li.nav a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
#technology .technology-list > li.nav.-no01 a::after {
  background: url(../images/top/technology_img1.png) no-repeat 0 0;
  background-size: 140px;
  width: 140px;
  height: 54px;
  top: 70px;
}
#technology .technology-list > li.nav.-no02 a::after {
  background: url(../images/top/technology_img2.png) no-repeat 0 0;
  background-size: 64px;
  width: 64px;
  height: 80px;
  top: 50px;
}
#technology .technology-list > li.nav.-no03 a::after {
  background: url(../images/top/technology_img3_white.png) no-repeat 0 0;
  background-size: 70px;
  width: 70px;
  height: 69px;
  top: 60px;
}
#technology .technology-list > li.nav.-no04 {
  margin-top: -78px;
}
#technology .technology-list > li.nav.-no04 a::after {
  background: url(../images/top/technology_img4_white.png) no-repeat 0 0;
  background-size: 40px;
  width: 40px;
  height: 40px;
  top: 80px;
}
#technology .technology-list > li.nav.-no05 {
  margin-top: -78px;
}
#technology .technology-list > li.nav.-no05 a::after {
  background: url(../images/top/technology_img5_white.png) no-repeat 0 0;
  background-size: 40px;
  width: 40px;
  height: 40px;
  top: 80px;
}
#technology .technology-map {
  display: none;
}
#technology .other {
  background: #fafafa;
  padding: 1px 0 50px;
}
#technology .other .other-product-list {
  margin-bottom: 10px;
}
#technology .other .h3b, #technology .example .h3b {
  margin-bottom: 0;
}
#technology .example .coming-soon {
  font-size: 18px;
  text-align: center;
  margin: 40px 0 60px;
}
#technology .details {
  text-align: center;
  background: #ecf1f6;
  padding: 60px 0 50px;
  margin-top: -43px;
}
#technology .details .photo {
  margin-bottom: 30px;
}
#technology .details .lead {
  font-size: 18px;
  margin-bottom: 0;
}
#technology .nav-technology {
  width: 1200px;
  margin: 60px auto;
  display: flex;
}
#technology .nav-technology > li {
  width: calc((100% - 1px - 1px - 1px - 1px) / 5);
  margin-left: 1px;
}
#technology .nav-technology > li a {
  display: block;
  text-decoration: none;
  color: #000;
  background: #ecf1f6;
  text-align: center;
  font-size: 18px;
  padding: 0.8em 0;
  transition: 0.3s;
}
#technology .nav-technology > li a:hover, #technology .nav-technology > li a.-active {
  background: #397ecf;
  color: #fff;
  transition: 0.3s;
}

.catalogdl-unit {
  text-align: center;
  background: #ff5d64;
  color: #fff;
  padding: 20px 20px 40px;
}
.catalogdl-unit h2 {
  font-size: 150%;
  font-weight: bold;
}
.catalogdl-unit li {
  width: 400px;
  display: inline-block;
  margin: 0 20px;
  font-size: 130%;
}
.catalogdl-unit li a {
  display: block;
  background: #fff;
  color: #ff5d64;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  border: 3px solid #fff;
}
.catalogdl-unit li a:link, .catalogdl-unit li a:visited, .catalogdl-unit li a:hover, .catalogdl-unit li a:active {
  display: block;
  background: #fff;
  color: #ff5d64;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  border: 3px solid #fff;
}
.catalogdl-unit li a:hover, .catalogdl-unit li a:active {
  background: #ff5d64;
  color: #fff;
}
.catalogdl-unit li a span {
  padding-left: 20px;
  font-size: 70%;
}

/* catalog-list */
.catalog-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}
.catalog-list li {
  display: inline-flex;
  width: 250px;
  text-align: center;
  margin-bottom: 50px;
  text-decoration: none;
  color: #333;
}
.catalog-list li img {
  max-width: 100%;
  border: 1px solid #ddd;
}
.catalog-list li a {
  text-decoration: none;
  color: #333;
}
.catalog-list li a:link, .catalog-list li a:visited, .catalog-list li a:hover, .catalog-list li a:active {
  text-decoration: none;
  color: #333;
}
.catalog-list li a:hover, .catalog-list li a:active {
  opacity: 0.5;
}
.catalog-list li dt {
  margin-bottom: 10px;
}
.catalog-list li dd .code {
  font-size: 78%;
  color: #999;
}

.center {
  text-align: center;
}

/* -----------------------------------------------
  /sdgs/
-------------------------------------------------- */
#sdgs .lower-inner h2 {
  text-align: center;
  color: #fff;
  background: #397ecf;
}
#sdgs h4 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: bold;
}
#sdgs .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#sdgs .img {
  width: 300px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* = flex-direction:row;flex-wrap:wrap; */
}
#sdgs .img div {
  width: 49%;
  margin-bottom: 6px;
}
#sdgs .img div img {
  width: 100%;
}
#sdgs .txt {
  width: 880px;
}

/**************************************************
	base
***************************************************/
.pc-none {
  display: none;
}

.sp-nav {
  display: none;
}

.sp-nav-button {
  display: none;
}

.sp-utility-nav {
  display: none;
}

.sp-header {
  display: none;
}

@media screen and (max-width: 768px) {
  /* -----------------------------------------------
  	1. body
  -------------------------------------------------- */
  body {
    min-width: 100%;
    font-size: 14px;
    padding-top: 60px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  iframe {
    width: 100%;
    height: auto;
  }
  a.tel-link {
    text-decoration: underline;
    color: #333;
  }
  /* -----------------------------------------------
  	helper
  -------------------------------------------------- */
  .pc-none {
    display: block;
  }
  br.pc-none, span.pc-none {
    display: inline;
  }
  .sp-none {
    display: none;
  }
  .sp-txtc {
    text-align: center !important;
  }
  .sp-txtl {
    text-align: left !important;
  }
  /* ---------- margin ---------- */
  ._middle {
    margin-bottom: 15px !important;
  }
  ._double {
    margin-bottom: 25px !important;
  }
}
/**************************************************
	structure
***************************************************/
@media screen and (max-width: 768px) {
  /* -----------------------------------------------
  	1. Header
  -------------------------------------------------- */
  .site-header {
    display: none;
  }
  .site-header.is-animation {
    display: none;
  }
  .sp-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 100;
  }
  .sp-header .logo {
    padding-left: 5%;
  }
  .sp-header .logo img {
    max-width: 200px;
  }
  .sp-header .btn-list {
    display: flex;
  }
  .sp-header .btn-list .tel {
    margin-right: 1px;
  }
  .sp-header .btn-list .tel a {
    width: 60px;
    height: 60px;
    padding: 12px 8px 8px;
    background: #ff5d64;
    display: block;
    position: relative;
    text-align: center;
    box-sizing: border-box;
  }
  .sp-header .btn-list .tel a img {
    width: auto;
    height: 16px;
    vertical-align: top;
  }
  .sp-header .btn-list .tel a::after {
    content: "TEL";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .sp-nav-button-wrap {
    display: inline-block;
    width: 60px;
    height: 60px;
    z-index: 9999;
    box-sizing: border-box;
    background: #397ecf;
    padding: 12px 8px 8px;
  }
  .sp-nav-button,
  .sp-nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .sp-nav-button {
    position: relative;
    width: 100%;
    height: 16px;
    z-index: 300;
  }
  .sp-nav-button::after {
    position: absolute;
    bottom: -20px;
    left: 0;
    content: "メニュー";
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .sp-nav-button span {
    position: absolute;
    left: 20%;
    width: 60%;
    height: 2px;
    background-color: #fff;
  }
  .sp-nav-button span:nth-of-type(1) {
    top: 0;
  }
  .sp-nav-button span:nth-of-type(2) {
    top: calc(50% - 1px);
  }
  .sp-nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .sp-nav-button.-active::after {
    color: #fff;
    content: "閉じる";
  }
  .sp-nav-button.-active span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  .sp-nav-button.-active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-nav-button.-active span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
  .sp-nav-button.-active span {
    background-color: #fff;
  }
  .sp-nav {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 0 40px;
    box-sizing: border-box;
    background: #397ecf;
    color: #fff;
    z-index: 9998;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 1s;
    transform: translateY(-150%);
  }
  .sp-nav.-active {
    transform: translateY(0%);
  }
  .sp-nav .sp-global-nav {
    padding: 5% 5% 0;
  }
  .sp-nav .sp-global-nav .nav-list {
    margin: -1px 0 15px 0;
  }
  .sp-nav .sp-global-nav .nav-list li {
    margin-top: 1px;
  }
  .sp-nav .sp-global-nav .nav-list li a {
    background: #fff;
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 0.5em 20px;
    position: relative;
  }
  .sp-nav .sp-global-nav .nav-list li a::after {
    content: "";
    background: url(../images/ico_arrow_right_black.png) no-repeat 0 0;
    background-size: 5px;
    width: 5px;
    height: 10px;
    display: inline-block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
  }
  .sp-nav .sp-global-nav .nav-list.-column2 {
    display: flex;
    margin-bottom: 0;
  }
  .sp-nav .sp-global-nav .nav-list.-column2 li {
    width: 50%;
  }
  .sp-nav .copyright {
    display: none;
  }
  .sp-nav .btn-close {
    text-align: center;
    display: block;
    width: 100%;
    background: #fff;
  }
  .sp-nav .btn-close a {
    color: #000;
    font-size: 18px;
    display: block;
    padding: 0.5em 0;
    text-decoration: none;
    border-bottom: 1px solid #397ecf;
    font-weight: bold;
  }
  /* -----------------------------------------------
  	2. Footer
  -------------------------------------------------- */
  .site-footer {
    text-align: center;
  }
  .site-footer .inner {
    width: 100%;
    padding: 30px 5%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .site-footer .inner .headline {
    margin-bottom: 20px;
  }
  .site-footer .inner .headline > ul {
    display: block;
  }
  .site-footer .inner .headline > ul li {
    width: 100%;
    display: block;
  }
  .site-footer .inner .headline > ul li .logo-footer {
    margin: 0 auto;
  }
  .site-footer .inner .headline > ul li .lead {
    display: none;
  }
  .site-footer .inner .headline > ul li .contact {
    display: none;
  }
  .site-footer .inner .address-list {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  .site-footer .inner .address-list li {
    width: 100%;
    border-bottom: none;
    padding: 10px 0;
  }
  .site-footer .inner .address-list li .contact {
    display: block;
  }
  .site-footer .inner .address-list li .contact p.location {
    padding-top: 10px;
    margin-bottom: 8px;
  }
  .site-footer .inner .address-list li .contact p.tel {
    margin-bottom: 10px;
  }
  .site-footer .inner .address-list li .contact p.tel em {
    font-size: 28px;
  }
  .site-footer .inner .address-list li .contact p.tel em a {
    color: #fff;
    text-decoration: underline;
  }
  .site-footer .inner .address-list li .contact p.fax {
    display: none;
  }
  .site-footer .inner .address-list li .address {
    font-size: 12px;
    margin: 0;
  }
  .site-footer .inner .btn-contact {
    width: 100%;
    margin-bottom: 0;
  }
  .site-footer .inner .btn-contact .contact {
    background: #fff;
    color: #397ecf;
    text-align: center;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 0;
    transition: 0.3s;
    border: 3px solid #fff;
    box-sizing: border-box;
    text-decoration: none;
    display: block;
  }
  .site-footer .inner .btn-contact .contact:hover {
    background: #397ecf;
    transition: 0.3s;
    color: #fff;
    border: 3px solid #fff;
  }
  /* -----------------------------------------------
  	3. Contents
  -------------------------------------------------- */
  .local-nav-wrap {
    padding: 30px 5% 28px;
  }
  .local-nav-wrap .local-nav {
    width: 100%;
    flex-wrap: wrap;
  }
  .local-nav-wrap .local-nav li {
    margin: 0 0 2px;
    width: calc((100% - 2px) / 2);
  }
  .article, .common {
    display: block;
  }
  .article .article-primary, .article .primary, .common .article-primary, .common .primary {
    width: 100%;
  }
  .article .article-primary .article-title, .article .primary .article-title, .common .article-primary .article-title, .common .primary .article-title {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .article .article-primary .article-title .h2a, .article .primary .article-title .h2a, .common .article-primary .article-title .h2a, .common .primary .article-title .h2a {
    margin-bottom: 10px;
  }
  .article .article-primary .pager-wrap .pager, .article .primary .pager-wrap .pager, .common .article-primary .pager-wrap .pager, .common .primary .pager-wrap .pager {
    margin: 20px auto 0;
  }
  .article .side-secondary, .article .secondary, .common .side-secondary, .common .secondary {
    width: 100%;
    padding-left: 0;
  }
  .common {
    padding: 20px 0 60px;
  }
  /* -----------------------------------------------
  	4. lower
  -------------------------------------------------- */
  .page-title {
    background-size: cover;
    height: 120px;
  }
  .page-title .title {
    width: 100%;
    text-align: center;
  }
  .page-title .title span.ja {
    font-size: 24px;
  }
  .page-title .title span.ja small {
    font-size: 16px;
    margin-right: 10px;
  }
  .page-title .title span.en {
    font-size: 12px;
    margin-left: 0;
    display: block;
  }
  .lower-inner {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
  }
  .lower-inner > .inner {
    width: 100%;
  }
  .side-nav .title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .side-nav.-archive .list-b > li {
    width: 30%;
  }
  /* -----------------------------------------------
    Pager
  -------------------------------------------------- */
  .entry-pager {
    margin: 30px auto 20px;
    font-size: 12px;
  }
  .entry-nav {
    margin: 0;
    padding: 10px;
    font-size: 10px;
  }
  .entry-social {
    margin: 20px 0;
  }
}
/**************************************************
	components
***************************************************/
@media screen and (max-width: 768px) {
  /* -----------------------------------------------
  	Icon
  -------------------------------------------------- */
  .ico-hexagon {
    margin: 2.89px 8px 2.89px 0;
  }
  /* -----------------------------------------------
  	Heading
  -------------------------------------------------- */
  .spirits {
    background: url(../images/top/spirits_bg_sp.png) no-repeat center center;
    background-size: contain;
    padding: 30px 0;
    text-align: center;
  }
  .spirits .spirits-logo {
    width: 100px;
    margin: 0 auto 10px;
  }
  .spirits .title {
    font-size: 26px;
    line-height: 50px;
    padding: 0;
    margin-bottom: 12px;
    text-shadow: white 2px 0px 2px, white -2px 0px 2px, white 0px -2px 2px, white -2px 0px 2px, white 2px 2px 2px, white -2px 2px 2px, white 2px -2px 2px, white -2px -2px 2px, white 1px 2px 2px, white -1px 2px 2px, white 1px -2px 2px, white -1px -2px 2px, white 2px 1px 2px, white -2px 1px 2px, white 2px -1px 2px, white -2px -1px 2px, white 1px 1px 2px, white -1px 1px 2px, white 1px -1px 2px, white -1px -1px 2px;
  }
  .spirits .title span {
    margin: 0 10px;
  }
  .spirits .title span img {
    width: 20px;
  }
  .spirits .lead {
    font-size: 12px;
    line-height: 1.6;
    text-shadow: white 2px 0px 2px, white -2px 0px 2px, white 0px -2px 2px, white -2px 0px 2px, white 2px 2px 2px, white -2px 2px 2px, white 2px -2px 2px, white -2px -2px 2px, white 1px 2px 2px, white -1px 2px 2px, white 1px -2px 2px, white -1px -2px 2px, white 2px 1px 2px, white -2px 1px 2px, white 2px -1px 2px, white -2px -1px 2px, white 1px 1px 2px, white -1px 1px 2px, white 1px -1px 2px, white -1px -1px 2px;
  }
  .h2a {
    font-size: 21px;
    line-height: 1.6;
    margin: 30px 0 20px;
  }
  .h2a span {
    display: block;
  }
  .h2a span.en {
    font-size: 12px;
    margin-top: -0.2em;
  }
  .h3a {
    font-size: 21px;
    margin: 25px 0 10px;
  }
  .h3b {
    font-size: 21px;
    margin: 20px auto 15px;
  }
  .h3c {
    padding: 6px 10px;
    margin: 20px 0 10px;
    font-size: 15px;
    line-height: 1.6;
  }
  .h4a {
    font-size: 18px;
    margin: 25px 0 10px;
  }
  .h4b {
    margin: 20px 0px 10px;
  }
  .h4c {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .h5a {
    font-size: 18px;
    margin: 20px 0 10px;
  }
  .h5b {
    margin: 0 10px 10px;
  }
  /* -----------------------------------------------
  	Column
  -------------------------------------------------- */
  .column2 > li, .column3 > li {
    width: calc((100% - 20px) / 2);
  }
  .column3 {
    margin: 20px auto;
  }
  .column3 > li {
    width: calc((100% - 20px - 20px) / 3);
  }
  /* -----------------------------------------------
  	Button
  -------------------------------------------------- */
  .button-a {
    padding: 1em 0;
  }
  .button-b {
    min-width: auto;
    padding: 0.6em 1em;
    font-size: 16px;
  }
  .button-c {
    padding: 10px 0;
    min-width: 90%;
  }
  /* -----------------------------------------------
  	Box
  -------------------------------------------------- */
  .box-a, .box-b, .box-c {
    padding: 20px 20px 1px;
    margin: 20px 0;
  }
  /* -----------------------------------------------
  	Breadcrumb
  -------------------------------------------------- */
  .breadcrumb-a {
    display: none;
  }
  /* -----------------------------------------------
  	Table
  -------------------------------------------------- */
  .table-a, .table-b, .table-c, .table-d {
    margin: 0 auto 20px;
    font-size: 12px;
  }
  .table-a th, .table-a td {
    display: block;
  }
  .table-a th {
    padding: 0.8em 20px 0;
    font-size: 14px;
    border-bottom: none;
  }
  .table-a th i {
    margin: 2.89px 10px 2.89px 0;
  }
  .table-a tr:last-child th:last-child {
    padding-bottom: 0.8em;
  }
  .table-a td {
    padding: 0 20px 0.8em;
    border-bottom: 1px solid #ecf1f6;
  }
  .table-d, .column-table- table {
    margin-bottom: 30px;
  }
  /* -----------------------------------------------
  	List
  -------------------------------------------------- */
  /* products */
  .filter-nav {
    width: 100%;
    margin: 30px auto 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .filter-nav li {
    width: calc((100% - 1px) / 2);
    margin: 0 0 1px;
    font-size: 16px;
    padding: 0.6em 0;
  }
  .product-list {
    justify-content: space-between;
    margin: -10px 0 0 0;
  }
  .product-list li {
    width: calc((100% - 10px) / 2);
    margin: 10px 0 0 0;
  }
  .product-list li a .thumbnail {
    height: 150px;
  }
  .product-list li a .thumbnail img {
    height: 50%;
  }
  .product-list li a .name {
    font-size: 16px;
    padding: 15px 15px 0;
    line-height: 1.4;
  }
  .product-list li a .description {
    padding: 5px 15px 15px;
    font-size: 14px;
  }
  .product-list li a .description .label {
    font-size: 10px;
    padding: 0.3em 1em 0.2em;
    margin-top: 10px;
  }
  .other-product-list {
    display: block;
    margin: 0 0 20px 0;
  }
  .other-product-list > li {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .other-product-list > li a dl .photo {
    width: 100px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
  }
  .other-product-list > li a dl dd.caption span {
    display: block;
  }
  .other-product-list > li a dl dd.caption span.title {
    font-size: 16px;
  }
  .other-product-list > li a dl dd.caption span.lead {
    font-size: 12px;
  }
  .other-product-list > li a::after {
    border-top: 20px solid transparent;
    border-right: 20px solid #eee;
  }
  .other-product-list > li a:hover::after {
    border-top: 20px solid transparent;
    border-right: 20px solid #397ecf;
  }
  /* example */
  .example-list-a {
    display: block;
    margin: 0;
  }
  .example-list-a li {
    width: 100%;
    margin: 20px 0 0 0;
  }
  .example-list-a li .cover {
    display: block;
  }
  .example-list-a li .cover .image {
    width: 100%;
    height: auto;
  }
  .example-list-a li .cover .text {
    width: 100%;
    padding: 20px;
  }
  .example-list-a li .cover .text .tag {
    font-size: 10px;
  }
  .example-list-a li .cover .text .title {
    font-size: 16px;
    margin: 10px 0 0;
  }
  .example-list-b {
    justify-content: space-between;
    margin: 0 0 25px 0;
  }
  .example-list-b > li {
    width: calc((100% - 20px) / 2);
    margin: 10px 0 0 0;
  }
  .example-list-b > li a dl dt.thumbnail {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .example-list-b > li a dl dt.thumbnail img {
    width: 100%;
    height: auto;
  }
  /* news */
  .news-list > li a dl {
    display: block;
    background: url(../images/ico_arrow_right_black.png) no-repeat 95% 50%;
    background-size: 6px 10px;
  }
  .news-list > li a dl dt, .news-list > li a dl dt {
    display: block;
    height: 100%;
  }
  .news-list > li a dl dt {
    padding: 20px 20px 0;
    margin-bottom: 4px;
  }
  .news-list > li a dl dd {
    white-space: normal;
    overflow: auto;
    text-overflow: ellipsis;
    padding: 0 30px 20px 20px;
  }
  /* tag */
  .tag-list {
    margin-left: -2px;
  }
  .tag-list > li {
    margin: 0 2px 5px;
  }
  .tag-list > li a {
    font-size: 10px;
    padding: 0.3em 0.6em;
  }
  /* blog */
  .article-list > li {
    width: calc((100% - 1px - 1px) / 2);
    margin: 0 1px 1px 0;
  }
  .article-list > li a {
    width: 100%;
    display: block;
  }
  .article-list > li a dl dt.thumbnail {
    width: 100%;
    height: 100px;
  }
  .article-list > li a dl dt.thumbnail img {
    width: 100%;
    height: auto;
  }
  .article-list > li a dl dd.caption {
    padding: 10px;
    text-align: left;
  }
  .article-list > li a dl dd.caption span.title {
    line-height: 1.4;
  }
  .article-list > li a dl dd.caption span.date {
    font-size: 10px;
  }
  /* common */
  .list-a, .list-b, .list-c {
    margin: 0 auto 20px;
  }
  .list-a li, .list-b li, .list-c li {
    margin-bottom: 4px;
  }
  /* -----------------------------------------------
  	Form
  -------------------------------------------------- */
  .form-step {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .form-step > li.-current::after, .form-step > li.-done::after {
    display: none;
  }
  .required, .any {
    font-size: 10px;
    margin-right: 0;
  }
  .form-table {
    width: 100%;
    margin-bottom: 30px;
  }
  .form-table th, .form-table td {
    display: block;
    border-bottom: 1px solid #dddddd;
  }
  .form-table th table th, .form-table th table td, .form-table td table th, .form-table td table td {
    border-bottom: none;
    padding: 0.2em 0;
  }
  .form-table th {
    padding: 1em 0 0.5em;
    border-bottom: none;
  }
  .form-table td {
    padding: 0 0 1em;
  }
  .form-table table {
    width: 100%;
  }
  .form-table table th, .form-table table td {
    padding: 0.5em 1em 0.5em 0;
  }
  .form-action > li {
    margin: 0 10px 20px;
  }
  /* -----------------------------------------------
  	Tab
  -------------------------------------------------- */
  .tab {
    margin: 30px 0;
  }
  .tab > li > a {
    font-size: 16px;
  }
}
/**************************************************
	unique
***************************************************/
@media screen and (max-width: 768px) {
  /* -----------------------------------------------
  	All lower Page
  -------------------------------------------------- */
  #styleguide, #news, #products, #example, #oem, #company, #recruit, #blog, #contact, #technology {
    padding-top: 61px;
  }
  #styleguide .site-header, #news .site-header, #products .site-header, #example .site-header, #oem .site-header, #company .site-header, #recruit .site-header, #blog .site-header, #contact .site-header, #technology .site-header {
    display: none;
  }
  /* -----------------------------------------------
  	/top.html
  -------------------------------------------------- */
  #top #hero #slider img {
    max-width: 100vw;
  }
  #top #hero .title1 .inner .sub, #top #hero .title2 .inner .sub, #top #hero .title3 .inner .sub {
    font-size: 14px;
  }
  #top #hero .title1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #top #hero .title1 .inner {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  #top #hero .title1 .inner .copy {
    font-size: 26px;
    margin-bottom: 14px;
  }
  #top #hero .title2 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    position: relative;
  }
  #top #hero .title2 .inner {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-bottom: 20px;
  }
  #top #hero .title2 .inner .copy {
    font-size: 18px;
    line-height: 1.2;
    padding: 10px 0;
    margin-bottom: 10px;
    letter-spacing: -0.05em;
  }
  #top #hero .title2 .inner .sub {
    font-size: 10px;
    letter-spacing: 0;
  }
  #top #hero .title3 {
    justify-content: center;
    text-align: center;
  }
  #top #hero .title3 .inner {
    padding-right: 0;
  }
  #top #hero .title3 .inner .copy {
    margin-bottom: 10px;
  }
  #top #hero .title3 .inner .copy span.en {
    font-size: 24px;
  }
  #top #hero .title3 .inner .copy span.ja {
    font-size: 16px;
  }
  #top #hero .title3 .inner .sub {
    margin-bottom: 0;
  }
  #top #hero .title3 .inner .read-more {
    display: none;
  }
  #top #hero .dots {
    top: calc(50% - 50px);
    left: 0;
  }
  #top #hero .dots > li {
    margin-bottom: 5px;
  }
  #top #hero .dots > li a {
    width: 4px;
    height: 30px;
  }
  #top .technology {
    background: #397ecf;
    height: auto;
    position: relative;
  }
  #top .technology > .inner {
    width: 100%;
    height: auto;
    display: block;
  }
  #top .technology > .inner .catch {
    width: 100%;
    padding: 15px 5% 20px 5%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
  }
  #top .technology > .inner .catch .title {
    width: 80px;
    margin-right: 12px;
  }
  #top .technology > .inner .catch .lead {
    font-size: 11px;
    margin: 0;
    flex: 1;
  }
  #top .technology > .inner .catch .lead br {
    display: none;
  }
  #top .technology > .inner .technology-list {
    display: none;
  }
  #top .technology > .inner .technology-map {
    display: block;
  }
  #top .movies {
    display: block;
    width: 100%;
    padding: 50px 5% 30px;
    box-sizing: border-box;
  }
  #top .movies .js-modal-video {
    width: 100%;
    margin: 0 auto 20px;
    max-width: inherit;
  }
  #top .products {
    width: 100%;
    padding: 30px 0 0;
    box-sizing: border-box;
  }
  #top .products > .inner {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
  }
  #top .products > .inner .index {
    margin-bottom: 20px;
  }
  #top .products > .inner .index .title {
    font-size: 24px;
    margin: 0 auto;
    text-align: center;
  }
  #top .products > .inner .index .title .en {
    margin: 10px 0 0;
    display: block;
    font-size: 12px;
  }
  #top .products > .inner .index .title .en img {
    width: 70%;
  }
  #top .products > .inner .index .more {
    display: none;
  }
  #top .products > .inner .read-more {
    margin-bottom: 30px;
  }
  #top .products > .inner .read-more a {
    margin: 0 auto;
  }
  #top .products .oem {
    width: 100%;
    padding: 30px 5% 0;
    box-sizing: border-box;
  }
  #top .products .oem .wrap {
    background-size: 90%;
    max-width: 100%;
    padding-top: 120px;
    margin: -30px auto 0;
  }
  #top .products .oem .wrap .caption {
    min-width: 90%;
    max-width: 90%;
    min-height: 90%;
    margin: 0;
    border-top: 4px solid #397ecf;
    border-left: none;
  }
  #top .products .oem .wrap .caption .inner {
    padding: 10px 20px 20px;
  }
  #top .products .oem .wrap .caption .inner .title {
    font-size: 26px;
    margin-bottom: 0;
  }
  #top .products .oem .wrap .caption .inner .lead {
    margin-bottom: 14px;
  }
  #top .products .oem .wrap .caption .inner .lead br {
    display: none;
  }
  #top .products .oem::after {
    width: 100%;
    min-width: 100%;
    height: 100%;
    top: 30px;
    left: 0;
  }
  #top .recruit {
    background: url(../images/top/recruit_bg_sp.png) no-repeat center 80px;
    background-size: contain;
    padding: 55px 0 30px;
  }
  #top .recruit .title {
    font-size: 42px;
    margin-bottom: 8px;
  }
  #top .recruit .sub-title {
    width: 80px;
    padding: 10px 0;
    margin-bottom: 120px;
  }
  #top .recruit .lead {
    letter-spacing: 0;
    margin-bottom: 20px;
  }
  #top .company .inner {
    padding: 40px 0;
  }
  #top .company .inner .title {
    font-size: 24px;
  }
  #top .company .inner .company-nav {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  #top .company .inner .company-nav > li {
    font-size: 10px;
  }
  #top .company .inner::after {
    top: calc(50% - 15px);
    right: 20px;
  }
  #top .news {
    padding: 30px 0;
    max-width: 100%;
    align-items: flex-start;
  }
  #top .news .index {
    padding: 0 20px;
    margin: 0;
  }
  #top .news .index .title {
    margin-bottom: 10px;
  }
  #top .news .news-list {
    width: calc(100% - 74px);
  }
  #top .blog {
    padding: 30px 0;
  }
  #top .blog > .inner {
    max-width: 100%;
    align-items: flex-start;
  }
  #top .blog > .inner .index {
    padding: 0 20px;
    margin: 0;
    order: 1;
  }
  #top .blog > .inner .index .title {
    margin-bottom: 10px;
  }
  #top .blog > .inner .article-list {
    order: 2;
    justify-content: space-between;
    margin: -4px 0 0;
  }
  #top .blog > .inner .article-list > li {
    width: calc((100% - 4px) / 2);
    margin: 4px 0 0;
  }
  #top .blog > .inner .article-list > li a {
    width: 100%;
    display: block;
  }
  #top .blog > .inner .article-list > li a dl dt.thumbnail {
    width: 100%;
    height: 100px;
  }
  #top .blog > .inner .article-list > li a dl dt.thumbnail img {
    width: 100%;
    height: auto;
  }
  /* -----------------------------------------------
  	/news/
  -------------------------------------------------- */
  #news .article {
    padding: 20px 0 0;
  }
  #news .article .news-list {
    margin-bottom: 20px;
  }
  #news .article .article-title .tag-list {
    margin-top: 10px;
  }
  /* -----------------------------------------------
  	/example/
  -------------------------------------------------- */
  #example .odd, #example .even {
    padding: 25px 0 30px;
  }
  #example .odd.-first, #example .even.-first {
    padding-top: 25px;
  }
  #example .example-photo {
    width: 100%;
    padding: 20px 5% 30px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  #example .example-photo .cover {
    display: block;
  }
  #example .example-photo .cover img {
    width: 100%;
    height: auto;
  }
  #example .example-photo .cover .text {
    width: 100%;
    padding: 20px;
  }
  #example .example-photo .cover .text dl dt.tag {
    margin-bottom: 12px;
    font-size: 12px;
  }
  #example .example-photo .cover .text dl dd.title {
    font-size: 18px;
    margin: 0;
  }
  #example .example-photo .cover .text dl dd.lead {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  #example .example-photo .cover .text dl dd.lead br {
    display: none;
  }
  #example .example-photo .cover .text dl dd.lead::before {
    margin: 10px auto 15px;
  }
  #example .feature .table-a {
    margin-bottom: 0;
  }
  /* -----------------------------------------------
  	/products/
  -------------------------------------------------- */
  #products #product-search {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
  }
  #products .product-list {
    padding: 20px 0;
  }
  #products .lower-inner {
    padding: 0;
  }
  #products .lower-inner .table-a th, #products .lower-inner .table-a td {
    display: block;
  }
  #products .lower-inner .acms-grid, #products .lower-inner .acms-grid-r {
    margin: 0;
  }
  #products .lower-inner .acms-grid p, #products .lower-inner .acms-grid-r p {
    margin: 0 0 20px;
  }
  #products .lower-inner .acms-grid p small, #products .lower-inner .acms-grid-r p small {
    line-height: 1.6;
    display: block;
  }
  #products .product-detail {
    display: block;
  }
  #products .product-detail .product-image {
    width: calc(100% - 60px);
    height: 200px;
    border: 1px solid #e5e5e5;
    box-shadow: none;
    box-sizing: border-box;
    margin: 30px auto 0;
  }
  #products .product-detail .product-image img {
    height: 60%;
  }
  #products .product-detail .product-title {
    background: #ecf1f6;
    padding: 50px 5% 1px;
    margin: -30px 0 0;
  }
  #products .product-detail .product-title .category {
    display: none;
  }
  #products .product-detail .product-title .catch {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.6;
  }
  #products .index {
    padding: 0 0 0;
    margin-top: 0;
    background: #fff;
  }
  #products .index .lower-inner .inner {
    background: #ecf1f6;
    width: 100%;
    padding: 1px 5% 0;
    box-sizing: border-box;
  }
  #products .index .function-list {
    width: 100%;
    box-sizing: border-box;
    background: #FFF;
    padding: 25px 5%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #products .index .function-list.-clone {
    top: 60px;
    margin: 0 auto;
  }
  #products .index .function-list li {
    width: calc((100% - 1px - 1px - 1px) / 3);
    margin: 0 0 1px 1px;
  }
  #products .index .function-list li a {
    background: #ecf1f6;
    font-size: 12px;
  }
  #products .index .h3b.-last {
    margin: 25px auto 10px;
  }
  #products .index .spec-list {
    display: block;
  }
  #products .index .spec-list li {
    width: 100%;
  }
  #products .index .spec-list li .table-b th {
    width: 50px;
    white-space: normal;
  }
  #products .index .option-list {
    display: block;
    margin: 0 -5%;
  }
  #products .index .option-list li {
    width: 100%;
    margin: 0 5px 0 !important;
  }
  #products .index .option-list li .thumbnail {
    width: 100%;
    height: 150px;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #products .index .option-list li .thumbnail img {
    width: auto;
    height: auto;
    max-height: 90px;
  }
  #products .index .option-list li .name {
    margin: 12px 0 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #products .index .option-list li .name span.en {
    font-size: 10px;
  }
  #products .index .option-list li .table-c {
    font-size: 12px;
  }
  #products .index .external-view {
    padding: 20px;
  }
  #products .index .download-list {
    margin-top: 20px;
  }
  #products .index .download-list > li {
    width: calc((100% - 10px) / 2);
  }
  #products .example {
    padding: 0 5%;
  }
  #products .example .h3b {
    margin-bottom: 0;
  }
  #products .other {
    padding: 1px 5% 30px;
  }
  #products .other .other-product-list {
    margin-bottom: 20px;
  }
  #products .catalogdl-unit p {
    text-align: left;
  }
  #products .catalogdl-unit li {
    width: 100%;
    margin: 10px 0 0;
    display: block;
  }
  #products .catalog-list {
    width: 100%;
    justify-content: space-around;
  }
  #products .catalog-list li {
    width: 40%;
  }
  #products p.text {
    margin-top: 30px;
  }
  /* -----------------------------------------------
  	/oem/
  -------------------------------------------------- */
  #oem .odd {
    padding: 30px 0 25px;
  }
  #oem .even {
    padding: 30px 0 25px;
  }
  #oem .graph {
    margin-bottom: 20px;
  }
  #oem .lead {
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
  }
  #oem .lead br {
    display: none;
  }
  /* -----------------------------------------------
  	/company/
  -------------------------------------------------- */
  #company .catch .author {
    margin-bottom: 20px !important;
  }
  #company .catch .author::before {
    margin: 15px auto;
  }
  #company .spirits {
    padding: 1px 0 0;
    margin: 25px 0 0;
  }
  #company .description {
    width: 100%;
    padding: 0 5%;
    margin: 20px auto 0;
    box-sizing: border-box;
  }
  #company .odd, #company .even {
    padding: 25px 0 30px;
  }
  #company .odd .lower-inner .column2 {
    display: flex;
    margin-bottom: 20px;
  }
  #company .odd .lower-inner .column2 > li {
    width: 100%;
  }
  #company .even .h3a::after {
    display: none;
  }
  #company .common {
    padding: 20px 0 30px;
  }
  #company .-message {
    min-height: auto;
  }
  #company .-message .photo, #company .-message .photo-sub, #company .-message .title {
    position: relative;
  }
  #company .-message .photo {
    left: 0;
    top: 0;
    margin-bottom: 1px;
  }
  #company .-message .photo img {
    width: 100%;
    height: auto;
  }
  #company .-message .photo-sub {
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
  }
  #company .-message .photo-sub li {
    width: calc((100% - 1px - 1px) / 3);
    margin-bottom: 0;
  }
  #company .-message .photo-sub img {
    width: 100%;
    height: auto;
  }
  #company .-message .title {
    left: 0;
    top: 0;
    text-align: center;
  }
  #company .-message .title h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    text-align: center !important;
  }
  #company .-message .title .author {
    font-size: 15px;
    font-weight: normal;
  }
  #company .-message .comment {
    z-index: -1;
    padding: 20px 20px 1px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  #company .-message .comment p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  /* -----------------------------------------------
  	/recruit/
  -------------------------------------------------- */
  #recruit .article {
    padding: 20px 0;
  }
  #recruit .intro {
    background: url(../recruit/images/bg_recruit_sp.png) no-repeat top center;
    background-size: contain;
    margin-top: 0;
  }
  #recruit .intro .recruit-logo {
    padding-top: 40px;
  }
  #recruit .intro .recruit-logo img {
    width: 130px;
  }
  #recruit .intro .catch-copy {
    margin: -50px auto 0;
    font-size: 30px;
  }
  #recruit .intro .catch-copy img {
    margin: 10px 0;
    width: 20px;
    height: auto;
  }
  #recruit .intro .text {
    margin-top: -90px;
  }
  #recruit .intro .text p {
    margin-bottom: 20px;
  }
  #recruit .intro .text p:last-child {
    margin-bottom: 0;
  }
  #recruit .intro .text::after {
    display: none;
  }
  #recruit .introduction {
    margin-bottom: 30px;
  }
  #recruit .introduction.-lower {
    margin-bottom: 30px;
  }
  #recruit .person-list li.slick-slide {
    margin: 0 5px;
  }
  #recruit .person-list li a dl dd.description {
    padding: 15px;
  }
  #recruit .person-list li a dl dd.description span.department {
    font-size: 10px;
    margin-right: 10px;
  }
  #recruit .person-list li a dl dd.description span.name-ja {
    font-size: 16px;
  }
  #recruit .person-list li a dl dd.description span.name-en {
    font-size: 10px;
  }
  #recruit .feature {
    width: 100%;
    padding: 30px 5% 1px;
    margin-bottom: 30px;
    box-sizing: border-box;
  }
  #recruit .feature .feature-list {
    display: block;
    width: 100%;
    margin: 0 auto 0;
  }
  #recruit .feature .feature-list li {
    width: 100%;
  }
  #recruit .feature .feature-list li dl dd {
    display: block;
  }
  #recruit .feature .feature-list li dl dd .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  #recruit .feature .feature-list li dl dd .title span {
    display: block;
  }
  #recruit .feature .feature-list li dl dd .title span.main {
    font-size: 21px;
    margin-bottom: 0;
  }
  #recruit .feature .feature-list li dl dd .read-more {
    margin: 0;
  }
  #recruit .feature .feature-list li dl dd .read-more a {
    text-align: center;
    margin: 0 auto;
  }
  #recruit .news {
    max-width: 100%;
  }
  #recruit .news .news-inner {
    align-items: flex-start;
    margin-bottom: 30px;
  }
  #recruit .news .news-inner .index {
    padding: 0 20px;
    margin: 0;
    box-sizing: border-box;
  }
  #recruit .news .news-inner .index .title {
    margin-bottom: 10px;
  }
  #recruit .news .news-inner .news-list {
    width: calc(100% - 74px);
  }
  #recruit .news .button-c {
    margin-bottom: 10px;
  }
  #recruit #graduates, #recruit #career {
    padding: 0 0 30px;
  }
  #recruit .person {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
  }
  #recruit .person .person-list {
    justify-content: space-between;
    margin: 15px 0 30px 0;
  }
  #recruit .person .person-list li {
    width: calc((100% - 15px) / 2);
    margin: 15px 0 0 0;
  }
  #recruit .person .person-list li a dl dd.description span.department {
    display: none;
  }
  #recruit .person .person-list li a dl dd.description span.name-ja {
    width: 100%;
    display: block;
    text-align: center;
  }
  #recruit .person .person-list li a dl dd.description span.name-en {
    display: none;
  }
  #recruit .person-title .person-cover {
    margin-top: 0;
  }
  #recruit .person-title .person-wrap {
    position: relative;
    width: 100%;
    background: #ecf1f6;
  }
  #recruit .person-title .person-detail {
    background-size: contain;
    width: 100%;
    height: auto;
    padding: 60px;
    box-sizing: border-box;
    position: relative;
    top: -50px;
    right: 0;
  }
  #recruit .person-title .person-detail .person-inner .catch {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
  }
  #recruit .person-title .person-detail .person-inner .message {
    justify-content: center;
    margin-bottom: 10px;
  }
  #recruit .person-title .person-detail .person-inner .message span.ja {
    font-size: 21px;
  }
  #recruit .person-title .person-detail .person-inner .message span.ja .sub {
    font-size: 12px;
    margin-top: -4px;
  }
  #recruit .person-title .person-detail .person-inner .message span.en {
    font-size: 21px;
    margin: 0 10px 0;
  }
  #recruit .person-title .person-detail .person-inner .detail-list li.department {
    font-size: 12px;
  }
  #recruit .person-title .person-detail .person-inner .detail-list li.name-ja {
    font-size: 21px;
    margin: 6px 0;
  }
  #recruit .person-title .person-detail .person-inner .detail-list li.name-en {
    font-size: 10px;
    margin-bottom: 6px;
  }
  #recruit .person-title .person-detail .person-inner .detail-list li.other {
    font-size: 10px;
  }
  #recruit .person-article {
    padding: 30px 5%;
    margin-top: -60px;
  }
  #recruit .person-article .person-article-inner {
    width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    background: #fff;
  }
  #recruit .person-article .person-article-inner .text {
    width: 100%;
    box-sizing: border-box;
    display: block;
    position: relative;
  }
  #recruit .person-article .person-article-inner .text .text-inner .title {
    font-size: 21px;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  #recruit .person-article .person-article-inner .photo {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 16px;
  }
  #recruit .person-article .person-article-inner.-first .text {
    top: 0;
    left: 0;
    height: auto;
    padding: 20px;
  }
  #recruit .person-article .person-article-inner.-first .photo {
    top: 19px;
    right: -19px;
  }
  #recruit .person-article .person-article-inner.-second .text {
    top: 0;
    right: 0;
    padding: 0 20px;
    height: auto;
  }
  #recruit .person-article .person-article-inner.-second .photo {
    top: 0;
    left: -19px;
  }
  #recruit .person-article .person-article-inner.-third .text {
    top: 0;
    left: 0;
    z-index: 1;
    height: auto;
    padding: 20px;
  }
  #recruit .person-article .person-article-inner.-third .photo {
    top: 19px;
    right: -19px;
  }
  #recruit .person-pager {
    margin-bottom: 30px;
  }
  /* -----------------------------------------------
  	/blog/
  -------------------------------------------------- */
  /* -----------------------------------------------
  	/contact/
  -------------------------------------------------- */
  #contact .contact-form {
    padding: 30px 0 10px;
  }
  /* -----------------------------------------------
  	/technology/
  -------------------------------------------------- */
  #technology .odd, #technology .even {
    padding: 0 0 30px;
  }
  #technology .odd .lead, #technology .even .lead {
    font-size: 16px;
    text-align: left;
  }
  #technology .odd .flow-list > li, #technology .even .flow-list > li {
    margin-top: -10px;
  }
  #technology .odd .flow-list > li .circle, #technology .even .flow-list > li .circle {
    width: 80px;
    height: 80px;
    margin-right: 16px;
  }
  #technology .odd .flow-list > li .concept, #technology .even .flow-list > li .concept {
    font-size: 14px;
    letter-spacing: 0;
  }
  #technology .even .table-d thead th {
    border: 1px solid #99bde7;
  }
  #technology .even .table-d th, #technology .even .table-d td {
    display: block;
    border-top: none;
  }
  #technology .even .table-d th {
    border-left: 1px solid #c3d8f1;
    border-right: 1px solid #c3d8f1;
  }
  #technology .h3c {
    margin: 0 0px 10px;
  }
  #technology .image-r {
    float: none;
    margin: 0 0 20px 0;
  }
  #technology .image-r img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  #technology .image-l {
    float: none;
    margin: 0 0 20px 0;
  }
  #technology .image-l img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  #technology .catch {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  #technology .technology-list {
    display: none;
  }
  #technology .technology-map {
    display: block;
    margin-bottom: 10px;
  }
  #technology .other {
    padding: 1px 0 30px;
  }
  #technology .other .other-product-list {
    margin-bottom: 20px;
  }
  #technology .details {
    padding: 0 0 25px;
    margin-top: 0;
  }
  #technology .details .photo {
    margin-bottom: 20px;
  }
  #technology .details .lead {
    font-size: 16px;
    text-align: left;
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
  }
  #technology .nav-technology {
    width: 90%;
    margin: 30px auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #technology .nav-technology > li {
    width: calc((100% - 1px) / 2);
    margin: 0 0 1px;
  }
  #technology .nav-technology > li a {
    font-size: 15px;
    padding: 0.6em 0;
  }
  #technology .lower-inner {
    padding-top: 20px;
  }
  #technology .lower-inner .column2._zero {
    display: block;
  }
  #technology .lower-inner .column2._zero > li {
    width: 100%;
  }
  .catalogdl-unit p {
    text-align: left;
  }
  .catalogdl-unit li {
    width: 100%;
    margin: 10px 0 0;
    display: block;
  }
  .catalog-list {
    width: 100%;
    justify-content: space-around;
  }
  .catalog-list li {
    width: 40%;
  }
  p.text {
    margin-top: 30px;
  }
  /* -----------------------------------------------
    /sdgs/
  -------------------------------------------------- */
  #sdgs .box {
    display: block;
  }
  #sdgs .img {
    width: 100%;
  }
  #sdgs .img::after {
    display: block;
    width: 24%;
    content: "";
  }
  #sdgs .img::before {
    display: block;
    width: 24%;
    content: "";
    order: 1;
  }
  #sdgs .img div {
    width: 24%;
    height: auto;
  }
  #sdgs .txt {
    width: 100%;
  }
}/*# sourceMappingURL=palgiken.css.map */