@charset "UTF-8";

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/Noto_Sans_JP/NotoSansJP-Regular.ttf') format('truetype');  
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: medium;
  font-weight: 500;
  src: url('../../fonts/Noto_Sans_JP/NotoSansJP-Medium.ttf') format('truetype');  
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: bold;
  font-weight: 700;
  src: url('../../fonts/Noto_Sans_JP/NotoSansJP-Bold.ttf') format('truetype');  
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/Oswald/Oswald-Regular.ttf') format('truetype');  
}
@font-face {
  font-family: 'Oswald';
  font-style: medium;
  font-weight: 500;
  src: url('../../fonts/Oswald/Oswald-Medium.ttf') format('truetype');  
}
@font-face {
  font-family: 'Oswald';
  font-style: bold;
  font-weight: 700;
  src: url('../../fonts/Oswald/Oswald-Bold.ttf') format('truetype');  
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}
iframe {
  max-width: 100%;
}


/*-------------------------------------------
Header
-------------------------------------------*/
#header {
  width: 100%;
  height: 100px;
  background-color: #fff;
  border-bottom: solid 1px #ccc;
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
}
#header .logo {
  width: 100%;
  width: clamp(300px, 34vw, 400px);
}
#header .logo a {
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 1px;
}
#header .menu-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header .menu-top .langage {
  display: flex;
  align-items: center;
  margin: 5px 10px 0 0;
}
#header .menu-top .langage li {
  font-size: 15px;
  font-weight: 500;
  padding-right: 12px;
  position: relative;
}
#header .menu-top .langage li:first-child::after {
  content: "/";
  position: absolute;
  top: 0;
  right: 3px;
}
#header .menu-top .search-area {
  margin: 5px 25px 0 0;
  position: relative;
}
#header .menu-top .search-area-box {
  max-width: 200px;
}
#header .menu-top .search-area-box form.gsc-search-box {
  margin: 0;
}
#header .menu-top .search-area-box form.gsc-search-box .gsib_a {
  padding: 4px 5px 4px 50px;
}
#header .menu-top .search-area-box form.gsc-search-box .gsib_b {
  width: 25px;
  height: 25px;
}
#header .menu-top .search-area input {
  max-width: 200px;
  border-bottom: solid 1px #000;
}
#header .menu-top .search-area button {
  width: 22px;
  position: absolute;
  top: -5px;
  right: 0;
}
#header .menu-top .btn-area {
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
}
#header .menu-top .btn-area .btn {
  width: 50%;
  height: 40px;
  color: #fff;
  display: block;
  text-align: center;
}
#header .menu-top .btn-area .btn-contact {
  background-color: #005BAB;
  font-size: 15px;
  font-weight: bold;
  padding: 9px 0;
}
#header .menu-top .btn-area .btn-members {
  background-color: #87CF0E;
  padding: 2px 0;
  line-height: 1;
}
#header .menu-top .btn-area .btn-members .jp {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}
#header .menu-top .btn-area .btn-members .en {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}
#header .navi {
  height: 60px;
}
#header .menu {
  display: flex;
  height: 100%;
}
#header .menu > li {
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
}
#header .menu > li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}
#header .menu .single > a {
  cursor: pointer;
  position: relative;
}
#header .menu .single .menu-second {
  width: 200px;
  background-color: #fff;
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  padding: 15px 10px;
  position: absolute;
  top: 58px;
  left: calc(50% - 100px);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(-10px);
}
#header .menu .single.menu-company .menu-second {
  left: auto;
  right: 0;
}
#header .menu .single .menu-second li {
  font-size: 14px;
  text-align: left;
}
#header .menu .single .menu-second li a {
  display: block;
  padding: 10px;
}
#header .menu .single:hover .menu-second {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#header .hamburger {
  display: none;
}

/* 英語 */
.en #header .menu-top .btn-area {
  max-width: 160px;
}
.en #header .menu-top .btn-area .btn {
  width: 100%;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
