/*--------------------
Common
--------------------*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html {
  font-size: 16px;
}
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-feature-settings: "palt";
  line-height: 1.6;
  color: #1a1a1a;
}
body:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,rgba(255,255,255,0.9)0%,rgba(255,255,255,0.9)100%),url("../img/body_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
a {
  color: #1a1a1a;
  text-decoration: none;
}
img {
  width: 100%;
}
header {
  width: 100%;
  height: 4rem;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.h-contact {
  display: none;
}
.h-logo {
  width: 11rem;
}
main {
  padding-top: 4rem;
}
section {
  width: 100%;
}
.container {
  width: 100%;
  padding: 1rem;
}
.bg-wh {
  background: #fff;
}
.bg-bl {
  background: #000075;
}
.col-box,
.col-list ul,
.col-list dl {
  display: flex;
  flex-wrap: wrap;
}
.h2-ttl {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  text-align: center;
  padding-bottom: 1rem;
}
.h2-ttl p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1rem;
}
.color-wh {
  color: #fff;
}
.h2-ttl p:before,
.h2-ttl p:after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  margin: 0 0.25rem;
  background: #1a1a1a;
}
.h2-ttl.color-wh p:before,
.h2-ttl.color-wh p:after {
  background: #fff;
}
.sub-ttl {
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
}
.sub-ttl p {
  font-size: 1rem;
}
.other-ttl {
  font-size: 1.25rem;
}
footer {
  width: 100%;
  padding-top: 1rem;
}
.foot-wrap {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.foot-access {
  width: 100%;
  padding-bottom: 1rem;
}
.foot-access h3 {
  font-size: 1.25rem;
}
.foot-access a {
  color: #fff;
}
.foot-navi {
  display: none;
}
.gmap {
  width: 100%;
  padding-top: calc(3/4*100%);
  position: relative;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.copy-right {
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: #000075;
  color: #fff;
}
.copy-right a {
  color: #fff;
}

/*--------------------
Navi Menu
--------------------*/

#navi-menu {
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  align-items: center;
  justify-content: space-between;
}
nav {
  width: 70%;
  height: 100%;
  padding: 1rem;
  position: fixed;
  top: 4rem;
  right: -100%;
  background: #fff;
  transition: 0.3s linear;
}
nav li a {
  display: flex;
  align-items: center;
  padding: 0.5rem;
}
nav li a i {
  margin-right: 0.5rem;
  font-size: 0.5rem;
}
#nav-toggle {
  width: 2rem;
  height: 1.5rem;
  position: relative;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  position: absolute;
  left: 0;
  transition: 0.3s linear;
}
#nav-toggle span:nth-of-type(1) {
  top: 0;
}
#nav-toggle span:nth-of-type(2) {
  top: 0.75rem;
}
#nav-toggle span:nth-of-type(3) {
  top: 1.5rem;
}
.navimask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 4rem;
  left: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.3s linear 0.2s;
}
.open nav {
  right: 0;
}
.open #nav-toggle span:nth-of-type(1) {
  top: 0.75rem;
  transform: rotate(-45deg);
}
.open #nav-toggle span:nth-of-type(2) {
  opacity: 0;
}
.open #nav-toggle span:nth-of-type(3) {
  top: 0.75rem;
  transform: rotate(45deg);
}
.open .navimask {
  opacity: 1;
  visibility: visible;
}

/*--------------------
Slider
--------------------*/

#mainvisual {
  width: 100%;
  position: relative;
}
#mainvisual:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}
#slider {
  width: 100%;
}
#slider .swiper-wrapper {
  height: auto;
}
#slider .swiper-slide {
  width: 100%;
  padding-top: calc(4/3*100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-text {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
}
.slide-text p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,117,0.8);
  padding: 1rem;
  line-height: 2;
  letter-spacing: 2px;
}
.slide-logo {
  width: 100%;
  padding: 1rem;
  text-align: center;
}
.slide-logo img {
  width: 50%;
}

/*--------------------
TOP
--------------------*/

