@charset "UTF-8";
/* Reset */
* {
  padding: 0;
  margin: 0;
  font-size: 100%;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------
* responsive
--------------------------*/
/*--------------------------
* 共通  フォント
--------------------------*/
/*--------------------------
* 共通
* header
--------------------------*/
.sub-header {
  position: fixed;
  height: 100px;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  margin: auto;
}
@media screen and (max-width: 520px) {
  .sub-header {
    height: 64px;
  }
}
.sub-header__logo {
  position: absolute;
  left: 5%;
  top: 0px;
}
@media screen and (max-width: 960px) {
  .sub-header__logo {
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 520px) {
  .sub-header__logo {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.sub-header__logo img {
  width: 300px;
  height: 100px;
}
@media screen and (max-width: 520px) {
  .sub-header__logo img {
    width: 150px;
    height: auto;
  }
}

.pc-gnavi {
  height: auto;
  background: none;
  position: absolute;
  width: auto;
  z-index: 1;
  right: 5%;
  left: auto;
  top: 42px;
}
@media screen and (max-width: 960px) {
  .pc-gnavi {
    display: none;
  }
}
.pc-gnavi__content {
  position: relative;
  top: unset;
  left: unset;
  -webkit-transform: none;
          transform: none;
  width: auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pc-gnavi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.pc-gnavi__list li {
  font-size: 1em;
  margin: 0 1em;
}

.tb-gnavi {
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: -100vw;
  width: 100%;
  visibility: visible;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.tb-gnavi__wrapper {
  position: absolute;
  width: 100%;
  top: 8%;
  left: 50%;
  -webkit-transform: translate(-50%, -5%);
          transform: translate(-50%, -5%);
}
.tb-gnavi__logo {
  margin: 0 auto;
  max-width: 500px;
}
@media screen and (max-width: 520px) {
  .tb-gnavi__logo {
    width: 60%;
  }
}
.tb-gnavi__list {
  max-width: 700px;
  width: 60%;
  margin: 0 auto;
  padding-top: 34px;
}
@media screen and (max-width: 520px) {
  .tb-gnavi__list {
    padding-top: 0px;
  }
}
.tb-gnavi__list li {
  margin-bottom: 24px;
}
@media screen and (max-width: 520px) {
  .tb-gnavi__list li {
    margin-bottom: 8px;
  }
}
.tb-gnavi__list li .en {
  display: block;
}
.tb-gnavi__list li .en a {
  font-size: 1.58em;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.tb-gnavi__list li .ja {
  display: block;
}
.tb-gnavi__list li .ja a {
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.tb-gnavi__copy {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.copyright {
  width: 100%;
  font-size: 0.5em;
  text-align: center;
  opacity: 0.6;
}

.hamburger {
  display: none;
}

.hero {
  margin-top: 100px;
}
@media screen and (max-width: 520px) {
  .hero {
    margin-top: 64px;
  }
}
.hero__bg {
  position: relative;
  height: 200px;
  background-image: url(../img/hero/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
@media screen and (max-width: 520px) {
  .hero__bg {
    height: 170px;
  }
}
.hero__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.hero__content {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  height: 200px;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 520px) {
  .hero__content {
    height: 170px;
  }
}
.hero__content p {
  margin-top: 40px;
  color: #fff;
}
@media screen and (max-width: 520px) {
  .hero__content p {
    margin-top: 24px;
  }
}
.hero__content h1 {
  margin-top: 8px;
  color: #fff;
  font-size: 4.5rem;
}
@media screen and (max-width: 520px) {
  .hero__content h1 {
    font-size: 4rem;
  }
}
.hero__content .breadcrumb {
  height: 40px;
  margin-top: 8px;
  word-break: keep-all;
  white-space: nowrap;
}
.hero__content .breadcrumb::-webkit-scrollbar {
  height: 5px;
}
.hero__content .breadcrumb::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .hero__content .breadcrumb {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
.hero__content .breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: bold;
}
.hero__content .breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
  color: #fff;
}
.hero__content .breadcrumb li:last-child:after {
  content: "";
}
.hero__content .breadcrumb li a {
  margin: 0 16px;
  color: #fff;
  text-decoration: none;
}

/*-------------------------
  * hamburger　nav
  --------------------------*/
.hamburger,
.main-hamburger {
  position: fixed;
  text-align: center;
  z-index: 9999;
}
@media screen and (max-width: 960px) {
  .hamburger,
.main-hamburger {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  .hamburger,
.main-hamburger {
    height: 65px;
  }
}
.hamburger:hover,
.main-hamburger:hover {
  cursor: pointer;
}
.hamburger--trigger,
.main-hamburger--trigger {
  width: 64px;
  height: 64px;
  position: relative;
}
.hamburger--trigger span,
.main-hamburger--trigger span {
  display: inline-block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  right: 13px;
  margin: 0 auto;
  width: 39px;
  height: 1.5px;
  background-color: #19A2DB;
  border-radius: 0;
}
.hamburger--trigger span:nth-of-type(1),
.main-hamburger--trigger span:nth-of-type(1) {
  top: 21px;
}
.hamburger--trigger span:nth-of-type(2),
.main-hamburger--trigger span:nth-of-type(2) {
  top: 32px;
}
.hamburger--trigger span:nth-of-type(3),
.main-hamburger--trigger span:nth-of-type(3) {
  top: 43px;
}

.hamburger {
  top: 0.7%;
  left: 3%;
}
@media screen and (max-width: 520px) {
  .hamburger {
    top: 0;
  }
}

.main-hamburger {
  top: 2%;
  right: 3%;
}
@media screen and (max-width: 960px) {
  .main-hamburger {
    left: 3%;
    right: auto;
  }
}

/*--------------------------
  * hamburger js
  --------------------------*/
.drawer--active .tb-gnavi,
.drawer--active .main-gnavi {
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 999;
}

.btn--active .hamburger--trigger span:nth-of-type(1),
.btn--active .main-hamburger--trigger span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
          transform: translateY(11px) rotate(45deg);
}
.btn--active .hamburger--trigger span:nth-of-type(2),
.btn--active .main-hamburger--trigger span:nth-of-type(2) {
  width: 0;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.btn--active .hamburger--trigger span:nth-of-type(3),
.btn--active .main-hamburger--trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(-45deg);
          transform: translateY(-11px) rotate(-45deg);
}

svg.active .svg-elem-1 {
  fill: #1C95D4;
}

.svg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s;
}

svg.active .svg-elem-2 {
  fill: rgb(35, 24, 21);
}

.svg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s;
}

svg.active .svg-elem-3 {
  fill: rgb(35, 24, 21);
}

.svg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
}

svg.active .svg-elem-4 {
  fill: rgb(35, 24, 21);
}

.svg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
}

svg.active .svg-elem-5 {
  fill: rgb(35, 24, 21);
}

.svg-elem-5 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
}

svg.active .svg-elem-6 {
  fill: rgb(35, 24, 21);
}

.svg-elem-6 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}

svg.active .svg-elem-7 {
  fill: rgb(35, 24, 21);
}

.svg-elem-7 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
}

svg.active .svg-elem-8 {
  fill: rgb(35, 24, 21);
}

.svg-elem-8 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-9 {
  fill: #1C95D4;
}

.svg-elem-9 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

svg.active .svg-elem-10 {
  fill: rgb(35, 24, 21);
}

.svg-elem-10 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .svg-elem-11 {
  fill: rgb(35, 24, 21);
}

.svg-elem-11 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .svg-elem-12 {
  fill: rgb(35, 24, 21);
}

.svg-elem-12 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

svg.active .svg-elem-13 {
  fill: rgb(35, 24, 21);
}

.svg-elem-13 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg.active .svg-elem-14 {
  fill: rgb(35, 24, 21);
}

.svg-elem-14 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}

svg.active .svg-elem-15 {
  fill: rgb(35, 24, 21);
}

.svg-elem-15 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}

svg.active .svg-elem-16 {
  fill: rgb(35, 24, 21);
}

.svg-elem-16 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}

