@charset "UTF-8";
/*-------------------------------------
---------------Component------------------
---------------------------------------*/
.c-container {
  width: 100%;
  max-width: 1340px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 768px) {
  .c-container {
    max-width: 440px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 350px;
  height: 80px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background-color: #3276BB;
  background-image: url(../images/arrow-right-small.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
}

@media all and (max-width: 1024px) {
  .c-btn {
    max-width: 300px;
    height: 60px;
  }
}

.c-btn:hover {
  opacity: 0.8;
}

.c-ttl {
  font-size: 70px;
  text-align: center;
  letter-spacing: 5px;
}

@media all and (max-width: 1024px) {
  .c-ttl {
    font-size: 50px;
  }
}

@media all and (max-width: 768px) {
  .c-ttl {
    font-size: 30px;
  }
}

.c-ttl:after {
  content: '';
  display: block;
  margin: 20px auto 0;
  width: 180px;
  height: 5px;
  background-color: #3276BB;
}

@media all and (max-width: 768px) {
  .c-ttl:after {
    width: 160px;
    height: 3px;
    margin: 15px auto 0;
  }
}

.c-page__ttl {
  margin-top: -80px;
  position: relative;
}

@media all and (max-width: 768px) {
  .c-page__ttl {
    margin-top: -50px;
  }
}

.c-page__ttl p {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

@media all and (max-width: 1024px) {
  .c-page__ttl p {
    font-size: 36px;
  }
}

@media all and (max-width: 768px) {
  .c-page__ttl p {
    font-size: 24px;
  }
  .c-page__ttl p img{
    width: 120px;
  }
}

/* Toggle
-------------------------------------------------*/
.toggle {
  width: 120px;
  height: 120px;
  text-align: center;
  padding: 46px 0px;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
  z-index: 99;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #fff;
  display: none;
}

@media all and (max-width: 1280px) {
  .toggle {
    display: block;
  }
}

@media all and (max-width: 768px) {
  .toggle {
    width: 70px;
    height: 70px;
    padding: 20px 0;
  }
}

.toggle.active span,
.toggle.sub span {
  background-color: #3276BB;
}

.toggle div {
  width: 37px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.toggle span {
  content: '';
  display: block;
  width: 37px;
  height: 2px;
  background-color: #3276BB;
  margin: 4px 0;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggle span:nth-of-type(1) {
  width: 37px;
}

.toggle.change span {
  background-color: #3276BB;
}

.toggle.change span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg) translate(-8px, 5px);
  transform: rotate(-45deg) translate(-8px, 5px);
}

.toggle.change span:nth-of-type(2) {
  opacity: 0;
}

.toggle.change span:nth-of-type(3) {
  width: 37px;
  -webkit-transform: rotate(45deg) translate(-8px, -7px);
  transform: rotate(45deg) translate(-8px, -7px);
}

@media all and (min-width: 769px) {
  .u-sp {
    display: none;
  }
}

@media all and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-bg-gray {
  background-color: #F2F2F2;
}

/*-------------------------------------
---------------Header------------------
---------------------------------------*/
.c-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 1500px) {
  .c-logo__img img {
    width: 100%;
  }
}
/*
@media all and (max-width: 768px) {
  .c-logo__img img {
    max-width: 270px;
  }
}
*/
.c-logo__txt {
  margin-top: 12px;
}

.c-logo__txt01 {
  font-size: 18px;
  color: #363636;
  padding-left: 5px;
  margin-bottom: 4px;
}

@media all and (max-width: 1500px) {
  .c-logo__txt01 {
    font-size: 14px;
  }
}

@media all and (max-width: 1500px) {
  .c-logo__txt02 img {
    max-width: 400px;
  }
}

.c-logo:hover {
  opacity: 0.7;
}

.c-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0 15px 40px;
}

@media all and (max-width: 1280px) {
  .c-header__container {
    height: 120px;
  }
}

@media all and (max-width: 768px) {
  .c-header__container {
    padding: 15px 80px 10px 10px;
    height: 70px;
  }
}

.c-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 1280px) {
  .c-header__inner {
    display: none;
  }
}

.c-header__info {
  padding-right: 23px;
}

.c-header__info01 {
  font-size: 18px;
  padding-left: 2px;
}

.c-header__info02 {
  font-size: 48px;
  color: #ef661f;
  font-weight: bold;
  letter-spacing: 4.5px;
  padding: 3px 0;
}