#footer {
  background-color: #f5f5f5;
  padding-top: 70px;
}
#footer .footer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #ccc;
  padding-bottom: 60px;
}
#footer .footer-head .logo {
  width: 33%;
  max-width: 384px;
  margin-right: 5%;
}
#footer .footer-head .logo img {
  width: 100%;
}
#footer .footer-head .info {
  width: 62%;
}
#footer .footer-head .info p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
}
#footer .footer-menu {
  display: flex;
  padding: 60px 0 10px;
}
#footer .footer-menu .menu-group {
  width: 25%;
  padding-right: 1%;
}
#footer .footer-menu .menu-group .menu-title {
  font-weight: 500;
  margin-bottom: 15px;
}
#footer .footer-menu .menu-group .menu {
  margin-bottom: 50px;
}
#footer .footer-menu .menu-group .menu li {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}
#footer .footer-menu .menu-group .menu li::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0
}
#footer .footer-bottom {
  background-color: #042F6F;
  padding: 40px 0;
}
#footer .footer-bottom .inner {
  display: flex;
  align-items: center;
}
#footer .footer-bottom .menu {
  width: 62%;
  display: flex;
  align-items: center;
  margin-right: 3%;
}
#footer .footer-bottom .menu li {
  color: #fff;
  font-size: 14px;
  margin-right: 5.5%;
}
#footer .footer-bottom .menu li a {
  color: #fff;
}
#footer .footer-bottom .copyright {
  width: 35%;
  color: #fff;
  font-size: 12px;
  text-align: right;
}

/*-------------------------------------------
共通
-------------------------------------------*/
.wrapper {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}
.wrapper-s {
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto;
}
.btn-navy a,
.btn-navy input {
  background-color: #005BAB;
  border-radius: 3px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 65px 14px 35px;
  display: inline-block;
  position: relative;
}
.btn-navy input {
  padding: 14px 65px;
  transition: all 0.3s ease;
}
.btn-navy input:hover {
  opacity: 0.7;
}
.btn-navy a::after {
  content: "";
  background-image: url(../../img/common/icon-arrow-r.svg);
  background-size: contain;
  width: 20px;
  height: 13px;
  position: absolute;
  top: 20px;
  right: 15px;
}
.btn-orange a {
  background-color: #f29400;
  border-radius: 3px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 65px 14px 35px;
  display: inline-block;
  position: relative;
}
.btn-orange a::after {
  content: "";
  background-image: url(../../img/common/icon-pdf.gif);
  background-size: contain;
  width: 30px;
  height: 18px;
  position: absolute;
  top: 18px;
  right: 8px;
}
.btn-green a {
  background-color: #87CF0E;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 30px 14px;
  display: inline-block;
  text-align: center;
}
.btn-green a .jp {
  display: block;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
}
.btn-green a .en {
  display: block;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
}
.mt-10 {
  margin-top: -10px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-new {
  color: #f00;
  font-size: 20px;
  margin-left: 40px;
}

#article .page-header {
  width: 100%;
  background-color: #f5f5f5;
  padding: 50px 0 20px;
}
#article .page-header .page-title .ja {
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
  position: relative;
}
#article .page-header .page-title .en {
  display: block;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4;
}
#article .page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 20px;
}
#article .page-header .breadcrumb li {
  font-size: 14px;
  line-height: 1.6;
  margin-right: 25px;
  position: relative;
}
#article .page-header .breadcrumb li::after {
  content: "／";
  color: #7e8a93;
  font-size: 11px;
  position: absolute;
  top: 2px;
  right: -17px;
}
#article .page-header .breadcrumb li:last-child {
  margin-right: 0;
}
#article .page-header .breadcrumb li:last-child::after {
  content: "";
}
#article .page-content {
  width: 100%;
}
#article .page-content img.img-iso {
  max-width: 300px;
}
#article .page-content pre {
  line-height: 1.8;
  margin-bottom: 30px;
  overflow-x: auto;
}
#article .page-content p.text {
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}
.en #article .page-content p.text {
  text-align: left;
}
#article .page-content a.link {
  color: #005BAB;
}
#article .page-content a.link-arrow {
  color: #005BAB;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}
#article .page-content a.link-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid #005BAB;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  position: absolute;
  top: 5px;
  left: 4px;
}
#article .page-content a.link-arrow.internal-link::before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #005BAB;
  border-bottom: none;
  top: 8px;
  left: 2px;
}
#article .page-content p.text a.link-arrow {
  line-height: 2;
}
#article .page-content .section-title {
  font-size: 30px;
  font-weight: bold;
  margin: 70px 0 30px;
  position: relative;
}
#article .page-content .section-title::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: -10px;
  left: 0;
}
#article .page-content .section-title .text-new {
  position: relative;
}

