@charset "UTF-8";

/*  02_base
================================================ */
/* 02_base
================================================ */
html {
  overflow: auto;
}

body {
  min-width: 320px;
  overflow: hidden;
  color: #566569;
  line-height: 2;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 600px) {
  body {
    min-width: 1200px;
    font-size: 1.6rem;
  }
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
select,
textarea {
  font-weight: 500;
  letter-spacing: 0.12em;
}

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

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: underline;
}

@media screen and (min-width: 600px) {
  a:hover {
    text-decoration: none;
  }

  a.opacity:hover {
    opacity: 0.8;
  }

  a[href^=tel] {
    pointer-events: none;
  }
}

sup,
sub {
  position: relative;
  top: -2px;
  display: inline-block;
  -webkit-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
  margin-right: -3px;
}

em,
strong,
span {
  font-weight: inherit;
}

::-moz-selection {
  background: #cfecff;
}

::selection,
::-moz-selection {
  background: #cfecff;
}

/* pc <--> sp切り替え
-------------------------------------- */
#mediaQuery {
  display: none;
  font-family: "sp";
}

@media screen and (min-width: 600px) {
  #mediaQuery {
    font-family: "pc";
  }
}

@media screen and (max-width: 599px) {
  .viewPc {
    display: none !important;
  }
}

@media screen and (min-width: 600px) {
  .viewSp {
    display: none !important;
  }
}

/* font
-------------------------------------- */
.is_font_oswald {
  font-family: "Oswald", sans-serif;
}

.is_txt_center {
  text-align: center !important;
}

.is_txt_right {
  text-align: right !important;
}

.is_color_blue {
  color: #24b4e2;
}

/* clearfix
-------------------------------------- */
.cf:after {
  content: "";
  display: block;
  clear: both;
}

/* line
-------------------------------------- */
.line.is_rl {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(59%, #24b4e2), color-stop(90%, rgba(36, 180, 226, 0)));
  background-image: linear-gradient(to right, #24b4e2 59%, rgba(36, 180, 226, 0) 90%);
  height: 2px;
}

.line.is_lr {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(59%, #24b4e2), color-stop(90%, rgba(36, 180, 226, 0)));
  background-image: linear-gradient(to left, #24b4e2 59%, rgba(36, 180, 226, 0) 90%);
  height: 2px;
}

.line.is_bt {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(59%, #24b4e2), color-stop(90%, rgba(36, 180, 226, 0)));
  background-image: linear-gradient(to bottom, #24b4e2 59%, rgba(36, 180, 226, 0) 90%);
  width: 2px;
}

.line.is_tb {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(59%, #24b4e2), color-stop(90%, rgba(36, 180, 226, 0)));
  background-image: linear-gradient(to top, #24b4e2 59%, rgba(36, 180, 226, 0) 90%);
  width: 2px;
}

/* layout
-------------------------------------- */
.mod_inner01 {
  padding: 0 25px;
}

@media screen and (min-width: 600px) {
  .mod_inner01 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 1200px;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

/*  03_layout
================================================ */
/* #breadcrumb
================================================ */
#breadcrumb {
  margin-top: 35px;
}

#breadcrumb .inner {
  line-height: 1;
}

#breadcrumb li {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.2rem;
  line-height: 1;
}

#breadcrumb li+li {
  position: relative;
  padding-left: 20px;
}

#breadcrumb li+li:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  margin-top: -4px;
  border: solid 4px transparent;
  border-left-color: #ccdafd;
}

#breadcrumb li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #24b4e2;
  line-height: 1;
}

.js-c-anime-elem[data-anime=fadein] {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s ease, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-c-anime-elem[data-anime=fadein][data-anime-to=up] {
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
}

.js-c-anime-elem[data-anime=fadein].is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* #ftCv
================================================ */
.secCv {
  padding: 40px 0 30px;
  background-color: #43a8e4;
  background: -webkit-gradient(linear, right top, left top, from(rgba(147, 137, 237, 0.4)), color-stop(50%, rgba(42, 181, 226, 0.4)), to(rgba(89, 229, 250, 0.4))) #43a8e4;
  background: linear-gradient(to left, rgba(147, 137, 237, 0.4), rgba(42, 181, 226, 0.4) 50%, rgba(89, 229, 250, 0.4)) #43a8e4;
  color: #fff;
}

.typeAndroid .secCv {
  background: -webkit-gradient(linear, right top, left top, from(rgba(147, 137, 237, 0.4)), to(rgba(89, 229, 250, 0.4))) #43a8e4;
  background: linear-gradient(to left, rgba(147, 137, 237, 0.4), rgba(89, 229, 250, 0.4)) #43a8e4;
}

@media screen and (min-width: 600px) {
  .secCv {
    padding: 80px 0 100px;
    background-color: #2ab5e2;
  }
}

.secCv .tit {
  letter-spacing: 0.2em;
}

.secCv .lead {
  margin-top: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.64;
}

.secCv .note {
  margin: 9px 25px 0;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1rem;
  line-height: 1.64;
}

.secCv .group {
  margin-top: 23px;
}

.secCv .btn+.btn {
  margin-top: 10px;
}

@media screen and (min-width: 600px) {
  .secCv .lead {
    margin-top: 34px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 600px) {
  .secCv .note {
    margin: 7px auto 0;
    padding-left: 0;
    font-size: 1.2rem;
    text-align: center;
    text-indent: 0;
  }
}

@media screen and (min-width: 600px) {
  .secCv .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 1180px;
    margin: 40px auto 0;
  }
}

@media screen and (min-width: 600px) {
  .secCv .btn {
    width: 580px;
  }
}

@media screen and (min-width: 600px) {
  .secCv .btn+.btn {
    margin-top: 0;
  }
}

/* pagetop
================================================ */
.pagetop {
  width: 100%;
  height: 0;
}

.pagetop a {
  position: relative;
  display: block;
  float: right;
  width: 50px;
  height: 50px;
  margin-top: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagetop a:before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-color: #2ab5e2;
  background: -webkit-gradient(linear, right top, left top, from(rgba(147, 137, 237, 0.6)), color-stop(50%, rgba(42, 181, 226, 0.6)), to(rgba(89, 229, 250, 0.6))) #2ab5e2;
  background: linear-gradient(to left, rgba(147, 137, 237, 0.6), rgba(42, 181, 226, 0.6) 50%, rgba(89, 229, 250, 0.6)) #2ab5e2;
}

@media screen and (min-width: 600px) {
  .pagetop a {
    margin-right: 30px;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .pagetop a:hover {
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
    margin-top: 8px;
  }
}

.typeAndroid .pagetop a:before {
  background: -webkit-gradient(linear, right top, left top, from(rgba(147, 137, 237, 0.6)), to(rgba(89, 229, 250, 0.6))) #2ab5e2;
  background: linear-gradient(to left, rgba(147, 137, 237, 0.6), rgba(89, 229, 250, 0.6)) #2ab5e2;
}

.pagetop a .ico {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  margin: -10px 0 0 -7px;
  border: solid 7px transparent;
  border-bottom-color: #fff;
}

/* #gFooter
================================================ */
@media screen and (min-width: 600px) {
  #gFooter {
    position: relative;
    padding: 70px 60px 70px 70px;
    min-width: 1200px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .ftIn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

#gFooter .group {
  padding: 30px 25px 33px;
}

#gFooter .company {
  color: #24b4e2;
}

#gFooter .company a {
  text-decoration: none;
}

#gFooter .company .name {
  position: relative;
}

#gFooter .company .name .logo {
  display: block;
  width: 90px;
  height: 27px;
  float: left;
  margin-right: 15px;
}

#gFooter .company .name .logo img {
  display: block;
  width: 100%;
  height: 100%;
}

