@charset "UTF-8";
/*------------------------------------
共通部分
------------------------------------*/
body {
  font-family: 'Noto Sans JP', 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'ヒラギノ角ゴ Pro W3', sans-serif;
  font-size: 100%;
  line-height: 1.8em;
  margin: 0;
  padding: 0;
  color: #333;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #0095dd;
}

img {
  border: 0;
}

/* フォント設定 */
html body .header__nav a,
html body .hamb-menu a,
html body .footer-contact__heading,
html body h1,
html body h2,
html body h2.emphasis,
html body h3 {
  font-family: 'Noto Sans JP';
}

/* Clearfix */
.clearfix:before,
.clearfix:after {
  display: table;
  content: ' ';
}

.clearfix:after {
  clear: both;
}

/* 横幅 SP用 */
@media screen and (max-width: 768px) {
  .container {
    box-sizing: border-box;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 4%;
    padding-bottom:2em;
  }
}

/* 横幅 TL・PC用 */
@media screen and (min-width: 769px) {
  .container {
    box-sizing: border-box;
    max-width: 1100px;
    /* 1040px */
    margin: 0 auto;
    /*padding: 0 30px;*/
  }
}

/* 非表示 SP用 */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* 非表示 TL・PC用 */
@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
  .sp-only-menu {
    display: none;
    visibility: hidden;
  }
}

/*------------------------------------
ヘッダー共通
------------------------------------*/
/* ヘッダー SP用 */
@media screen and (max-width: 768px) {
  .header__wrap {
    display: flex;
    height: 70px;
    justify-content: space-between;
  }
  .header-top-only {
    background: url(../img/bg_header.png) no-repeat;
    background-size: 46% 100%;
  }
  .header__logo {
    width: 178px;
    padding-left: 15px;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  .header__logo {
    width: 35%;
  }
  .header__logo img {
    width: 100%;
  }
}

/* ヘッダー TL・PC用 */
@media screen and (min-width: 769px) {
  .header__wrap {
    display: flex;
    max-width: 1240px;
    height: 80px;
    margin: 0 auto;
    justify-content: space-between;
  }
  .header-top-only {
    background: url(../img/bg_header.png) no-repeat;
    background-size: 46% 100%;
  }
  .header__logo {
    width: 178px;
    padding-left: 15px;
  }
  .header__nav {
    margin: 0 15px 0 auto;
  }
}

@media screen and (min-width: 769px) and (min-width: 1240px) {
  .header__wrap {
    max-width: 100%;
  }
  .header__logo {
    margin-left: calc(10vw - 80px);
  }
}

@media screen and (min-width: 769px) and (min-width: 1400px) {
  .header__nav {
    padding-right: calc(5vw - 50px);
  }
  .header__logo {
    margin-left: calc(25vw - 200px);
  }
}

@media screen and (min-width: 769px) and (min-width: 1600px) {
  .header__nav {
    padding-right: calc(10vw - 50px);
  }
}

@media screen and (min-width: 769px) and (min-width: 1800px) {
  .header__nav {
    padding-right: calc(25vw - 250px);
  }
}

@media screen and (min-width: 769px) {
  .header__nav--subnavi {
    display: flex;
    margin: 10px 0 0 0;
    padding: 0;
    justify-content: flex-end;
  }
  .header__nav--subnavi li {
    font-size: 12px;
    margin: 0 0 0 1em;
    list-style-type: none;
  }
  .header__nav--subnavi a {
    padding-bottom: 3px;
    text-decoration: none;
    color: #666;
  }
  .header__nav--glonavi {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
  }
  .header__nav--glonavi li {
    font-size: 14px;
    margin: 0 0 0 1em;
    list-style-type: none;
  }
  .header__nav--glonavi a {
    padding-bottom: 3px;
    text-decoration: none;
    color: #000;
  }
  .header__nav--glonavi a:hover {
    border-bottom: solid 3px #0095dd;
  }
  .header__nav--glonavi a.underline {
    border-bottom: solid 3px #0095dd;
  }
}

@media screen and (min-width: 769px) and (min-width: 900px) {
  .header__nav--subnavi li {
    margin: 0 0 0 1.5em;
  }
  .header__nav--glonavi li {
    margin: 0 0 0 1.5em;
  }
}

@media screen and (min-width: 769px) and (min-width: 1040px) {
  .header__nav {
    margin: 0 30px 0 auto;
  }
  .header__nav--subnavi li {
    margin: 0 0 0 2em;
  }
  .header__nav--glonavi li {
    margin: 0 0 0 2em;
  }
}

@media screen and (min-width: 769px) {
  .bottom-arrow {
    position: relative;
    padding-right: 1em;
  }
  .bottom-arrow:before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    margin-top: -6px;
    content: '';
    transform: rotate(135deg);
    border: 0;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
  }
}

