@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ W3", "メイリオ", Meiryo, sans-serif;
  font-feature-settings: "normal";
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

body {
  position: relative;
  width: 100%;
  background: #fff;
  color: #383838;
  font-size: 18px;
  text-align: left;
  line-height: 1.6;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.is-modal {
  overflow: hidden;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
}

.container {
  padding-bottom: 80px;
}
.container--product {
  background-color: #f3f6f6;
}

/* top */
.global-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  background-color: #fff;
  box-shadow: 0 3px 4px rgba(48, 51, 51, 0.1);
  z-index: 1000;
}

.global-header__left {
  display: flex;
  align-items: center;
  margin: 0 12px 0 36px;
  flex: none;
}
.global-header__left .left-logo {
  height: 44px;
  margin-right: 8px;
}
.global-header__left .left-logo:hover {
  opacity: 0.7;
}
.global-header__left .left-logo img {
  width: 163px;
  height: 44px;
}
.global-header__right .right-list {
  display: flex;
  align-items: center;
}
.global-header__right .right-list .right-item:not(:last-of-type) {
  margin-right: 32px;
}
.global-header__right .right-list .right-item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.global-header__right .right-list .right-item--corporate-site {
  flex: none;
}
.global-header__right .right-list .right-item--corporate-site:hover {
  opacity: 0.7;
}
.global-header__right .right-list .right-item--corporate-site a {
  color: #000;
}
.global-header__right .right-list .right-item--corporate-site a::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: url(/img/icon_link_black.svg) no-repeat;
}
.global-header__right .right-list .right-item--traffic-access {
  width: 210px;
  height: 90px;
  background: #3facbc;
}
.global-header__right .right-list .right-item--traffic-access a {
  display: flex;
  align-items: center;
  color: #fff;
}
.global-header__right .right-list .right-item--traffic-access a::before {
  content: "";
  width: 23px;
  height: 20px;
  margin: 3px 8px 0 0;
  background: url(/img/icon_mail.svg) no-repeat;
}
.global-header__right .right-list .right-item--traffic-access:hover {
  background: #59c9d9;
}

.global-header__right .form-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
  color: #2c2d2d;
}

/* フォーム */
.form {
  display: flex;
  justify-content: center;
  height: 50px;
}

.search-box {
  width: 220px;
  padding: 0 16px 0 28px;
  border-radius: 8px 0 0 8px;
  background: #eee;
  border: none;
  outline: 0;
}
.search-box::-moz-placeholder {
  color: #9fa9aa;
}
.search-box::placeholder {
  color: #9fa9aa;
}

/*検索ボタン*/
.search-button {
  width: 50px;
  border-radius: 0 8px 8px 0;
  border: none;
  font-size: 18px;
  background: #eee url(/img/icon_akar_search.svg) no-repeat center;
  transition: 0.3s;
  cursor: pointer;
}
.search-button:hover {
  background: #eee url(/img/icon_akar_search_hover.svg) no-repeat center;
  color: #fff;
}

/* パンくず */
.breadcrumb {
  width: 100%;
  min-height: 38px;
  padding: 8px 36px;
  border-top: 1px solid #ededf2;
}
.breadcrumb .list {
  display: flex;
  max-width: 1078px;
  margin: auto;
  font-size: 14px;
  line-height: 1.5;
}
.breadcrumb .list .item {
  display: flex;
}
.breadcrumb .list .item a {
  font-size: 16px;
}
.breadcrumb .list .item:not(:last-of-type) a {
  color: #3facbc;
  font-weight: bold;
  text-decoration: underline;
}
.breadcrumb .list .item:not(:last-of-type) a:hover {
  opacity: 0.7;
}
.breadcrumb .list .item:last-of-type {
  pointer-events: none;
}
.breadcrumb .list .item:not(:last-child)::after {
  font: var(--fa-font-solid);
  content: "\f105";
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 22px;
}