#gFooter .company .name .logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

#gFooter .company .name a {
  display: block;
}

#gFooter .company .name .txt {
  position: absolute;
  top: 2px;
  left: 105px;
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  color: #24b4e2;
  font-size: 1.6rem;
  -webkit-transform: scale(0.65, 0.65);
  transform: scale(0.65, 0.65);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  border-left: solid 1px #e3e8f1;
  line-height: 1.4;
}

#gFooter .company .name .txt span {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 2px;
}

#gFooter .company .address {
  margin-top: 27px;
  line-height: 1.64;
  font-size: 1rem;
}

#gFooter .company .tel {
  font-size: 1rem;
  line-height: 1.4;
}

#gFooter .ftListWrap .list .item>a {
  position: relative;
  display: block;
  padding: 10px 25px;
  text-decoration: none;
  color: #24b4e2;
  font-size: 1rem;
}

#gFooter .ftListWrap .list .item>a:before {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  top: 50%;
  left: 15px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border: solid 4px transparent;
  border-left-color: #24b4e2;
}

#gFooter .copyright {
  margin-top: 25px;
  text-align: center;
  font-size: 1rem;
  color: #24b4e2;
}

#gFooter .img {
  padding: 0 25px 25px;
}

@media screen and (min-width: 600px) {
  #gFooter .group {
    padding: 0;
    -webkit-box-flex: 7;
    -ms-flex: 7 0 300px;
    flex: 7 0 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .company {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 440px;
    flex: 0 0 440px;
    width: 440px;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .company .name .logo {
    width: 144px;
    height: 43px;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .company .name .logo {
    margin-right: 24px;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .company .name a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  #gFooter .company .name a:hover {
    opacity: 0.85;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .company .name .txt {
    position: static;
    width: auto;
    margin-top: 9px;
    padding-left: 20px;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .company .name .txt span {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .company .address {
    margin-top: 36px;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .company .tel {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 599px) {
  #gFooter .ftListWrap {
    margin-top: 30px;
    border-bottom: solid 1px #e3e8f1;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .ftListWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-left: solid 1px #e3e8f1;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 200px;
    flex: 1 0 200px;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .ftListWrap .list a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  #gFooter .ftListWrap .list a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 599px) {
  #gFooter .ftListWrap .list .item {
    float: left;
    width: 50%;
    border-top: solid 1px #e3e8f1;
    border-left: solid 1px #e3e8f1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .ftListWrap .list .item>a {
    padding: 0 0 0 15px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .ftListWrap .list .item>a:before {
    left: 0;
  }
}

@media screen and (max-width: 599px) {
  #gFooter .ftListWrap .list {
    display: inline;
  }

  #gFooter .ftListWrap .list01 .item,
  #gFooter .ftListWrap .list03 .item:nth-of-type(odd),
  #gFooter .ftListWrap .list04 .item:nth-of-type(even) {
    border-left: 0;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .ftListWrap .list {
    margin-left: 40px;
    margin-bottom: 30px;
  }

  #gFooter .ftListWrap .list02 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    width: 250px;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .ftListWrap .list .child {
    margin-left: 10px;
  }

  #gFooter .ftListWrap .list .childItem {
    display: inline-block;
    position: relative;
    min-width: 116px;
  }

  #gFooter .ftListWrap .list .childItem a {
    text-decoration: none;
    color: #24b4e2;
    font-size: 1.2rem;
  }

  #gFooter .ftListWrap .list .childItem a:before {
    content: "-";
  }
}

@media screen and (min-width: 600px) {
  #gFooter .copyright {
    position: absolute;
    left: 0;
    bottom: -30px;
    margin-top: 0;
  }
}

@media screen and (min-width: 600px) {
  #gFooter .img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    width: 240px;
    padding: 0;
    margin-bottom: -25px;
  }
}