@media all and (max-width: 1500px) {
  .c-header__info02 {
    font-size: 40px;
  }
}

.c-header__info02 > img {
  margin-bottom: -2px;
}

@media all and (max-width: 1500px) {
  .c-header__info02 > img {
    max-width: 40px;
  }
}

.c-header__contact {
  border-left: 2px solid #3276BB;
  padding: 0 25px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-header__contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 272px;
  height: 64px;
  font-size: 18px;
  color: #fff;
  background-color: #3276BB;
}

@media all and (max-width: 1500px) {
  .c-header__contact a {
    width: 250px;
    font-size: 15px;
  }
}

.c-header__contact a > img {
  margin-right: 8px;
}

.c-header__contact a:hover {
  opacity: 0.7;
}

.c-nav {
  background-color: #3276BB;
}

@media all and (min-width: 1281px) {
  .c-nav {
    display: block !important;
  }
}

@media all and (max-width: 1280px) {
  .c-nav {
    display: none;
    background-color: rgba(50, 118, 187, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    width: 600px;
    padding: 140px 0;
    z-index: 98;
  }
}

@media all and (max-width: 1280px) and (max-width: 768px) {
  .c-nav {
    width: 300px;
    padding: 80px 0;
  }
}

.c-nav__inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 130px;
  height: 85px;
}