/* footer */
footer {
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 36px;
  background-color: #414141;
  color: #fff;
}
.footer-top__inner {
  max-width: 1078px;
}
.footer-top__title {
  margin-bottom: 32px;
  font-size: 20px;
}
.footer-top__title:hover {
  opacity: 0.7;
}
.footer-top__title a {
  color: #fff;
}
.footer-top__site-map {
  margin-bottom: 32px;
  font-size: 16px;
}
.footer-top__site-map:hover {
  opacity: 0.7;
}
.footer-top__site-map a {
  color: #fff;
}
.footer-top .top-list {
  display: flex;
  align-items: baseline;
}
.footer-top .top-list:not(:last-of-type) {
  margin-bottom: 32px;
}
.footer-top .top-list .list-title {
  display: flex;
  align-items: center;
  flex: none;
}
.footer-top .top-list .list-title .title {
  width: 156px;
}
.footer-top .top-list .list-title .title + span {
  margin: 0 16px 0 28px;
}
.footer-top .top-list .list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.footer-top .top-list .list li a {
  color: #fff;
}
.footer-top .top-list .list li a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 36px;
}
.footer-bottom .bottom-logo {
  margin-right: 40px;
}
.footer-bottom .bottom-logo:hover {
  opacity: 0.7;
}
.footer-bottom .bottom-info p {
  margin-bottom: 8px;
}
.footer-bottom .bottom-info p a {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}
.footer-bottom .bottom-info p a:hover {
  opacity: 0.7;
}
.footer-bottom .bottom-info p a::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: url(/img/icon_link_black.svg) no-repeat;
}
.footer-bottom .bottom-info ul {
  display: flex;
}
.footer-bottom .bottom-info ul li:not(:last-of-type) {
  margin-right: 16px;
}
.footer-bottom .bottom-info ul li a:hover {
  opacity: 0.7;
}

.footer-bottom__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  background: #e2e2e2;
}

.button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-wrap--col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.blue-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: #3facbc;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.blue-button a {
  color: #fff;
}
.blue-button:hover {
  background: #59c9d9;
}
.blue-button::before, .blue-button::after {
  flex: none;
}
.blue-button--DL::after {
  content: "";
  width: 23px;
  height: 32px;
  margin-left: 32px;
  background: url(/img/icon_pdf.svg) no-repeat;
}
.blue-button--info::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 32px;
  background: url(/img/icon_link_white.svg) no-repeat;
}
.blue-button--inquiry {
  width: 100%;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}
.blue-button--inquiry::before {
  content: "";
  width: 24px;
  height: 19px;
  margin-right: 12px;
  background: url(/img/icon_mail.svg) no-repeat;
}
.blue-button .title {
  font-weight: bold;
}
.blue-button .text {
  font-size: 16px;
}