@media screen and (min-width: 600px) and (max-width: 1760px) {
  #gFooter .company {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
  }

  #gFooter .company .name .txt {
    padding-left: 0;
    border-left: 0;
  }

  #gFooter .ftListWrap .list01 {
    width: 100%;
  }
}

@media screen and (min-width: 600px) and (max-width: 1430px) {
  #gFooter {
    padding-right: 30px;
    padding-left: 30px;
  }

  #gFooter .ftListWrap .list {
    margin-left: 20px;
  }
}

/* hide case*/
@media screen and (max-width: 599px) {

  #faq .secCv,
  #about .secCv {
    margin-top: 90px;
  }
}

@media screen and (max-width: 599px) {
  #gFooter .ftListWrap .list04 .item:nth-of-type(odd) {
    border-left: 0;
    border-bottom: 0;
  }

  #gFooter .ftListWrap .list04 .item:nth-of-type(even) {
    border-left: solid 1px #e3e8f1;
    border-bottom: solid 1px #e3e8f1;
  }
}

/* #gHeader
================================================ */
@-webkit-keyframes active-menu-line {
  100% {
    height: 0;
  }
}

@keyframes active-menu-line {
  100% {
    height: 0;
  }
}

#gHeader {
  position: relative;
  height: 85px;
}

#gHeader .pageTit {
  padding: 40px 0 0 24px;
}

#gHeader .pageTit a {
  position: relative;
  display: inline-block;
  min-width: 225px;
  text-decoration: none;
}

#gHeader .pageTit .logo {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 90px;
  height: 27px;
  float: left;
  margin-right: 15px;
}

#gHeader .pageTit .logo svg {
  display: inline-block;
  width: 100%;
  height: 100%;
}

#gHeader .pageTit .txt {
  position: absolute;
  top: 3px;
  left: 105px;
  width: 110%;
  display: inline-block;
  padding-left: 20px;
  color: #24b4e2;
  font-size: 1.6rem;
  -webkit-transform: scale(0.65, 0.65);
  transform: scale(0.65, 0.65);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  border-left: solid 1px #e3e8f1;
  line-height: 1.4;
}

#gHeader .pageTit .txt span {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

#gHeader .gnavBtn {
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 30;
  width: 60px;
  height: 60px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#gHeader .gnavBtn .line {
  position: absolute;
  top: 29px;
  left: 50%;
  margin-left: -12px;
  width: 25px;
  height: 2px;
  background: #24b4e2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#gHeader .gnavBtn .line:nth-child(1) {
  top: 20px;
}

#gHeader .gnavBtn .line:nth-child(3) {
  top: 38px;
}

#gHeader .gnavBtn:after {
  position: absolute;
  display: block;
  content: "";
  top: 13px;
  left: 13px;
  width: 30px;
  height: 30px;
  border: solid 2px #24b4e2;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#gHeader .gnavBtn.is_active:after {
  opacity: 1;
}

#gHeader .gnavBtn.is_active .line:nth-child(1) {
  top: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#gHeader .gnavBtn.is_active .line:nth-child(2) {
  opacity: 0;
  left: 100%;
  -webkit-animation: active-menu-line 0.8s forwards;
  animation: active-menu-line 0.8s forwards;
}

#gHeader .gnavBtn.is_active .line:nth-child(3) {
  top: 30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 600px) {
  #gHeader {
    z-index: 2;
    padding: 60px 0 0 70px;
    height: 125px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 600px) {
  #gHeader .pageTit {
    display: inline-block;
    padding: 0 0 0 5px;
  }
}

