@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; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/NotoSansCJKjp.woff") format("woff"), url("../fonts/NotoSansCJKjp.otf") format("opentype"); }

@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/NotoSansCJKjpBold.woff") format("woff"), url("../fonts/NotoSansCJKjpBold.otf") format("opentype"); }

@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/NotoSansCJKjpBold.woff") format("woff"), url("../fonts/NotoSansCJKjpBlack.otf") format("opentype"); }

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

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

html {
  font-size: 62.5%;
  font-family: "NotoSansCJKjp", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333333;
  background-image: url(../images/dot.png);
  background-size: 10px 10px;
  background-repeat: repeat; }

* {
  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; }

.inner {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto; }

.footer {
  width: 100%;
  height: 60px;
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    .footer {
      height: 50px; } }
  .footer .copy {
    color: white;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1em; }
    @media only screen and (max-width: 767px) {
      .footer .copy {
        font-size: 12px;
        font-size: 1.2rem; } }

#to-top {
  width: 83px;
  height: 74px;
  background-image: url(../images/to-top-base.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 73px;
  right: 20px;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  display: none; }
  @media only screen and (max-width: 767px) {
    #to-top {
      width: 50px;
      height: 45px;
      bottom: 20px; }
      #to-top.fix {
        position: absolute;
        bottom: 60px;
        right: 20px; } }
  #to-top figure {
    width: 17px;
    height: 27px;
    padding-top: 30px;
    margin: auto;
    animation: key1 1.3s ease infinite; }
    @media only screen and (max-width: 767px) {
      #to-top figure {
        width: 12px;
        height: 23px;
        padding-top: 18px; } }