.white-button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 20px 40px;
  background: #fff;
  border: 1px solid #ddd;
  color: #007789;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.white-button::after {
  font: var(--fa-font-solid);
  content: "\f105";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 24px;
  background: #fff;
  border: 1px solid #b5dfe5;
  color: #75c3ce;
  font-size: 16px;
  border-radius: 50%;
  flex: none;
  transition: 0.3s;
}
.white-button:hover {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.white-button:hover::after {
  transform: translateX(6px);
}

.fw-b {
  font-weight: bold;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 16px;
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 70px;
  height: 70px;
  padding: 5px 10px;
  background: #dbeaee;
  text-align: center;
  color: #007789;
  font-size: 12px;
  text-decoration: none;
  border-radius: 6px;
}
.pagetop a span + span {
  margin-top: 4px;
}
.pagetop:hover {
  opacity: 0.7;
}

/* 画面サイズ 1024px 未満 */
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 60px;
  }
  body {
    font-size: 14px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .wrapper {
    max-width: none;
    min-width: auto;
  }
  .global-header {
    position: sticky;
    top: 0;
    height: 60px;
    background-color: #fff;
    box-shadow: none;
  }
  .global-header__left {
    margin: 0 16px;
  }
  .global-header .left-logo {
    height: 32px;
  }
  .global-header .left-logo img {
    width: 115px;
    height: 32px;
  }
  .global-header .left-info {
    font-size: 10px;
    font-weight: bold;
  }
  .global-header__right .right-list {
    display: none;
  }
  .container {
    padding-bottom: 32px;
  }
  /* blue-button  */
  .blue-button {
    padding: 12px 16px;
  }
  .blue-button .text {
    font-size: 12px;
  }
  .blue-button--inquiry {
    height: 65px;
    font-size: 18px;
  }
  /* ハンバーガーメニュー */
  .hamburger {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 16px;
    cursor: pointer;
    z-index: 300;
  }
  .hamburger__line {
    position: absolute;
    width: 30px;
    height: 3px;
    right: 0;
    background-color: #3facbc;
    transition: all 0.5s;
  }
  .hamburger__line--1 {
    top: 1px;
  }
  .hamburger__line--2 {
    top: 10px;
  }
  .hamburger__line--3 {
    top: 20px;
  }
  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
  }
  .open .hamburger__line--2 {
    opacity: 0;
  }
  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
  }
  .sp-nav {
    position: fixed;
    right: -100%;
    top: 60px;
    width: 100%;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
  }
  .open .sp-nav {
    right: 0;
  }
  .white-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
  }
  .open .white-bg {
    opacity: 0.6;
    visibility: visible;
  }
  .accordion {
    background: #fff;
  }
  .accordion-list {
    border-top: 1px solid #e5e5ec;
  }
  .accordion-item {
    padding: 16px;
    font-size: 18px;
  }
  .accordion-item:first-of-type {
    border-bottom: 1px solid #e5e5ec;
    font-size: 16px;
  }
  .accordion-item:first-of-type a {
    display: flex;
    align-items: center;
  }
  .accordion-item:first-of-type a::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background: url(/img/icon_link.svg) no-repeat;
  }
  .accordion-item .form {
    justify-content: flex-start;
    height: 44px;
  }
  .accordion-item .search-box {
    width: 100%;
  }
  .accordion-item:nth-of-type(n + 3) {
    padding-top: 0;
  }
  .accordion-item .blue-button {
    justify-content: center;
    width: 100%;
    font-size: 18px;
  }
  .accordion-item .blue-button::before {
    content: "";
    width: 19px;
    height: 16px;
    margin-right: 14px;
    background: url(/img/icon_mail.svg) no-repeat;
    background-size: contain;
  }
  .accordion-item .blue-button::after {
    content: none;
  }
  .button-wrap {
    justify-content: initial;
  }
  .button-wrap--col2 {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  .button-wrap--col2 li {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .button-wrap--col2 li .white-button {
    justify-content: center;
    width: 100%;
  }
  .button-wrap .white-button {
    height: auto;
    padding: 12px 16px;
  }
  .button-wrap .white-button::after {
    width: 30px;
    height: 30px;
    margin-left: 16px;
    font-size: 12px;
  }
  .button-wrap .white-button .white-button-text {
    width: 280px;
  }
  .pagetop a {
    width: 50px;
    height: 50px;
  }
  .pagetop a span {
    line-height: 1;
  }
  .pagetop a span + span {
    margin-top: 2px;
  }
  /* パンくず */
  .breadcrumb {
    padding: 8px 16px;
  }
  .breadcrumb .list .item:not(:last-child)::after {
    margin: 0 8px;
  }
  .breadcrumb .list .item a {
    font-size: 14px;
  }
  /* footer */
  footer {
    font-size: 14px;
  }
  .footer-top {
    align-items: baseline;
    padding: 32px 16px;
  }
  .footer-top__title {
    font-size: 18px;
  }
  .footer-top__site-map {
    margin-bottom: 24px;
    font-size: 14px;
  }
  .footer-top .top-list {
    display: block;
  }
  .footer-top .top-list:not(:last-of-type) {
    margin-bottom: 12px;
  }
  .footer-top .top-list .list-title {
    margin-right: 0;
  }
  .footer-top .top-list .list-title::after {
    font: var(--fa-font-solid);
    content: "\f107";
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px 0 0 8px;
    font-size: 10px;
  }
  .footer-top .top-list .list-title--active::after {
    transform: scale(1, -1);
  }
  .footer-top .top-list .list-title .title {
    width: auto;
  }
  .footer-top .top-list .list-wrap {
    display: none;
    font-size: 12px;
  }
  .footer-top .top-list .list-wrap .list {
    margin: 8px 0 24px;
    gap: 8px 16px;
  }
  .footer-top .top-list:last-of-type .list {
    margin-bottom: 0;
  }
  .footer-bottom {
    display: block;
    margin: 16px;
  }
  .footer-bottom .bottom-logo {
    margin: 0;
  }
  .footer-bottom .bottom-logo img {
    width: 120px;
    height: 45px;
  }
  .footer-bottom .bottom-info p {
    margin-bottom: 12px;
  }
  .footer-bottom .bottom-info p a {
    font-size: 14px;
  }
  .footer-bottom .bottom-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
  }
  .footer-bottom .bottom-info ul li {
    font-size: 12px;
  }
  .footer-bottom .bottom-info ul li:not(:last-of-type) {
    margin-right: 0;
  }
  small {
    font-size: 10px;
  }
}
/* Tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .button-wrap {
    justify-content: initial;
  }
  .button-wrap--col2 {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  .button-wrap--col2 li {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .button-wrap--col2 li .white-button {
    justify-content: center;
    width: 70%;
  }
}/*# sourceMappingURL=common.css.map */