@media screen and (min-width: 600px) {
  #gHeader .pageTit a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  #gHeader .pageTit a:hover {
    opacity: 0.85;
  }
}

@media screen and (min-width: 600px) {
  #gHeader .pageTit .logo {
    width: 217px;
    height: 65px;
  }

  #gHeader .pageTit .logo img {}
}

@media screen and (min-width: 600px) {
  #gHeader .pageTit .logo {
    margin-right: 30px;
  }
}

@media screen and (min-width: 600px) {
  #gHeader .pageTit .txt {
    position: static;
    width: auto;
    margin-top: 21px;
    padding-left: 30px;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 600px) {
  #gHeader .pageTit .txt span {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 600px) {
  #gHeader .hdInfo {
    float: left;
  }
}

@media screen and (min-width: 600px) and (max-width: 1700px) {
  #gHeader {
    padding-left: 40px;
  }

  /* #gHeader .pageTit .logo {
    margin-right: 16px;
  }

  #gHeader .pageTit .txt {
    padding-left: 15px;
  } */
}

/*  #gNav
================================================ */
#gNav .btn+.btn {
  margin-top: 10px;
}

#gNav .gnavClose {
  position: relative;
  margin: 40px 20px 0;
  padding: 23px;
  text-align: center;
  color: #24b4e2;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border-radius: 30px;
  letter-spacing: 0.06em;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#gNav .gnavClose:before,
#gNav .gnavClose:after {
  position: absolute;
  top: 50%;
  right: 25px;
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #24b4e2;
}

#gNav .gnavClose:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#gNav .gnavClose:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 599px) {
  #gNav {
    display: none;
    position: fixed;
    z-index: 20;
    top: 85px;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow-y: scroll;
  }

  #gNav .gNavContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px 0 100px;
    background: rgba(36, 180, 226, 0.9);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 599px) and (max-width: 599px) {
  #gNav .gNavContent .inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 599px) {
  #gNav .gNavContent .listLink {
    margin-bottom: 30px;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
  }

  #gNav .gNavContent .listLink a {
    display: block;
    color: #fff;
    text-decoration: none;
  }

  #gNav .gNavContent .listLink .item+.item {
    border-top: solid 1px #fff;
  }

  #gNav .gNavContent .listLink .item>a {
    position: relative;
    font-size: 1.5rem;
    padding: 13px 0 12px 38px;
  }

  #gNav .gNavContent .listLink .item>a:before {
    position: absolute;
    z-index: 1;
    display: block;
    content: "";
    top: 23px;
    left: 19px;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    border-left-color: #fff;
  }

  #gNav .gNavContent .child {
    padding: 0 15px 10px;
  }

  #gNav .gNavContent .childItem {
    border-top: dashed 1px #9cddf2;
  }

  #gNav .gNavContent .childItem a {
    position: relative;
    padding: 8px 15px;
  }

  #gNav .gNavContent .childItem a:before {
    position: absolute;
    z-index: 1;
    display: block;
    content: "";
    top: 18px;
    right: 11px;
    width: 0;
    height: 0;
    border: solid 4px transparent;
    border-left-color: #fff;
  }
}