@keyframes key1 {
  0% {
    transform: translateY(0px); }
  30% {
    transform: translateY(-6px); }
  50% {
    transform: translateY(-6px); }
  80% {
    transform: translateY(0px); } }

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5000; }
  .header .logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 124px;
    height: 124px; }
    @media only screen and (max-width: 767px) {
      .header .logo {
        width: 80px;
        height: 80px; } }
  .header .contact {
    position: fixed;
    right: 14px;
    top: 14px;
    width: 90px;
    height: 90px;
    background-image: url(../images/contact.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s; }
    .header .contact:hover {
      background-image: url(../images/contact_hover.png); }
    @media only screen and (max-width: 767px) {
      .header .contact {
        width: 80px;
        height: 80px;
        top: 0;
        right: 0; } }
  .header .tenji {
    position: fixed;
    right: 14px;
    top: 119px;
    width: 90px;
    height: 281px;
    background-color: #ED3D8D;
    background-image: url(../images/tenji.png);
    background-size: 46px;
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s; }
    .header .tenji:hover {
      background-color: black; }
    @media only screen and (max-width: 767px) {
      .header .tenji {
        background-image: url(../images/tenji_sp.png);
        background-size: 49.6vw;
        width: calc(100% - 160px);
        height: 80px;
        top: 0;
        left: 0;
        right: 0;
        margin: auto; } }
    @media screen and (max-width: 374px) {
      .header .tenji {
        background-size: 45vw; } }

.orange {
  color: #EE780F; }

.pink {
  color: #ED3D8D; }

.green {
  color: #3DB143; }

.yellow {
  color: #F4C500; }

.blue {
  color: #0B75BE; }

h2.type1 {
  display: block; }
  h2.type1:after {
    content: "";
    width: 62px;
    height: 4px;
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: block;
    margin: 22px auto 0; }
  h2.type1 .jp {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 45px;
    color: #0B75BE;
    font-weight: bold;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      h2.type1 .jp {
        line-height: 30px;
        margin-bottom: 20px; } }
  h2.type1 .en {
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 49px;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      h2.type1 .en {
        font-size: 30px;
        font-size: 3rem;
        line-height: 37px; } }

h2.type2 {
  font-size: 34px;
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  line-height: 48px;
  color: #0B75BE;
  font-weight: bold;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    h2.type2 {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 40px; } }
  h2.type2:after {
    content: "";
    width: 62px;
    height: 4px;
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: block;
    margin: 22px auto; }

h2.type3 {
  font-size: 40px;
  font-size: 4rem;
  line-height: 59px;
  color: #0B75BE;
  font-weight: bold;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    h2.type3 {
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 40px; } }

.border-rainbow:after {
  content: "";
  display: block;
  height: 7px;
  width: 100%;
  background-image: url(../images/border.png);
  background-repeat: no-repeat;
  background-position: center; }
  @media only screen and (max-width: 767px) {
    .border-rainbow:after {
      background-image: url(../images/border_sp.png);
      background-size: 100%; } }

.btn {
  border-radius: 10px;
  background: linear-gradient(#EE780F, #EE5C0F);
  background-color: #EE780F;
  min-height: 80px;
  width: 600px;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  color: white;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1em;
  font-weight: bold;
  transition: .3s; }
  @media only screen and (max-width: 767px) {
    .btn {
      width: 100%;
      flex-direction: column;
      font-size: 22px;
      font-size: 2.2rem;
      line-height: 36px;
      max-width: 400px;
      min-height: 70px; }
      .btn .big {
        font-size: 24px;
        font-size: 2.4rem; }
      .btn .small {
        font-size: 20px;
        font-size: 2rem; } }
  @media only screen and (min-width: 768px) {
    .btn:hover {
      background: black; } }

.short-anime {
  animation-duration: .5s !important;
  -moz-animation-duration: .5s !important;
  -webkit-animation-duration: .5s !important;
  -o-animation-duration: .5s !important; }

.tempo1 {
  animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-delay: .1s;
  -o-animation-delay: .1s; }

.tempo2 {
  animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-delay: .3s;
  -o-animation-delay: .4s; }

.tempo3 {
  animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-delay: .3s;
  -o-animation-delay: .3s; }

.visible {
  visibility: visible !important; }

body.index .wrap {
  position: relative; }

body.index main {
  position: relative; }
  body.index main #mv {
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/mv.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.index main #mv {
        height: 100vh;
        z-index: 3000;
        position: relative;
        background-image: url(../images/mv_sp.jpg); } }
    body.index main #mv .tri {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      top: 0;
      left: 0; }
      body.index main #mv .tri img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto; }
    body.index main #mv .mv-slider {
      width: 700px;
      height: 463px;
      position: relative;
      z-index: 2;
      outline: none; }
      @media only screen and (max-width: 767px) {
        body.index main #mv .mv-slider {
          width: calc(100% - 32px);
          height: 124.2666vw; } }
      body.index main #mv .mv-slider .slide-arrow {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 30px;
        z-index: 3;
        background-image: url("../images/slide-arrow.png");
        height: 30px;
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        cursor: pointer; }
        @media only screen and (max-width: 767px) {
          body.index main #mv .mv-slider .slide-arrow {
            width: 20px; } }
        body.index main #mv .mv-slider .slide-arrow:hover {
          background-image: url("../images/slide-arrow_hov.png"); }
        body.index main #mv .mv-slider .slide-arrow.prev-arrow {
          left: 30px; }
        body.index main #mv .mv-slider .slide-arrow.next-arrow {
          right: 30px;
          transform: rotate(180deg); }
      body.index main #mv .mv-slider .slick-dots {
        bottom: 15px; }
        body.index main #mv .mv-slider .slick-dots li {
          width: 6px; }
      body.index main #mv .mv-slider li {
        outline: none;
        width: 100%;
        height: 100%;
        position: relative; }
        body.index main #mv .mv-slider li .bg-image {
          width: 100%;
          height: 100%; }
          body.index main #mv .mv-slider li .bg-image img {
            width: 100%; }
        body.index main #mv .mv-slider li .text {
          position: absolute;
          width: 660px;
          left: 0;
          right: 0;
          bottom: 66px;
          font-size: 22px;
          font-size: 2.2rem;
          letter-spacing: 0.1em;
          line-height: 45px;
          font-weight: bold;
          text-align: center;
          margin: auto; }
          @media only screen and (max-width: 767px) {
            body.index main #mv .mv-slider li .text {
              width: auto;
              font-size: 16px;
              font-size: 1.6rem;
              letter-spacing: 0em;
              line-height: 30px;
              bottom: 55px; } }
          @media screen and (max-width: 360px) {
            body.index main #mv .mv-slider li .text {
              font-size: 14px;
              font-size: 1.4rem;
              bottom: 30px; } }
        body.index main #mv .mv-slider li .link {
          background-color: #ED3D8D;
          color: white;
          transition: .3s;
          width: 300px;
          height: 60px;
          display: flex;
          align-items: center;
          justify-content: center;
          position: absolute;
          left: 0;
          right: 0;
          bottom: 48.5px;
          margin: auto;
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: 0.05em;
          font-weight: 900;
          border-radius: 30px;
          border: 2px solid #ED3D8D;
          outline: none; }
          @media only screen and (max-width: 767px) {
            body.index main #mv .mv-slider li .link {
              width: 70vw;
              bottom: 15vw;
              font-size: 15px;
              font-size: 1.5rem; } }
          body.index main #mv .mv-slider li .link:hover {
            background-color: white;
            color: #ED3D8D; }
            body.index main #mv .mv-slider li .link:hover:after {
              background-image: url(../images/arr-pk.png); }
          body.index main #mv .mv-slider li .link:after {
            content: "";
            width: 18px;
            height: 10px;
            background-image: url(../images/arr-wh.png);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 22px;
            margin: auto; }
            @media screen and (max-width: 374px) {
              body.index main #mv .mv-slider li .link:after {
                right: 10px; } }
    body.index main #mv .cont {
      width: 700px;
      height: 463px;
      z-index: 2;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.index main #mv .cont {
          width: calc(100% - 32px);
          height: 124.2666vw; } }
      body.index main #mv .cont figure img {
        width: 100%; }
      body.index main #mv .cont p {
        position: absolute;
        width: 660px;
        left: 0;
        right: 0;
        bottom: 66px;
        font-size: 22px;
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        line-height: 45px;
        font-weight: bold;
        text-align: center;
        margin: auto; }
        @media only screen and (max-width: 767px) {
          body.index main #mv .cont p {
            width: auto;
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0em;
            line-height: 30px;
            bottom: 55px; } }
        @media screen and (max-width: 360px) {
          body.index main #mv .cont p {
            font-size: 14px;
            font-size: 1.4rem;
            bottom: 30px; } }
  body.index main #about {
    background-color: white;
    position: relative;
    padding-top: 142px;
    padding-bottom: 30px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.index main #about {
        z-index: 2000;
        padding-bottom: 120px; } }
    body.index main #about .tri {
      position: absolute;
      width: 93%;
      height: 20.1388vw;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      pointer-events: none;
      z-index: 1; }
      @media only screen and (max-width: 767px) {
        body.index main #about .tri {
          top: 8vw;
          bottom: auto;
          width: 100%; } }
    body.index main #about .inner {
      position: relative;
      z-index: 2; }
      body.index main #about .inner h3 {
        margin-top: 15px;
        font-size: 24px;
        font-size: 2.4rem;
        letter-spacing: 0.1em;
        line-height: 65px;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          body.index main #about .inner h3 {
            font-size: 20px;
            font-size: 2rem;
            letter-spacing: 0.08em;
            line-height: 34px;
            margin-top: 30px; } }
        body.index main #about .inner h3 span {
          font-weight: bold; }
      body.index main #about .inner .text {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        line-height: 40px;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          body.index main #about .inner .text {
            line-height: 34px;
            margin-top: 14px; } }
        body.index main #about .inner .text span {
          font-weight: bold; }
  body.index main #service {
    background-image: url(../images/edge.png);
    background-position: center top -1px;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 258px; }
    @media only screen and (max-width: 767px) {
      body.index main #service {
        background-image: url(../images/edge_sp.png);
        padding-top: 190px; } }
    body.index main #service .inner ul {
      margin-top: 69px;
      margin-bottom: 116px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.index main #service .inner ul {
          flex-direction: column;
          margin-top: 40px;
          margin-bottom: 108px; } }
      body.index main #service .inner ul li {
        width: 31%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        margin-bottom: 35px;
        visibility: hidden; }
        @media only screen and (max-width: 767px) {
          body.index main #service .inner ul li {
            width: 100%;
            margin-bottom: 10px; } }
        body.index main #service .inner ul li.type1 {
          height: 310px;
          padding: 180px 10px 0;
          text-align: center; }
          @media only screen and (max-width: 767px) {
            body.index main #service .inner ul li.type1 {
              height: 34.666vw;
              padding: 7.5vw 3vw 0 31.5vw;
              text-align: left; } }
          body.index main #service .inner ul li.type1 h3 {
            font-size: 20px;
            font-size: 2rem;
            letter-spacing: 0.05em;
            line-height: 26px;
            font-weight: bold;
            margin-bottom: 12px; }
            @media only screen and (max-width: 767px) {
              body.index main #service .inner ul li.type1 h3 {
                font-size: 16px;
                font-size: 1.6rem;
                line-height: 22px;
                margin-bottom: 10px; } }
            @media screen and (max-width: 374px) {
              body.index main #service .inner ul li.type1 h3 {
                font-size: 13px;
                font-size: 1.3rem; } }
          body.index main #service .inner ul li.type1 p {
            font-family: "Montserrat", sans-serif;
            font-weight: 600;
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 15px; }
        body.index main #service .inner ul li.type2 {
          height: 130px;
          padding: 27px 10px 0 0; }
          @media only screen and (max-width: 767px) {
            body.index main #service .inner ul li.type2 {
              height: 34.666vw;
              padding: 7.5vw 3vw 0 31.5vw;
              text-align: left; } }
          body.index main #service .inner ul li.type2 h3 {
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.05em;
            line-height: 22px;
            font-weight: bold;
            margin-bottom: 10px; }
            @media only screen and (max-width: 767px) {
              body.index main #service .inner ul li.type2 h3 {
                font-size: 16px;
                font-size: 1.6rem;
                line-height: 22px;
                margin-bottom: 10px; } }
          body.index main #service .inner ul li.type2 p {
            font-family: "Montserrat", sans-serif;
            font-weight: 600;
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 15px; }
        body.index main #service .inner ul li:nth-child(1) {
          background-image: url(../images/service-01.png); }
          @media only screen and (max-width: 767px) {
            body.index main #service .inner ul li:nth-child(1) {
              background-image: url(../images/service-01_sp.png); } }
        body.index main #service .inner ul li:nth-child(2) {
          background-image: url(../images/service-02.png); }
          @media only screen and (max-width: 767px) {
            body.index main #service .inner ul li:nth-child(2) {
              background-image: url(../images/service-02_sp.png); } }
        body.index main #service .inner ul li:nth-child(3) {
          background-image: url(../images/service-03.png); }
          @media only screen and (max-width: 767px) {
            body.index main #service .inner ul li:nth-child(3) {
              background-image: url(../images/service-03_sp.png); } }
        body.index main #service .inner ul li:nth-child(4) {
          background-image: url(../images/service-04.png);
          padding-left: 135px; }
          @media only screen and (max-width: 767px) {
            body.index main #service .inner ul li:nth-child(4) {
              background-image: url(../images/service-04_sp.png);
              padding-left: 31.5vw; } }
        body.index main #service .inner ul li:nth-child(5) {
          background-image: url(../images/service-05.png);
          padding-left: 144px; }
          @media only screen and (max-width: 767px) {
            body.index main #service .inner ul li:nth-child(5) {
              background-image: url(../images/service-05_sp.png);
              padding-left: 31.5vw;
              padding-top: 9.6vw; } }
        body.index main #service .inner ul li:nth-child(6) {
          background-image: url(../images/service-06.png);
          padding-left: 120px; }
          @media only screen and (max-width: 767px) {
            body.index main #service .inner ul li:nth-child(6) {
              background-image: url(../images/service-06_sp.png);
              padding-left: 31.5vw;
              padding-top: 9.6vw; } }
  body.index main #product {
    background-color: white;
    padding-top: 135px; }
    @media only screen and (max-width: 767px) {
      body.index main #product {
        padding-top: 100px; } }
    body.index main #product .inner .slider {
      margin-top: 80px;
      margin-bottom: 60px;
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.index main #product .inner .slider {
          width: 100vw;
          margin-left: -16px;
          margin-top: 52px; } }
      body.index main #product .inner .slider .slick-arrow {
        top: 12vw;
        width: 15vw;
        height: 100%;
        z-index: 10; }
        body.index main #product .inner .slider .slick-arrow:before {
          content: ""; }
        body.index main #product .inner .slider .slick-arrow.slick-prev {
          left: 0; }
        body.index main #product .inner .slider .slick-arrow.slick-next {
          right: 0; }
      body.index main #product .inner .slider .spacer {
        width: 32%;
        outline: none; }
        @media only screen and (max-width: 767px) {
          body.index main #product .inner .slider .spacer {
            padding: 0 1.5vw; } }
        body.index main #product .inner .slider .spacer li {
          width: 100%;
          height: 120px;
          background-size: 100%;
          background-repeat: no-repeat;
          background-position: top center;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: .3s; }
          @media screen and (max-width: 1032px) {
            body.index main #product .inner .slider .spacer li {
              height: 11.8vw; } }
          @media only screen and (max-width: 767px) {
            body.index main #product .inner .slider .spacer li {
              height: 24vw; } }
          body.index main #product .inner .slider .spacer li.active {
            pointer-events: none; }
          body.index main #product .inner .slider .spacer li.item1 {
            background-image: url(../images/pro-g.png); }
            @media only screen and (max-width: 767px) {
              body.index main #product .inner .slider .spacer li.item1 {
                background-image: url(../images/pro-g_sp.png); } }
            @media only screen and (min-width: 768px) {
              body.index main #product .inner .slider .spacer li.item1:hover {
                background-image: url(../images/pro-1.png); } }
            body.index main #product .inner .slider .spacer li.item1.active {
              background-image: url(../images/pro-1.png); }
              @media only screen and (max-width: 767px) {
                body.index main #product .inner .slider .spacer li.item1.active {
                  background-image: url(../images/pro-1_sp.png); } }
          body.index main #product .inner .slider .spacer li.item2 {
            background-image: url(../images/pro-g.png); }
            @media only screen and (max-width: 767px) {
              body.index main #product .inner .slider .spacer li.item2 {
                background-image: url(../images/pro-g_sp.png); } }
            @media only screen and (min-width: 768px) {
              body.index main #product .inner .slider .spacer li.item2:hover {
                background-image: url(../images/pro-2.png); } }
            body.index main #product .inner .slider .spacer li.item2.active {
              background-image: url(../images/pro-2.png); }
              @media only screen and (max-width: 767px) {
                body.index main #product .inner .slider .spacer li.item2.active {
                  background-image: url(../images/pro-2_sp.png); } }
          body.index main #product .inner .slider .spacer li.item3 {
            background-image: url(../images/pro-g.png); }
            @media only screen and (max-width: 767px) {
              body.index main #product .inner .slider .spacer li.item3 {
                background-image: url(../images/pro-g_sp.png); } }
            @media only screen and (min-width: 768px) {
              body.index main #product .inner .slider .spacer li.item3:hover {
                background-image: url(../images/pro-3.png); } }
            body.index main #product .inner .slider .spacer li.item3.active {
              background-image: url(../images/pro-3.png); }
              @media only screen and (max-width: 767px) {
                body.index main #product .inner .slider .spacer li.item3.active {
                  background-image: url(../images/pro-3_sp.png); } }
          body.index main #product .inner .slider .spacer li.item4 {
            background-image: url(../images/pro-g.png); }
            @media only screen and (max-width: 767px) {
              body.index main #product .inner .slider .spacer li.item4 {
                background-image: url(../images/pro-g_sp.png); } }
            @media only screen and (min-width: 768px) {
              body.index main #product .inner .slider .spacer li.item4:hover {
                background-image: url(../images/pro-4.png); } }
            body.index main #product .inner .slider .spacer li.item4.active {
              background-image: url(../images/pro-4.png); }
              @media only screen and (max-width: 767px) {
                body.index main #product .inner .slider .spacer li.item4.active {
                  background-image: url(../images/pro-4_sp.png); } }
          body.index main #product .inner .slider .spacer li h3 {
            font-size: 18px;
            font-size: 1.8rem;
            line-height: 23px;
            text-align: center;
            font-weight: bold;
            color: #6F6F6F; }
            @media screen and (max-width: 950px) {
              body.index main #product .inner .slider .spacer li h3 {
                font-size: 16px;
                font-size: 1.6rem; } }
    body.index main #product .inner .cat-img {
      margin-bottom: 177px; }
      @media only screen and (max-width: 767px) {
        body.index main #product .inner .cat-img {
          margin-bottom: 112px;
          text-align: center; } }
  body.index main #solution {
    padding-top: 128px; }
    @media only screen and (max-width: 767px) {
      body.index main #solution {
        background-color: white;
        background-image: none;
        padding-top: 82px; } }
    body.index main #solution .inner h2 {
      margin-bottom: 52px; }
      @media only screen and (max-width: 767px) {
        body.index main #solution .inner h2 {
          margin-bottom: 0; } }
    body.index main #solution .white-inner {
      width: calc(100% - 32px);
      max-width: 1200px;
      margin: 0 auto;
      background-color: white;
      padding: 88px 0; }
      @media only screen and (max-width: 767px) {
        body.index main #solution .white-inner {
          width: 100%;
          padding: 50px 0 112px; } }
      body.index main #solution .white-inner .inner .box {
        display: flex;
        justify-content: space-between;
        margin-bottom: 72px; }
        @media only screen and (max-width: 767px) {
          body.index main #solution .white-inner .inner .box {
            margin-bottom: 60px; } }
        body.index main #solution .white-inner .inner .box:last-child {
          margin-bottom: 0; }
        body.index main #solution .white-inner .inner .box.leftimg {
          flex-direction: row-reverse; }
          @media only screen and (max-width: 767px) {
            body.index main #solution .white-inner .inner .box.leftimg {
              flex-direction: column; } }
          body.index main #solution .white-inner .inner .box.leftimg .texts .title-box {
            flex-direction: row-reverse;
            justify-content: space-between; }
        body.index main #solution .white-inner .inner .box.rightimg {
          flex-direction: row; }
          @media only screen and (max-width: 767px) {
            body.index main #solution .white-inner .inner .box.rightimg {
              flex-direction: column; } }
        body.index main #solution .white-inner .inner .box .texts {
          width: 53.46%; }
          @media only screen and (max-width: 767px) {
            body.index main #solution .white-inner .inner .box .texts {
              width: 100%; } }
          body.index main #solution .white-inner .inner .box .texts .title-box {
            display: flex;
            align-items: center; }
            body.index main #solution .white-inner .inner .box .texts .title-box .icon {
              width: 13.295%; }
              @media only screen and (max-width: 767px) {
                body.index main #solution .white-inner .inner .box .texts .title-box .icon {
                  width: 18%; } }
            body.index main #solution .white-inner .inner .box .texts .title-box .title {
              width: 83.52%;
              display: flex;
              align-items: center;
              justify-content: center;
              height: 72px;
              background-image: url(../images/circle.png);
              background-size: 100%;
              background-position: center;
              background-repeat: no-repeat;
              margin-top: 30px;
              visibility: hidden; }
              @media only screen and (max-width: 767px) {
                body.index main #solution .white-inner .inner .box .texts .title-box .title {
                  background-image: url(../images/circle_sp.png);
                  height: 30vw;
                  width: 80%;
                  margin-top: 0;
                  padding: 0 1.5em 0 1.3em;
                  justify-content: flex-start; } }
              body.index main #solution .white-inner .inner .box .texts .title-box .title .num {
                font-size: 30px;
                font-size: 3rem;
                line-height: 37px;
                color: #EE780F;
                font-family: "Montserrat", sans-serif;
                font-style: italic;
                font-weight: bold;
                margin-right: 20px; }
                @media only screen and (max-width: 767px) {
                  body.index main #solution .white-inner .inner .box .texts .title-box .title .num {
                    font-size: 24px;
                    font-size: 2.4rem;
                    line-height: 29px;
                    margin-right: 10px; } }
              body.index main #solution .white-inner .inner .box .texts .title-box .title .voice {
                font-weight: 900;
                font-size: 16px;
                font-size: 1.6rem;
                letter-spacing: 0.1em;
                line-height: 22px; }
                @media only screen and (max-width: 767px) {
                  body.index main #solution .white-inner .inner .box .texts .title-box .title .voice {
                    font-size: 14px;
                    font-size: 1.4rem;
                    letter-spacing: 0em; } }
                @media screen and (max-width: 374px) {
                  body.index main #solution .white-inner .inner .box .texts .title-box .title .voice {
                    font-size: 12px;
                    font-size: 1.2rem; } }
          body.index main #solution .white-inner .inner .box .texts h3 {
            font-size: 18px;
            font-size: 1.8rem;
            letter-spacing: 0.1em;
            line-height: 30px;
            font-weight: bold;
            margin-top: 23px;
            margin-bottom: 13px;
            visibility: hidden; }
            @media only screen and (max-width: 767px) {
              body.index main #solution .white-inner .inner .box .texts h3 {
                font-size: 16px;
                font-size: 1.6rem;
                line-height: 26px;
                margin-top: 26px;
                margin-bottom: 18px; } }
          body.index main #solution .white-inner .inner .box .texts .answer {
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.05em;
            line-height: 26px;
            visibility: hidden; }
        body.index main #solution .white-inner .inner .box .sol-img {
          width: 42.4%;
          visibility: hidden; }
          @media only screen and (max-width: 767px) {
            body.index main #solution .white-inner .inner .box .sol-img {
              width: 100%;
              margin-top: 28px; } }
      @media only screen and (max-width: 767px) {
        body.index main #solution .white-inner .inner .sp-aco {
          display: none; } }
      body.index main #solution .white-inner .inner .more {
        width: 176px;
        height: 50px;
        margin: -20px auto 0 auto;
        border: 3px solid #0B75BE;
        display: block;
        color: #0B75BE;
        line-height: 44px;
        text-align: center;
        font-size: 13px;
        font-size: 1.3rem;
        font-family: "Montserrat", sans-serif;
        font-weight: bold; }
    body.index main #solution #other {
      position: relative;
      margin-top: 90px; }
      @media only screen and (max-width: 767px) {
        body.index main #solution #other {
          background-image: url(../images/dot.png);
          background-size: 10px 10px;
          background-repeat: repeat;
          margin-top: 0;
          padding-top: 66px; } }
      body.index main #solution #other .tri {
        position: absolute;
        top: 20px;
        bottom: 0;
        margin: auto;
        width: 100%;
        pointer-events: none; }
        @media only screen and (max-width: 767px) {
          body.index main #solution #other .tri {
            top: -10vw; } }
      body.index main #solution #other .inner h4 {
        font-size: 30px;
        font-size: 3rem;
        letter-spacing: 0.1em;
        line-height: 45px;
        font-weight: bold;
        color: #0B75BE;
        text-align: center;
        margin-bottom: 34px; }
        @media only screen and (max-width: 767px) {
          body.index main #solution #other .inner h4 {
            font-size: 26px;
            font-size: 2.6rem;
            margin-bottom: 28px; } }
      body.index main #solution #other .inner ul {
        display: flex;
        justify-content: space-around;
        margin-bottom: 58px; }
        @media only screen and (max-width: 767px) {
          body.index main #solution #other .inner ul {
            flex-direction: column;
            margin-bottom: 45px; } }
        body.index main #solution #other .inner ul li {
          position: relative;
          width: 282px;
          height: 282px;
          display: flex;
          align-items: center;
          justify-content: center;
          visibility: hidden; }
          @media only screen and (max-width: 767px) {
            body.index main #solution #other .inner ul li {
              width: 266.63px;
              height: 170.46px;
              margin: 0 auto 5px; } }
          body.index main #solution #other .inner ul li .sq1 {
            width: 250px;
            height: 250px;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            z-index: 1; }
            @media only screen and (max-width: 767px) {
              body.index main #solution #other .inner ul li .sq1 {
                height: 143px; } }
          body.index main #solution #other .inner ul li .sq2 {
            width: 250px;
            height: 250px;
            background-color: white;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            transform: rotate(-8deg);
            -webkit-backface-visibility: hidden;
            z-index: 2; }
            @media only screen and (max-width: 767px) {
              body.index main #solution #other .inner ul li .sq2 {
                height: 143px; } }
          body.index main #solution #other .inner ul li h5 {
            z-index: 3;
            text-align: center;
            font-size: 19px;
            font-size: 1.9rem;
            letter-spacing: 0.1em;
            line-height: 35px;
            color: black;
            font-weight: 900; }
            @media only screen and (max-width: 767px) {
              body.index main #solution #other .inner ul li h5 {
                font-size: 18px;
                font-size: 1.8rem;
                line-height: 31px; } }
            body.index main #solution #other .inner ul li h5 span {
              font-size: 25px;
              font-size: 2.5rem; }
              @media only screen and (max-width: 767px) {
                body.index main #solution #other .inner ul li h5 span {
                  font-size: 22px;
                  font-size: 2.2rem; } }
          body.index main #solution #other .inner ul li:nth-child(1) .sq1 {
            background-color: #EE780F; }
          body.index main #solution #other .inner ul li:nth-child(1) .sq2 {
            border: 4px solid #EE780F; }
          body.index main #solution #other .inner ul li:nth-child(2) .sq1 {
            background-color: #3DB143; }
          body.index main #solution #other .inner ul li:nth-child(2) .sq2 {
            border: 4px solid #3DB143; }
          body.index main #solution #other .inner ul li:nth-child(3) .sq1 {
            background-color: #0B75BE; }
          body.index main #solution #other .inner ul li:nth-child(3) .sq2 {
            border: 4px solid #0B75BE; }
      body.index main #solution #other .inner .sodan {
        height: 119px;
        margin-bottom: 145px; }
        @media only screen and (max-width: 767px) {
          body.index main #solution #other .inner .sodan {
            height: 100px;
            margin-bottom: 92px; } }
  body.index main #open {
    background-color: white;
    padding-top: 152px; }
    @media only screen and (max-width: 767px) {
      body.index main #open {
        padding-top: 80px; } }
    body.index main #open .inner {
      max-width: 1240px; }
      body.index main #open .inner ul {
        display: flex;
        justify-content: space-between;
        margin-top: 62px;
        margin-bottom: 152px; }
        @media only screen and (max-width: 767px) {
          body.index main #open .inner ul {
            flex-direction: column;
            margin-bottom: 62px; } }
        body.index main #open .inner ul li {
          width: 49.032%;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.index main #open .inner ul li {
              width: calc(100% + 16px);
              margin-bottom: 32px; }
              body.index main #open .inner ul li:nth-child(1) {
                margin-left: -16px; } }
          body.index main #open .inner ul li figure {
            width: 100%; }
            body.index main #open .inner ul li figure img {
              width: 100%; }
          body.index main #open .inner ul li p {
            position: absolute;
            bottom: 14px;
            color: white;
            font-weight: bold;
            font-size: 20px;
            font-size: 2rem;
            letter-spacing: 0.1em;
            line-height: 30px;
            width: 100%;
            text-align: center; }
            @media screen and (max-width: 1050px) {
              body.index main #open .inner ul li p {
                font-size: 16px;
                font-size: 1.6rem;
                bottom: 10px; } }
            @media screen and (max-width: 940px) {
              body.index main #open .inner ul li p {
                bottom: 5px; } }
            @media only screen and (max-width: 767px) {
              body.index main #open .inner ul li p {
                font-size: 18px;
                font-size: 1.8rem;
                letter-spacing: 0em;
                line-height: 30px;
                bottom: 14px; } }
            @media screen and (max-width: 350px) {
              body.index main #open .inner ul li p {
                font-size: 14px;
                font-size: 1.4rem;
                bottom: 10px; } }
  body.index main #contact {
    padding: 92px 0 88px;
    background-image: url(../images/bottom-back.png);
    background-size: 400px;
    position: relative;
    overflow: hidden; }
    @media only screen and (max-width: 767px) {
      body.index main #contact {
        padding: 70px 0; } }
    body.index main #contact .tri {
      position: absolute;
      width: 100%;
      max-width: 1440px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      left: 0;
      right: 0;
      margin: auto;
      z-index: 0; }
      @media only screen and (max-width: 767px) {
        body.index main #contact .tri {
          top: 5vw;
          transform: translateY(0); } }
    body.index main #contact .inner {
      z-index: 1;
      position: relative; }
      body.index main #contact .inner .text1 {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 27px;
        font-weight: 900;
        color: #EE780F;
        text-align: center;
        margin-top: 8px; }
        @media only screen and (max-width: 767px) {
          body.index main #contact .inner .text1 {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 20px;
            margin-top: 14px; } }
      body.index main #contact .inner .tel {
        font-family: "Montserrat", sans-serif;
        font-style: italic;
        font-weight: bold;
        font-size: 60px;
        font-size: 6rem;
        letter-spacing: 0.05em;
        line-height: 73px;
        text-align: center;
        color: black;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 25px; }
        @media only screen and (max-width: 767px) {
          body.index main #contact .inner .tel {
            display: block;
            background-color: white;
            border: 3px solid #0B75BE;
            border-radius: 5px;
            line-height: 0;
            margin-top: 35px; } }
        body.index main #contact .inner .tel:before {
          content: "";
          width: 34px;
          height: 50px;
          background-image: url(../images/phone.png);
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          display: inline-block;
          margin-right: 10px; }
          @media only screen and (max-width: 767px) {
            body.index main #contact .inner .tel:before {
              display: none; } }
        @media only screen and (max-width: 767px) {
          body.index main #contact .inner .tel a {
            display: block;
            width: 90%;
            margin: 4vw auto 3vw; } }
        @media only screen and (max-width: 767px) {
          body.index main #contact .inner .tel .tap {
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: 0em;
            line-height: 28px;
            color: white;
            background-color: #0B75BE;
            display: block;
            font-family: "NotoSansCJKjp", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            font-style: normal; } }
      body.index main #contact .inner .company {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin-top: 22px;
        margin-bottom: 15px; }
        @media only screen and (max-width: 767px) {
          body.index main #contact .inner .company {
            margin-top: 48px;
            margin-bottom: 24px; } }
        body.index main #contact .inner .company p {
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: 0.1em; }
        body.index main #contact .inner .company figure {
          width: 151px; }
          body.index main #contact .inner .company figure a {
            transition: .3s; }
            body.index main #contact .inner .company figure a:hover {
              opacity: 0.6; }
      body.index main #contact .inner .address {
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.1em;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          body.index main #contact .inner .address {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 22px; } }
        @media screen and (max-width: 374px) {
          body.index main #contact .inner .address {
            font-size: 12px;
            font-size: 1.2rem; } }
      body.index main #contact .inner .contact {
        margin-top: 28px;
        height: 80px; }
        @media only screen and (max-width: 767px) {
          body.index main #contact .inner .contact {
            margin-top: 34px; } }