svg.active .svg-elem-17 {
  fill: rgb(35, 24, 21);
}

.svg-elem-17 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}

svg.active .svg-elem-18 {
  fill: #1C95D4;
}

.svg-elem-18 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}

svg.active .svg-elem-19 {
  fill: rgb(35, 24, 21);
}

.svg-elem-19 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
}

svg.active .svg-elem-20 {
  fill: rgb(35, 24, 21);
}

.svg-elem-20 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}

svg.active .svg-elem-21 {
  fill: rgb(35, 24, 21);
}

.svg-elem-21 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
}

svg.active .svg-elem-22 {
  fill: rgb(35, 24, 21);
}

.svg-elem-22 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
}

svg.active .svg-elem-23 {
  fill: rgb(35, 24, 21);
}

.svg-elem-23 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
}

svg.active .svg-elem-24 {
  fill: rgb(35, 24, 21);
}

.svg-elem-24 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
}

svg.active .svg-elem-25 {
  fill: rgb(35, 24, 21);
}

.svg-elem-25 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
}

svg.active .svg-elem-26 {
  fill: rgb(35, 24, 21);
}

.svg-elem-26 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
}

svg.active .svg-elem-27 {
  fill: rgb(35, 24, 21);
}

.svg-elem-27 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
}

svg.active .svg-elem-28 {
  fill: rgb(35, 24, 21);
}