#article .page-content .content-title,
#article .page-content .content-title-bk {
  border-left: solid 5px #005BAB;
  font-size: 20px;
  font-weight: 500;
  padding-left: 20px;
  line-height: 1.6;
  margin: 40px 0 30px;
}
#article .page-content .content-title {
  color: #005BAB;
}
#article .page-content .content-title-orange {
  color: #f29400;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin: 40px 0 20px;
}
#article .page-content .content-title-orange.border-left {
  border-left: solid 5px #f29400;
  padding-left: 20px;
}
#article .page-content dl,
#article .page-content ul,
#article .page-content ol {
  margin-bottom: 30px;
}
#article .page-content li {
  margin-bottom: 5px;
}
#article .page-content dl.list dt,
#article .page-content dl.list dd,
#article .page-content ul.list li,
#article .page-content ol.list li {
  line-height: 1.8;
}
#article .page-content ul.list-disc {
  margin-left: 20px;
}
#article .page-content ul.list-disc li {
  line-height: 1.8;
  list-style-type: disc;
}
#article .page-content ol.list-decimal {
  margin-left: 20px;
}
#article .page-content ol.list-decimal li {
  line-height: 1.8;
  list-style-type: decimal;
}
#article .page-content ul.list-mb li,
#article .page-content ol.list-mb li {
  line-height: 1.8;
  margin-bottom: 20px;
}
#article .page-content dl.list dt {
  font-weight: bold;
}
#article .page-content dl.list dd {
  margin-bottom: 20px;
}
#article .page-content dl.list dd:last-child {
  margin-bottom: 0;
}
#article .page-content .scroll-table {
  overflow-x: auto;
  margin-bottom: 30px;
}
#article .page-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
#article .page-content table caption {
  margin-bottom: 10px;
}
#article .page-content .scroll-table > table {
  width: 1000px;
  margin-bottom: 0;
}
/* #article .page-content table.table-fixed {
  margin: 0 auto;
  table-layout: fixed;
} */
#article .page-content table th,
#article .page-content table td {
  border: solid 1px #707070;
  font-size: 15px;
  line-height: 1.6;
  padding: 15px;
  word-break: break-all;
}
#article .page-content table th.name {
  width: 30%;
}
#article .page-content table .w7p {
  width: 7% !important;
}
#article .page-content table .w10p {
  width: 10% !important;
}
#article .page-content table .w20p {
  width: 20% !important;
}
#article .page-content table .w25p {
  width: 25% !important;
}
#article .page-content table .w30p {
  width: 30% !important;
}
#article .page-content table .w40p {
  width: 40% !important;
}
#article .page-content table .w70p {
  width: 70% !important;
}
#article .page-content table th {
  background-color: #f5f5f5;
  font-weight: 500;
  text-align: left;
}
#article .page-content table a {
  color: #005BAB;
}
#article .page-content table.library-table dl {
  margin-bottom: 0;
}
#article .page-content table.library-table dt {
  color: #690;
  font-weight: bold;
}
#article .page-content .img-left {
  margin-bottom: 30px;
  text-align: left;
}
#article .page-content .img-left-80p {
  width: 80%;
  margin-bottom: 30px;
  text-align: left;
}
#article .page-content .img-center {
  margin-bottom: 30px;
  text-align: center;
}
#article .page-content .img-center-80p {
  width: 80%;
  margin: 0 auto 30px;
  text-align: center;
}
#article .page-content .red {
  color: #990000;
}
#article .page-content p.align-center {
  text-align: center;
}
#article .page-content .video-area {
  max-width: 800px;
  margin-bottom: 30px;
}
#article .page-content .video-area iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}
#article .page-content .form-area {
  margin-bottom: 40px;
}
#article .page-content .form-area .group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#article .page-content .form-area .group span.title {
  width: 200px;
}
#article .page-content .form-area input[type="text"],
#article .page-content .form-area input[type="email"],
#article .page-content .form-area select {
  width: calc(100% - 200px);
  background-color: #fff;
  border: solid 1px #ccc;
  padding: 10px;
}
#article .page-content .form-area textarea {
  width: 100%;
  background-color: #fff;
  border: solid 1px #ccc;
  padding: 10px;
}
#article .page-content .form-area .textarea-row textarea {
  width: calc(100% - 200px);
}
#article .page-content .form-area hr {
  border: solid 1px #ddd;
  margin: 40px 0;
}
#article .page-content .form-area .form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
#article .page-content .modal_mail_submit {
  display: none;
}
#article .page-content .modal_mail_submit .modalBody {
  padding: 20px;
  position: fixed;
  z-index: 1000;
  background: #fff;
  border: solid 2px #0056A2;
  width: 300px;
  left: 50%;
  top: 50%;
}
#article .page-content .modal_mail_submit .modalBody p {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
#article .page-content .modal_mail_submit .modalBody .modal_submit_button {
  display: none;
  padding-top: 10px;
  text-align: center;
}
#article .page-content .modal_mail_submit .modalBody .modal_close_button {
  padding-top: 10px;
  text-align: center;
}
#article .page-content .modal_mail_submit .modalBody input.bt {
  width: 130px;
  cursor: pointer;
  margin: 15px 20px 5px 10px;
  border-radius: 3px;
  padding: 8px;
  background: #0068c6;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