/*------------------------------------
ハンバーガーメニュー共通
------------------------------------*/
/* ハンバーガーメニュー SPのみ */
@media screen and (max-width: 768px) {
  .hamburger {
    position: fixed;
    z-index: 11;
    top: 18px;
    right: 17px;
    display: block;
    width: 54px;
    height: 43px;
    cursor: pointer;
  }
  .hamburger span {
    position: absolute;
    left: 12px;
    display: block;
    width: 30px;
    border-bottom: solid 3px #333;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  .hamburger.active span:nth-child(1) {
    top: 20px;
    left: 12px;
    transform: rotate(-45deg);
    border-bottom: solid 3px #fff;
  }
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 20px;
    transform: rotate(45deg);
    border-bottom: solid 3px #fff;
  }
  .gnav {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 320px;
    height: 100%;
    transition: all .8s;
    transform: translateX(100%);
    -webkit-overflow-y-scrolling: touch;
  }
  .gnav.active {
    transform: translateX(0%);
  }
  .hamb-title {
    height: 80px;
    background-color: #333;
  }
  .hamb-menu input {
    display: none;
  }
  .hamb-menu .accshow {
    overflow: hidden;
    height: 0;
  }
  .hamb-menu .cssacc:checked + .accshow {
    height: auto;
  }
  .hamb-menu p {
    font-size: .94em;
    line-height: 55px;
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    cursor: pointer;
    border-top: solid 1px #fff;
    background-color: #333;
  }
  .hamb-menu a {
    text-decoration: none;
    color: #fff;
  }
  .accshow p {
    font-size: .94em;
    line-height: 55px;
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    cursor: pointer;
    color: #333;
    border-bottom: solid 1px #aeaeae;
    background-color: #fff;
  }
  .accshow p:nth-last-child(1) {
    border-bottom: none;
  }
  .accshow a {
    text-decoration: none;
    color: #333;
  }
  .arrow-bottom:before {
    position: absolute;
    top: 50%;
    right: 6%;
    width: 10px;
    height: 10px;
    margin-top: -8px;
    content: '';
    transform: translateX(-50%) rotate(135deg);
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
  .arrow-right:before {
    position: absolute;
    top: 50%;
    right: 6%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-right: 8px;
    content: '';
    transform: rotate(45deg);
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
  .arrow-right-black:before {
    position: absolute;
    top: 50%;
    right: 6%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-right: 8px;
    content: '';
    transform: rotate(45deg);
    border: 0;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
  }
}

/*------------------------------------
メガメニュー共通
------------------------------------*/
/* メガメニュー TL・PC用のみ */
@media screen and (min-width: 769px) {
  .mega {
    width: 100%;
    background-color: #3d3d3d;
  }
  .mega__wrap {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
  }
  .mega__heading {
    width: 50%;
    margin: 42px 0 37px;
    padding: 0 30px 0 20px;
    border-right: solid 1px #fff;
  }
  .mega__heading dl {
    margin: 0;
    color: #fff;
  }
  .mega__heading dt {
    font-size: 36px;
  }
  .mega__heading dd {
    line-height: 1.75em;
    margin: 1.5em 0 0 0;
  }
  .mega__link {
    width: 50%;
    margin: 37px 0;
  }
  .mega__link ul {
    margin-top: 0;
    padding-left: 35px;
    list-style-type: none;
  }
  .mega__link li {
    line-height: 2em;
    color: #fff;
  }
  .mega__link a {
    position: relative;
    display: inline-block;
    width: 80%;
    text-decoration: none;
    color: #fff;
  }
  .mega__link a:hover {
    text-decoration: underline;
  }
  .mega__link a:before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    content: '';
    transform: rotate(45deg);
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  .mega__manual {
    position: absolute;
    z-index: 20;
    display: flex;
    opacity: .88;
  }
  .mega__contents {
    position: absolute;
    z-index: 20;
    display: flex;
    opacity: .88;
  }
}

/*------------------------------------
TOPページ共通
------------------------------------*/
/* h2 SP */
@media screen and (max-width: 768px) {
  h2.top-heading {
    font-size: 6vw;
  }
  h2.top-heading span {
    font-size: 3vw;
    padding-left: 1em;
    color: #999;
  }
}

/* h2 PC */
@media screen and (min-width: 769px) {
  h2.top-heading {
    font-size: 44px;
  }
  h2.top-heading span {
    font-size: 22px;
    padding-left: 1em;
    color: #999;
  }
}

/* 青いボタン　*/
.button-blue {
  position: relative;
  width: 243px;
  height: 48px;
  background-color: #0095dd;
}

.button-blue span {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 48px;
  margin: auto;
  content: '';
  background-color: #000;
}

.button-blue a {
  font-size: 14px;
  font-weight: bold;
  line-height: 48px;
  display: block;
  padding-left: 15%;
  text-decoration: none;
  color: #fff;
}

.button-blue a:after {
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  width: 11px;
  height: 11px;
  margin: auto;
  content: '';
  transform: rotate(45deg) skew(-15deg, -15deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.button-blue a:hover:after {
  border-top: solid 2px #0095dd;
  border-right: solid 2px #0095dd;
}

/* 白いボタン　*/
.button-white {
  /*width: 48px;*/
  height: 42px;
}

.button-white a {
  font-size: 16px;
  font-weight: bold;
  line-height: 42px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: solid 3px #fff;
}

.button-white a:hover {
  border: solid 3px #000;
  background-color: #000;
}

/* 黒いボタン　*/
.button-black {
  width: 48px;
  height: 42px;
  background-color: #fff;
}

.button-black a {
  font-size: 16px;
  font-weight: bold;
  line-height: 42px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000;
  border: solid 3px #000;
}

.button-black a:hover {
  color: #fff;
  border: solid 3px #000;
  background-color: #000;
}

/* 青・白・黒ボタン SP（大きさを90%に変更）　*/
@media screen and (max-width: 768px) {
  .button-blue {
    width: 219px;
    height: 43px;
  }
  .button-blue span {
    width: 47px;
    height: 43px;
  }
  .button-blue a {
    line-height: 43px;
    padding-left: 13%;
  }
  .button-blue a:after {
    right: 23px;
    width: 10px;
    height: 10px;
  }
  .button-white {
    /*width: 43px;*/
    height: 38px;
  }
  .button-white a {
    line-height: 38px;
  }
  .button-black {
    width: 43px;
    height: 38px;
  }
  .button-black a {
    line-height: 38px;
  }
}

/*------------------------------------
TOPページ
------------------------------------*/
/* TOPメインビジュアル SP用のみ */
@media screen and (max-width: 768px) {
  .swiper-slide {
    overflow: hidden;
    padding-left: 4%;
    background: url(../img/bg_mv.png) no-repeat;
    background-size: 46% 80%;
  }
  .slide-img {
    display: flex;
    height: 48vw;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  .swiper-slide {
    background-size: 46% 70%;
  }
}

/* TOPメインビジュアル TL・PC用のみ */
@media screen and (min-width: 769px) {
  .swiper-slide {
    overflow: hidden;
    padding-left: 30px;
    background: url(../img/bg_mv.png) no-repeat;
    background-size: 46% 85%;
  }
  .slide-img {
    display: flex;
    height: 48vw;
    max-height: 563px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

@media screen and (min-width: 769px) and (min-width: 1240px) {
  .swiper-slide {
    padding-left: 100px;
    background-size: 46% 90%;
  }
  .slide-img {
    width: 1140px;
    margin: 0 auto;
    background-position: right;
  }
}

/* TOP 斜めの背景 SP用 */
@media screen and (max-width: 768px) {
  main.top-only {
    position: relative;
    overflow: hidden;
    margin-bottom: -42px;
  }
  main.top-only:before {
    position: absolute;
    z-index: -1;
    top: 240px;
    bottom: 0;
    content: '';
    border-width: 350vw 100vw 0 0;
    border-style: solid;
    border-color: transparent #e8f6fc transparent transparent;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  main.top-only:before {
    border-width: 450vw 100vw 0 0;
  }
}

/* TOP 斜めの背景 PC用 */
@media screen and (min-width: 769px) {
  main.top-only {
    position: relative;
    overflow: hidden;
    margin-bottom: -36px;
  }
  main.top-only:before {
    position: absolute;
    z-index: -1;
    top: 190px;
    bottom: 0;
    content: '';
    border-width: 180vw 100vw 0 0;
    border-style: solid;
    border-color: transparent #e8f6fc transparent transparent;
  }
}

@media screen and (min-width: 769px) and (min-width: 900px) {
  main.top-only:before {
    border-width: 150vw 100vw 0 0;
  }
}

@media screen and (min-width: 769px) and (min-width: 1400px) {
  main.top-only:before {
    border-width: 120vw 100vw 0 0;
  }
}

@media screen and (min-width: 769px) and (min-width: 1700px) {
  main.top-only:before {
    border-width: 100vw 100vw 0 0;
  }
}

@media screen and (min-width: 769px) and (min-width: 2000px) {
  main.top-only:before {
    border-width: 80vw 100vw 0 0;
  }
}

/* TOP Professional SP用 */
@media screen and (max-width: 768px) {
  .topStrength {
    margin-top: 4.5vw;
  }
  .topStrength__wrap {
    display: flex;
    flex-direction: column;
  }
  .topStrength__wrap--text {
    width: 100%;
  }
  .topStrength__wrap--text h2 {
    margin: 0;
    font-size: 2.2rem;
  }
  .topStrength__wrap--text h2 img {
    width: 100%;
  }
  .topStrength__wrap--text h2.text-slide-sp {
    display: flex;
    overflow-x: hidden;
    height: 17vw;
    padding-top: 32px;
  }
  .topStrength__wrap--text h2.text-slide-sp span {
    font-size: 13vw;
    font-size: bold;
    position: relative;
    left: 100%;
    white-space: nowrap;
    color: #e3f4fb;
  }
  .topStrength__wrap--text .pro-img {
    float: left;
    width: 29%;
    margin: 0 4% 30px 0;
  }
  .topStrength__wrap--text p {
    line-height: 1.5em;
    overflow: hidden;
    margin: 0;
  }
  .topStrength__wrap--text p.text-performance {
    font-size: 3.5vw;
    font-weight: bold;
    clear: both;
    margin: 1em 0 .5em;
  }
}

@media screen and (max-width: 768px) and (max-width: 600px) {
  .topStrength__wrap--text h2.text-slide-sp {
    height: 17vw;
    padding-top: 26px;
  }
  .topStrength__wrap--text h2.text-slide-sp span {
    font-size: 13vw;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  .topStrength__wrap--text h2.text-slide-sp {
    height: 19.5vw;
    padding-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .topStrength__button {
    margin: 3vw 0 0 auto;
  }
  .topStrength__wrap2 {
    display: flex;
    flex-direction: column;
    margin-top: 8vw;
  }
  .topStrength__wrap2 h3 {
    font-size: 4.8vw;
    margin: 0;
    color: #fff;
  }
  .topStrength__wrap2 h3 span {
    font-size: 2.8vw;
    display: block;
    margin-top: 2vw;
  }
  .topStrength__wrap2 p {
    line-height: 1.6em;
    color: #fff;
  }
  .topStrength__wrap2--manual {
    width: 75%;
    height: 50vw;
    margin: 0 auto 2vw;
    padding: 8vw 3vw 0 6vw;
    background: url(../img/bg_manual.jpg) no-repeat;
    background-size: 100% 100%;
  }
  .topStrength__wrap2--contents {
    width: 75%;
    height: 50vw;
    margin: 0 auto 2vw;
    padding: 8vw 3vw 0 6vw;
    background: url(../img/bg_contents.jpg) no-repeat;
    background-size: 100% 100%;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  .topStrength__wrap2 h3 {
    font-size: 7vw;
  }
  .topStrength__wrap2 h3 span {
    font-size: 4vw;
  }
  .topStrength__wrap2 p {
    font-size: 3.6vw;
  }
  .topStrength__wrap2--manual {
    width: 100%;
    height: 66.7vw;
    padding: 12vw 4vw 0 8vw;
  }
  .topStrength__wrap2--contents {
    width: 100%;
    height: 66.7vw;
    padding: 12vw 4vw 0 8vw;
  }
}

/* TOP Professional TL・PC用 */
@media screen and (min-width: 769px) {
  .topStrength {
    margin-top: 45px;
  }
  .topStrength__wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 80px;
  }
  .topStrength__wrap--image {
    width: 29%;
    margin-top: 13px;
  }
  .topStrength__wrap--image img {
    width: 100%;
  }
  .topStrength__wrap--text {
    width: 67%;
    margin-left: 4%;
  }
  .topStrength__wrap--text h2 {
    margin: 0;
  }
  .topStrength__wrap--text h2 img {
    width: 100%;
    max-width: 590px;
  }
  .topStrength__wrap--text h2.text-slide-pc {
    display: flex;
    overflow-x: hidden;
    height: 115px;
    padding-top: 30px;
  }
  .topStrength__wrap--text h2.text-slide-pc span {
    font-size: 6rem;
    font-size: bold;
    position: relative;
    left: 100%;
    white-space: nowrap;
    color: #e3f4fb;
  }
  .topStrength__wrap--text p {
    margin-top: 0;
  }
  .topStrength__wrap--text p.text-performance {
    font-size: 2.3vw;
    font-weight: bold;
    margin: 1em 0 .5em;
  }
  .topStrength__button {
    margin: 25px 0 0 auto;
  }
}

@media screen and (min-width: 769px) and (min-width: 1240px) {
  .topStrength__wrap--image {
    width: 300px;
    margin-top: 15px;
  }
  .topStrength__wrap--text {
    max-width: 695px;
    margin-left: 45px;
  }
  .topStrength__wrap--text p.text-performance {
    font-size: 24px;
  }
}

@media screen and (min-width: 769px) {
  .topStrength__wrap2 {
    display: flex;
    flex-direction: row;
    margin-top: 80px;
    margin-bottom: 80px;
    justify-content: space-between;
  }
  .topStrength__wrap2 h3 {
    font-size: 4.6vw;
    margin: 0;
    color: #fff;
  }
  .topStrength__wrap2 h3 span {
    font-size: 2.2vw;
    display: block;
    margin-top: 2vw;
  }
  .topStrength__wrap2 p {
    line-height: 1.6em;
    color: #fff;
  }
  .topStrength__wrap2--manual {
    width: 49%;
    height: 33vw;
    max-height: 367px;
    padding: 5vw 1.5vw 0 3vw;
    background: url(../img/bg_manual.jpg) no-repeat;
    background-size: 100% 100%;
  }
  .topStrength__wrap2--contents {
    width: 49%;
    height: 33vw;
    max-height: 367px;
    padding: 5vw 1.5vw 0 3vw;
    background: url(../img/bg_contents.jpg) no-repeat;
    background-size: 100% 100%;
  }
}

@media screen and (min-width: 769px) and (min-width: 900px) {
  .topStrength__wrap2--manual {
    padding: 70px 40px 0;
  }
  .topStrength__wrap2--contents {
    padding: 70px 40px 0;
  }
  .topStrength__wrap2 h3 {
    font-size: 42px;
  }
  .topStrength__wrap2 h3 span {
    font-size: 20px;
    margin-top: 18px;
  }
}

@media screen and (min-width: 769px) and (min-width: 1100px) {
  .topStrength__wrap2 h3 {
    font-size: 46px;
  }
  .topStrength__wrap2 h3 span {
    font-size: 22px;
    margin-top: 20px;
  }
  .topStrength__wrap2 p {
    line-height: 1.8em;
  }
  .topStrength__wrap2--manual {
    padding: 115px 60px 0;
  }
  .topStrength__wrap2--contents {
    padding: 115px 60px 0;
  }
}

/* TOP MANUAL MENU SP用 */
@media screen and (max-width: 768px) {
  .topManual {
    margin-top: 12.6vw;
  }
  .topManual__wrap {
    display: flex;
    flex-direction: column;
    margin-top: 4.8vw;
  }
  .topManual__wrap--box {
    display: flex;
    width: 75%;
    height: 27.5vw;
    margin: 0 auto 2vw;
    padding: 0 30px 0 5vw;
    background: url(../img/bg_manual_box.png) no-repeat;
    background-size: 100% 100%;
    align-items: center;
  }
  .topManual__wrap--box img {
    width: 23%;
    max-width: 85px;
  }
  .topManual__wrap--box span {
    font-size: 3.5vw;
    font-weight: bold;
    padding-left: 10px;
  }
  .topManual__button {
    margin: 0 0 0 auto;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  .topManual__wrap--box {
    width: 100%;
    height: 37vw;
    padding: 0 30px 0 7vw;
  }
  .topManual__wrap--box span {
    font-size: 4.5vw;
  }
}

/* TOP MANUAL MENU TL・PC用 */
@media screen and (min-width: 769px) {
  .topManual {
    margin-top: 126px;
  }
  .topManual__wrap {
    display: flex;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .topManual__wrap--box {
    display: flex;
    width: 49%;
    height: 18vw;
    max-height: 200px;
    margin-bottom: 2vw;
    padding: 0 30px 0 4.4vw;
    background: url(../img/bg_manual_box.png) no-repeat;
    background-size: 100% 100%;
    align-items: center;
  }
  .topManual__wrap--box img {
    width: 23%;
    max-width: 85px;
  }
  .topManual__wrap--box span {
    font-size: 2.5vw;
    font-weight: bold;
    padding-left: 10px;
  }
}

@media screen and (min-width: 769px) and (min-width: 1000px) {
  .topManual__wrap--box {
    padding: 0 30px 0 57px;
  }
  .topManual__wrap--box span {
    font-size: 28px;
  }
}

@media screen and (min-width: 769px) {
  .topManual__button {
    margin: 0 0 0 auto;
  }
}

/* TOP CONTENTS SP用 */
@media screen and (max-width: 768px) {
  .topContents {
    margin-top: 13.6vw;
  }
  .topContents__wrap {
    display: flex;
    margin-top: 4.8vw;
    padding-bottom: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .topContents__wrap--box {
    position: relative;
    width: 49%;
    margin-bottom: 8vw;
    background-color: #eee;
  }
  .topContents__wrap--box img {
    width: 100%;
    vertical-align: bottom;
  }
  .topContents__wrap--box h3 {
    font-size: 2.8vw;
    margin: 1em 0;
    text-align: center;
  }
  .topContents__wrap--box p {
    font-size: 2.5vw;
    line-height: 1.5em;
    margin: 1em .2em 3.5em .4em;
    color: #000;
  }
  .topContents__button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  .topContents__wrap {
    display: flex;
    flex-direction: column;
  }
  .topContents__wrap--box {
    width: 90%;
    margin-right: auto;
    margin-bottom: 10vw;
    margin-left: auto;
  }
  .topContents__wrap--box h3 {
    font-size: 4.4vw;
  }
  .topContents__wrap--box p {
    font-size: 3.4vw;
    margin: 1em .4em 3.5em .8em;
  }
}

/* TOP CONTENTS TL・PC用 */
@media screen and (min-width: 769px) {
  .topContents {
    margin-top: 136px;
  }
  .topContents__wrap {
    display: flex;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .topContents__wrap--box {
    position: relative;
    width: 49%;
    margin-bottom: 70px;
    background-color: #eee;
  }
  .topContents__wrap--box img {
    width: 100%;
    vertical-align: bottom;
  }
  .topContents__wrap--box h3 {
    margin: 1em 0;
    text-align: center;
  }
  .topContents__wrap--box h3 span {
    letter-spacing: -.1em;
  }
  .topContents__wrap--box p {
    font-size: 14px;
    line-height: 1.6em;
    margin: 1em .25em 3.5em .5em;
    color: #000;
  }
  .topContents__button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}

@media screen and (min-width: 769px) and (min-width: 900px) {
  .topContents__wrap:after {
    display: block;
    width: 32%;
    content: '';
  }
  .topContents__wrap--box {
    width: 32%;
  }
}

@media screen and (min-width: 769px) and (min-width: 1100px) {
  .topContents__wrap--box h3 span {
    letter-spacing: 0;
  }
  .topContents__wrap--box p {
    margin: 1em .5em 3.5em 1em;
  }
}

/*------------------------------------
ページトップ共通
------------------------------------*/
/* ページトップ SP用 */
@media screen and (max-width: 768px) {
  .pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
  }
  .pagetop img {
    width: 60px;
  }
  .pagetop img:hover {
    cursor: pointer;
    opacity: .7;
  }
}

/* ページトップ TL・PC用 */
@media screen and (min-width: 769px) {
  .pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
  }
  .pagetop img {
    width: 60px;
  }
  .pagetop img:hover {
    cursor: pointer;
    opacity: .7;
  }
}

/*------------------------------------
フッター共通
------------------------------------*/
/* コンタクト SP用 */
@media screen and (max-width: 768px) {
  .footer-contact {
    height: 50vw;
    text-align: center;
    background-color: #eceaea;
  }
  .footer-contact__heading {
    font-size: 5.6vw;
    font-weight: bold;
    padding-top: 8.5vw;
  }
  .footer-contact__text {
    font-size: 16px;
    line-height: 1.5em;
    margin: auto .1em;
    color: #666;
  }
  .footer-contact__button {
    width: 350px;
    height: 70px;
    margin: 4.4vw auto 6vw;
    background: url(../img/inquiry_bottan.png) no-repeat center;
    background-size: 100% 100%;
  }
  .footer-contact__button a {
    font-size: 3.2vw;
    line-height: 70px;
    display: block;
    color: #fff;
  }
  .footer-contact__button:hover {
    opacity: .75;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  .footer-contact {
    height: 65vw;
  }
  .footer-contact__text {
    font-size: 3.6vw;
    margin: auto .4em auto .8em;
  }
  .footer-contact__button {
    width: 350px;
    height: 70px;
    background-size: 75% 75%;
  }
  .footer-contact__button a {
    font-size: 4vw;
    line-height: 70px;
  }
}

@media screen and (max-width: 768px) and (max-width: 400px) {
  .footer-contact__text {
    font-size: 4vw;
  }
  .footer-contact__button a {
    font-size: 4.5vw;
  }
}

/* コンタクト TL・PC用 */
@media screen and (min-width: 769px) {
  .footer-contact {
    height: 365px;
    text-align: center;
    background-color: #eceaea;
  }
  .footer-contact__heading {
    font-size: 36px;
    font-weight: bold;
    padding-top: 65px;
  }
  .footer-contact__text {
    font-size: 20px;
    color: #666;
  }
  .footer-contact__button {
    width: 400px;
    height: 80px;
    margin: 44px auto 60px;
    background: url(../img/inquiry_bottan.png) no-repeat;
  }
  .footer-contact__button a {
    font-size: 20px;
    line-height: 80px;
    display: block;
    color: #fff;
  }
  .footer-contact__button:hover {
    opacity: .75;
  }
}

/* フッターメニュー SP用 */
@media screen and (max-width: 768px) {
  .footer {
    display: flex;
  }
  .footer__left {
    width: 100%;
  }
  .footer__left .footer__left--company {
    width: 100%;
    text-align: center;
    background-color: #a4a5a7;
  }
  .footer__left .footer__left--company img {
    width: 70%;
    max-width: 300px;
    margin: 20px 0 10px;
  }
  .footer__left .footer__left--company p {
    line-height: 1.5em;
    margin: 0;
    padding-bottom: 15px;
    color: #fff;
  }
  .footer__left .footer__left--copyright {
    width: 100%;
    height: 56px;
    background-color: #0095dd;
  }
  .footer__left .footer__left--copyright p {
    font-size: .75em;
    line-height: 1.2em;
    margin: 0;
    padding-top: 20px;
    text-align: center;
    color: #fff;
  }
}

/* フッターメニュー TL・PC用 */
@media screen and (min-width: 769px) {
  .footer {
    display: flex;
    justify-content: center;
  }
  .footer__left {
    width: 39%;
  }
  .footer__left .footer__left--company {
    height: 306px;
    text-align: right;
    background-color: #a4a5a7;
  }
  .footer__left .footer__left--company img {
    width: 90%;
    margin: 70px 3vw 0 3px;
  }
  .footer__left .footer__left--company p {
    font-size: 1.75vw;
    line-height: 1.5em;
    margin: 1em 2vw 1em 3px;
    color: #fff;
  }
  .footer__left .footer__left--copyright {
    width: 100%;
    height: 56px;
    padding-top: 15px;
    background-color: #0095dd;
  }
  .footer__left .footer__left--copyright p {
    font-size: 1.35vw;
    margin: 0 1vw 0 0;
    text-align: right;
    letter-spacing: 0;
    color: #fff;
  }
}

@media screen and (min-width: 769px) and (min-width: 1040px) {
  .footer__left .footer__left--company img {
    width: 306px;
    margin: 70px 76px 0 0;
  }
  .footer__left .footer__left--company p {
    font-size: 16px;
    margin: 1em 62px 1em 0;
  }
  .footer__left .footer__left--copyright p {
    font-size: 14px;
    letter-spacing: -.01em;
  }
}

@media screen and (min-width: 769px) {
  .footer__right {
    display: flex;
    width: 61%;
    min-height: 362px;
    background-color: #232323;
  }
  .footer__right > ul:nth-child(1) {
    margin: 64px 0 10px 5%;
    padding: 0;
  }
  .footer__right > ul:nth-child(2) {
    margin: 64px 0 10px 3%;
    padding: 0;
  }
  .footer__right > ul:nth-child(3) {
    margin: 64px 0 10px 5%;
    padding: 0;
  }
  .footer__right li {
    font-size: 1.5vw;
    margin: 0;
    list-style-type: none;
    white-space: nowrap;
    color: #fff;
  }
  .footer__right li ul {
    padding-left: 1.5em;
  }
  .footer__right li ul li {
    list-style-type: disc;
  }
  .footer__right a {
    color: #fff;
  }
  .footer__right a:hover {
    text-decoration: underline;
  }
  .footer__right a span {
    letter-spacing: -.1em;
  }
  .footer__right .border-line {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: dashed 2px #fff;
  }
}

@media screen and (min-width: 769px) and (min-width: 1100px) {
  .footer__right li {
    font-size: 1em;
  }
}

@media screen and (min-width: 769px) and (min-width: 1100px) {
  .footer__right {
    display: flex;
    width: 61%;
    min-height: 362px;
    background-color: #232323;
  }
  .footer__right > ul:nth-child(1) {
    margin: 64px 3% 10px 5%;
  }
  .footer__right > ul:nth-child(2) {
    margin: 64px 3% 10px 2%;
  }
  .footer__right > ul:nth-child(3) {
    margin: 64px 0 10px 4%;
  }
}

/*------------------------------------
サブページ共通
------------------------------------*/
/* サブページ SP用 */
@media screen and (max-width: 768px) {
  .sub-margin-bottom {
    margin-bottom: 40px;
  }
  .eyecatch {
    display: flex;
    height: 200px;
    background-color: #ccc;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
  }
  .eyecatch h1 {
    font-size: 4vw;
    color: #fff;
  }
  .breadcrumb {
    font-size: 2.6vw;
    margin-top: 20px;
  }
  .breadcrumb a {
    color: #0095dd;
  }
  .breadcrumb a:hover {
    text-decoration: underline;
  }
}

/* サブページ TL・PC用 */
@media screen and (min-width: 769px) {
  .sub-margin-bottom {
    margin-bottom: 50px;
  }
  .eyecatch {
    display: flex;
    height: 280px;
    background-color: #ccc;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
  }
  .eyecatch h1 {
    font-size: 36px;
    color: #fff;
    line-height: 130%;
    width: 80%;
    text-align: center;
  }
  .breadcrumb {
    font-size: .87em;
    margin-top: 20px;
  }
  .breadcrumb a {
    color: #0095dd;
  }
  .breadcrumb a:hover {
    text-decoration: underline;
  }
}

/* FAQ sp start */
@media screen and (max-width: 750px) {
  .faq {
    padding: 20px 0;
    background-color: #20B2AA;
  }
  .faq__container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .faq__container h2 {
    font-size: 28px;
    font-weight: normal;
    margin: 20px 0;
    padding: 20px 0;
    text-align: left;
  }
  .faq__area {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
  }
  .faq__search {
    box-sizing: border-box;
    margin: 0 auto;
    padding: .5em 10%;
    background-color: #dcf8ff;
  }
  .faq__search--keyworrd {
    font-weight: bold;
    margin: 1em 0;
    text-align: center;
  }
  .faq__search form {
    display: flex;
    width: 100%;
  }
  .faq__search input[type='text'] {
    width: 85%;
    height: 25px;
    margin-right: 10px;
    border-radius: 0;
  }
  .faq__search input[type='button'] {
    line-height: 25px;
    width: 77px;
    height: 25px;
    color: #fff;
    border-style: none;
    border-radius: 0;
    background-color: #80c269;
    -webkit-appearance: none;
  }
  /* サファリ用 */
  _::-webkit-full-page-media,
  _:future,
  :root .faq__search input[type='text'] {
    height: 30px;
  }
  _::-webkit-full-page-media,
  _:future,
  :root .faq__search input[type='button'] {
    font-size: 16px;
    height: 34px;
  }
}

@media screen and (max-width: 750px) and (max-width: 750px) {
  .faq__search input[type='button'] {
    margin-top: 1px;
  }
}

@media screen and (max-width: 750px) {
  .faq__search p {
    font-size: 2.5vw;
    letter-spacing: 0;
  }
  .faq__category {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
  }
  .faq__category--all,
  .faq__category--service,
  .faq__category--procedure {
    line-height: 48px;
    position: relative;
    width: 100%;
    height: 48px;
    margin-top: 3%;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    background-color: #20B2AA;
  }
  .faq__category--active {
    background-color: #80c269;
  }
  #faq__area dl {
    margin-top: 25px;
  }
  #faq__area dt {
    position: relative;
    display: block;
    margin-top: 15px;
    padding: 1em 40px 1em 55px;
    cursor: pointer;
    color: #333;
    background-color: #dcf8ff;
  }
  #faq__area dt:before {
    font-weight: bold;
    line-height: 30px;
    position: absolute;
    top: 14px;
    left: 13px;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    padding-left: 9px;
    content: 'Q';
    color: #333;
    border-radius: 15px;
    background-color: #dcf8ff;
  }
  #faq__area dt:after {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    position: absolute;
    top: 13px;
    right: 13px;
    width: 30px;
    height: 30px;
    content: '＋';
  }
  #faq__area .question-active {
    color: #fff;
    background-color: #369BD9;
  }
  #faq__area .question-active:before {
    color: #333;
    background-color: #dcf8ff;
  }
  #faq__area .question-active:after {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    content: 'ー';
  }
  #faq__area dd {
    display: none;
    margin: 0;
    padding: 1em .5em 1em 1em;
    background-color: #dcf8ff;
  }
  #faq__area dd a {
    line-height: 2.5em;
    text-decoration: underline;
  }
  #faq__area dd .answer03 {
    margin: 1em 0;
    padding: 0;
  }
  #faq__area dd .answer03 li {
    margin: 0;
    padding-left: 5.5em;
    list-style-type: none;
    text-indent: -5.5em;
  }
  #faq__area dd .answer12 {
    margin: 1em 0;
    padding: 0;
  }
  #faq__area dd .answer12 li {
    margin: 0;
    padding-left: 1em;
    list-style-type: none;
    text-indent: -1em;
  }
  #faq__area dt .highlight {
    color: #333;
    background-color: yellow;
  }
  #faq__area dd .highlight {
    background-color: yellow;
  }
}