.svg-elem-28 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
}

svg.active .svg-elem-29 {
  fill: rgb(35, 24, 21);
}

.svg-elem-29 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s;
}

svg.active .svg-elem-30 {
  fill: rgb(35, 24, 21);
}

.svg-elem-30 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
}

svg.active .svg-elem-31 {
  fill: rgb(35, 24, 21);
}

.svg-elem-31 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s;
}

svg.active .svg-elem-32 {
  fill: rgb(35, 24, 21);
}

.svg-elem-32 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
}

svg.active .svg-elem-33 {
  fill: rgb(35, 24, 21);
}

.svg-elem-33 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
}

svg.active .svg-elem-34 {
  fill: rgb(35, 24, 21);
}

.svg-elem-34 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s;
}

svg.active .svg-elem-35 {
  fill: rgb(35, 24, 21);
}

.svg-elem-35 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s;
}

svg.active .svg-elem-36 {
  fill: rgb(35, 24, 21);
}

.svg-elem-36 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s;
}

svg.active .svg-elem-37 {
  fill: rgb(35, 24, 21);
}

.svg-elem-37 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s;
}

svg.active .svg-elem-38 {
  fill: rgb(35, 24, 21);
}

.svg-elem-38 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s;
}

svg.active .svg-elem-39 {
  fill: rgb(35, 24, 21);
}

.svg-elem-39 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.pc-gnavi__list a,
.tb-gnavi__list a,
.footer__nav a,
.breadcrumb a,
.service-menu__list a {
  position: relative;
}

