@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  color: #0A0B0D; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  color: inherit;
  text-decoration: none; }

input[type="text"],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='radio'] {
  display: none; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

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

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 16px; } }

[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

main {
  padding-top: 140px;
  background: #FFFEFA; }
  @media only screen and (max-width: 767px) {
    main {
      padding-top: 80px; } }

.products {
  padding: 72px 0;
  background: url(../images/top/bg.jpg) center center/cover no-repeat;
  position: relative;
  color: #fff;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .products {
      padding: 32px 0;
      background: url(../images/top/bg_sp.jpg) center center/cover no-repeat;
      text-align: left; } }
  .products:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(30deg, #5160a7, #182e9e 70%, #172a88);
    mix-blend-mode: hard-light;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
    @media only screen and (max-width: 767px) {
      .products:before {
        background: linear-gradient(10deg, #5160a7, #182e9e 70%, #172a88); } }
  .products .inner {
    max-width: 1248px;
    position: relative; }
    .products .inner > .c-btn {
      margin: 32px auto 0; }
      @media only screen and (max-width: 767px) {
        .products .inner > .c-btn {
          margin-top: 24px; } }
  .products .c-text01 {
    margin-top: 22px;
    margin-bottom: 44px; }
    @media only screen and (max-width: 767px) {
      .products .c-text01 {
        margin-top: 12px;
        margin-bottom: 24px; } }

.topics {
  padding: 54px 0;
  background: #EDF3FF; }
  @media only screen and (max-width: 767px) {
    .topics {
      padding: 48px 0; } }
  .topics .inner {
    max-width: 947px; }
  .topics dl {
    width: 100%;
    display: flex;
    filter: drop-shadow(0px 3px 6px rgba(23, 42, 136, 0.15)); }
    @media only screen and (max-width: 767px) {
      .topics dl {
        display: block; } }
    .topics dl dt {
      width: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #172A88;
      color: #fff;
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        .topics dl dt {
          width: 100%;
          padding: 17px; } }
    .topics dl dd {
      width: calc(100% - 120px);
      padding: 32px 30px;
      display: flex;
      align-items: center;
      background: #fff; }
      @media only screen and (max-width: 767px) {
        .topics dl dd {
          width: 100%;
          padding: 24px 12px 32px;
          display: block;
          text-align: center; } }
      .topics dl dd strong {
        width: calc(128px + 32px);
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 600;
        color: #3854E0; }
        @media only screen and (max-width: 767px) {
          .topics dl dd strong {
            width: 100%;
            margin-bottom: 16px; } }
      .topics dl dd p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.71428571; }
        @media only screen and (max-width: 767px) {
          .topics dl dd p {
            text-align: left; } }
        .topics dl dd p em {
          font-size: 16px;
          font-size: 1.6rem;
          font-weight: 600;
          color: #3854E0; }
          @media only screen and (max-width: 767px) {
            .topics dl dd p em {
              line-height: 2;
              text-align: center;
              display: block;
              margin-bottom: 10px; } }

.footer {
  position: relative; }
  .footer__contact {
    background: #F7F8F8;
    padding: 80px 0 50px; }
    @media only screen and (max-width: 767px) {
      .footer__contact {
        padding: 27px 0 80px; } }
    .footer__contact .inner {
      max-width: 1050px;
      display: flex;
      align-items: flex-start; }
      @media only screen and (max-width: 767px) {
        .footer__contact .inner {
          display: block; } }
    .footer__contact hr {
      margin: 0 54px;
      width: 1px;
      height: 140px;
      display: block;
      background: #707070;
      border: none;
      margin-top: 88px; }
      @media only screen and (max-width: 767px) {
        .footer__contact hr {
          width: 140px;
          height: 1px;
          margin: 32px auto; } }
    .footer__contact .map {
      width: 49.48453608%;
      padding-top: 32.98969039%;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .footer__contact .map {
          width: 100%;
          padding-top: 69.76744186%; } }
      .footer__contact .map iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0; }
    .footer__contact .info {
      width: 40%;
      padding-top: 18px; }
      @media only screen and (max-width: 767px) {
        .footer__contact .info {
          width: 100%;
          text-align: center; } }
      .footer__contact .info span {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.5;
        font-weight: 600; }
        .footer__contact .info span em {
          color: #3854E0; }
      .footer__contact .info strong {
        display: block;
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.33333333;
        font-weight: 600;
        margin-top: 8px;
        margin-bottom: 18px; }
        @media only screen and (max-width: 767px) {
          .footer__contact .info strong {
            margin-top: 16px; } }
      .footer__contact .info address {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 2;
        margin-bottom: 20px; }
        .footer__contact .info address i {
          display: inline-block;
          margin-right: 10px;
          position: relative;
          top: -3px; }
      @media only screen and (max-width: 767px) {
        .footer__contact .info .tel {
          width: 308px;
          margin: 0 auto; } }
      .footer__contact .info .tel span {
        display: block;
        background: #172A88;
        color: #fff;
        font-size: 11px;
        font-size: 1.1rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        padding: 2px 11px 4px;
        margin-bottom: 10px;
        width: 70px; }
      .footer__contact .info .tel a {
        font-size: 48px;
        font-size: 4.8rem;
        font-weight: 500;
        color: #3854E0; }
      .footer__contact .info .tel small {
        display: block;
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 16px;
        margin-bottom: 28px; }
        @media only screen and (max-width: 767px) {
          .footer__contact .info .tel small {
            text-align: left;
            margin-bottom: 32px; } }
  .footer__nav {
    padding: 24px 0; }
    .footer__nav ul {
      display: flex;
      align-items: center;
      justify-content: center; }
      .footer__nav ul li {
        margin: 0 16px; }
        .footer__nav ul li a {
          padding-left: 16px;
          position: relative;
          font-size: 14px;
          font-size: 1.4rem;
          font-weight: 400;
          transition: color .3s; }
          .footer__nav ul li a:hover {
            color: #3854E0; }
          .footer__nav ul li a:before {
            content: "";
            width: 5px;
            height: 10px;
            display: block;
            background: url(../images/common/arrow_right_blue.svg) center center/cover no-repeat;
            position: absolute;
            top: 50%;
            left: 0%;
            transform: translate(0%, -50%); }
  .footer__copyright {
    background: #172A88;
    color: #fff;
    padding: 22px 0 24px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .footer__copyright {
        padding: 32px 0; } }
  .footer .pagetop {
    position: absolute;
    top: -32px;
    right: 32px;
    width: 64px; }
    @media only screen and (max-width: 767px) {
      .footer .pagetop {
        top: auto;
        right: auto;
        left: 50%;
        bottom: 48px;
        transform: translate(-50%, 0); } }

.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: #FFFEFA;
  z-index: 99; }
  @media only screen and (max-width: 767px) {
    .header {
      display: none; } }
  .header__h1 {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 8px 25px 0; }
  .header__tel {
    width: 240px;
    height: 72px;
    border-radius: 0 0 16px 16px;
    background: #172A88;
    color: #fff;
    text-align: center;
    padding-top: 16px;
    position: absolute;
    top: 0;
    right: 40px; }
    .header__tel a {
      display: flex;
      justify-content: center;
      align-items: flex-end; }
      .header__tel a i {
        display: inline-block;
        margin-right: 5px;
        margin-bottom: 2px; }
      .header__tel a span {
        font-size: 24px;
        font-size: 2.4rem;
        font-weight: 600; }
    .header__tel small {
      font-size: 12px;
      font-size: 1.2rem;
      font-weight: 600;
      display: block;
      margin-top: 8px; }
  .header .col {
    padding: 30px 37px 24px 33px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between; }
  .header__logo {
    display: block;
    width: 40px;
    margin-bottom: 8px; }
  .header .gnav__list {
    display: flex; }
    .header .gnav__list li {
      margin: 0 16px; }
      .header .gnav__list li a {
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: 400;
        transition: color .3s; }
        .header .gnav__list li a:hover {
          color: #3854E0; }

.header.fixed {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: -64px;
  transition: opacity .3s, visibility .3s, top .3s;
  background: none; }
  @media only screen and (max-width: 767px) {
    .header.fixed {
      display: block;
      opacity: 1;
      visibility: visible;
      top: 0; } }
  .header.fixed:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    will-change: filter; }
  .header.fixed.active {
    opacity: 1;
    visibility: visible;
    top: 0; }
  .header.fixed .col {
    padding: 6px 34px 5px 37px;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      .header.fixed .col {
        padding: 14px 17px 13px; } }
  .header.fixed .header__logo {
    margin-bottom: 0;
    position: relative;
    z-index: +1; }
  .header.fixed .gnav {
    position: relative; }
    @media only screen and (max-width: 767px) {
      .header.fixed .gnav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: #F7F8F8;
        padding: 118px 16px 100px;
        overflow-y: scroll;
        transition: opacity .3s, visibility .3s;
        opacity: 0;
        visibility: hidden; }
        .header.fixed .gnav.is-active {
          opacity: 1;
          visibility: visible; } }
    @media only screen and (max-width: 767px) {
      .header.fixed .gnav__list {
        padding: 0 56px;
        flex-wrap: wrap;
        justify-content: space-between; }
        .header.fixed .gnav__list:after {
          content: "";
          width: 140px;
          height: 1px;
          display: block;
          background: rgba(112, 112, 112, 0.9);
          margin: 16px auto 48px; } }
    @media only screen and (max-width: 767px) {
      .header.fixed .gnav__list li {
        margin-bottom: 34px; } }
    @media only screen and (max-width: 767px) {
      .header.fixed .gnav__list li a {
        font-size: 16px;
        font-size: 1.6rem;
        padding-left: 18px;
        position: relative; } }
    @media only screen and (max-width: 767px) {
      .header.fixed .gnav__list li a:before {
        content: "";
        width: 5px;
        height: 10px;
        display: block;
        background: url(../images/common/arrow_right_blue.svg) center center/cover no-repeat;
        position: absolute;
        top: 8px;
        left: 0; } }
    .header.fixed .gnav .addressBox {
      text-align: center; }
      .header.fixed .gnav .addressBox span {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.71428571;
        font-weight: 600; }
        .header.fixed .gnav .addressBox span em {
          color: #3854E0; }
      .header.fixed .gnav .addressBox strong {
        display: block;
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.33333333;
        font-weight: 600;
        margin: 8px 0 16px; }
      .header.fixed .gnav .addressBox address {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 2.28571429; }
    .header.fixed .gnav .telBox {
      margin-top: 22px;
      text-align: center; }
      .header.fixed .gnav .telBox span {
        padding: 4px 11px 5px;
        color: #fff;
        background: #172A88;
        display: block;
        margin: 0 auto 10px;
        font-size: 11px;
        font-size: 1.1rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        width: 70px; }
      .header.fixed .gnav .telBox a {
        font-size: 32px;
        font-size: 3.2rem;
        font-weight: 500;
        color: #3854E0; }
      .header.fixed .gnav .telBox small {
        display: block;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 2;
        margin-top: 8px;
        margin-bottom: 24px; }
  .header.fixed .hamburger {
    position: fixed;
    top: 13px;
    right: 16px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #172A88;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100; }
    .header.fixed .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
      transform: rotate(-45deg);
      top: 7px; }
    .header.fixed .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
      width: 0;
      opacity: 0; }
    .header.fixed .hamburger.is-active .hamburger__inner span:nth-of-type(3) {
      transform: rotate(45deg);
      bottom: 9px; }
    .header.fixed .hamburger__inner {
      width: 27px;
      height: 19px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center; }
      .header.fixed .hamburger__inner span {
        width: 27px;
        height: 3px;
        border-radius: 3px;
        background: #fff;
        display: block;
        position: absolute;
        left: 0;
        transition: opacity .3s, top .3s, bottom .3s, transform .3s, width .3s; }
        .header.fixed .hamburger__inner span:nth-of-type(1) {
          top: 0; }
        .header.fixed .hamburger__inner span:nth-of-type(2) {
          position: static; }
        .header.fixed .hamburger__inner span:nth-of-type(3) {
          bottom: 0; }

.c-btn {
  width: 100%;
  max-width: 360px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  background: #172A88;
  color: #fff;
  transition: background-color .3s, color .3s; }
  .c-btn:hover {
    background: #3854E0; }
  .c-btn:after {
    content: "";
    width: 5px;
    height: 10px;
    display: block;
    background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0, -50%); }
  .c-btn.white {
    max-width: 280px;
    height: 48px;
    border-radius: 8px;
    background: #fff;
    font-weight: 500;
    color: #0A0B0D; }
    @media only screen and (max-width: 767px) {
      .c-btn.white {
        max-width: 100%; } }
    .c-btn.white:hover {
      background: #EDF3FF;
      color: #3854E0; }
    .c-btn.white:after {
      content: "";
      width: 5px;
      height: 10px;
      display: block;
      background: url(../images/common/arrow_right_blue.svg) center center/cover no-repeat;
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translate(0, -50%); }

.c-title03 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.71428571;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    .c-title03 {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 1.66666667; } }
  .c-title03 em {
    color: #3854E0; }

.c-text01 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2.13333333; }
  @media only screen and (max-width: 767px) {
    .c-text01 {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 2.28571429; } }

.c-title02 {
  padding-bottom: 20px;
  border-bottom: 1px solid #DDDDDD;
  position: relative; }
  .c-title02:after {
    content: "";
    width: 160px;
    height: 1px;
    display: block;
    background: #3854E0;
    position: absolute;
    bottom: -1px;
    left: 0; }
  .c-title02 .jp {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 12px; }
  .c-title02 .en {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #3854E0; }

.c-text02 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.28571429; }

.c-pankuzu {
  padding: 34px 0 32px; }
  @media only screen and (max-width: 767px) {
    .c-pankuzu {
      padding: 48px 8px 22px; } }
  .c-pankuzu .inner {
    max-width: 1280px; }
  .c-pankuzu ul {
    display: flex;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .c-pankuzu ul {
        justify-content: flex-start;
        flex-wrap: wrap; } }
    .c-pankuzu ul li {
      margin-left: 32px; }
      @media only screen and (max-width: 767px) {
        .c-pankuzu ul li {
          margin-left: 0;
          margin-right: 32px;
          margin-bottom: 10px; }
          .c-pankuzu ul li:last-of-type {
            margin-right: 0; } }
      .c-pankuzu ul li a, .c-pankuzu ul li span {
        padding-left: 18px;
        position: relative;
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: 400; }
        .c-pankuzu ul li a:before, .c-pankuzu ul li span:before {
          content: "";
          width: 5px;
          height: 10px;
          display: block;
          background: url(../images/common/arrow_right_blue.svg) center center/cover no-repeat;
          position: absolute;
          left: 0;
          top: 6px; }

.c-title04 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 13px;
  line-height: 1.4;
  position: relative; }
  .c-title04:before {
    content: "";
    width: 4px;
    height: 24px;
    display: block;
    background: #3854E0;
    position: absolute;
    top: 1px;
    left: 0; }

.c-productsList {
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (max-width: 767px) {
    .c-productsList {
      display: block; } }
  .c-productsList li {
    width: calc((100% - 48px) / 4);
    margin-right: 16px;
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      .c-productsList li {
        width: 100%;
        margin: 0 0 16px; } }
    .c-productsList li:nth-of-type(4n) {
      margin-right: 0; }

.c-mainvisual {
  padding-top: 48px;
  padding-bottom: 64px;
  display: flex;
  align-items: center;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .c-mainvisual {
      padding-top: 80px;
      padding-bottom: 24px; } }
  .c-mainvisual:before {
    content: "";
    width: 100%;
    height: 184px;
    display: block;
    background: #EDF3FF;
    position: absolute;
    left: 0;
    bottom: 0; }
  .c-mainvisual__image {
    width: 480px;
    height: 320px;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 240px 240px 0;
    position: absolute;
    top: 8px;
    left: 0; }
    @media only screen and (max-width: 767px) {
      .c-mainvisual__image {
        width: 320px;
        height: 160px;
        top: 0; } }
  .c-mainvisual__cont {
    width: calc(100% - 54px);
    height: 240px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 8px;
    padding-right: 47px; }
    @media only screen and (max-width: 767px) {
      .c-mainvisual__cont {
        width: calc(100% - 16px);
        height: 252px;
        justify-content: flex-start;
        padding-left: 24px;
        padding-top: 38px; } }
    .c-mainvisual__cont:after {
      content: "";
      width: 100%;
      height: 100%;
      display: block;
      background: linear-gradient(90deg, #4f66d6 40%, #182e9e 80%, #011887);
      mix-blend-mode: hard-light;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
    .c-mainvisual__cont img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      position: absolute;
      top: 0;
      left: 0; }
    .c-mainvisual__cont .title {
      color: #fff;
      position: relative;
      z-index: +1;
      text-align: right; }
      @media only screen and (max-width: 767px) {
        .c-mainvisual__cont .title {
          text-align: left; } }
      .c-mainvisual__cont .title .en {
        display: block;
        font-size: 48px;
        font-size: 4.8rem;
        font-family: "Michroma", sans-serif; }
        @media only screen and (max-width: 767px) {
          .c-mainvisual__cont .title .en {
            font-size: 32px;
            font-size: 3.2rem;
            line-height: 1.4375; } }
      .c-mainvisual__cont .title .jp {
        display: block;
        font-size: 24px;
        font-size: 2.4rem;
        font-weight: 600;
        margin-top: 17px; }
        @media only screen and (max-width: 767px) {
          .c-mainvisual__cont .title .jp {
            font-size: 16px;
            font-size: 1.6rem;
            margin-top: 15px; } }

.c-contactBox {
  background: #F7F8F8;
  border-radius: 8px;
  padding: 50px 32px 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .c-contactBox {
      padding: 76px 12px 24px;
      display: block; } }
  .c-contactBox strong {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    color: #3854E0;
    display: block;
    white-space: nowrap;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translate(-50%, 0%); }
    @media only screen and (max-width: 767px) {
      .c-contactBox strong {
        text-align: center;
        line-height: 1.66666667;
        top: -26px; } }
  @media only screen and (max-width: 767px) {
    .c-contactBox .tel {
      text-align: center; } }
  .c-contactBox .tel span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 20px;
    font-size: 11px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #fff;
    background: #172A88;
    margin-bottom: 12px; }
    @media only screen and (max-width: 767px) {
      .c-contactBox .tel span {
        margin: 0 auto 12px; } }
  .c-contactBox .tel a {
    font-size: 48px;
    font-size: 4.8rem;
    font-weight: 500;
    color: #3854E0; }
  .c-contactBox .tel small {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 18px; }
    @media only screen and (max-width: 767px) {
      .c-contactBox .tel small {
        margin-top: 18px;
        margin-bottom: 24px;
        text-align: center; } }
  .c-contactBox .c-btn {
    max-width: 320px; }

.c-whole {
  padding: 22px 0 72px; }
  @media only screen and (max-width: 767px) {
    .c-whole {
      padding: 4px 0 25px; } }
  .c-whole .inner {
    max-width: 1104px;
    display: flex; }
  .c-whole .sidebar {
    width: 256px; }
    .c-whole .sidebar nav {
      position: sticky;
      top: 70px; }
      .c-whole .sidebar nav ul li {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.5;
        padding-left: 16px;
        position: relative;
        margin-bottom: 13px;
        transition: color .3s; }
        .c-whole .sidebar nav ul li:before {
          content: "";
          width: 8px;
          height: 8px;
          display: block;
          border-radius: 50%;
          position: absolute;
          top: 7px;
          left: 0;
          transition: background-color .3s; }
        .c-whole .sidebar nav ul li.current {
          color: #3854E0; }
          .c-whole .sidebar nav ul li.current:before {
            background: #3854E0; }
  .c-whole .cont {
    width: calc(100% - 256px);
    padding-left: 48px;
    border-left: 1px solid #DDDDDD; }
    @media only screen and (max-width: 767px) {
      .c-whole .cont {
        width: 100%;
        padding-left: 0;
        border: none; } }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

@media only screen and (max-width: 767px) {
  body.aboutus .whole {
    padding-bottom: 48px; } }

body.aboutus .whole .cont .box {
  margin-bottom: 64px; }
  body.aboutus .whole .cont .box:last-of-type {
    margin-bottom: 0; }

body.aboutus .whole .cont .img-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 96px; }
  @media only screen and (max-width: 767px) {
    body.aboutus .whole .cont .img-text {
      flex-direction: column;
      margin-bottom: 78px; } }
  body.aboutus .whole .cont .img-text:first-of-type {
    margin-top: 24px; }
  body.aboutus .whole .cont .img-text:last-of-type {
    margin-bottom: 0; }
  body.aboutus .whole .cont .img-text .image {
    width: 33.33333333%; }
    @media only screen and (max-width: 767px) {
      body.aboutus .whole .cont .img-text .image {
        width: 100%;
        margin-bottom: 30px;
        order: 1; } }
    body.aboutus .whole .cont .img-text .image span {
      display: block;
      text-align: center;
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 500;
      margin-top: 26px; }
  body.aboutus .whole .cont .img-text .text {
    width: 63.33333333%; }
    @media only screen and (max-width: 767px) {
      body.aboutus .whole .cont .img-text .text {
        width: 100%;
        order: 2; } }
    body.aboutus .whole .cont .img-text .text p {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 2.28571429;
      margin-bottom: 10px; }

body.aboutus .whole .cont .sales {
  border-radius: 8px;
  background: #EDF3FF;
  padding: 38px 20px 20px;
  position: relative;
  margin-top: 57px; }
  @media only screen and (max-width: 767px) {
    body.aboutus .whole .cont .sales {
      margin-top: 48px; } }
  body.aboutus .whole .cont .sales strong {
    display: block;
    text-align: center;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translate(-50%, 0%);
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    color: #3854E0; }
  body.aboutus .whole .cont .sales p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.28571429;
    text-align: center; }

body.aboutus .whole .cont .table02 table {
  width: 100%; }
  @media only screen and (max-width: 767px) {
    body.aboutus .whole .cont .table02 table {
      display: block; } }
  @media only screen and (max-width: 767px) {
    body.aboutus .whole .cont .table02 table tbody {
      display: block; } }
  @media only screen and (max-width: 767px) {
    body.aboutus .whole .cont .table02 table tr {
      display: block;
      padding: 20px 8px;
      border-bottom: 1px solid #DDDDDD; } }
  body.aboutus .whole .cont .table02 table tr th {
    width: 184px;
    padding: 20px 16px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.28571429;
    font-weight: 600;
    color: #3854E0;
    border-bottom: 1px solid #DDDDDD; }
    @media only screen and (max-width: 767px) {
      body.aboutus .whole .cont .table02 table tr th {
        display: block;
        width: 100%;
        padding: 0;
        border: none;
        margin-bottom: 2px; } }
  body.aboutus .whole .cont .table02 table tr td {
    width: calc(100% - 184px);
    padding: 20px 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.28571429;
    border-bottom: 1px solid #DDDDDD; }
    @media only screen and (max-width: 767px) {
      body.aboutus .whole .cont .table02 table tr td {
        display: block;
        width: 100%;
        padding: 0;
        border: none; } }
    body.aboutus .whole .cont .table02 table tr td .c-btn {
      max-width: 240px;
      height: 48px;
      border-radius: 8px;
      font-size: 14px;
      font-size: 1.4rem;
      margin: 12px 0 4px; }
      @media only screen and (max-width: 767px) {
        body.aboutus .whole .cont .table02 table tr td .c-btn {
          max-width: 100%; } }

body.aboutus .whole .cont dl {
  padding-left: 16px;
  margin-bottom: 34px; }
  @media only screen and (max-width: 767px) {
    body.aboutus .whole .cont dl {
      padding-left: 0;
      margin-bottom: 30px; } }
  body.aboutus .whole .cont dl:first-of-type {
    margin-top: 24px; }
  body.aboutus .whole .cont dl:last-of-type {
    margin-bottom: 0; }
  body.aboutus .whole .cont dl dt {
    margin-bottom: 20px; }
  body.aboutus .whole .cont dl dd {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5; }
    body.aboutus .whole .cont dl dd ul {
      counter-reset: number 0; }
      body.aboutus .whole .cont dl dd ul li {
        margin-bottom: 16px; }
        body.aboutus .whole .cont dl dd ul li:last-of-type {
          margin-bottom: 0; }
        body.aboutus .whole .cont dl dd ul li:before {
          counter-increment: number 1;
          content: counter(number) ". ";
          color: #3854E0;
          font-weight: 600; }

body.contact .whole {
  padding: 22px 0 72px; }
  body.contact .whole .inner {
    max-width: 960px; }
  body.contact .whole .head {
    text-align: center;
    margin-bottom: 44px; }
    body.contact .whole .head h3 {
      font-size: 24px;
      font-size: 2.4rem;
      font-weight: 600;
      color: #3854E0; }
    body.contact .whole .head p {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 2.28571429;
      margin-top: 28px; }
  body.contact .whole .step {
    display: flex;
    justify-content: space-between;
    margin-bottom: 72px; }
    body.contact .whole .step li {
      width: calc((100% - 20px) / 3);
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #EDF3FF;
      color: #3854E0;
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: 600;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .step li {
          font-size: 14px;
          font-size: 1.4rem;
          padding-left: 10px;
          white-space: nowrap; } }
      body.contact .whole .step li.current {
        background: #172A88;
        color: #fff; }
        body.contact .whole .step li.current:after {
          background: #172A88; }
      body.contact .whole .step li:first-of-type:before {
        content: none; }
      body.contact .whole .step li:last-of-type:after {
        content: none; }
      body.contact .whole .step li:before {
        content: "";
        width: 10px;
        height: 50px;
        clip-path: polygon(0 0, 10px 25px, 0 50px);
        background: #fff;
        display: block;
        position: absolute;
        top: 0;
        left: -1px; }
      body.contact .whole .step li:after {
        content: "";
        width: 10px;
        height: 50px;
        clip-path: polygon(0 0, 10px 25px, 0 50px);
        background: #EDF3FF;
        display: block;
        position: absolute;
        top: 0;
        right: -9px; }
  body.contact .whole .form {
    border-top: 1px solid #DDDDDD;
    position: relative; }
    body.contact .whole .form:before {
      content: "";
      width: 160px;
      height: 1px;
      display: block;
      background: #3854E0;
      position: absolute;
      top: -1px;
      left: 0; }
    body.contact .whole .form table {
      width: 100%;
      display: block; }
      body.contact .whole .form table tbody {
        display: block; }
      body.contact .whole .form table tr {
        display: flex; }
        @media only screen and (max-width: 767px) {
          body.contact .whole .form table tr {
            display: block;
            padding: 20px 0 24px;
            border-bottom: 1px solid #ddd; } }
      body.contact .whole .form table th {
        width: 246px;
        padding: 24px 16px 24px 24px;
        border-bottom: 1px solid #DDDDDD;
        display: flex;
        align-items: center;
        justify-content: space-between; }
        @media only screen and (max-width: 767px) {
          body.contact .whole .form table th {
            width: 100%;
            padding: 0 8px;
            border: none; } }
        body.contact .whole .form table th .name {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 2.28571429;
          font-weight: 600;
          color: #3854E0; }
        body.contact .whole .form table th .required {
          width: 50px;
          height: 20px;
          border-radius: 5px;
          background: #3854E0;
          color: #fff;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 12px;
          font-size: 1.2rem;
          font-weight: 600;
          padding-bottom: 1px; }
      body.contact .whole .form table td {
        width: calc(100% - 246px);
        padding: 24px 16px;
        border-bottom: 1px solid #DDDDDD;
        position: relative;
        display: flex;
        align-items: center; }
        @media only screen and (max-width: 767px) {
          body.contact .whole .form table td {
            display: block;
            width: 100%;
            border: none;
            padding: 0;
            margin-top: 12px; } }
        body.contact .whole .form table td:before {
          content: "";
          width: 1px;
          height: calc(100% - 48px);
          display: block;
          background: #ddd;
          position: absolute;
          top: 24px;
          left: 0; }
          @media only screen and (max-width: 767px) {
            body.contact .whole .form table td:before {
              content: none; } }
        body.contact .whole .form table td p {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.35714286;
          font-weight: 500; }
        body.contact .whole .form table td input[type="text"] {
          border: 1px solid #ddd;
          border-radius: 3px;
          width: 100%;
          height: 40px;
          padding: 10px 20px;
          background: #fff;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.35714286;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.contact .whole .form table td input[type="text"] {
              height: 56px;
              padding: 20px; } }
          body.contact .whole .form table td input[type="text"]::placeholder {
            color: #BEC3C4; }
        body.contact .whole .form table td textarea {
          border: 1px solid #ddd;
          border-radius: 3px;
          width: 100%;
          height: 240px;
          padding: 18px 20px;
          background: #fff;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.35714286;
          font-weight: 500;
          resize: none; }
          @media only screen and (max-width: 767px) {
            body.contact .whole .form table td textarea {
              height: 320px;
              padding: 20px; } }
          body.contact .whole .form table td textarea::placeholder {
            color: #BEC3C4; }
  body.contact .whole .privacypolicy {
    margin-top: 50px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .privacypolicy {
        margin-top: 48px; } }
    body.contact .whole .privacypolicy strong {
      display: block;
      text-align: center;
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 2;
      font-weight: 600; }
    body.contact .whole .privacypolicy span {
      display: block;
      text-align: center;
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 2; }
    body.contact .whole .privacypolicy__box {
      background: #fff;
      padding: 14px 32px 14px 20px;
      height: 368px;
      border: 1px solid #ddd;
      overflow-y: scroll;
      margin-top: 22px; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .privacypolicy__box {
          margin-top: 20px; } }
      body.contact .whole .privacypolicy__box::-webkit-scrollbar {
        background: #F7F8F8;
        width: 12px; }
      body.contact .whole .privacypolicy__box::-webkit-scrollbar-track {
        margin-top: 8px;
        margin-bottom: 8px; }
      body.contact .whole .privacypolicy__box::-webkit-scrollbar-thumb {
        background-color: #EDF3FF;
        border-radius: 30px;
        border-right: 3px solid transparent;
        border-left: 3px solid transparent;
        background-clip: padding-box; }
      body.contact .whole .privacypolicy__box p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.9;
        font-weight: 500; }
  body.contact .whole .agree {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 48px; }
    body.contact .whole .agree span {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.024em;
      font-weight: 600;
      margin-right: 8px;
      display: inline-block; }
    body.contact .whole .agree input[type="checkbox"] {
      margin: 0; }
  body.contact .whole .c-btn {
    margin: 0 auto; }
  body.contact .whole .btnBox {
    margin-top: 48px; }
    body.contact .whole .btnBox .c-btn.ltblue {
      background: #EDF3FF;
      color: #3854E0;
      margin-bottom: 24px; }
      body.contact .whole .btnBox .c-btn.ltblue:hover {
        background: #3854E0;
        color: #EDF3FF; }
        body.contact .whole .btnBox .c-btn.ltblue:hover:after {
          background: url(../images/common/arrow_right.svg) center center/cover no-repeat; }
      body.contact .whole .btnBox .c-btn.ltblue:after {
        background: url(../images/common/arrow_right_blue.svg) center center/cover no-repeat; }
  body.contact .whole .thanks {
    text-align: center; }
    body.contact .whole .thanks strong {
      font-size: 24px;
      font-size: 2.4rem;
      font-weight: 600;
      color: #3854E0;
      display: block; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .thanks strong {
          line-height: 1.5; } }
    body.contact .whole .thanks p {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.71428571;
      margin: 48px 0 66px; }

body.equipment .whole .cont .box {
  margin-bottom: 54px; }

body.equipment .whole .cont .c-text02 {
  margin-top: 18px;
  margin-bottom: 44px; }
  @media only screen and (max-width: 767px) {
    body.equipment .whole .cont .c-text02 {
      margin-top: 14px;
      margin-bottom: 40px; } }

body.equipment .whole .cont .c-title04 {
  margin-bottom: 24px; }

body.equipment .whole .cont .imageList {
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (max-width: 767px) {
    body.equipment .whole .cont .imageList {
      display: block; } }
  body.equipment .whole .cont .imageList li {
    width: calc((100% - 32px) / 2);
    margin-right: 32px;
    margin-bottom: 52px; }
    @media only screen and (max-width: 767px) {
      body.equipment .whole .cont .imageList li {
        width: 100%;
        margin: 0 0 38px; } }
    body.equipment .whole .cont .imageList li:nth-of-type(2n) {
      margin-right: 0; }
    body.equipment .whole .cont .imageList li .text {
      margin-top: 20px; }
      body.equipment .whole .cont .imageList li .text strong {
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.5;
        color: #3854E0; }
        body.equipment .whole .cont .imageList li .text strong small {
          font-size: 14px;
          font-size: 1.4rem; }
      body.equipment .whole .cont .imageList li .text p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.71428571;
        margin-top: 12px; }

body.equipment .whole .cont .table strong {
  display: block;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 600;
  color: #3854E0;
  background: #EDF3FF;
  border-radius: 8px;
  padding: 8px; }

body.equipment .whole .cont .table table {
  width: 100%;
  display: block; }
  body.equipment .whole .cont .table table tbody {
    display: block; }
  body.equipment .whole .cont .table table tr {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.equipment .whole .cont .table table tr {
        display: block;
        border-bottom: 1px solid #DDDDDD;
        text-align: center;
        padding: 16px 0; } }
    body.equipment .whole .cont .table table tr td {
      border-bottom: 1px solid #DDDDDD;
      padding: 20px 16px;
      border-spacing: 8px 8px;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.714;
      width: 40.55555556%;
      display: block; }
      @media only screen and (max-width: 767px) {
        body.equipment .whole .cont .table table tr td {
          border: none;
          width: 100%;
          text-align: center;
          padding: 6px; } }
      body.equipment .whole .cont .table table tr td:nth-of-type(3) {
        width: 16.66666667%; }
        @media only screen and (max-width: 767px) {
          body.equipment .whole .cont .table table tr td:nth-of-type(3) {
            width: 100%; } }

body.products-processing .whole {
  padding: 22px 0 72px; }
  @media only screen and (max-width: 767px) {
    body.products-processing .whole {
      padding: 12px 0 48px; } }
  body.products-processing .whole .c-text02 {
    margin: 15px 0 46px; }
  body.products-processing .whole .box .c-title04 {
    margin-bottom: 24px; }
  body.products-processing .whole .box .productsList {
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      body.products-processing .whole .box .productsList {
        display: block; } }
    body.products-processing .whole .box .productsList li {
      width: calc((100% - 48px) / 3);
      margin-right: 24px;
      margin-bottom: 52px; }
      @media only screen and (max-width: 767px) {
        body.products-processing .whole .box .productsList li {
          width: 100%;
          margin: 0 0 38px; } }
      body.products-processing .whole .box .productsList li:nth-of-type(3n) {
        margin-right: 0; }
      body.products-processing .whole .box .productsList li .text {
        margin-top: 20px;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.5;
        color: #3854E0;
        font-weight: 500; }
  body.products-processing .whole .maker {
    max-width: 720px;
    border-radius: 8px;
    background: #EDF3FF;
    padding: 38px 20px 24px;
    position: relative;
    text-align: center;
    margin: 14px auto 72px; }
    @media only screen and (max-width: 767px) {
      body.products-processing .whole .maker {
        margin-top: 66px; } }
    body.products-processing .whole .maker strong {
      font-size: 24px;
      font-size: 2.4rem;
      font-weight: 600;
      color: #3854E0;
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translate(-50%, 0%);
      white-space: nowrap; }
    body.products-processing .whole .maker p {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 2.28571429; }

body.recruitment .whole {
  padding: 22px 0 72px; }
  @media only screen and (max-width: 767px) {
    body.recruitment .whole {
      padding: 4px 0 48px; } }
  body.recruitment .whole .inner {
    max-width: 800px; }
  body.recruitment .whole .c-text02 {
    margin-top: 22px; }
    @media only screen and (max-width: 767px) {
      body.recruitment .whole .c-text02 {
        margin-top: 16px; } }
  body.recruitment .whole table {
    width: 100%;
    margin-top: 24px; }
    @media only screen and (max-width: 767px) {
      body.recruitment .whole table {
        display: block;
        margin-top: 0; } }
    @media only screen and (max-width: 767px) {
      body.recruitment .whole table tbody {
        display: block; } }
    @media only screen and (max-width: 767px) {
      body.recruitment .whole table tr {
        display: block; } }
    body.recruitment .whole table th {
      width: 180px;
      padding: 18px 16px;
      border-bottom: 1px solid #DDDDDD;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 2.28571429;
      font-weight: 600;
      color: #3854E0; }
      @media only screen and (max-width: 767px) {
        body.recruitment .whole table th {
          display: block;
          width: 100%;
          border: none;
          padding: 15px 0 0 8px; } }
    body.recruitment .whole table td {
      width: calc(100% - 180px);
      border-bottom: 1px solid #DDDDDD;
      padding: 18px 0;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 2.28571429; }
      @media only screen and (max-width: 767px) {
        body.recruitment .whole table td {
          display: block;
          width: 100%;
          padding: 0 0 16px 8px; } }
      body.recruitment .whole table td a {
        color: #3854E0;
        text-decoration: underline; }

body.top .mainvisual {
  position: relative;
  padding-bottom: 64px; }
  @media only screen and (max-width: 767px) {
    body.top .mainvisual {
      padding-bottom: 24px;
      overflow: hidden; } }
  body.top .mainvisual:before {
    content: "";
    width: 100%;
    height: 302px;
    display: block;
    background: #EDF3FF;
    position: absolute;
    left: 0;
    bottom: 0; }
    @media only screen and (max-width: 767px) {
      body.top .mainvisual:before {
        height: 216px; } }
  body.top .mainvisual .inner {
    max-width: 1344px; }
  body.top .mainvisual__badge {
    width: 232px;
    position: absolute;
    top: 28px;
    right: 40px;
    z-index: +2; }
    @media only screen and (max-width: 767px) {
      body.top .mainvisual__badge {
        width: 130px;
        top: 98px;
        right: 8px;
        z-index: +2; } }
  body.top .mainvisual__text {
    z-index: +1;
    margin-bottom: 60px; }
    @media only screen and (max-width: 767px) {
      body.top .mainvisual__text {
        margin-bottom: 40px; } }
    body.top .mainvisual__text h2 {
      font-size: 40px;
      font-size: 4rem;
      line-height: 1.2;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        body.top .mainvisual__text h2 {
          font-size: 24px;
          font-size: 2.4rem;
          line-height: 2; } }
      body.top .mainvisual__text h2 em {
        font-size: 48px;
        font-size: 4.8rem;
        color: #3854E0; }
        @media only screen and (max-width: 767px) {
          body.top .mainvisual__text h2 em {
            font-size: 24px;
            font-size: 2.4rem; } }
      body.top .mainvisual__text h2 span {
        position: relative;
        padding-bottom: 10px;
        display: inline-block;
        margin-bottom: 10px; }
        @media only screen and (max-width: 767px) {
          body.top .mainvisual__text h2 span {
            padding-bottom: 4px;
            margin-bottom: 6px; } }
        body.top .mainvisual__text h2 span:last-of-type {
          margin-bottom: 0; }
        body.top .mainvisual__text h2 span:after {
          content: "";
          width: 100%;
          height: 4px;
          display: inline-block;
          background: url(../images/common/dots.svg) left center/16px 4px repeat;
          position: absolute;
          bottom: 0;
          left: 0; }
  @media only screen and (min-width: 768px) {
    body.top .mainvisual__listWrap {
      padding: 0 20px; } }
  body.top .mainvisual__list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 24px; }
    body.top .mainvisual__list li {
      width: 23.52941176%;
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      z-index: 1;
      text-align: center;
      transition: transform .3s, width .3s;
      transform-origin: center bottom; }
      @media only screen and (min-width: 768px) {
        body.top .mainvisual__list li:hover {
          transform: scale(1.1); }
          body.top .mainvisual__list li:hover a:before {
            background: rgba(23, 42, 136, 0.6); }
          body.top .mainvisual__list li:hover a .more {
            opacity: 1; } }
      @media only screen and (max-width: 767px) {
        body.top .mainvisual__list li {
          width: 288px;
          text-align: center; } }
      body.top .mainvisual__list li a {
        position: relative;
        display: block;
        padding-top: 152.777778%;
        z-index: 1;
        border-radius: 8px; }
        @media only screen and (max-width: 767px) {
          body.top .mainvisual__list li a {
            padding-top: 125%; } }
        body.top .mainvisual__list li a:before {
          content: "";
          width: 100%;
          height: 100%;
          display: block;
          background: rgba(0, 0, 0, 0.4);
          mix-blend-mode: hard-light;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          border-radius: 8px;
          z-index: +1;
          transition: background-color .3s; }
        body.top .mainvisual__list li a .image {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0; }
          body.top .mainvisual__list li a .image img {
            object-fit: cover;
            object-position: center center;
            transition: transform .3s; }
        body.top .mainvisual__list li a .text {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          color: #fff;
          z-index: +1;
          width: 100%;
          padding: 0 10px; }
          body.top .mainvisual__list li a .text h4 small {
            display: block;
            font-size: 16px;
            font-size: 1.6rem;
            font-family: "Michroma", sans-serif; }
            @media only screen and (max-width: 1327px) {
              body.top .mainvisual__list li a .text h4 small {
                font-size: 12px;
                font-size: 1.2rem; } }
            @media only screen and (max-width: 767px) {
              body.top .mainvisual__list li a .text h4 small {
                font-size: 16px;
                font-size: 1.6rem; } }
            body.top .mainvisual__list li a .text h4 small:after {
              content: "";
              width: 72px;
              height: 1px;
              display: block;
              margin: 18px auto 14px;
              background: #fff; }
          body.top .mainvisual__list li a .text h4 span {
            font-size: 24px;
            font-size: 2.4rem;
            font-weight: 500;
            line-height: 1.45833333;
            display: block; }
            @media only screen and (max-width: 1327px) {
              body.top .mainvisual__list li a .text h4 span {
                font-size: 18px;
                font-size: 1.8rem; } }
            @media only screen and (max-width: 767px) {
              body.top .mainvisual__list li a .text h4 span {
                font-size: 24px;
                font-size: 2.4rem; } }
          body.top .mainvisual__list li a .text p {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.71428571;
            font-weight: 500;
            margin: 46px auto 0;
            max-width: 260px; }
            @media only screen and (max-width: 1327px) {
              body.top .mainvisual__list li a .text p {
                font-size: 10px;
                font-size: 1rem; } }
            @media only screen and (max-width: 767px) {
              body.top .mainvisual__list li a .text p {
                font-size: 14px;
                font-size: 1.4rem; } }
            @media only screen and (max-width: 767px) {
              body.top .mainvisual__list li a .text p {
                margin-top: 30px; } }
        body.top .mainvisual__list li a .more {
          width: 100%;
          max-width: 240px;
          height: 40px;
          border-radius: 20px;
          border: 2px solid #fff;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 14px;
          font-size: 1.4rem;
          font-weight: 500;
          position: absolute;
          bottom: 36px;
          left: 50%;
          transform: translate(-50%, 0%) scale(0.90909);
          z-index: +1;
          color: #fff;
          opacity: 0;
          transition: opacity .3s; }
          body.top .mainvisual__list li a .more:after {
            content: "";
            width: 32px;
            height: 2px;
            display: block;
            background: #fff;
            position: absolute;
            border-radius: 2px;
            top: 50%;
            right: -16px;
            transform: translate(0%, -50%); }
  body.top .mainvisual .swiper-pagination {
    position: static;
    margin-top: 30px; }
    @media only screen and (max-width: 767px) {
      body.top .mainvisual .swiper-pagination {
        margin-top: 24px; } }
    body.top .mainvisual .swiper-pagination .swiper-pagination-bullet {
      margin: 0 12px;
      background: #D6D6D6;
      opacity: 1;
      width: 10px;
      height: 10px; }
      @media only screen and (max-width: 767px) {
        body.top .mainvisual .swiper-pagination .swiper-pagination-bullet {
          width: 8px;
          height: 8px;
          margin: 0 8px; } }
      body.top .mainvisual .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #3854E0; }

body.top .strength {
  padding: 144px 0 54px;
  background: #F7F7F7;
  text-align: center;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .strength {
      padding: 72px 0 32px;
      text-align: left; } }
  body.top .strength .inner {
    max-width: 1148px; }
  body.top .strength .title {
    position: relative; }
    body.top .strength .title .en {
      font-size: 188px;
      font-size: 18.8rem;
      font-family: "Michroma", sans-serif;
      -webkit-text-fill-color: transparent;
      -webkit-text-stroke: 2px #fff;
      position: absolute;
      top: -42px;
      left: 50%;
      transform: translate(-50%, 0); }
      @media only screen and (max-width: 767px) {
        body.top .strength .title .en {
          font-size: 88px;
          font-size: 8.8rem;
          top: -52px; } }
    body.top .strength .title .c-title03 {
      position: relative; }
    body.top .strength .title .c-text01 {
      position: relative; }
  body.top .strength .c-text01 {
    margin-top: 30px; }
    @media only screen and (max-width: 767px) {
      body.top .strength .c-text01 {
        margin-top: 20px; } }
  body.top .strength__list {
    display: flex;
    justify-content: space-between;
    margin-top: 24px; }
    body.top .strength__list li {
      width: 31.83520599%;
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      z-index: 1; }
      @media only screen and (max-width: 767px) {
        body.top .strength__list li {
          width: 288px;
          text-align: center; } }
      body.top .strength__list li a {
        position: relative;
        display: block;
        padding-top: 141.17647059%;
        z-index: 1;
        border-radius: 24px; }
        body.top .strength__list li a:hover:before {
          background: rgba(0, 0, 0, 0.2); }
        body.top .strength__list li a:hover .image img {
          transform: scale(1.08); }
        body.top .strength__list li a:before {
          content: "";
          width: 100%;
          height: 100%;
          display: block;
          background: rgba(0, 0, 0, 0.4);
          mix-blend-mode: hard-light;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          border-radius: 24px;
          z-index: +1;
          transition: background-color .3s; }
        body.top .strength__list li a .image {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0; }
          body.top .strength__list li a .image img {
            object-fit: cover;
            object-position: center center;
            transition: transform .3s; }
        body.top .strength__list li a .text {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          color: #fff;
          z-index: +1;
          width: 100%;
          padding: 0 20px; }
          body.top .strength__list li a .text h4 small {
            display: block;
            font-size: 16px;
            font-size: 1.6rem;
            font-family: "Michroma", sans-serif; }
            body.top .strength__list li a .text h4 small:after {
              content: "";
              width: 72px;
              height: 1px;
              display: block;
              margin: 18px auto 14px;
              background: #fff; }
          body.top .strength__list li a .text h4 span {
            font-size: 24px;
            font-size: 2.4rem;
            font-weight: 500;
            line-height: 1.45833333;
            display: block; }
            @media only screen and (max-width: 767px) {
              body.top .strength__list li a .text h4 span {
                font-size: 20px;
                font-size: 2rem; } }
          body.top .strength__list li a .text p {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.71428571;
            font-weight: 500;
            margin: 46px auto 0;
            max-width: 260px; }
            @media only screen and (max-width: 767px) {
              body.top .strength__list li a .text p {
                margin-top: 30px; } }
  body.top .strength .swiper-pagination {
    position: static;
    margin-top: 30px; }
    body.top .strength .swiper-pagination .swiper-pagination-bullet {
      margin: 0 12px;
      background: #D6D6D6;
      opacity: 1;
      width: 10px;
      height: 10px; }
      body.top .strength .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #3854E0; }

body.top .aboutus {
  padding: 72px 0 92px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .aboutus {
      padding: 48px 0; } }
  body.top .aboutus .col {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.top .aboutus .col {
        display: block; } }
  body.top .aboutus__image {
    width: 35.29411765%;
    height: 540px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .aboutus__image {
        width: calc(100% - 36px);
        height: 240px; } }
    body.top .aboutus__image:before {
      content: "";
      width: calc(100% + 20px);
      height: 100%;
      display: block;
      background: #EDF3FF;
      border-radius: 0 270px 270px 0;
      position: absolute;
      top: 20px;
      left: 0; }
    body.top .aboutus__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      position: relative;
      border-radius: 0 270px 270px 0; }
  body.top .aboutus__text {
    width: 57.35294118%;
    position: relative;
    padding-top: 20px; }
    @media only screen and (max-width: 767px) {
      body.top .aboutus__text {
        width: 100%;
        padding: 0 16px;
        padding-top: 52px; } }
    body.top .aboutus__text .map {
      position: absolute;
      width: 540px;
      top: -12px;
      left: 216px; }
    body.top .aboutus__text .c-title03 {
      position: relative; }
    body.top .aboutus__text .c-text01 {
      position: relative;
      margin: 40px 0 44px;
      max-width: 580px;
      padding-right: 40px; }
      @media only screen and (max-width: 767px) {
        body.top .aboutus__text .c-text01 {
          padding-right: 0;
          margin: 20px 0 24px; } }

body.top .sliderArea {
  padding: 48px 0;
  background: #F7F7F7; }
  body.top .sliderArea .swiper-wrapper {
    transition-timing-function: linear !important; }
    body.top .sliderArea .swiper-wrapper .swiper-slide {
      width: 800px;
      border-radius: 24px;
      overflow: hidden;
      z-index: 1; }
      @media only screen and (max-width: 767px) {
        body.top .sliderArea .swiper-wrapper .swiper-slide {
          width: 280px; } }