/* FAQ pc start */
@media screen and (min-width: 751px) {
  .faq {
    padding: 40px 0;
    background-color: #d5bc46;
  }
  .faq__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .faq__container h2 {
    font-size: 28px;
    font-weight: normal;
    margin: 20px 0;
    padding: 20px 0;
    text-align: left;
  }
}

@media screen and (min-width: 751px) and (max-width: 1080px) {
  .faq__description {
    margin-right: 40px;
  }
}

@media screen and (min-width: 751px) {
  .faq__area {
    margin-top: 30px;
    padding: 50px 50px 30px;
    background-color: #fff;
  }
  .faq__search {
    box-sizing: border-box;
    max-width: 790px;
    margin: 0 auto;
    padding: .5em 100px;
    /*background-color: #fdf9da;*/
    background-color: #dcf8ff;
  }
  .faq__search--keyworrd {
    font-weight: bold;
    margin: 1em 0;
    text-align: center;
  }
  .faq__search form {
    display: flex;
    width: 100%;
  }
  .faq__search input[type='text'] {
    width: 85%;
    height: 24px;
    margin-right: 10px;
  }
  .faq__search input[type='button'] {
    line-height: 25px;
    width: 77px;
    height: 25px;
    color: #fff;
    border-style: none;
    border-radius: 0;
    background-color: #80c269;;
    -webkit-appearance: none;
  }
  /* サファリ用 */
  _::-webkit-full-page-media,
  _:future,
  :root .faq__search input[type='text'] {
    height: 30px;
  }
  _::-webkit-full-page-media,
  _:future,
  :root .faq__search input[type='button'] {
    font-size: 16px;
    height: 34px;
  }
  .faq__search p {
    font-size: 90%;
    letter-spacing: 0;
  }
  .faq__category {
    display: flex;
    flex-direction: row;
    max-width: 790px;
    margin: 35px auto 20px;
    justify-content: space-between;
  }
  .faq__category--all,
  .faq__category--service,
  .faq__category--procedure {
    font-size: 15px;
    line-height: 48px;
    position: relative;
    width: 32.5%;
    height: 48px;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    background-color: #20B2AA;
  }
}