.pc-gnavi__list a:before,
.tb-gnavi__list a:before,
.footer__nav a:before,
.breadcrumb a:before,
.service-menu__list a:before {
  background-color: #202A39;
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.breadcrumb a:before {
  background-color: #fff;
}

.pc-gnavi__list a:hover:before,
.tb-gnavi__list a:hover:before,
.footer__nav a:hover:before,
.breadcrumb a:hover:before,
.service-menu__list a:hover:before {
  width: 100%;
}

/*--------------------------
* セクション
--------------------------*/
.sec {
  padding: min(8vw, 80px) 0;
  margin: 0 auto;
}

.sec__wrapper {
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.sec__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
}

.sec__text {
  max-width: 650px;
  padding: 32px 0 0;
  margin: 0 auto;
}

.btn {
  text-align: center;
}
.btn a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}
.btn .btn-c {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding: 2rem 6rem;
  border-radius: 100vh;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn .btn-c::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn .btn-c:hover::before {
  right: 25px;
}

.btn--blue {
  color: #000;
  background-color: #CBDAF3;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn--blue:hover {
  color: #fff;
  background: #97B5E7;
}

.btn--pink {
  color: #000;
  background-color: #F2E0E5;
}
.btn--pink:hover {
  color: #fff;
  background: #E6C2CB;
}

.btn--green {
  color: #000;
  background-color: #C0EAF2;
}
.btn--green:hover {
  color: #fff;
  background: #81D6E6;
}

.btn--orange {
  color: #000;
  background-color: #FFDF88;
}
.btn--orange:hover {
  color: #fff;
  background: #FDD258;
}

/*
--------------------------------------
global-contact
--------------------------------------
*/
.global-contact {
  margin-top: min(8vw, 80px);
  background-color: #202A39;
}
@media screen and (max-width: 520px) {
  .global-contact {
    padding: 48px 0;
  }
}
.global-contact .content {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 520px) {
  .global-contact .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.global-contact .content .global-contact__text {
  width: 50%;
}
@media screen and (max-width: 520px) {
  .global-contact .content .global-contact__text {
    width: 80%;
  }
}
.global-contact .content .global-contact__text p {
  margin-top: 48px;
}
@media screen and (max-width: 350px) {
  .global-contact .content .global-contact__text p {
    margin-top: 32px;
  }
}
.global-contact .content .global-contact__btn {
  width: 50%;
}
@media screen and (max-width: 520px) {
  .global-contact .content .global-contact__btn {
    width: 100%;
    margin-top: 32px;
  }
}

/*
--------------------------------------
footer
--------------------------------------
*/
.footer {
  background-color: #E5E5E5;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.footer .totop {
  display: block;
  height: 80px;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  border-bottom: solid 1px #202A39;
}
.footer .totop::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: calc(50% - 5px);
  width: 15px;
  height: 15px;
  border-top: 1px solid #202A39;
  border-right: 1px solid #202A39;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer .totop:hover {
  background-color: rgb(241, 241, 241);
}
.footer .totop:hover::before {
  top: calc(50% - 10px);
}
.footer__wrapper {
  width: 90%;
  padding-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 960px;
}
@media screen and (max-width: 960px) {
  .footer__wrapper {
    display: block;
  }
}
.footer__company {
  width: 50%;
  padding-right: 2rem;
}
@media screen and (max-width: 960px) {
  .footer__company {
    width: 100%;
    padding-right: 0;
  }
}
.footer__company .logo {
  width: 300px;
  height: 100px;
}
@media screen and (max-width: 520px) {
  .footer__company .logo {
    width: 200px;
    height: 66.6px;
  }
}
.footer__company .address {
  margin-top: 24px;
  line-height: 30px;
  font-style: normal;
}
@media screen and (max-width: 520px) {
  .footer__company .address {
    margin-top: 0;
  }
}
.footer__nav {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .footer__nav {
    width: 100%;
    margin-top: 24px;
  }
}
.footer__nav--tb, .footer__nav--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .footer__nav--tb, .footer__nav--sp {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav--tb, .footer__nav--sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.footer__nav--tb .menu-list, .footer__nav--sp .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding-right: 5%;
  border-right: solid 1px #202A39;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list, .footer__nav--sp .menu-list {
    padding-right: 0;
    border-right: none;
  }
}
.footer__nav--tb .menu-list:nth-child(2), .footer__nav--sp .menu-list:nth-child(2) {
  border: none;
  padding-left: 5%;
  padding-right: 0;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list:nth-child(2), .footer__nav--sp .menu-list:nth-child(2) {
    border-left: none;
    padding-left: 0;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list .sp, .footer__nav--sp .menu-list .sp {
    display: none;
  }
}
.footer__nav--tb .menu-list li, .footer__nav--sp .menu-list li {
  margin-bottom: 24px;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list li, .footer__nav--sp .menu-list li {
    margin-bottom: 16px;
  }
}
.footer__nav--tb .menu-list li:last-child, .footer__nav--sp .menu-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb, .footer__nav--sp {
    border: none;
    margin-top: 30px;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav--tb {
    display: none;
  }
}
.footer__nav--sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .footer__nav--sp {
    display: block;
  }
}
.footer__nav .service-list--tb, .footer__nav .service-list--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.footer__nav .service-list--tb li, .footer__nav .service-list--sp li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}
.footer__nav .service-list--tb li:last-child, .footer__nav .service-list--sp li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .footer__nav .service-list--tb {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav .service-list--tb {
    display: none;
  }
}
.footer__nav .service-list--sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .footer__nav .service-list--sp {
    display: block;
  }
}

.copyright {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 50px 0 20px;
  font-size: 13px;
}

/*--------------------------
* 共通
--------------------------*/
#particles-js {
  position: fixed;
  /*描画固定*/
  z-index: -1;
  /*描画を一番下に*/
  width: 100%;
  height: 100%;
  background-color: #fff;
  /*背景色*/
}

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