@media screen and (min-width: 600px) {
  #gNav {
    float: right;
  }

  #gNav .listLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8px;
    margin-right: 185px;
  }

  #gNav .listLink a {
    display: inline-block;
    text-decoration: none;
  }

  #gNav .listLink .item {
    position: relative;
    line-height: 1;
  }

  #gNav .listLink .item+.item>a:before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    left: 0;
    width: 1px;
    height: 16px;
    margin-top: -8px;
    background: #e3e8f1;
  }

  #gNav .listLink .item>a {
    position: relative;
    padding: 20px 29px;
    color: #24b4e2;
    font-size: 1.6rem;
    line-height: 1;
  }

  #gNav .listLink .item>a:hover span:before,
  #gNav .listLink .item>a:hover span:after {
    width: 50%;
  }

  #gNav .listLink .item>a span {
    position: relative;
    display: block;
  }

  #gNav .listLink .item>a span:before,
  #gNav .listLink .item>a span:after {
    position: absolute;
    display: block;
    content: "";
    bottom: -15px;
    width: 0;
    height: 2px;
    background: #24b4e2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  #gNav .listLink .item>a span:before {
    left: 50%;
  }

  #gNav .listLink .item>a span:after {
    right: 50%;
  }

  #gNav .listLink .item.hasChild {
    padding-bottom: 20px;
  }

  #gNav .listLink .item.hasChild>a {
    position: relative;
  }

  #gNav .listLink .item.hasChild>a:after {
    position: absolute;
    display: block;
    content: "";
    top: 34px;
    left: 50%;
    width: 0;
    height: 0;
    margin: 17px 0 0 -4px;
    border: solid 4px transparent;
    border-top-color: #24b4e2;
  }

  #gNav .listLink .item.hasChild:hover>a span:before,
  #gNav .listLink .item.hasChild:hover>a span:after {
    width: 50%;
  }

  #gNav .listLink .item.hasChild:hover .child {
    opacity: 1;
    visibility: visible;
  }

  #gNav .listLink .child {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    z-index: 1;
    width: 100%;
    background: #24b4e2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  #gNav .listLink .childItem+.childItem {
    border-top: solid 1px #fff;
  }

  #gNav .listLink .childItem a {
    display: block;
    color: #fff;
    padding: 18px 15px;
    font-size: 1.3rem;
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  #gNav .listLink .childItem a:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  #gNav .btn+.btn {
    margin-top: 0;
  }

  #gNav .typeTel {
    position: absolute;
    right: 210px;
    top: 17px;
    border: 0;
  }

  #gNav .typeTel .btnIn {
    padding: 0;
    color: #24b4e2;
  }

  #gNav .typeTel .num {
    font-size: 2.8rem;
    padding-left: 37px;
  }

  #gNav .typeTel .num:before {
    left: 0;
    width: 30px;
    height: 17px;
  }

  #gNav .typeTel .num span:before {
    top: -9px;
    left: -28%;
    -webkit-transform: scale(0.7, 0.7);
    transform: scale(0.7, 0.7);
  }

  #gNav .typeTel .open {
    font-size: 1rem;
  }

  #gNav .typeContact {
    position: absolute;
    right: 0;
    top: 0;
    width: 160px;
    border: 0;
  }

  #gNav .typeContact:before {
    position: absolute;
    display: block;
    z-index: 1;
    content: "";
    top: 28px;
    left: 50%;
    width: 55px;
    height: 40px;
    margin-left: -27px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2254.6%22%20height%3D%2239.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M52.3%2C9H39V2.4C39%2C1.1%2C37.9%2C0%2C36.5%2C0H2.4C1.1%2C0%2C0%2C1.1%2C0%2C2.4v19c0%2C1.3%2C1.1%2C2.4%2C2.4%2C2.4h2.8l-3%2C9\a 	c-0.1%2C0.4%2C0%2C0.8%2C0.4%2C1c0.3%2C0.2%2C0.8%2C0.2%2C1.1-0.1l11.9-10h3.9V28c0%2C1.2%2C1%2C2.3%2C2.3%2C2.3h18.5l10.8%2C8.9c0.3%2C0.3%2C0.8%2C0.3%2C1.1%2C0\a 	c0.3-0.2%2C0.5-0.7%2C0.3-1l-2.7-7.9h2.4c1.3%2C0%2C2.3-1%2C2.3-2.3V11.2C54.6%2C10%2C53.6%2C9%2C52.3%2C9z%20M15.3%2C22c-0.2%2C0-0.4%2C0.1-0.6%2C0.2L5%2C30.4\a 	l2.4-7.2c0.1-0.3%2C0-0.6-0.1-0.8C7.1%2C22.1%2C6.8%2C22%2C6.5%2C22H2.4c-0.3%2C0-0.6-0.3-0.6-0.6v-19c0-0.3%2C0.3-0.6%2C0.6-0.6h34.1\a 	c0.3%2C0%2C0.6%2C0.3%2C0.6%2C0.6v19c0%2C0.3-0.3%2C0.6-0.6%2C0.6H15.3z%20M52.8%2C28c0%2C0.2-0.2%2C0.4-0.5%2C0.4h-3.7c-0.3%2C0-0.6%2C0.1-0.7%2C0.4\a 	c-0.2%2C0.2-0.2%2C0.5-0.1%2C0.8l2.1%2C6.1l-8.6-7.1c-0.2-0.1-0.4-0.2-0.6-0.2H21.8c-0.3%2C0-0.5-0.2-0.5-0.4v-4.2h15.2c1.3%2C0%2C2.4-1.1%2C2.4-2.4\a 	V10.8h13.4c0.3%2C0%2C0.5%2C0.2%2C0.5%2C0.4V28z%22%2F%3E%3C%2Fsvg%3E");
    background-size: 55px 40px;
    pointer-events: none;
  }

  #gNav .typeContact:after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  #gNav .typeContact .btnIn {
    height: 125px;
    padding: 78px 0 0;
    background: #24b4e2;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  #gNav .typeContact .btnIn:after {
    border: 0;
  }

  #gNav .typeContact .txt {
    font-size: 1.6rem;
    font-weight: 500;
  }

  #gNav .typeContact .txt span {
    display: none;
  }

  #gNav .typeContact:hover:after {
    opacity: 1;
  }

  #gNav .typeContact:hover .btnIn:after {
    border-right-color: inherit;
  }

  #gNav .typeContact:hover .txt {
    color: inherit;
  }
}

@media screen and (min-width: 600px) and (max-width: 1700px) {
  #gNav .listLink {
    margin-top: 43px;
    margin-right: 0;
  }

  #gNav .listLink .item>a {
    font-size: 1.4rem;
    padding: 0 16px;
  }

  #gNav .listLink .item.hasChild {
    padding-bottom: 30px;
  }

  #gNav .listLink .item.hasChild>a:after {
    top: 12px;
  }

  #gNav .listLink .item .child {
    width: 110%;
    margin-left: -5%;
  }

  #gNav .typeTel {
    right: 180px;
    top: 15px;
  }

  #gNav .typeTel .num {
    font-size: 2.4rem;
  }

  #gNav .typeContact:before {
    display: none;
  }

  #gNav .typeContact .btnIn {
    height: 70px;
    padding-top: 15px;
  }

  #gNav .typeContact .btnIn:after {
    display: none;
  }

  #gNav .typeContact .txt {
    font-size: 1.4rem;
  }
}

