@charset "UTF-8";
/* CSS Document */
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  to {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* タイトル */
.flexTitle {
  display: -ms-flexbox;
  /* prefix -> -webkit- */
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: flex-end;
  /* no prefix */
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #00a4e1;
  margin-bottom: 1.8em;
}
.flexTitle .h2default {
  border: none;
  margin-bottom: 0;
}
.flexTitle .linkarrow {
  margin-bottom: 0.5em;
}

/* メインビジュアル */
.mainvisual_home {
  position: relative;
  background-color: white;
}
.mainvisual_home .inner {
  max-width: 1300px;
  padding: 2em 0 4.5em;
}
@media (min-width: 751px) {
  .mainvisual_home .inner {
    display: -ms-flexbox;
    /* prefix -> -webkit- */
    display: -webkit-flex;
    -webkit-flex-direction: row-reverse;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    /* no prefix */
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    padding: 2em 0;
  }
}
@media (max-width: 750px) {
  .mainvisual_home .imgbox {
    margin-top: 1em;
  }
}
@media (min-width: 751px) {
  .mainvisual_home .imgbox {
    -webkit-flex: 0 1 55%;
    flex: 0 1 55%;
    width: 55%;
    max-width: 55%;
  }
}
@media (min-width: 751px) {
  .mainvisual_home .textbox {
    -webkit-flex: 0 1 45%;
    flex: 0 1 45%;
    width: 45%;
    max-width: 45%;
  }
}
.mainvisual_home .textbox .title, .mainvisual_home .textbox p {
  font-weight: bold;
  text-align: center;
}
.mainvisual_home .textbox .title {
  color: #00a4e1;
  font-size: 2.5em;
  letter-spacing: 0;
  line-height: 1.37;
}
@media (max-width: 750px) {
  .mainvisual_home .textbox .title {
    font-size: 1.78em;
  }
}
.mainvisual_home .linkbox_l {
  font-size: 1.3em;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 750px) {
  .mainvisual_home .linkbox_l {
    width: 62.6vw;
    max-width: 62.6vw;
    margin-top: 1em;
  }
}
@media (min-width: 751px) {
  .mainvisual_home .linkbox_l {
    width: 13em;
    max-width: 13em;
    margin-top: 2em;
  }
}
.mainvisual_home .scroll {
  position: absolute;
  right: 0;
  bottom: -4em;
  left: 0;
  width: 6em;
  height: 8em;
  text-align: center;
  display: inline-block;
  overflow: hidden;
  font-size: 0.75em;
  padding-bottom: 4em;
  margin: auto;
  z-index: 2;
}
.mainvisual_home .scroll::after {
  content: "";
  position: absolute;
  top: 2em;
  right: 0;
  left: 0;
  display: inline-block;
  width: 1px;
  height: 4em;
  background-color: #00a4e1;
  animation: sdl 2.5s cubic-bezier(1, 0, 0, 1) infinite;
  margin: auto;
}

body.en-US .mainvisual_home .linkbox_l {
  width: 20em;
  max-width: 20em;
}
@media (max-width: 750px) {
  body.en-US .mainvisual_home .linkbox_l {
    width: 100%;
    max-width: 100%;
  }
}

/* スペース */
section {
  padding: 4.3em 0;
}
@media (max-width: 750px) {
  section {
    padding: 13.33vw 0;
  }
}

/* 個別 */
@media (max-width: 750px) {
  .producttab .tab-area {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5em;
  }
}
@media (min-width: 751px) {
  .producttab .tab-area .tab {
    width: calc(33.333% - .66em);
  }
}

.linkWrap a {
  background: url(../images/top/links_01.png) no-repeat center right 1em;
  background-size: auto 90%;
  background-color: white;
}
@media (min-width: 751px) {
  .linkWrap a:first-of-type {
    background-size: auto 110%;
  }
}
.linkWrap a:nth-of-type(2) {
  background-image: url(../images/top/links_02.png);
}
@media (min-width: 751px) {
  .linkWrap a:nth-of-type(2) {
    background-size: auto 110%;
  }
}
.linkWrap a:nth-of-type(3) {
  background-image: url(../images/top/links_03.png);
}
.linkWrap a:last-of-type {
  background-image: url(../images/top/links_04.png);
}
.linkWrap a:hover {
  opacity: 0.8;
}