.global-contact,
footer {
  position: relative;
  z-index: 3;
}

/*--------------------------
* ヘッダー
--------------------------*/
.catch {
  background-color: #E0E9F8;
  margin: 1.5rem 36px 0;
  padding: 16px 16px;
  text-align: center;
}

/*--------------------------
* title
--------------------------*/
.sec__title {
  text-align: left;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .sec__title {
    text-align: center;
    margin: 0 auto 32px;
  }
}
.sec__title .ja {
  font-size: 1.6rem;
  display: block;
}
.sec__title .en {
  font-size: 4rem;
  display: block;
}

.left,
.right {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .left,
.right {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 350px) {
  .left,
.right {
    width: 90%;
  }
}

.mainvisual,
.concept,
.service,
.company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .mainvisual,
.concept,
.service,
.company {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

@media screen and (max-width: 520px) {
  .mainvisual.sec,
.concept.sec,
.service.sec,
.company.sec {
    padding: 0;
    height: 100vh;
  }
}

/*--------------------------
* mainvisual
--------------------------*/
@media screen and (max-width: 960px) {
  .mainvisual .right {
    display: none;
  }
}
.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  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: 0 auto;
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper--visual-item {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper--visual-item .bg01 {
  background-image: url(../img/homevisual/main1.jpg);
}

.swiper--visual-item .bg02 {
  background-image: url(../img/homevisual/main2.jpg);
}

.swiper--visual-item .bg03 {
  background-image: url(../img/homevisual/main3.jpg);
}

.slide-img img {
  display: block;
}

.swiper--visual-pagination {
  display: none;
}

/*--------------------------
  * js
  --------------------------*/
/* swiper */
.fadeSwiper {
  position: relative;
  overflow: hidden;
  list-style: none;
  margin: 0 auto;
}

.swiper-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/* フェーイド */
.swiper-pagination {
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  z-index: 10;
}

/*--------------------------
    * concept
    --------------------------*/
.concept-title {
  font-size: 2.5rem;
  text-align: center;
}
.concept-text {
  max-width: 640px;
  width: 90%;
  margin: 32px auto 0;
}

/*--------------------------
    * service
    --------------------------*/
.service {
  z-index: 40;
}
.service-menu__list {
  font-size: 1.6rem;
  margin-top: 16px;
}
.service-menu__list li {
  margin-top: 8px;
  margin-left: 10px;
}
@media screen and (max-width: 960px) {
  .service-menu__list {
    display: none;
  }
}
@media screen and (max-width: 350px) {
  .service {
    width: 100%;
  }
}
.service .swiper {
  overflow: hidden;
  list-style: none;
  position: relative;
}
.service .swiper .service-img {
  width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 50;
}
.service .swiper .service-img a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.service .swiper .service-img__text {
  width: 90%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 520px) {
  .service .swiper .service-img__text {
    font-size: 1.6rem;
  }
}
.service .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.service .swiper-slide {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  pointer-events: inherit;
}
.service .swiper-pagination {
  margin-top: 16px;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.service .swiper-pagination-bullet {
  cursor: pointer;
  display: inline-block;
  border-radius: 50%;
  opacity: 0.7;
  margin: 0 24px 0 0;
  width: 16px;
  height: 16px;
  background-color: #E0E9F8;
}
.service .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #202A39;
}
.service .swiper-button-next, .service .swiper-button-prev {
  position: absolute;
  top: calc(50% - 60px);
  cursor: pointer;
  z-index: 10;
  position: absolute;
  width: 30px;
  height: 30px;
  border-top: 4px solid #000;
  border-right: 4px solid #000;
}
@media screen and (max-width: 520px) {
  .service .swiper-button-next, .service .swiper-button-prev {
    width: 20px;
    height: 20px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
  }
}
.service .swiper-button-next {
  right: 4%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.service .swiper-button-prev {
  left: 4%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.service .btn {
  margin-top: 32px;
}

/*
--------------------------------------
4.company
--------------------------------------
*/
.company-visual {
  width: 85%;
  margin: auto;
}
.company-visual .btn {
  margin-top: 32px;
}

/*
--------------------------------------
.global-contact
--------------------------------------
*/
.global-contact {
  margin-top: 0;
}/*# sourceMappingURL=index.css.map */