@media screen and (min-width: 751px) and (max-width: 900px) {
  .faq__category--all,
  .faq__category--service,
  .faq__category--procedure {
    font-size: 1.6vw;
  }
}

@media screen and (min-width: 751px) {
  .faq__category--active {
    background-color: #80c269;
  }
  .faq__category--active:after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    margin-left: -8px;
    content: '';
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #80c269 transparent transparent transparent;
  }
  #faq__area dl {
    margin-top: 25px;
  }
  #faq__area dt {
    position: relative;
    display: block;
    margin-top: 15px;
    padding: 1em 40px 1em 55px;
    cursor: pointer;
    color: #333;
    background-color: #dcf8ff;
  }
  #faq__area dt:before {
    font-weight: bold;
    line-height: 30px;
    position: absolute;
    top: 14px;
    left: 13px;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    padding-left: 9px;
    content: 'Q';
    color: #333;
    border-radius: 15px;
    background-color: #FFF;
  }
  #faq__area dt:after {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    position: absolute;
    top: 13px;
    right: 13px;
    width: 30px;
    height: 30px;
    content: '＋';
  }
  #faq__area .question-active {
    color: #fff;
    background-color: #369BD9;
  }
  #faq__area .question-active:before {
    color: #333;
    background-color: #FFF;
  }
  #faq__area .question-active:after {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    content: 'ー';
  }
  #faq__area dd {
    display: none;
    margin: 0;
    padding: 1em 1em 1em 55px;
    background-color: #dcf8ff;
  }
  #faq__area dd a {
    line-height: 2em;
  }
  #faq__area dd .answer03 {
    margin: 1em 0;
    padding: 0;
  }
  #faq__area dd .answer03 li {
    margin: 0;
    padding-left: 5.5em;
    list-style-type: none;
    text-indent: -5.5em;
  }
  #faq__area dd .answer12 {
    margin: 1em 0;
    padding: 0;
  }
  #faq__area dd .answer12 li {
    margin: 0;
    padding-left: 1em;
    list-style-type: none;
    text-indent: -1em;
  }
  #faq__area dt .highlight {
    color: #333;
    background-color: yellow;
  }
  #faq__area dd .highlight {
    background-color: yellow;
  }
}