.news-wrap {
  width: 100%;
  padding: 1rem;
  color: #fff;
}
.news-wrap li {
  padding: 1rem 0;
  border-bottom: 1px solid #fff;
}
.news-wrap li span {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin-right: 1rem;
  background: #1a1a1a;
}
.news-wrap li a {
  color: #fff;
}
.about-wrap {
  align-items: center;
  justify-content: space-between;
}
.about-image {
  width: 100%;
}
.about-image span {
  display: block;
  width: 100%;
  padding-top: calc(3/4*100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-text {
  width: 100%;
  padding: 1rem;
}
.feature-wrap {
  width: 100%;
  justify-content: space-between;
}
.feature-wrap h3 {
  padding-bottom: 1rem;
}
.feature-image {
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
}
.feature-image span {
  display: block;
  width: 100%;
  padding-top: calc(3/4*100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.feature-text {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  z-index: 1;
  font-size: 1.25rem;
}
.feature-num {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
}
.business-wrap {
  padding: 1rem 0;
}
.business-image {
  width: 100%;
}
.business-image span {
  display: block;
  width: 100%;
  padding-top: calc(3/4*100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.business-text {
  width: 100%;
  padding: 0.5rem 0;
}
.business-text span {
  font-size: 1.125rem;
  font-weight: 600;
}
.works-wrap {
  width: 100%;
  justify-content: space-between;
}
.works-wrap .gallery-image {
  width: 100%;
  padding: 0;
  margin: 1rem 0;
  position: relative;
}
.works-wrap .gallery-image p {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background: rgba(255,255,255,0.8);
}
.works-wrap .gallery-image:nth-of-type(n + 3) {
  display: none;
}
.area-wrap {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.area-image {
  width: 100%;
}
.area-image span {
  display: block;
  width: 100%;
  padding-top: calc(3/4*100%);
  background: url("../img/area1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.area-text {
  width: 100%;
  padding: 1rem 0;
}
.recruit-wrap {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(0deg,rgba(0,0,0,0.5)0%,rgba(0,0,0,0.5)100%),
  url("../img/recruit1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
}
.recruit-wrap a {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  background: #000075;
  font-size: 1rem;
  color: #fff;
}
.recruit-wrap a i {
  margin-left: 0.5rem;
}

/*--------------------
Business
--------------------*/

#busi {
  width: 100%;
  padding: 2rem 0;
  background: linear-gradient(0deg,rgba(0,0,0,0.5)0%,rgba(0,0,0,0.5)100%),
  url("../img/under_main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.busi-greeting {
  width: 100%;
  padding: 1rem 0;
}
.busi-greeting h3 {
  font-size: 1.25rem;
}
.busi-greeting p {
  margin-top: 1rem;
}
.mate-wrap {
  width: 100%;
  padding: 1rem 0;
  justify-content: space-between;
}
.mate-box {
  width: 100%;
}
.mate-image {
  width: 100%;
}
.mate-image span {
  display: block;
  width: 100%;
  padding-top: calc(3/4*100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mate-box p {
  padding: 1rem 0;
}

/*--------------------
Works
--------------------*/

#works {
  width: 100%;
  padding: 2rem 0;
  background: linear-gradient(0deg,rgba(0,0,0,0.5)0%,rgba(0,0,0,0.5)100%),
  url("../img/under_main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gallery-wrap {
  width: 100%;
  justify-content: flex-start;
}
.gallery-image {
  width: 100%;
  padding: 0.5rem;
}

/*--------------------
About
--------------------*/

#about {
  width: 100%;
  padding: 2rem 0;
  background: linear-gradient(0deg,rgba(0,0,0,0.5)0%,rgba(0,0,0,0.5)100%),
  url("../img/under_main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-greeting {
  width: 100%;
  padding: 1rem 0;
}
.about-greeting p {
  padding: 1rem 0;
  line-height: 1.8;
}
.sign {
  justify-content: flex-end;
}
.about-greeting .sign {
  padding-top: 0;
}
.prof-wrap dl {
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1a1a1a;
}
.prof-wrap dl dt,
.prof-wrap dl dd {
  width: 100%;
}

/*--------------------
Recruit
--------------------*/

#recruit {
  width: 100%;
  padding: 2rem 0;
  background: linear-gradient(0deg,rgba(0,0,0,0.5)0%,rgba(0,0,0,0.5)100%),
  url("../img/under_main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.recruit-greeting {
  width: 100%;
  padding: 1rem 0;
}
.rec-gr-wrap {
  width: 100%;
  padding: 1rem 0;
  justify-content: space-between;
}
.rec-gr-image {
  width: 100%;
}
.rec-gr-image span {
  display: block;
  width: 100%;
  padding-top: calc(3/4*100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rec-gr-text {
  width: 100%;
}
.recinfo-wrap {
  padding: 1rem 0;
}
.recinfo-wrap dl dt {
  width: 100%;
  padding: 0.5rem;
  background: #f0f0f0;
  border: 1px solid #ccc;
}
.recinfo-wrap dl dd {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
}
.recinfo-wrap dl:nth-of-type(n + 2) dt {
  border-top: 0;
}
.recinfo-wrap dl dt + dd {
  border-top: 0;
}

/*--------------------
Contact
--------------------*/

#contact {
  width: 100%;
  padding: 2rem 0;
  background: linear-gradient(0deg,rgba(0,0,0,0.5)0%,rgba(0,0,0,0.5)100%),
  url("../img/under_main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-greeting {
  width: 100%;
  padding: 1rem 0;
}
.contact-greeting h3 {
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.contact-greeting li {
  text-align: center;
}
.contact-greeting li:nth-of-type(1) {
  font-size: 1.5rem;
  font-weight: 600;
}
.form-wrap {
  width: 100%;
}
.form-wrap dl dt span {
  display: inline-block;
  margin-right: 0.25rem;
  color: #c62828;
}
.form-wrap dl dd {
  padding-bottom: 1rem;
}
.form-wrap input,
.form-wrap textarea {
  width: 100%;
  padding: 0.25rem 0.5rem;
}
.tcenter {
  text-align: center;
}
.tcenter button {
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 0.5rem 1rem;
  background: #000075;
  color: #fff;
}
.prv {
  width: 100%;
  padding: 1rem 0;
}
.prv dl dt {
  padding-top: 1rem;
}
.thanks-wrap {
  width: 100%;
  padding: 1rem 0;
}
.thanks-wrap p {
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.totop {
  text-align: center;
}
.totop a {
  padding: 0.5rem 1rem;
  background: #000075;
  color: #fff;
}

/*--------------------
Information
--------------------*/

#info {
  width: 100%;
  padding: 2rem 0;
  background: linear-gradient(0deg,rgba(0,0,0,0.5)0%,rgba(0,0,0,0.5)100%),
  url("../img/under_main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.info-wrap {
  justify-content: flex-start;
}
.info-box {
  padding: 0.5rem;
}
.info-img {
  width: 100%
}
.info-inn {
  width: 100%;
}
.info-inn span {
  display: block;
}
.info-detail {
  width: 100%;
  justify-content: space-between;
}
.detail-left {
  width: 100%;
}
.detail-right {
  width: 100%;
}
.detail-ttl {
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #000075;
}
.detail-ttl span {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
}
.detail-right h3 {
  padding: 0.5rem 1rem;
  margin-top: 2rem;
  background: #000075;
  color: #fff;
  font-size: 1.25rem;
}
.detail-right ul li {
  border-bottom: 1px solid #000075;
}
.detail-right ul li a {
  display: block;
  padding: 0.5rem 1rem;
}

/*--------------------
Other
--------------------*/

#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.fadeUp {
  opacity: 0;
  transform: translateY(30%);
  transition: 0.6s ease;
}
.delay1 {
  transition-delay: 0.1s;
}
.delay2 {
  transition-delay: 0.2s;
}
.delay3 {
  transition-delay: 0.3s;
}
.delay4 {
  transition-delay: 0.4s;
}
.fadeUp.active {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------
PC
--------------------*/

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

  /*--------------------
  PC Common
  --------------------*/

  header {
    height: 8rem;
  }
  .h-contact {
    display: block;
    width: 1200px;
    max-width: 100%;
    margin: auto;
    position: relative;
  }
  .h-contact ul {
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 1rem;
    right: 2rem;
  }
  .h-contact li {
    margin: 0 0.5rem;
  }
  .h-contact-tel {
    font-size: 1.5rem;
  }
  .h-contact-btn a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #000075;
    color: #fff;
  }
  .h-contact-btn a i {
    font-size: 0.5rem;
    padding-left: 0.5rem;
  }
  .h-logo {
    width: 16rem;
  }
  main {
    padding-top: 8rem;
  }
  .container {
    width: 1200px;
    max-width: 100%;
    padding: 4rem 1rem;
    margin: auto;
  }
  .h2-ttl {
    padding: 2rem 0 4rem;
    font-size: 2.5rem;
  }
  .sub-ttl {
    padding: 1rem 0;
    font-size: 2rem;
  }
  .other-ttl {
    font-size: 1.5rem;
  }
  .foot-access {
    width: 50%;
  }
  .foot-access h3 {
    font-size: 2rem;
  }
  .foot-access p {
    font-size: 1.25rem;
  }
  .foot-navi {
    display: block;
    width: 100%;
    padding-top: 4rem;
  }
  .foot-navi li + li {
    margin-left: 1rem;
  }
  .foot-navi li a {
    font-size: 1.125rem;
    text-decoration: underline;
  }
  .gmap {
    width: 50%;
    padding-top: calc(3/4*50%);
  }

  /*--------------------
  PC Navi Menu
  --------------------*/

  #navi-menu {
    width: 1200px;
    max-width: 100%;
    padding-top: 2rem;
    margin: auto;
  }
  nav {
    width: auto;
    height: auto;
    position: static;
  }
  nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  nav li a span {
    display: none;
  }
  #nav-toggle,.navimask {
    display: none;
  }

  /*--------------------
  PC Slider
  --------------------*/

  #slider .swiper-slide {
    padding-top: calc(3/8*100%);
  }
  .slide-text {
    width: auto;
  }
  .slide-text p {
    font-size: 1.5rem;
  }

  /*--------------------
  PC TOP
  --------------------*/

  .about-image {
    width: 45%;
  }
  .about-text {
    width: 55%;
    padding: 2rem;
    font-size: 1.25rem;
  }
  .feature-wrap {
    padding-top: 2rem;
  }
  .feature-image {
    width: 48%;
    display: flex;
    flex-wrap: wrap;
  }
  .feature-image span {
    width: 50%;
    padding-top: calc(1/3*100%);
  }
  .feature-image:after {
    display: none;
  }
  .feature-text {
    width: 50%;
    position: static;
    background: #000075;
    transform: none;
  }
  .business-image {
    width: 45%;
  }
  .business-text {
    width: 55%;
    padding: 2rem;
    font-size: 1.25rem;
  }
  .business-text span {
    font-size: 1.5rem;
  }
  .reverse {
    flex-direction: row-reverse;
  }
  .works-wrap .gallery-image {
    width: 48%;
  }
  .works-text {
    padding: 1rem;
    font-size: 1.25rem;
  }
  .area-image {
    width: 48%;
  }
  .area-text {
    width: 48%;
  }
  .area-text p {
    font-size: 1.25rem;
  }
  .recruit-wrap {
    padding: 4rem 1rem;
    font-size: 2rem;
  }
  .recruit-wrap a {
    font-size: 1.25rem;
  }

  /*--------------------
  PC Business
  --------------------*/

  #busi {
    padding: 4rem 0;
  }
  .busi-greeting h3 {
    font-size: 2rem;
    text-align: center;
  }
  .busi-greeting p {
    font-size: 1.25rem;
  }
  .mate-box {
    width: 32%;
  }

  /*--------------------
  PC Works
  --------------------*/

  #works {
    padding: 4rem 0;
  }
  .gallery-image {
    width: 25%;
    padding: 1rem;
  }

  /*--------------------
  PC About
  --------------------*/

  #about {
    padding: 4rem 0;
  }
  .about-sec {
    width: 780px;
    margin: auto;
  }
  .about-greeting {
    font-size: 1.25rem;
  }
  .prof-wrap {
    font-size: 1.25rem;
  }
  .prof-wrap dl {
    padding: 1rem 0;
  }
  .prof-wrap dl dt {
    width: 35%;
  }
  .prof-wrap dl dd {
    width: 65%;
    padding: 0 0.5rem;
  }

  /*--------------------
  PC Recruit
  --------------------*/

  #recruit {
    padding: 4rem 0;
  }
  .recruit-greeting {
    font-size: 1.25rem;
  }
  .rec-gr-image {
    width: 45%;
  }
  .rec-gr-text {
    width: 55%;
    padding: 1rem 2rem;
  }
  .recinfo-wrap {
    font-size: 1.125rem;
  }
  .rec-sec {
    width: 780px;
    margin: auto;
  }
  .recinfo-wrap dl dt {
    width: 40%;
    padding: 1rem;
  }
  .recinfo-wrap dl dd {
    width: 60%;
    padding: 1rem;
  }
  .recinfo-wrap dl dt + dd {
    border: 1px solid #ccc;
    border-left: 0;
  }
  .recinfo-wrap dl:nth-of-type(n + 2) dd {
    border-top: 0;
  }

  /*--------------------
  PC Contact
  --------------------*/

  #contact {
    padding: 4rem 0;
  }
  .contact-greeting li:nth-of-type(1) {
    font-size: 2rem;
  }
  .contact-greeting li:nth-of-type(2) {
    font-size: 1.25rem;
  }
  .form-wrap {
    width: 780px;
    margin: auto;
  }
  .form-wrap dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .form-wrap dl dt {
    width: 40%;
  }
  .form-wrap dl dd {
    width: 60%;
  }
  .thanks-wrap p {
    font-size: 1.25rem;
  }

  /*--------------------
  PC Information
  --------------------*/

  .info-box {
    width: 25%;
  }
  .detail-left {
    width: 78%;
  }
  .detail-right {
    width: 20%;
  }
  .detail-ttl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .detail-ttl span {
    margin-right: 1rem;
  }
}

/* フォームCMS */
.form-contents {
  padding-top: 0 !important;
}

.submit-btn {
	background: #000075 !important;
	border: 1px solid #000075 !important;
	width: 260px !important;
}

.submit-btn:hover {
	background: #ffffff !important;
	color: #000075 !important;
}

.submit-btn::before {
	display: none !important;
}
/* ------------------------ */