#article .page-content .modal_mail_submit .modalBK {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100%;
  width: 100%;
}
#article .page-content hr.line {
  border: solid 1px #ddd;
  margin: 40px 0;
}
#article .page-content .box-gray {
  background-color: #f5f5f5;
  padding: 40px;
}
#article .page-content .box-gray p.text:last-child {
  margin-bottom: 0;
}
#article .page-content .accordion-container .accordion-header {
  background-color: #f5f5f5;
  border-radius: 4px;
  cursor: pointer;
  padding: 20px;
  margin-top: 20px;
  position: relative;
}
#article .page-content .accordion-container .accordion-header::before {
  content: "＋";
  position: absolute;
  top: 22px;
  right: 20px;
}
#article .page-content .accordion-container .accordion-header.active::before {
  content: "－";
  position: absolute;
  top: 22px;
  right: 20px;
}
#article .page-content .accordion-container .accordion-header .text {
  margin-bottom: 0;
}
#article .page-content .accordion-container .accordion-content {
  display: none;
  padding-top: 10px;
}

#article .sec-content {
  margin-bottom: 80px;
}

/* 製品紹介 */
#article.product .products .products-list {
  background-color: #f5f5f5;
  padding: 6% 5%;
}
#article.product .products .products-list li .logo {
  width: 43%;
  max-width: 462px;
}
#article.product .products .products-list li .detail {
  width: 52%;
}
#article .navi-menu-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 80px 0;
}
#article .navi-menu-list li {
  width: calc((100% - 45px) / 4);
  height: 60px;
}
#article .navi-menu-list li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #e5ecf4;
  font-size: 14px;
  padding: 0 30px 0 15px;
  position: relative;
}
#article .navi-menu-list li.active a {
  background-color: #005BAB;
  color: #fff;
}
#article .navi-menu-list li a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid #005BAB;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  top: 25px;
  right: 15px;
}
#article .navi-menu-list li.active a::after {
  border-left: 6px solid #fff;
}
#article.product.trial .form-area textarea {
  font-family: monospace, sans-serif;
  line-height: 1.2;
}

/* 会社概要 */
#article.company .page-content .location-content {
  display: flex;
}
#article.company .page-content .location-content .text-area {
  width: 40%;
  margin-right: 5%;
}
#article.company .page-content .location-content .img-area {
  width: 55%;
}
#article.company .page-content dl.list-company .group {
  display: flex;
  border-bottom: solid 1px #ddd;
  padding: 30px 0;
  line-height: 1.8;
}
#article.company .page-content dl.list-company .group dt {
  width: 200px;
  font-weight: 500;
}
#article.company .page-content dl.list-company .group dd {
  width: calc(100% - 200px);
}
#article.company .page-content .map iframe {
  width: 100%;
  height: 400px;
  aspect-ratio: 16 / 9;
}

