@charset "UTF-8";
/* - フォント読み込み */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@300;400;500;700&family=Roboto:wght@100;300;400;500;900&display=swap");
/* - reset  */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, time, mark, audio, video, a, picture, figure {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: normal;
  text-decoration: none;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, picture, figure {
  display: block;
}

ul, ol {
  list-style: none;
  list-style-position: inside;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  background-color: #D7DBE4;
}

img, input, select {
  vertical-align: middle;
}

/* //////////////////////////////////////
- common
////////////////////////////////////// */
body {
  color: #000;
  font-size: 16px;
  line-height: 2;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'Noto Sans JP',sans-serif;
  letter-spacing: 0.05em;
}

body a {
  color: #ccc;
}

h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 960px;
  margin: auto;
  letter-spacing: 0.1em;
}

h2 span:first-child {
  margin-right: 20px;
  color: #2080C0;
  font-weight: 300;
  font-size: 30px;
  font-family: 'Roboto', sans-serif;
}

h2 span:last-child {
  color: #000000;
  font-size: 20px;
}

hr {
  display: block;
  width: 200px;
  height: 4px;
  margin: 80px auto;
  background-color: #2080C0;
}

.pc_none {
  display: none;
}

.sp_none {
  display: inline-block;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 1.4s;
  transition: opacity 1.4s;
}

.fade.fade_in {
  opacity: 1;
}

/* //////////////////////////////////////
- header
////////////////////////////////////// */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 80px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
}

header h1 {
  width: 25%;
  background-color: rgba(255, 255, 255, 0.9);
}

header h1 a {
  display: inline-block;
  width: 100%;
  height: 80px;
  padding: 5px 30px 0 40px;
}

header h1 img {
  width: 100%;
  max-width: 250px;
}

header .nav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(75%);
}

header .nav_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: calc(100% - 160px);
  background-color: rgba(223, 235, 243, 0.9);
}

header .nav_menu li {
  width: calc(100% / 6);
}

header .nav_menu 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: 100%;
  height: 80px;
  color: #000000;
  font-size: 18px;
  line-height: 1.5;
  -webkit-transition: opacity 0.5s, color 0.5s;
  transition: opacity 0.5s, color 0.5s;
}

header .nav_menu a span {
  display: none;
}

header .nav_menu a:hover {
  color: #2080C0;
  opacity: 0.8;
}

header .nav_menu p.nav_contact {
  width: 160px;
}

header .nav_menu p.nav_contact a {
  background-color: #2080C0;
  color: #fff;
  font-weight: bold;
}

header .nav_menu p.nav_contact a:hover {
  opacity: 0.8;
}

header .nav_menu .nav_btn {
  display: none;
}