/* #mainVisual TOPページ
================================================ */
#mainVisual {
  position: relative;
  margin-top: 10px;
  background: #f5f7fa;
  min-height: 505px;
  height: 100%;
  margin-right: 20px;
  margin-left: 20px;
}

#mainVisual .bg {
  position: absolute !important;
  top: 0;
  left: 0;
  min-height: 505px;
  height: 100%;
  width: 100%;
}

#mainVisual::after {
  position: absolute;
  display: block;
  z-index: -1;
  content: "";
  bottom: -30px;
  left: -100px;
  width: 200%;
  height: calc(100% - 30px);
  background: #f5f7fa;
}

#mainVisual .group {
  padding-top: 20px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

#mainVisual .group .catch,
#mainVisual .group .txt {
  opacity: 0;
}

#mainVisual .group .catch {
  width: 160px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

#mainVisual .group .line {
  margin: 20px 84px 15px -25px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media screen and (max-width: 320px) {
  #mainVisual {
    min-height: 430px;
  }

  #mainVisual .group {
    max-width: 240px;
  }
}

@media screen and (min-width: 400px) {
  #mainVisual .group {
    padding-top: 10px;
    max-width: 285px;
  }
}

@media screen and (min-width: 600px) {
  #mainVisual {
    position: relative;
    margin: 70px auto 0;
    width: 100%;
    height: 0;
    min-height: 0;
    padding-bottom: 40.4%;
    background: transparent;
  }

  #mainVisual:after {
    position: absolute;
    display: block;
    z-index: -1;
    content: "";
    bottom: -80px;
    left: -100px;
    width: 200%;
    height: calc(100% - 100px);
    background: #f5f7fa;
  }

  #mainVisual .bg {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  #mainVisual .inner {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 1780px;
    width: 100%;
    height: 100%;
    top: -110px;
    z-index: 1;
  }

  #mainVisual .device {
    max-width: 1458px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 600px) and (max-width: 1600px) {
  #mainVisual .group {
    padding-top: 150px;
    width: 100%;
    max-width: 800px;
  }
}

@media (min-width: 1601px) {
  #mainVisual .group {
    padding-top: 170px;
    width: 100%;
    max-width: 1160px;
  }
}

@media (min-width: 600px) and (max-width: 1360px) {
  #mainVisual .bg {
    max-width: 1180px;
  }
}

@media (min-width: 1361px) {
  #mainVisual .bg {
    max-width: 1780px;
  }
}

@media screen and (min-width: 600px) {
  #mainVisual .group .catch {
    width: auto;
    padding-left: 181px;
  }
}

@media screen and (min-width: 600px) {
  #mainVisual .group .line {
    margin: 39px 0 45px;
    width: 676px;
  }
}

/* #mainVisual .group .txt {
	font-size: 1.1rem;
	color: #24b4e2;
	line-height: 1.9;
	opacity: 0;
	-webkit-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	transform: translateY(-20px);
}
@media screen and (min-width: 600px) {
	#mainVisual .group .txt {
		padding-left: 181px;
		font-size: 1.8rem;
	}
}
#mainVisual .slider {
	position: absolute;
	right: 0;
	top: -50px;
	width: 87%;
}


@media screen and (min-width: 600px) {
	#mainVisual .slider {
		top: 0;
		left: 50%;
		width: 1780px;
		height: 780px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

#mainVisual.is_active .line {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: -webkit-transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

#mainVisual.is_active .catch,
#mainVisual.is_active .txt {
	-webkit-transition: opacity 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: opacity 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: opacity 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: opacity 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-webkit-transition-delay: .6s;
	transition-delay: .6s;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
} */
#home .news {
  position: relative;
  margin: -55px 10px 0;
  padding: 15px 16px 8px;
  background-color: #24b4e2;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(147, 137, 237, 0.6)), color-stop(50%, rgba(42, 181, 226, 0.6)), to(rgba(89, 229, 250, 0.6)));
  background-image: linear-gradient(to left, rgba(147, 137, 237, 0.6), rgba(42, 181, 226, 0.6) 50%, rgba(89, 229, 250, 0.6));
  color: #fff;
  -webkit-transform: translateY(-25px);
  z-index: 1;
  transform: translateY(-25px);
}

@media screen and (min-width: 400px) {
  #home .news {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

#home .news .enTit {
  margin-right: -16px;
  padding-bottom: 5px;
  font-size: 1.7rem;
  line-height: 1;
  border-bottom: 1px solid #fff;
}

#home .news .info {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 240px;
  flex: 1 0 240px;
}

#home .news .info .txt {
  font-size: 1.2rem;
  line-height: 1.64;
}