/* 決算公告 */
#article.company .page-content .bs-header p {
  line-height: 1.8;
}
#article.company .page-content .bs-header {
  margin-bottom: 10px;
}
#article.company .page-content .bs-header .bs-date {
  margin-bottom: 10px;
}
#article.company .page-content .bs-header .bs-info {
  display: table;
  margin-left: auto;
  margin-bottom: 10px;
}
#article.company .page-content .bs-header .bs-title {
  text-align: center;
  margin-bottom: 10px;
}
#article.company .page-content .bs-header .bs-unit {
  text-align: right;
}
#article.company .page-content .list-archive li {
  margin-bottom: 20px;
}

/* サイトマップ */
#article.sitemap .page-content .flex-item {
  display: flex;
  gap: 3.5%;
}
#article.sitemap .page-content .flex-item > li {
  width: 31%;
}
#article.sitemap .page-content .flex-item .snd {
  margin-left: 20px;
}
#article.sitemap .page-content .flex-item .snd > li > a {
  display: inline-block;
  margin-bottom: 10px;
}
#article.sitemap .page-content .flex-item .third {
  margin-left: 20px;
}

/* カタログ */
#article.library_e .page-content .flex-item {
  display: flex;
  gap: 20px 8%;
}
#article.library_e .page-content .flex-item .text-area {
  width: 46%;
  padding-top: 40px;
}
#article.library_e .page-content .flex-item .img-area {
  width: 46%;
}


/* お知らせ */
#article.information .page-content .navi-menu-list li {
  width: calc((100% - 60px) / 5);
}
#article.information .page-content .info-list {
  padding: 30px 0;
}
#article.information .page-content .info-list .item {
  border-bottom: solid 1px #ddd;
  display: none;
  padding: 30px 20px 30px 5%;
  margin-bottom: 0;
}
#article.information .page-content .info-list .item.active {
  display: flex;
}


/* 製品一覧 */
.products {
  margin-bottom: 100px;
}
.products .products-list {
  margin-top: 80px;
}
.products .products-list li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px !important;
}
.products .products-list li .logo {
  width: 47%;
  max-width: 562px;
  border: solid 1px #eee;
  margin-right: 5%;
}
.products .products-list li .logo img {
  width: 100%;
}
.products .products-list li .detail {
  width: 48%;
}
.products .products-list li .detail p.title-en {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.products .products-list li .detail p.title-ja {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
.products .products-list li .detail .text {
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}
.en .products .products-list li .detail .text {
  text-align: left;
}

/* お知らせ一覧 */
.information .info-list {
  margin-bottom: 40px;
}
.information .info-list .item {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  padding: 25px 20px 25px 5%;
  margin-bottom: 10px;
}
.information .info-list .item dt {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  margin-right: 6%;
}
.information .info-list .item dt .category {
  border: solid 1px #707070;
  color: #555;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 4px 6px;
}
.information .info-list .item dt .info-date {
  font-size: 14px;
  margin-left: 5px;
}
.information .info-list .item dd {
  width: calc(97% - 140px);
  line-height: 1.8;
}
.information .info-list .item dd p + p {
  margin-top: 20px;
}
.information .info-list .item dd a {
  color: #005BAC;
}
.information .info-list .item dd .info-title {
  color: #f29400;
  font-weight: 500;
}

/*-------------------------------------------
Member Support
-------------------------------------------*/
/* ヘッダー */
#header-m {
  width: 100%;
  height: 100px;
  background-color: #fff;
  border-bottom: solid 1px #6600CC;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
#header-m .logo-area {
  display: flex;
  align-items: center;
}
#header-m .logo-area .logo {
  margin-right: 20px;
}
#header-m .logo-area .logo a {
  display: block;
  line-height: 1px;
}
#header-m .logo-area .logo a img {
  width: auto;
  height: 100px;
}
#header-m .logo-area .page-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
#header-m .menu-area {
  margin-left: auto;
}
#header-m .menu-area .navi .menu {
  display: flex;
  align-items: center;
}
#header-m .menu-area .navi .menu li {
  font-size: 15px;
  font-weight: 500;
  margin: 0 15px;
}