/* サイドメニュー */
.side-menu {
  position: fixed;
  z-index: 10;
  top: 95px;
  right: 0;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}

.side-menu ul {
  margin: 0;
  padding: 0;
}

.side-menu li {
  line-height: 50px;
  width: 50px;
  margin-bottom: 15px;
  list-style-type: none;
  -ms-writing-mode: tb-rl;
  border-radius: 12px 0 0 12px;
  writing-mode: vertical-rl;
}

.side-menu a {
  font-size: 18px;
  display: block;
  padding: 40px 0;
  text-decoration: none;
  color: #fff;
}

.side-menu-mail {
  /*background-color: #3f72b7;*/
  background-color: #04255F;
}

.side-menu-documentd {
  background-color: #FFD200;
}

.side-menu-mail:hover,
.side-menu-documentd:hover {
  opacity: .85;
}

/* IE11のみ適用 */
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  .side-menu li {
    box-sizing: border-box;
    padding-right: 4px;
  }
}

/* TL用・PC用 */
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .side-menu li {
    line-height: 40px;
    width: 40px;
  }
}

/* サイトマップ TL・PC用 */
@media screen and (min-width: 751px) {
  .sitemap__flex {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
  }
  .sitemap__flex .sitemap__left {
    width: 48%;
  }
  .sitemap__flex .sitemap__right {
    width: 48%;
  }
  .sitemap__flex ul {
    margin: 0;
    padding: 0;
  }
  .sitemap__flex li {
    margin-top: 50px;
    list-style-type: none;
    line-height: 50px;
    background-color: #f4f4f4;
    font-size: 18px;
    font-weight: bold;
  }
  .sitemap__flex li ul {
    margin: 0;
    padding: 0;
    background-color: #fff;
  }
  .sitemap__flex li li {
    margin-top: 0;
    border-bottom: solid 1px #ccc;
    background-color: #fff;
    font-size: 16px;
    font-weight: normal;
    padding-left: 1.2em;
  }
  .sitemap__flex li li a {
    color: #333;
    padding-left: 0;
  }
  .sitemap__flex li li:nth-child(1) {
    margin-top: 20px;
  }
  .sitemap__flex li ul:nth-child(1) {
    margin-top: -50px;
  }
  .sitemap__flex a {
    display: block;
    text-decoration: none;
    color: #3f72b7;
    padding-left: 1em;
  }
  .sitemap__flex a:hover {
    color: #0095DD;
  }
  .sitemap__flex .no-link {
    padding-left: 1em;
  }
  .sitemap__flex .new-win {
    background: url(../img/window-blue.png) no-repeat right 3% center;
    background-size: 12px;
  }
  .sitemap__flex .new-win-glay {
    background: url(../img/window-blue.png) no-repeat right 3% center #f4f4f4;
    background-size: 12px;
  }
}