#home .news .info .list {
  line-height: 1.6;
}

#home .news .info .list .item {
  margin-top: 15px;
}

#home .news .info .list .item .link {
  padding: 0 20px 0 1em;
  position: relative;
  display: block;
  text-decoration: none;
}

#home .news .info .list .item .link:before {
  position: absolute;
  display: block;
  content: "";
  top: 0.6em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

#home .news .info .list .item .link:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 0;
  width: 16px;
  height: 5px;
  margin-top: -2px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2220%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M15.992%202.496L12.996%200v2.012H0v1h12.996v1.979l2.996-2.495z%22%2F%3E%3C%2Fsvg%3E");
  background-size: cover;
  pointer-events: none;
}

#home .news .info .contact {
  padding-top: 5px;
  margin: 15px -16px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

@media screen and (min-width: 600px) {
  #home .news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1380px;
    margin: -34px 0 20px 233px;
    padding: 28px 30px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media screen and (min-width: 600px) {
  #home .news .enTit {
    margin-right: 0;
    padding-right: 30px;
    font-size: 2.4rem;
    border: none;
  }
}

@media screen and (min-width: 600px) {
  #home .news .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 1;
    border-left: 1px solid #fff;
  }
}

@media screen and (min-width: 600px) {
  #home .news .info .txt {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
  }
}

@media screen and (min-width: 600px) {
  #home .news .info .list {
    padding-left: 30px;
  }
}

@media screen and (min-width: 600px) {
  #home .news .info .list .item {
    padding-right: 60px;
  }

  #home .news .info .list .item:first-child {
    margin-top: 0;
  }
}

@media screen and (min-width: 600px) {
  #home .news .info .list .item .link {
    padding-right: 40px;
    font-weight: 400;
    font-size: 1.56rem;
  }

  #home .news .info .list .item .link:hover {
    opacity: 0.9;
    text-decoration: none;
  }

  #home .news .info .list .item .link:hover:after {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@media screen and (min-width: 600px) {
  #home .news .info .list .item .link:before {
    top: 0.65em;
  }
}

@media screen and (min-width: 600px) {
  #home .news .info .list .item .link:after {
    width: 24px;
    right: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

@media screen and (min-width: 600px) {
  #home .news .info .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -28px 0;
    padding: 0 0 0 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 225px;
    flex: 0 0 225px;
    max-width: 225px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* #mainImg 下層ページ
================================================ */
#mainImg {
  margin-top: 25px;
  background: no-repeat 50% 0;
  background-size: cover;
  height: 140px;
}

#mainImg .mainTit {
  line-height: 1;
}

#mainImg .mainTitIn {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #24b4e2;
  background: radial-gradient(circle, #43d1f0 0, #29b3e2 50%, #669be9 100%);
  background-size: 200% 200%;
  background-position: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 599px) {
  #mainImg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 600px) {
  #mainImg {
    height: 280px;
    margin: 65px 70px 0;
  }
}

@media screen and (min-width: 600px) {
  #mainImg .mainTit {
    padding-top: 124px;
  }
}

@media screen and (min-width: 600px) {
  #mainImg .mainTitIn {
    font-size: 5rem;
  }
}

@media all and (-ms-high-contrast: none) {
  #mainImg .mainTitIn {
    background: transparent;
  }
}

@media screen and (min-width: 600px) and (max-width: 1700px) {
  #mainImg {
    margin-right: 40px;
    margin-left: 40px;
  }
}

@media screen and (max-width: 599px) {
  #about #mainImg {
    background-image: url(../img/about/bg_mainimg01_sp.png);
  }

  #case #mainImg {
    background-image: url(../img/case/bg_mainimg01_sp.png);
  }

  #faq #mainImg {
    background-image: url(../img/faq/bg_mainimg01_sp.png);
  }

  #company #mainImg {
    background-image: url(../img/company/bg_mainimg01_sp.png);
  }

  #service #mainImg {
    background-image: url(../img/service/bg_mainimg01_sp.png);
  }
}

@media screen and (min-width: 600px) {
  #about #mainImg {
    background-image: url(../img/about/bg_mainimg01_pc.png);
  }

  #case #mainImg {
    background-image: url(../img/case/bg_mainimg01_pc.png);
  }

  #faq #mainImg {
    background-image: url(../img/faq/bg_mainimg01_pc.png);
  }

  #company #mainImg {
    background-image: url(../img/company/bg_mainimg01_pc.png);
  }

  #service #mainImg {
    background-image: url(../img/service/bg_mainimg01_pc.png);
  }
}

#customer #mainImg,
#single.case #mainImg,
#privacy #mainImg,
#contact #mainImg,
#error #mainImg {
  position: relative;
  background: #f5f7fa;
  height: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {

  #customer #mainImg,
  #single.case #mainImg,
  #privacy #mainImg,
  #contact #mainImg,
  #error #mainImg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 600px) {

  #customer #mainImg,
  #single.case #mainImg,
  #privacy #mainImg,
  #contact #mainImg,
  #error #mainImg {
    margin-top: 60px;
    height: auto;
  }
}