/* //////////////////////////////////////
- main
////////////////////////////////////// */
main {
  padding-bottom: 80px;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(25%, #ffffff), color-stop(25%, #DFEBF3), to(#DFEBF3));
  background: linear-gradient(to right, #ffffff 0%, #ffffff 25%, #DFEBF3 25%, #DFEBF3 100%);
}

main .link_arrow {
  width: 200px;
  height: 40px;
  margin: auto;
}

main .link_arrow.white a {
  border: 1px solid #fff;
  color: #fff;
}

main .link_arrow.white a::before, main .link_arrow.white a::after {
  background-color: #fff;
}

main .link_arrow.white a:hover {
  background-color: #2080C0;
}

main .link_arrow.blue {
  position: relative;
}

main .link_arrow.blue::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 21px;
  right: 1px;
  width: 40px;
  height: 1px;
  background-color: #fff;
  content: "";
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main .link_arrow.blue:hover::before {
  opacity: 1;
}

main .link_arrow.blue a {
  border: 1px solid #2080C0;
  color: #2080C0;
}

main .link_arrow.blue a::before, main .link_arrow.blue a::after {
  background-color: #2080C0;
}

main .link_arrow.blue a:hover {
  background-color: #2080C0;
  color: #fff;
}

main .link_arrow a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 300;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main .link_arrow a::before, main .link_arrow a::after {
  display: block;
  position: absolute;
  height: 1px;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main .link_arrow a::before {
  top: 20px;
  right: -40px;
  width: 80px;
}

main .link_arrow a::after {
  top: 17px;
  right: -40px;
  width: 8px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

main .keyvisual {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 240px;
  margin-bottom: 80px;
  padding: 120px 0 0;
  background-image: url(../img/bg_key.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

main .keyvisual h1 {
  color: #fff;
  font-weight: 400;
  font-size: 40px;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2em;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

main .keyvisual .breadcrumblist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 90px;
  left: 20px;
  color: #fff;
}

main .keyvisual .breadcrumblist a {
  color: #fff;
}

main .keyvisual .breadcrumblist li::before {
  content: "＞";
}

main .keyvisual .breadcrumblist li:first-child:before {
  display: none;
}

main section {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

main section .wrap {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: auto;
}

main section .bnr_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main section .bnr_area li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 49%;
  max-width: 460px;
  height: 160px;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
}

main section .bnr_area li:first-child {
  background-image: url(../img/bnr_feature.png);
}

main section .bnr_area li:last-child {
  background-image: url(../img/bnr_service.png);
}

main section .bnr_area .ttl {
  width: 100%;
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
}

/* //////////////////////////////////////
- pagetop
////////////////////////////////////// */
.pagetop {
  z-index: 999;
  position: fixed;
  right: 20px;
  bottom: 0px;
  width: 110px;
  height: 200px;
  padding: 0;
  background: none;
  opacity: 1;
  -webkit-transition: bottom 0.2s, opacity 0.2s;
  transition: bottom 0.2s, opacity 0.2s;
}

.pagetop.pagetop_in {
  bottom: 0;
  opacity: 1;
}

/* //////////////////////////////////////
- footer
////////////////////////////////////// */
footer {
  z-index: 2;
  position: relative;
  top: 0;
  left: 0;
}

footer .foot_contact {
  background-image: url(../img/bg_bottom.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-color: #aaccee;
}

footer .foot_contact section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 960px;
  margin: auto;
  margin: auto;
  padding: 0;
  padding: 40px;
  background-color: #fff;
}

footer .foot_contact h2 {
  width: 100%;
}

footer .foot_contact h2 + p {
  width: 100%;
  margin-bottom: 30px;
  color: #808080;
}

footer .foot_contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

footer .foot_contact li {
  width: 48%;
}

footer .foot_contact li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 120px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

footer .foot_contact li a span {
  width: 100%;
}

footer .foot_contact li a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0.8;
}

footer .foot_contact li:first-child a {
  background-color: rgba(32, 128, 192, 0.2);
  color: #2080C0;
}

footer .foot_contact li:first-child a span {
  line-height: 1;
}

footer .foot_contact li:first-child a span:nth-child(1) {
  font-weight: bold;
  font-size: 16px;
}

footer .foot_contact li:first-child a span:nth-child(2) {
  margin: 10px auto;
  font-weight: 900;
  font-size: 32px;
  font-family: 'Roboto', sans-serif;
}

footer .foot_contact li:first-child a span:nth-child(2)::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-image: url(../img/ico_tel.svg);
  background-size: 100% 100%;
  content: "";
}

footer .foot_contact li:first-child a span:nth-child(3) {
  font-size: 14px;
}

footer .foot_contact li:last-child a {
  background-color: #2080c0;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}

footer .foot_contact li:last-child a::before {
  display: inline-block;
  width: 48px;
  height: 32px;
  margin-right: 12px;
  background-image: url(../img/ico_mail.svg);
  background-size: 100% 100%;
  content: "";
}

footer .foot_info {
  padding: 160px 0 8px;
  background-color: #333;
  color: #fff;
}

footer .foot_info a {
  color: #fff;
}

footer .foot_info .section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 0;
}

footer .foot_info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 45%;
  max-width: 436px;
  letter-spacing: 0;
}

footer .foot_info dt {
  width: calc(80px);
  margin-bottom: 30px;
  font-weight: bold;
}

footer .foot_info dd {
  width: calc(100% - 80px);
  margin-bottom: 30px;
}

footer .foot_info iframe {
  width: 55%;
  max-width: 480px;
  height: 320px;
}

footer .foot_info .section:last-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding: 40px 0 0;
}

footer .foot_info .section:last-child p {
  font-size: 12px;
}

@media screen and (max-width: 1000px) {
  header .nav_menu a {
    font-size: 16px;
  }
  main section {
    padding: 0 20px;
  }
  footer .foot_info {
    padding: 160px 20px 8px;
  }
}

@media screen and (max-width: 768px) {
  h2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 40px 40px 40px;
    background: #fff;
    line-height: 1.5;
  }
  h2 span:first-child {
    font-size: 24px;
  }
  h2 span:last-child {
    width: 100%;
    font-size: 16px;
  }
  .pc_none {
    display: inline-block;
  }
  .sp_none {
    display: none;
  }
  header {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header h1 {
    z-index: 2;
    width: calc(100% - 80px);
  }
  header h1 a {
    padding-left: 20px;
    text-align: left;
  }
  header .nav_menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: calc(100%);
    height: 100%;
    min-height: calc(100%);
    padding-bottom: 60px;
    overflow-y: auto;
    background: -webkit-gradient(linear, left top, left bottom, from(#80b0d0), to(#2080C0));
    background: linear-gradient(#80b0d0 0%, #2080C0 100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .nav_menu ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100%);
    padding-top: 90px;
    background-color: transparent;
  }
  header .nav_menu li {
    width: calc(100%);
  }
  header .nav_menu a {
    display: block;
    width: 100%;
    height: auto;
    padding: 20px 40px;
    color: #fff;
    font-size: 24px;
  }
  header .nav_menu a span {
    display: inline-block;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
  }
  header .nav_menu p.nav_contact {
    width: calc(100% - 80px);
    margin: 20px auto 0;
    border: 1px solid #fff;
    background-color: transparent;
    text-align: center;
  }
  header .nav_menu p.nav_contact a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
  }
  header .nav_menu.on {
    right: 0;
  }
  header .nav_btn {
    display: block;
    z-index: 10;
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-color: #2080C0;
  }
  header .nav_btn span {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 40px;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .nav_btn span:nth-child(1) {
    top: 27px;
  }
  header .nav_btn span:nth-child(2) {
    top: 40px;
  }
  header .nav_btn span:nth-child(3) {
    top: 53px;
  }
  header .nav_btn.on {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #2080C0;
  }
  header .nav_btn.on span:nth-child(1) {
    top: 40px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .nav_btn.on span:nth-child(2) {
    opacity: 0;
  }
  header .nav_btn.on span:nth-child(3) {
    top: 40px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  main {
    padding-bottom: 40px;
    background: rgba(191, 215, 231, 0.5);
  }
  main .link_arrow {
    width: 175px;
  }
  main .keyvisual {
    margin-bottom: 0;
    padding: 130px 0 0;
    background-image: url(../img/bg_key_sp.jpg);
  }
  main .keyvisual h1 {
    font-size: 32px;
  }
  main .keyvisual .breadcrumblist {
    display: none;
  }
  main section {
    padding: 0;
  }
  main section .wrap {
    padding: 40px;
  }
  main section .bnr_area {
    margin: auto;
  }
  main section .bnr_area li {
    width: 100%;
    margin: 0 auto 40px;
  }
  main section .bnr_area li:first-child {
    background-image: url(../img/bnr_feature_sp.png);
  }
  main section .bnr_area li:last-child {
    background-image: url(../img/bnr_service_sp.png);
  }
  .pagetop {
    right: 5px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
  footer .foot_contact section {
    top: 20px;
    width: calc(100% - 40px);
    margin: auto;
    padding: 20px;
  }
  footer .foot_contact h2 {
    margin-bottom: 12px;
    padding: 0;
  }
  footer .foot_contact h2 + p {
    margin-bottom: 0;
  }
  footer .foot_contact li {
    width: 100%;
    margin-top: 20px;
  }
  footer .foot_info {
    padding: 60px 0 8px;
  }
  footer .foot_info .section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 40px 20px;
  }
  footer .foot_info dl {
    width: 100%;
    max-width: inherit;
  }
  footer .foot_info dt {
    width: calc(100%);
    margin-bottom: 0;
  }
  footer .foot_info dd {
    width: calc(100%);
    margin-bottom: 20px;
  }
  footer .foot_info iframe {
    width: 100%;
    max-width: inherit;
    height: 200px;
  }
  footer .foot_info .section:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  footer .foot_info .section:last-child p {
    padding: 0 40px 40px;
  }
  footer .foot_info .section:last-child .copyright {
    padding: 0 10px 0;
    font-size: 11px;
    text-align: center;
  }
}

@media all and (-ms-high-contrast: none) {
  main section .bnr_area .link_arrow,
  main section .recruit_bnr .link_arrow {
    margin: auto 0;
  }
}

/*# sourceMappingURL=maps/common.css.map */