@media all and (max-width: 1280px) {
  .c-nav__inner ul {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.c-nav__inner ul li a {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

@media all and (max-width: 768px) {
  .c-nav__inner ul li a {
    font-size: 20px;
  }
}

.c-nav__inner ul li a:hover {
  opacity: 0.7;
}

@media all and (max-width: 1280px) {
  .c-nav__inner ul li {
    padding: 30px 0;
  }
}

@media all and (max-width: 768px) {
  .c-nav__inner ul li {
    padding: 25px 0;
  }
}

.c-nav__inner ul li + li a:before {
  content: '／';
  font-size: 28px;
  color: #fff;
  padding: 0 25px;
}

@media all and (max-width: 1280px) {
  .c-nav__inner ul li + li a:before {
    display: none;
  }
}

.c-kv {
  position: relative;
}

.c-kv__main {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 85px;
}

@media all and (max-width: 768px) {
  .c-kv__main {
    padding-top: 10px;
  }
}

.c-kv__logo {
  width: 450px;
  text-align: center;
}

@media all and (max-width: 1024px) {
  .c-kv__logo {
    width: 300px;
  }
}

@media all and (max-width: 768px) {
  .c-kv__logo {
    display: none;
  }
}

@media all and (max-width: 1024px) {
  .c-kv__logo img {
    max-width: 150px;
  }
}

.c-kv__content {
  padding-top: 55px;
  margin-left: 65px;
}

@media all and (max-width: 768px) {
  .c-kv__content {
    padding-top: 30px;
    margin-left: 20px;
  }
}

.c-kv__ttl {
  font-size: 70px;
  font-weight: bold;
  color: #000;
  line-height: 1.5;
}

@media all and (max-width: 1024px) {
  .c-kv__ttl {
    font-size: 45px;
  }
}

@media all and (max-width: 768px) {
  .c-kv__ttl {
    font-size: 30px;
    line-height: 1.7;
  }
}

.c-kv__ttl span {
  background-color: #fff;
  padding-right: 10px;
}

.c-kv__txt {
  margin-top: 45px;
  padding-left: 12px;
}

@media all and (max-width: 1024px) {
  .c-kv__txt {
    margin-top: 30px;
  }
}

@media all and (max-width: 768px) {
  .c-kv__txt {
    margin-top: 20px;
    padding: 0 1rem;
  }
}

.c-kv__txt p {
  padding: 10px 0;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  background-color: #fff;
  line-height: 1.6;
  letter-spacing: 2px;
}

@media all and (max-width: 1024px) {
  .c-kv__txt p {
    font-size: 24px;
  }
}

@media all and (max-width: 768px) {
  .c-kv__txt p {
    font-size: 18px;
    text-align: center;
  }
}

.c-kv__img {
  padding-left: 450px;
  height: 920px;
}

@media all and (max-width: 1024px) {
  .c-kv__img {
    padding-left: 300px;
    height: 800px;
  }
}

@media all and (max-width: 768px) {
  .c-kv__img {
    padding-left: 0;
    height: 520px;
  }
}

.c-kv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature__wrap {
  background-size: cover;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.c-feature__wrap{
  height: 230px;
}

@media all and (max-width: 768px) {
  .c-feature__wrap {
    height: 160px;
  }
}

.c-feature__wrap:before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(50, 118, 187, 0.6);
}

.c-feature__main {
  margin-top: -20px;
  z-index: 2;
}

.c-feature__ttl {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

@media all and (max-width: 768px) {
  .c-feature__ttl {
    font-size: 30px;
  }
}

.c-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-breadcrumbs li {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.c-breadcrumbs li a {
  color: #fff;
}

.c-breadcrumbs li + li:before {
  content: '';
  width: 7px;
  height: 10px;
  display: inline-block;
  background-image: url(../images/arrow-right-small.png);
  background-size: cover;
  margin: 0 20px;
}

/*-------------------------------------
---------------Footer------------------
---------------------------------------*/
.c-footer {
  background-image: url(../images/bg-footer.jpg);
  background-size: cover;
  padding: 90px 0 20px;
}

@media all and (max-width: 1280px) {
  .c-footer {
    padding: 90px 0 100px;
  }
}

@media all and (max-width: 1024px) {
  .c-footer {
    padding: 70px 0 100px;
  }
}

@media all and (max-width: 768px) {
  .c-footer {
    padding: 50px 0 100px;
  }
}

.c-footer__logo {
  text-align: center;
}

.c-footer__logo a {
  display: inline-block;
  font-size: 48px;
  color: #fff;
}

@media all and (max-width: 1024px) {
  .c-footer__logo a {
    font-size: 36px;
  }
}

@media all and (max-width: 768px) {
  .c-footer__logo a {
    font-size: 26px;
  }
}

.c-footer__logo a:hover {
  opacity: 0.7;
}

.c-footer__tel {
  font-size: 100px;
  color: #ef661f;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  margin-left: -70px;
}

@media all and (max-width: 1024px) {
  .c-footer__tel {
    font-size: 70px;
  }
  .c-footer__tel > img {
    max-width: 60px;
  }
}

@media all and (max-width: 768px) {
  .c-footer__tel {
    font-size: 30px;
    margin-left: 0;
  }
  .c-footer__tel > img {
    max-width: 30px;
  }
}

.c-footer__time {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-top: 15px;
}

@media all and (max-width: 768px) {
  .c-footer__time {
    font-size: 14px;
  }
}

.c-footer__bar {
  margin-top: 60px;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 1024px) {
  .c-footer__bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
    margin-top: 40px;
  }
}

.c-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 85px;
}

@media all and (max-width: 768px) {
  .c-footer__nav {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 768px) {
  .c-footer__nav li {
    width: 50%;
    padding: 10px 5px;
  }
}

.c-footer__nav li a {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

@media all and (max-width: 1280px) {
  .c-footer__nav li a {
    font-size: 13px;
  }
}

.c-footer__nav li a:hover {
  opacity: 0.7;
}

.c-footer__nav li + li a:before {
  content: '／';
  font-size: 24px;
  color: #fff;
  padding: 0 25px;
}

@media all and (max-width: 768px) {
  .c-footer__nav li + li a:before {
    display: none;
  }
}

.c-footer .copyright {
  color: #fff;
  font-size: 18px;
}

@media all and (max-width: 768px) {
  .c-footer .copyright {
    font-size: 12px;
  }
}

.c-fixed {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

.contact .c-fixed{
  display: none;
}

@media all and (max-width: 1280px) {
  .c-fixed {
    display: block;
  }
}

.c-fixed__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-fixed__wrap a {
  width: 50%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

@media all and (max-width: 768px) {
  .c-fixed__wrap a {
    font-size: 14px;
  }
}

.c-fixed__wrap a.\--mail {
  background-color: #3276BB;
}

.c-fixed__wrap a.\--phone {
  background-color: #EF661F;
}

.c-fixed__wrap a.\--phone img {
  margin-top: -12px;
}

.c-fixed__wrap a > img {
  margin-right: 3px;
}

.c-backtop {
  position: fixed;
  right: 20px;
  bottom: 60px;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
}

@media all and (max-width: 1280px) {
  .c-backtop {
    bottom: 80px;
  }
}

@media all and (max-width: 768px) {
  .c-backtop {
    bottom: 70px;
  }
  .c-backtop img {
    max-width: 60px;
  }
}

.c-backtop:hover {
  opacity: 0.8;
}

/*-------------------------------------
---------------Main------------------
---------------------------------------*/
.c-content {
  position: relative;
}

.c-content:before {
  content: '';
  position: absolute;
  top: -50px;
  display: block;
  width: 58%;
  height: 100%;
  background-color: #EFF7FF;
  z-index: -1;
}

@media all and (max-width: 768px) {
  .c-content:before {
    display: none;
  }
}

.c-content__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-content__img {
  width: 100%;
}

.c-content__img img {
  width: 100%;
}

.c-content__main {
  width: 100%;
  margin-top: 30px;
}

.c-content__ttl {
  font-size: 70px;
  color: #000;
}

@media all and (max-width: 1024px) {
  .c-content__ttl {
    font-size: 50px;
  }
}

@media all and (max-width: 768px) {
  .c-content__ttl {
    font-size: 30px;
  }
}

.c-content__ttl:after {
  content: '';
  display: block;
  width: 280px;
  height: 5px;
  background-color: #3276BB;
}

@media all and (max-width: 1024px) {
  .c-content__ttl:after {
    width: 200px;
  }
}

@media all and (max-width: 768px) {
  .c-content__ttl:after {
    width: 120px;
    height: 3px;
  }
}

.c-content__ttl2 {
  font-size: 28px;
  font-weight: bold;
  color: #3276bb;
  margin-top: 5px;
}

@media all and (max-width: 1024px) {
  .c-content__ttl2 {
    font-size: 20px;
  }
}

@media all and (max-width: 768px) {
  .c-content__ttl2 {
    font-size: 16px;
  }
}

.c-content__txt {
  font-size: 20px;
  margin: 30px 0 55px;
  line-height: 2;
}

@media all and (max-width: 1024px) {
  .c-content__txt {
    font-size: 16px;
  }
}

@media all and (max-width: 768px) {
  .c-content__txt {
    font-size: 14px;
    margin: 20px 0 30px;
  }
}

.c-content__txt2 {
  font-size: 18px;
  margin: 30px 0 10px;
  line-height: 1.7;
}

@media all and (max-width: 1024px) {
  .c-content__txt2 {
    font-size: 16px;
  }
}

@media all and (max-width: 768px) {
  .c-content__txt2 {
    font-size: 14px;
    margin: 20px 0 30px;
  }
}

.c-content__tb {
  margin: 35px 0 50px;
}

.c-content__tb > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-content__tb > div + div {
  margin-top: 35px;
}

@media all and (max-width: 1024px) {
  .c-content__tb > div + div {
    margin-top: 25px;
  }
}

.c-content__tb > div > p {
  font-size: 20px;
  line-height: 1.5;
}

@media all and (max-width: 1024px) {
  .c-content__tb > div > p {
    font-size: 16px;
  }
}

@media all and (max-width: 768px) {
  .c-content__tb > div > p {
    font-size: 14px;
  }
}

.c-content__tb > div > p:nth-of-type(1) {
  width: 155px;
}

@media all and (max-width: 1024px) {
  .c-content__tb > div > p:nth-of-type(1) {
    width: 110px;
  }
}

@media all and (max-width: 768px) {
  .c-content__tb > div > p:nth-of-type(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
}

.c-content.\--left:before {
  left: 0;
}

@media all and (max-width: 768px) {
  .c-content.\--left .c-content__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.c-content.\--left .c-content__main {
  padding-right: 40px;
}

@media all and (max-width: 768px) {
  .c-content.\--left .c-content__main {
    padding: 0 10px;
  }
}

.c-content.\--right:before {
  right: 0;
}

@media all and (max-width: 768px) {
  .c-content.\--right .c-content__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-content.\--right .c-content__main {
  padding-left: 30px;
}

@media all and (max-width: 768px) {
  .c-content.\--right .c-content__main {
    padding: 0 10px;
  }
}

.c-content.\--bot:before {
  top: initial;
  bottom: -50px;
}

@media all and (max-width: 768px) {
  .c-content__btn .c-btn {
    margin: 0 auto;
  }
}

.c-message {
  margin-top: 92px;
}

/* @media all and (max-width: 1024px) {
  .c-message {
    margin-top: 150px;
  }
}
 */
@media all and (max-width: 768px) {
  .c-message {
    margin-top: 60px;
  }
}

.c-manga {
  margin-top: 128px;
}

@media all and (max-width: 768px) {
  .c-manga {
    margin-top: 60px;
  }
}

.c-manga__content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 800px;
  margin: 80px auto 0;
}

@media all and (max-width: 768px) {
  .c-manga__content {
    flex-direction: column;
    margin: 60px auto 0;
  }
}

.c-manga__content a{
  width: calc(100%/2 - 10px);
}

@media all and (max-width: 768px) {
  .c-manga__content a{
    width: 100%;
  }
}

.c-intro {
  margin-top: 235px;
}

@media all and (max-width: 768px) {
  .c-intro {
    margin-top: 80px;
  }
}

.c-intro__articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}

@media all and (max-width: 768px) {
  .c-intro__articles {
    width: 100%;
    max-width: 400px;
    margin: 60px auto 0;
  }
}

.c-intro__article {
  max-width: 400px;
  margin-bottom: 40px;
}

@media all and (min-width: 769px) {
  .c-intro__article {
    width: 32%;
    margin-left: 2%;
  }
  .c-intro__article:nth-of-type(3n+1) {
    margin-left: 0;
  }
}

@media all and (min-width: 1500px) {
  .c-intro__article {
    margin-left: 50px;
  }
  .c-intro__article:nth-of-type(3n+1) {
    margin-left: 0;
  }
}

.c-intro__article a{
  color: #363636;
}

.c-intro__articleImg img {
  width: 100%;
}

.c-intro__articleTxt {
  height: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  background-color: #F2F2F2;
}

@media all and (max-width: 1280px) {
  .c-intro__articleTxt {
    font-size: 20px;
  }
}

@media all and (max-width: 1024px) {
  .c-intro__articleTxt {
    font-size: 16px;
    height: 120px;
  }
}

@media all and (max-width: 768px) {
  .c-intro__articleTxt {
    height: 100px;
  }
}

.c-intro__btn {
  margin-top: 10px;
}

.c-intro__btn .c-btn {
  margin: 0 auto;
}

.c-about {
  margin-top: 190px;
}

@media all and (max-width: 768px) {
  .c-about {
    margin-top: 100px;
  }
}

.c-about__wrap {
  margin-top: 100px;
}

@media all and (max-width: 768px) {
  .c-about__wrap {
    margin-top: 40px;
  }
}

.c-about__map {
  margin-top: 70px;
}

@media all and (max-width: 768px) {
  .c-about__map {
    margin-top: 40px;
  }
}

.c-contact {
  margin-top: 150px;
}

@media all and (max-width: 768px) {
  .c-contact {
    margin-top: 80px;
  }
}

.home .c-contact__content {
  margin-top: 50px;
  padding: 110px 0 60px;
}

@media all and (max-width: 768px) {
  .home .c-contact__content {
    margin-top: 40px;
    padding: 60px 0 40px;
  }
}

.c-contact__wrap {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
}

@media all and (max-width: 768px) {
  .c-contact__wrap {
    max-width: 440px;
  }
}

.c-contact__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.c-contact__block.mb {
  margin-bottom: 30px;
}

@media all and (max-width: 768px) {
  .c-contact__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media all and (max-width: 768px) and (max-width: 768px) {
  .c-contact__block {
    margin-bottom: 30px;
  }
}

.c-contact__lb {
  width: 220px;
  padding-top: 20px;
}

.c-contact__lb label {
  font-size: 18px;
}

@media all and (max-width: 768px) {
  .c-contact__lb {
    padding: 15px 0;
  }
  .c-contact__lb label {
    font-size: 16px;
  }
}

.c-contact__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-contact__input {
  position: relative;
}

.c-contact__input input {
  width: 100%;
  height: 50px;
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid #CDD6DD;
}

@media all and (max-width: 768px) {
  .c-contact__input input {
    height: 40px;
    font-size: 14px;
  }
}
/*
.c-contact__input.\--error input {
  border: 1px solid #98A6B5;
}

.c-contact__input.\--error:after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-error.png);
  position: absolute;
  right: 22px;
  top: 16px;
}
*/
.c-contact__input ::-webkit-input-placeholder {
  color: #CDD6DD;
  opacity: 1;
  /* Firefox */
}

.c-contact__input :-ms-input-placeholder {
  color: #CDD6DD;
  opacity: 1;
  /* Firefox */
}

.c-contact__input ::-ms-input-placeholder {
  color: #CDD6DD;
  opacity: 1;
  /* Firefox */
}

.c-contact__input ::placeholder {
  color: #CDD6DD;
  opacity: 1;
  /* Firefox */
}

.c-contact__input :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #CDD6DD;
}

.c-contact__input ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #CDD6DD;
}

.c-contact__radio {
  margin-top: 10px;
  margin-bottom: 5px;
}

.c-contact__radio > p + p {
  margin-top: 25px;
}

@media all and (max-width: 768px) {
  .c-contact__radio > p + p {
    margin-top: 15px;
  }
}

.c-contact__radio .c-radio-lb {
  position: relative;
  padding-left: 45px;
  margin-right: 20px;
  padding-top: 6px;
  font-size: 16px;
}

@media all and (max-width: 768px) {
  .c-contact__radio .c-radio-lb {
    padding-left: 40px;
    margin-right: 10px;
    margin-bottom: 5px;
    display: inline-block;
    font-size: 14px;
  }
}

.c-contact__radio input[type=radio] {
  visibility: hidden;
  position: absolute;
}

.c-contact__radio input[type=radio] + label:before {
  height: 18px;
  width: 18px;
  margin-right: 10px;
  content: " ";
  display: inline-block;
  vertical-align: baseline;
  border: 1px solid #CDD6DD;
  position: absolute;
  top: 7px;
  left: 6.5px;
  display: none;
  z-index: 10;
}

@media all and (max-width: 768px) {
  .c-contact__radio input[type=radio] + label:before {
    height: 12px;
    width: 12px;
    top: 5px;
    left: 4px;
  }
}

.c-contact__radio input[type=radio] + label:after {
  height: 30px;
  width: 30px;
  margin-right: 0px;
  content: " ";
  display: inline-block;
  vertical-align: baseline;
  border: 1px solid #CDD6DD;
  position: absolute;
  top: 1px;
  left: 0px;
  border-radius: 50%;
  background-color: #e9e9e9;
}

@media all and (max-width: 768px) {
  .c-contact__radio input[type=radio] + label:after {
    width: 20px;
    height: 20px;
  }
}

.c-contact__radio input[type=radio]:checked + label:before {
  background: #3276BB;
  display: block;
}

.c-contact__radio input[type=radio] + label:before {
  border-radius: 50%;
}

.c-contact__dropdown select {
  width: 100%;
  height: 50px;
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid #CDD6DD;
}

@media all and (max-width: 768px) {
  .c-contact__dropdown select {
    height: 40px;
    font-size: 14px;
  }
}

.c-contact__area {
  width: 100%;
  height: auto;
  font-size: 16px;
  border: 1px solid #CDD6DD;
  background-color: #fff;
}

@media all and (max-width: 768px) {
  .c-contact__area {
    height: 240px;
    font-size: 14px;
  }
}

.c-contact__area textarea{
  width: 100%;
  height: auto;
  padding: 10px 20px;
}

.c-contact__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-contact__check input[type="checkbox"] {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
  background-color: #fff;
}

.c-contact__check .lb-check {
  font-size: 12px;
  margin-left: 10px;
  position: relative;
  cursor: pointer;
}

@media all and (max-width: 768px) {
  .c-contact__check .lb-check {
    margin: 0 auto;
  }
}

.c-contact__check .lb-check:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #CDD6DD;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.c-contact__check .lb-check a {
  text-decoration: underline;
}

.c-contact__check input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 13px;
  width: 6px;
  height: 14px;
  border: solid #707070;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-contact__submit button {
  display: block;
  width: 272px;
  line-height: 48px;
  text-align: center;
  border-radius: 24px;
  background-color: #3276BB;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
}

@media all and (max-width: 768px) {
  .c-contact__submit button {
    margin: 0 auto;
  }
}

.c-contact__sub {
  font-size: 12px;
  color: #707f89;
  padding: 20px 0 0;
}
/*
.c-contact-page {
  margin: 0 0 110px;
}
*/
.c-contact-page .c-contact__content {
  margin-top: 60px;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.contact .c-contact-page .c-contact__content {
  margin-top: 0;
}

@media all and (max-width: 1280px) {
  .c-contact-page {
    margin-top: 40px;
    padding-top: 30px;
  }
}

@media all and (max-width: 768px) {
  .c-contact-page .c-contact__content {
    margin-top: 0;
    padding-top: 20px;
  }
}

.c-confirm{
  background: #fff;
  border:1px solid #e9e9e9;
  border-radius: 5px;
  max-width: 800px;
  width: calc(100% - 20px);
  margin: 5rem auto 0;
  padding: 2rem 3rem 0 3rem;
}

@media screen and (max-width: 768px){
  .c-confirm {
    padding: 2rem;
  }
}

.c-confirm h2{
  font-size: 24px;
  text-align: center;
  line-height: 2;
  margin-bottom: 2rem;
}

.c-confirm__container--detail{
  font-size: 16px;
  font-weight: bold;
  display: flex;
  border-top: 2px solid #e9e9e9;
  padding: 1.5rem;
}

.c-confirm__container--detail .left{
  width: 40%;
}
.c-confirm__container--detail .right{
  width: 60%;
}

.c-confirm__txt {
  padding: 3rem 0 2rem;
  text-align: center;
}
.c-confirm__txt div{
  text-align: center;
  padding: 1rem 0;
}

.c-confirm__txt .back, 
.c-confirm__txt .send{
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem;
  white-space: nowrap;
  padding: 10px;
  width: calc(50% - 4rem);
  max-width: 250px;
  text-align: center;
  border: none;
}

.c-confirm__txt .back{
  background-color: #000;
}

.c-confirm__txt .send{
  background-color: #3276BB;
}

.c-company {
  margin: 80px 0;
}

@media all and (max-width: 768px) {
  .c-company {
    margin: 60px 0;
  }
}

.c-company__wrap {
  width: 100%;
  max-width: 840px;
  padding: 0 20px;
  margin: 0 auto;
}

@media all and (max-width: 768px) {
  .c-company__wrap {
    padding: 0 15px;
  }
}

.c-company__tb {
  border: 1px solid #F2F2F2;
}

.c-company__tb > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-company__tb > div + div {
  border-top: 1px solid #F2F2F2;
}

.c-company__tb > div > p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
  padding: 15px 20px;
}

@media all and (max-width: 768px) {
  .c-company__tb > div > p {
    font-size: 12px;
    padding: 12px 10px;
  }
}

.c-company__tb > div > p:nth-of-type(1) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  background-color: rgba(239, 247, 255, 0.51);
}

@media all and (max-width: 768px) {
  .c-company__tb > div > p:nth-of-type(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
  }
}

.c-company__tb > div > p:nth-of-type(2) {
  padding-left: 25px;
}

@media all and (max-width: 768px) {
  .c-company__tb > div > p:nth-of-type(2) {
    padding-left: 10px;
  }
}

.c-company__mapBtn {
  margin-top: 10px;
  display: block;
  width: 100%;
  max-width: 180px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background-image: url(../images/arrow-right-small.png);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-color: #3276BB;
}

@media all and (max-width: 768px) {
  .c-company__mapBtn {
    font-size: 11px;
    background-position: center right 10px;
  }
}

.c-company__mapBtn:hover {
  opacity: 0.7;
}

/*
.c-work {
  margin-top: 130px;
}
*/

@media all and (max-width: 768px) {
  .c-work {
    margin-top: 30px;
  }
}

.c-work__ttl {
  text-align: center;
  font-size: 70px;
  color: #000;
  margin-top: -80px;
  position: relative;
}

@media all and (max-width: 1280px) {
  .c-work__ttl {
    font-size: 50px;
  }
}

@media all and (max-width: 768px) {
  .c-work__ttl {
    font-size: 30px;
  }
}

.c-work__ttl:after {
  content: '';
  width: 284px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  background-color: #3276BB;
}

@media all and (max-width: 768px) {
  .c-work__ttl:after {
    width: 130px;
  }
}

.c-work__ttl p{
  text-align: center;
}

@media all and (max-width: 768px) {
  .c-work__ttl p img{
    width: 120px;
  }
}

.c-work__ttl2 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 1280px) {
  .c-work__ttl2 {
    font-size: 20px;
  }
}

@media all and (max-width: 768px) {
  .c-work__ttl2 {
    font-size: 18px;
  }
}

.c-work__ttl2:before {
  content: '';
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  height: 3px;
  background-color: #3276BB;
  margin-right: 10px;
  margin-top: 20px;
}

@media all and (max-width: 768px) {
  .c-work__ttl2:before {
    margin-top: 10px;
  }
}

.c-work__wrap {
  margin-top: 100px;
}

@media all and (max-width: 768px) {
  .c-work__wrap {
    margin-top: 50px;
  }
}

.c-work__wrap .c-content.\--right .c-content__main {
  padding-top: 100px;
  padding-left: 45px;
}

@media all and (max-width: 768px) {
  .c-work__wrap .c-content.\--right .c-content__main {
    padding-top: 20px;
    padding-left: 0;
  }
}

.c-work__flow {
  margin: 185px 0 100px;
}

@media all and (max-width: 768px) {
  .c-work__flow {
    margin: 80px 0 60px;
  }
}

.c-work__flow--items {
  max-width: 1130px;
  margin: 85px auto 0;
}

@media all and (max-width: 768px) {
  .c-work__flow--items {
    margin: 100px auto 0;
  }
}

.c-work__flow--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

@media all and (max-width: 768px) {
  .c-work__flow--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    margin-bottom: 80px;
  }
}

.c-work__flow--item:after {
  content: '';
  position: absolute;
  top: 100%;
  width: 5px;
  height: 40px;
  background-color: #4ABDE0;
  z-index: -1;
}

@media all and (max-width: 768px) {
  .c-work__flow--item:after {
    display: none;
  }
}

.c-work__flow--item:last-of-type:after {
  display: none;
}

.c-work__flow--number {
  width: 120px;
  height: 120px;
  background-color: #4ABDE0;
  border: 4px solid #FFF;
  border-radius: 100%;
  color: #fff;
  font-size: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -5px;
  left: 0;
  /*padding-bottom: 10px;*/
}

@media all and (max-width: 768px) {
  .c-work__flow--number {
    width: 80px;
    height: 80px;
    font-size: 36px;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.c-work__flow--ttl {
  width: 347px;
  background-color: #EFF7FF;
  min-height: 106px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 95px;
  font-size: 24px;
  font-weight: bold;
}

@media all and (max-width: 1280px) {
  .c-work__flow--ttl {
    font-size: 20px;
  }
}

@media all and (max-width: 768px) {
  .c-work__flow--ttl {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    padding-top: 20px;
    min-height: 100px;
  }
}

.c-work__flow--txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F2F2F2;
  font-size: 18px;
  line-height: 1.4;
  padding: 10px 35px;
}

@media all and (max-width: 1280px) {
  .c-work__flow--txt {
    font-size: 15px;
  }
}

@media all and (max-width: 768px) {
  .c-work__flow--txt {
    min-height: 80px;
    font-size: 14px;
    padding: 10px 15px;
  }
}

.c-work__flow--btn {
  margin-top: 100px;
}

.c-work__flow--btn .c-btn {
  margin: 0 auto;
}

.c-work__intro {
  background-color: #E8FAFF;
  padding: 90px 0 70px;
}

@media all and (max-width: 768px) {
  .c-work__intro {
    padding: 60px 0 50px;
  }
}

.c-work__intro--items {
  width: 100%;
  max-width: 1220px;
  margin: 85px auto 0;
}

@media all and (max-width: 768px) {
  .c-work__intro--items {
    margin: 60px auto 0;
  }
}

.c-work__intro--item {
  background-color: #fff;
  padding: 30px 20px 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-shadow: 3px 3px 0 #DCE5EF;
          box-shadow: 3px 3px 0 #DCE5EF;
}

@media all and (max-width: 768px) {
  .c-work__intro--item {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-work__intro--img img {
  width: 100%;
}

.c-work__intro--main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 30px;
  padding-top: 10px;
}

@media all and (max-width: 768px) {
  .c-work__intro--main {
    margin-left: 0;
    padding-top: 30px;
  }
}

.c-work__intro--txt {
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.5;
}

@media all and (max-width: 768px) {
  .c-work__intro--txt {
    margin-top: 20px;
    font-size: 16px;
  }
}

.c-work__contact {
  margin-top: 100px;
}

@media all and (max-width: 768px) {
  .c-work__contact {
    margin-top: 60px;
  }
}

.c-work__contact .c-contact-page {
  margin-top: 60px;
  margin-bottom: 0;
  padding-top: 50px;
}

@media all and (max-width: 768px) {
  .c-work__contact .c-contact-page {
    margin-top: 40px;
    padding-top: 30px;
  }
}

.c-case .c-case__cards{
  display: grid;
  grid-auto-rows: minmax(315px, auto);
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
}

@media all and (min-width: 768px) {
  .c-case .c-case__cards{
    grid-template-columns: repeat(4, 25%);
  }
}

.card{
  padding: 0 7.5px 15px;
}

.card div{
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .cards--2col,
  .cards--3col {
    grid-column-end: span 2;
  }

  .cards--2row {
    height: 630px;
    grid-row-end: span 2;
  }
  
  .cards--3row {
    height: 945px;
    grid-row-end: span 3;
  }
}

.cards--1row {
  height: 315px;
}