#customer #mainImg .mainTit,
#single.case #mainImg .mainTit,
#privacy #mainImg .mainTit,
#contact #mainImg .mainTit,
#error #mainImg .mainTit {
  text-align: center;
}

@media screen and (min-width: 600px) {

  #customer #mainImg .mainTit,
  #single.case #mainImg .mainTit,
  #privacy #mainImg .mainTit,
  #contact #mainImg .mainTit,
  #error #mainImg .mainTit {
    padding: 50px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 600px) {

  #customer #mainImg .mainTitIn,
  #single.case #mainImg .mainTitIn,
  #privacy #mainImg .mainTitIn,
  #contact #mainImg .mainTitIn,
  #error #mainImg .mainTitIn {
    font-size: 4.4rem;
  }
}

#customer .mainTit,
#privacy .mainTit {
  margin-left: -5px;
  margin-right: -10px;
}

@media screen and (max-width: 599px) {
  #customer #mainImg .mainTitIn {
    letter-spacing: 0.07em;
  }
}

#mainImg .mainTitIn {
  display: block;
  height: 35px;
}

#mainImg .mainTitIn img {
  display: block;
  height: 35px;
}

@media screen and (min-width: 600px) {
  #mainImg .mainTitIn {
    height: 46px;
  }

  #mainImg .mainTitIn img {
    height: 46px;
  }
}

#mainImg .about {
  margin: 0 auto;
}

#about #mainImg .mainTitIn {
  text-align: center;
  line-height: 1.5;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: .13em;
  height: auto;
}

@media screen and (min-width: 600px) {
  #about #mainImg .mainTitIn {
    font-size: 3.5rem;
  }

  @media screen and (min-width: 1260px) {
    #about #mainImg .mainTitIn {
      font-size: clamp(35px, 16.2496px + 1.7045vw, 50px);
    }
  }


  #about #mainImg .mainTitIn img {
    width: 381px;
  }
}

#service #mainImg .mainTitIn {
  width: 255px;
}

#service #mainImg .mainTitIn img {
  width: 255px;
}

@media screen and (min-width: 600px) {
  #service #mainImg .mainTitIn {
    width: 364px;
  }

  #service #mainImg .mainTitIn img {
    width: 364px;
  }
}

#case #mainImg .mainTitIn {
  width: 170px;
}

#case #mainImg .mainTitIn img {
  width: 170px;
}

@media screen and (min-width: 600px) {
  #case #mainImg .mainTitIn {
    width: 241px;
  }

  #case #mainImg .mainTitIn img {
    width: 241px;
  }
}

#faq #mainImg .mainTitIn {
  width: 254px;
}

#faq #mainImg .mainTitIn img {
  width: 254px;
}

@media screen and (min-width: 600px) {
  #faq #mainImg .mainTitIn {
    width: 364px;
  }

  #faq #mainImg .mainTitIn img {
    width: 364px;
  }
}

#company #mainImg .mainTitIn {
  width: 169px;
}

#company #mainImg .mainTitIn img {
  width: 169px;
}

@media screen and (min-width: 600px) {
  #company #mainImg .mainTitIn {
    width: 241px;
  }

  #company #mainImg .mainTitIn img {
    width: 241px;
  }
}

#customer #mainImg .mainTitIn {
  width: 280px;
}

#customer #mainImg .mainTitIn img {
  width: 280px;
}

@media screen and (min-width: 600px) {
  #customer #mainImg .mainTitIn {
    width: 394px;
    height: 46px;
  }

  #customer #mainImg .mainTitIn img {
    width: 394px;
    height: 46px;
  }
}

#contact #mainImg .mainTitIn {
  width: 256px;
}

#contact #mainImg .mainTitIn img {
  width: 256px;
}

@media screen and (min-width: 600px) {
  #contact #mainImg .mainTitIn {
    width: 366px;
  }

  #contact #mainImg .mainTitIn img {
    width: 366px;
  }
}

#privacy #mainImg .mainTitIn {
  width: 285px;
}

#privacy #mainImg .mainTitIn img {
  width: 285px;
}

@media screen and (min-width: 600px) {
  #privacy #mainImg .mainTitIn {
    width: 494px;
  }

  #privacy #mainImg .mainTitIn img {
    width: 494px;
  }
}

/* #sidebar
================================================ */


/*  .l-main-img
================================================ */
.l-main-img {
  position: relative;
}

.l-main-img::after {
  position: absolute;
  display: block;
  z-index: -1;
  content: "";
  bottom: -70px;
  left: -100px;
  width: 200%;
  height: calc(100% - 150px);
  background: #f5f7fa;
}

/*  .l-main-img__inner
================================================ */
.l-main-img__inner {
  padding-top: 25px;
}

@media screen and (min-width: 600px) {
  .l-main-img__inner {
    padding-top: 70px;
  }
}

/*  .l-main-img__slider
================================================ */
.l-main-img__slider {
  width: 335px;
  height: 555px;
}

@media screen and (min-width: 600px) {
  .l-main-img__slider {
    width: 1780px;
    height: 780px;
  }
}