/* フッター */
#footer-m {
  background-color: #000;
  padding: 20px 0;
}
#footer-m .copyright {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/* コンテンツ */
.member-support #article .page-content p.update-date {
  margin-top: 40px;
  text-align: right;
}
.member-support #article .page-content a.link {
  color: #6600CC;
}
.member-support #article .page-content a.link-arrow {
  color: #6600CC;
}
.member-support #article .page-content a.link-arrow::before {
  border-left: 7px solid #6600CC;
}
.member-support #article .page-content .section-title::before {
  height: 2px;
  background-color: #6600CC;
}
.member-support #article .page-content .content-title {
  border-left: solid 5px #6600CC;
  color: #6600CC;
}


/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 980px) {
  html {
    scroll-padding-top: 60px;
  }
  main {
    padding-top: 60px;
  }

  .pc-r {
    display: none;
  }

  #header {
    height: 60px;
    padding-left: 10px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #header .logo {
    max-width: 240px;
  }
  #header .menu-top {
    display: none;
  }
  #header .menu {
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }
  #header .menu .single {
    border-bottom: solid 1px #ccc;
  }
  #header .menu .single .menu-second {
    width: 100%;
    border: none;
    padding: 0;
    position: static;
    transition: none;
    transform: none;
  }
  #header .menu .single .menu-second li {
    border-top: solid 1px #eee;
    font-size: 14px;
    font-weight: normal;
    padding-left: 20px;
  }
  #header .menu .single.menu-company .menu-second {
    width: 100%;
  }

  #header .hamburger {
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 20;
  }
  #header .hamburger span {
    width: 30px;
    height: 2px;
    background-color: #333;
    display: block;
    position: absolute;
    transition: 0.3s ease-in-out;
  }
  #header .hamburger span:nth-child(1) {
    top: 7px;
  }
  #header .hamburger span:nth-child(2) {
    top: 15px;
  }
  #header .hamburger span:nth-child(3) {
    top: 23px;
  }
  #header .navi {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #header .navi .menu {
    width: 100%;
    height: 100vh;
    padding: 60px 0 150px;
    overflow: auto;
  }
  #header .navi .menu > li {
    width: 100%;
    text-align: left;
  }
  #header .navi .menu li a {
    width: 100%;
    height: auto;
    display: block;
    padding: 10px;
  }
  #header .navi .menu li a.disable {
    pointer-events: none;
  }
  #header .navi .menu li.sp-lang {
    display: flex;
    align-items: center;
  }
  #header .navi .menu li.sp-lang a {
    width: auto;
  }
  #header .navi .menu li .btn {
    width: 100%;
    max-width: 320px;
    height: 60px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0;
    text-align: center;
  }
  #header .navi .menu li .btn-contact {
    background-color: #005BAB;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
  }
  #header .navi .menu li .btn-members {
    background-color: #87CF0E;
    line-height: 1;
  }
  #header .navi .menu li .btn-members .jp {
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
  }
  #header .navi .menu li .btn-members .en {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
  }

  #header.open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  #header.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #header.open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  #header.open .navi {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  #header.open .menu .single .menu-second {
    opacity: 1;
    visibility: visible;
  }

  /*-------------------------------------------
  Footer
  -------------------------------------------*/
  #footer .footer-menu {
    flex-wrap: wrap;
  }
  #footer .footer-menu .menu-group {
    width: 50%;
  }


  /*-------------------------------------------
  Member Support
  -------------------------------------------*/
  /* ヘッダー */
  #header-m {
    height: 60px;
    padding-left: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #header-m .logo-area .logo {
    margin-right: 10px;
  }
  #header-m .logo-area .logo a img {
    height: 60px;
  }
  #header-m .logo-area .page-text {
    font-size: 14px;
  }
  #header-m .menu {
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }
  #header-m .hamburger {
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 20;
  }
  #header-m .hamburger span {
    width: 30px;
    height: 2px;
    background-color: #333;
    display: block;
    position: absolute;
    transition: 0.3s ease-in-out;
  }
  #header-m .hamburger span:nth-child(1) {
    top: 7px;
  }
  #header-m .hamburger span:nth-child(2) {
    top: 15px;
  }
  #header-m .hamburger span:nth-child(3) {
    top: 23px;
  }
  #header-m .menu-area .navi {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #header-m .menu-area .navi .menu {
    width: 100%;
    height: 100vh;
    padding: 60px 0 150px;
    overflow: auto;
  }
  #header-m .menu-area .navi .menu li {
    width: 100%;
    border-bottom: solid 1px #ccc;
    margin: 0;
    text-align: left;
  }
  #header-m .menu-area .navi .menu li a {
    width: 100%;
    height: auto;
    display: block;
    padding: 15px 10px;
  }
  #header-m.open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  #header-m.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #header-m.open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  #header-m.open .navi {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  /* フッター */
  #footer-m .copyright {
    font-size: 10px;
  }
}
@media screen and (min-width: 981px) {
  .sp-r {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .btn-navy a,
  .btn-orange a {
    font-size: 14px;
    padding: 12px 50px 12px 20px;
  }
  .btn-navy a::after {
    top: 17px;
    right: 16px;
  }
  .btn-orange a::after {
    width: 28px;
    height: 16px;
    top: 16px;
    right: 4px;
  }
  .text-new {
    font-size: 16px;
    margin-left: 20px;
  }

  /*-------------------------------------------
  Footer
  -------------------------------------------*/
  #footer {
    padding-top: 40px;
  }
  #footer .footer-head {
    flex-direction: column;
    padding-bottom: 40px;
  }
  #footer .footer-head .logo {
    width: 100%;
    margin: 0 auto 20px;
  }
  #footer .footer-head .info {
    width: 100%;
  }
  #footer .footer-menu {
    padding: 40px 0 20px;
  }
  #footer .footer-menu .menu-group:last-child {
    width: 100%;
  }
  #footer .footer-menu .menu-group .menu-title {
    font-size: 15px;
  }
  #footer .footer-menu .menu-group .menu li {
    font-size: 12px;
  }
  #footer .footer-bottom {
    padding: 30px 0;
  }
  #footer .footer-bottom .inner {
    flex-direction: column;
  }
  #footer .footer-bottom .menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 20px;
  }
  #footer .footer-bottom .menu li {
    line-height: 1.8;
  }
  #footer .footer-bottom .copyright {
    width: 100%;
    font-size: 10px;
    text-align: center;
  }

  #article .page-header {
    padding: 20px 0 10px;
  }
  #article .page-header .page-title {
    margin-bottom: 20px;
  }
  #article .page-header .page-title .ja {
    font-size: 28px;
  }
  #article .page-header .page-title .en {
    font-size: 12px;
  }
  #article .page-header .breadcrumb li {
    font-size: 12px;
    margin-right: 15px;
  }
  #article .page-header .breadcrumb li::after {
    font-size: 10px;
    right: -13px;
  }
  #article .page-content .section-title {
    font-size: 22px;
    margin: 50px 0 20px;
  }
  #article .page-content .section-title::before {
    width: 20px;
  }
  #article .page-content .content-title,
  #article .page-content .content-title-bk {
    font-size: 18px;
    margin: 30px 0 20px;
  }
  #article .page-content .content-title-orange {
    font-size: 18px;
    margin: 30px 0 10px;
  }
  #article .page-content p.text {
    font-size: 15px;
  }
  #article .page-content a.link {
    font-size: 15px;
  }
  #article .page-content a.link-arrow {
    font-size: 15px;
  }
  #article .page-content dl.list dt,
  #article .page-content dl.list dd,
  #article .page-content ul.list li,
  #article .page-content ol.list li {
    font-size: 15px;
  }
  #article .page-content table th,
  #article .page-content table td {
    font-size: 14px;
    padding: 10px;
  }
  #article .page-content .img-left-80p {
    width: 100%;
  }
  #article .page-content .img-center-80p {
    width: 100%;
  }
  #article .page-content .form-area .group {
    flex-direction: column;
    align-items: flex-start;
  }
  #article .page-content .form-area .group span.title {
    width: 100%;
    margin: 0 0 10px;
  }
  #article .page-content .form-area .group input[type="text"],
  #article .page-content .form-area .group input[type="email"],
  #article .page-content .form-area .group select,
  #article .page-content .form-area .group textarea {
    width: 100%;
    padding: 5px;
  }
  #article .page-content .form-area .textarea-row textarea {
    width: 100%;
  }
  #article .page-content .form-area .form-btn .btn-navy {
    width: calc(50% - 5px);
  }
  #article .page-content .form-area .form-btn .btn-navy input {
    width: 100%;
    padding: 14px;
  }

  #article .page-content .box-gray {
    padding: 20px;
  }

  #article .sec-content {
    margin-bottom: 70px;
  }

  /* 製品紹介 */
  #article.product .products .products-list {
    padding: 40px 15px;
    margin-top: 30px;
  }
  #article.product .products .products-list li .logo {
    width: 100%;
  }
  #article.product .products .products-list li .detail {
    width: 100%;
  }

  #article .navi-menu-list {
    gap: 5px;
    margin: 60px 0;
  }
  #article .navi-menu-list li {
    width: calc((100% - 10px) / 3);
    height: 50px;
  }
  #article .navi-menu-list li a {
    font-size: 11px;
    padding: 0 20px 0 8px;
  }
  #article .navi-menu-list li a::after {
    border-left: 4px solid #005BAB;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    top: 19px;
    right: 8px;
  }
  #article .navi-menu-list li.active a::after {
    border-left: 4px solid #fff;
  }

  /* 会社概要 */
  #article.company .page-content .location-content {
    flex-direction: column;
  }
  #article.company .page-content .location-content .text-area {
    width: 100%;
    margin-right: 0;
  }
  #article.company .page-content .location-content .img-area {
    width: 100%;
  }
  #article.company .page-content dl.list-company .group {
    flex-direction: column;
    font-size: 15px;
    padding: 20px 0;
    line-height: 1.6;
  }
  #article.company .page-content dl.list-company .group dt {
    width: 100%;
    margin-bottom: 5px;
  }
  #article.company .page-content dl.list-company .group dd {
    width: 100%;
  }
  #article.company .page-content .map iframe {
    height: 300px;
  }

  /* 決算公告 */
  #article.company .page-content .bs-header p {
    font-size: 15px;
    line-height: 1.6;
  }
  #article.company .page-content .bs-header .bs-date {
    margin-bottom: 15px;
  }
  #article.company .page-content .bs-header .bs-info {
    margin-left: 0;
    margin-bottom: 20px;
  }
  #article.company .page-content .bs-header .bs-title {
    text-align: center;
    margin-bottom: 10px;
  }
  #article.company .page-content .bs-header .bs-unit {
    text-align: right;
  }
  #article.company .page-content .list-bs li {
    margin-bottom: 10px;
  }

  /* サイトマップ */
  #article.sitemap .page-content .flex-item {
    flex-direction: column;
  }
  #article.sitemap .page-content .flex-item > li {
    width: 100%;
  }

  /* カタログ */
  #article.library_e .page-content .flex-item {
    flex-direction: column-reverse;
  }
  #article.library_e .page-content .flex-item .text-area {
    width: 100%;
    padding-top: 0;
  }
  #article.library_e .page-content .flex-item .img-area {
    width: 100%;
    text-align: center;
  }

  /* お知らせ */
  #article.information .page-content .navi-menu-list li {
    width: calc((100% - 10px) / 3);
  }
  #article.information .page-content .info-list .item {
    padding: 30px 0;
  }

  /* 製品一覧 */
  .products {
    margin-bottom: 60px;
  }
  .products .products-list {
    margin-top: 50px;
  }
  .products .products-list li {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .products .products-list li:last-child {
    margin-bottom: 0;
  }
  .products .products-list li .logo {
    width: 100%;
    max-width: 562px;
    margin: 0 auto 20px;
  }
  .products .products-list li .detail {
    width: 100%;
  }
  .products .products-list li .detail p.title-en {
    font-size: 15px;
  }
  .products .products-list li .detail p.title-ja {
    font-size: 21px;
  }
  .products .products-list li .detail .text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  /* お知らせ一覧 */
  .information .info-list {
    margin-bottom: 30px;
  }
  .information .info-list .item {
    flex-direction: column;
    padding: 15px;
  }
  .information .info-list .item dt {
    width: 100%;
    margin: 0 0 10px;
  }
  .information .info-list .item dd {
    width: 100%;
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}