/* import */
/* reset.css */
/* global reset */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html {
  overflow-y: scroll;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

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

caption, th {
  text-align: left;
}

fieldset {
  border: 0;
}

img {
  border: 0;
  vertical-align: bottom;
}

/* html5tag */
header, footer, nav, section, article, figure, aside {
  display: block;
  margin: 0;
  padding: 0;
}

html, body, p, h1, h2, h3, h4, h5, h6, div, span, ul, ol, li, dl, dt, dd, table, th, td, input, textarea, section, article, nav, a {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

header, footer, nav, section, article, figure, aside {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* clearfix */
.clearfix {
  display: block;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  font-size: 0;
  line-height: 0;
}

.clearfix {
  *overflow: hidden;
  *zoom: 1;
}

/* hides from ie-mac \*/
* html .clearfix {
  height: 1%;
  overflow: visible;
}

/* end hide from ie-mac */
.clear {
  clear: both;
}

.color-blue {
  color: #004cbf;
}

.color-black {
  color: #000000;
}

.show1180 {
  display: none !important;
}
@media only screen and (max-width: 1180px) {
  .show1180 {
    display: block !important;
  }
}

.show850 {
  display: none !important;
}
@media only screen and (max-width: 850px) {
  .show850 {
    display: block !important;
  }
}

.show750 {
  display: none !important;
}
@media only screen and (max-width: 750px) {
  .show750 {
    display: block !important;
  }
}

@media only screen and (max-width: 1180px) {
  .hide1180 {
    display: none !important;
  }
}

@media only screen and (max-width: 850px) {
  .hide850 {
    display: none !important;
  }
}

@media only screen and (max-width: 750px) {
  .hide750 {
    display: none !important;
  }
}

table {
  font-size: inherit;
  font: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

/* list */
ol,
ol li,
ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Stylesheet */
html {
  width: 100%;
  height: auto;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  line-height: 3.2rem;
  font-weight: 400;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media only screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}

/* link */
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}

body:not(.keyboardUser) *:focus {
  outline: none;
}

@media only screen and (max-width: 750px) {
  main {
    overflow: hidden;
  }
}

.anchor {
  display: block;
  position: relative;
  visibility: hidden;
}
.mgt60 {
  margin-top: 60px;
}
@media only screen and (max-width: 750px) {
  .mgt60 {
    margin-top: 30px;
  }
}

.mgb60 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1180px) {
  .mgb60 {
    margin-bottom: 30px;
  }
}

.mgt100 {
  margin-top: 100px;
}
@media only screen and (max-width: 750px) {
  .mgt100 {
    margin-top: inherit;
  }
}

.txt-center {
  text-align: center;
}

.btn-more-window {
  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;
  padding: 5px 10px;
  background-color: #fff;
  border-radius: 50px;
  height: 58px;
  max-width: 323px;
  width: 100%;
  color: #004cbf;
  font-weight: 600;
  position: relative;
}
.btn-more-window::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url(/assets/images/icon-newwindow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: 25px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.mg-title {
  margin-left: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.mg-title.mgl-130 {
  margin-left: 130px;
}
@media only screen and (max-width: 1180px) {
  .mg-title.mgl-130 {
    margin-left: 0px;
  }
}
.mg-title.mgl-60 {
  margin-left: 60px;
}
@media only screen and (max-width: 1180px) {
  .mg-title.mgl-60 {
    margin-left: 0px;
  }
}
.mg-title.mgl-80 {
  margin-left: 80px;
}
@media only screen and (max-width: 1180px) {
  .mg-title.mgl-80 {
    margin-left: 0px;
  }
}
.mg-title h2 {
  font-size: 6.4rem;
  font-weight: 600;
  position: relative;
  padding-right: 20px;
  background-color: #fdfdfd;
  display: inline;
  z-index: 2;
}
@media only screen and (max-width: 850px) {
  .mg-title h2 {
    font-size: 4rem;
  }
}
.mg-title h2::before {
  content: "";
  position: absolute;
  background-color: #7596d9;
  width: 18px;
  height: 18px;
  border-radius: 100px;
  left: -20px;
  top: 10px;
}
@media only screen and (max-width: 850px) {
  .mg-title h2::before {
    width: 10px;
    height: 10px;
    left: -15px;
  }
}
.mg-title.txt-center {
  text-align: center;
}
.mg-title.txt-center h2 {
  background-color: initial !important;
  padding-right: 0 !important;
}
.mg-title.color-w {
  color: #fff;
}

.line-h2 {
  position: relative;
  z-index: -1;
}
.line-h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}

.content-1440 {
  max-width: 1440px;
  width: 95%;
  margin: auto;
}

.content-1376 {
  max-width: 1376px;
  width: 95%;
  margin: auto;
}

.content-1024 {
  max-width: 1024px;
  width: 95%;
  margin: auto;
}

/* Header */
header {
  position: absolute;
  z-index: 2;
  width: 100%;
}

.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 850px) {
  .header-top {
    width: 100%;
    z-index: 9;
  }
}
.header-top .logo {
  background-color: #004cbf;
  width: 218px;
  height: 107px;
  border-radius: 0 0 6px 0;
  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;
}
@media only screen and (max-width: 850px) {
  .header-top .logo {
    width: 140px;
    height: 80px;
  }
}
.header-top .logo img {
  width: 124px;
}
@media only screen and (max-width: 850px) {
  .header-top .logo img {
    width: 100px;
  }
}

.menu-burger {
  display: none;
}
@media only screen and (max-width: 850px) {
  .menu-burger {
    display: block;
    position: absolute;
    right: 10px;
    background-color: #fff;
    border: 1px solid #cccccc;
    padding: 15px 10px;
    border-radius: 3px;
  }
}

#menu-responsive {
  display: none;
}

.header-btm {
  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;
  height: 51px;
  background-color: #fff;
  border-radius: 5px;
  margin-right: 30px;
}
@media only screen and (max-width: 850px) {
  .header-btm {
    display: none;
  }
}

.header-menu ul {
  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: 0 10px;
}

.header-menu ul li {
  widows: 25%;
  white-space: nowrap;
  border-right: 1px solid #004cbf;
  padding: 0 15px;
}
.header-menu ul li:last-child {
  border: none;
}

.nav-icon {
  width: 35px;
  height: 28px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.nav-icon span:nth-child(1) {
  top: 0px;
}

.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
  top: 13px;
}

.nav-icon span:nth-child(4) {
  bottom: 0;
}

.nav-icon.open span:nth-child(1) {
  top: 13px;
  width: 0%;
  left: 50%;
}

.nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
  top: 13px;
  width: 0%;
  left: 50%;
}

@media only screen and (max-width: 850px) {
  #menu-responsive {
    display: block;
    opacity: 0;
    position: relative;
    z-index: -4;
    -webkit-transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    visibility: hidden;
  }
}

#menu-responsive.active {
  opacity: 1;
  visibility: visible;
}

.menu-responsive {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 0;
  padding-top: 92px;
}

.menu-responsive ul li {
  border-bottom: 1px solid #CCCCCC;
}

.menu-responsive ul li:last-child {
  border-bottom: none;
}

.menu-responsive ul li a {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  padding: 20px 0;
}

.menu-responsive ul li a.button {
  width: 70%;
  margin: 40px auto 0 auto;
  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;
  background: #c30007;
}

.menu-responsive ul li a.button img {
  margin-right: 15px;
}

/* MV */
#mv {
  position: relative;
  height: 100vh;
  background-color: #fdfdfd;
}
@media only screen and (max-width: 850px) {
  #mv {
    height: 91vh;
  }
}
#mv h1 {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 5rem;
  line-height: 6rem;
  font-weight: 500;
  z-index: 1;
  background-color: #fff;
  padding: 20px 40px 10px 40px;
  border-radius: 0 10px 0 0;
}
@media only screen and (max-width: 850px) {
  #mv h1 {
    font-size: 7vw;
    line-height: 9vw;
    padding: 20px 20px 10px 20px;
  }
}
#mv h1::after {
  content: "";
  position: absolute;
  background-image: url(/assets/images/border-mv.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 20px;
  height: 23px;
  right: -15px;
  bottom: 0px;
}
#mv h1 span {
  color: #004cbf;
}
#mv h1 small {
  color: #004cbf;
  font-size: 1.6rem;
  display: block;
  margin-top: -10px;
}
@media only screen and (max-width: 850px) {
  #mv h1 small {
    font-size: 1.4rem;
  }
}
#mv .slideshow {
  height: 100%;
  overflow: hidden;
  padding-left: 80px;
}
@media only screen and (max-width: 850px) {
  #mv .slideshow {
    padding-left: 0px;
  }
}
#mv .slideshow .slider {
  height: 100vh;
}
@media only screen and (max-width: 850px) {
  #mv .slideshow .slider {
    height: 91vh;
  }
}
#mv .slideshow .slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-dots {
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 850px) {
  .mv-dots {
    left: 20px;
  }
}
.mv-dots li {
  margin: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3px;
  height: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 850px) {
  .mv-dots li {
    height: 30px;
    margin: 5px 0;
  }
}
.mv-dots li.slick-active button {
  background-color: #95bfff;
}
.mv-dots li button {
  width: 2px;
  height: 50px;
  color: transparent;
  background-color: #004cbf;
  border: 0;
  font-size: 0;
  line-height: 0;
}
@media only screen and (max-width: 850px) {
  .mv-dots li button {
    height: 30px;
  }
}
.mv-dots li button:hover {
  cursor: pointer;
}

.message {
  position: relative;
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: #fdfdfd;
}
@media only screen and (max-width: 750px) {
  .message {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.message::after {
  z-index: 0;
  content: "";
  position: absolute;
  width: 96%;
  height: 90%;
  background-color: #004cbf;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 750px) {
  .message::after {
    height: 96%;
    width: 94%;
  }
}
.message .message-box {
  position: relative;
  z-index: 1;
  background: #fdfdfd;
  -webkit-box-shadow: 20px 20px 0px #004cbf;
          box-shadow: 20px 20px 0px #004cbf;
  border-radius: 6px;
  padding: 90px 0px 20px 40px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 750px) {
  .message .message-box {
    padding: 40px 20px;
    margin-bottom: 0px;
  }
}
.message .content-1024 {
  margin: inherit;
  margin-left: 60px;
  width: inherit;
}
@media only screen and (max-width: 1180px) {
  .message .content-1024 {
    margin-left: inherit;
  }
}
.message .dis-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  .message .dis-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 750px) {
  .message .message-txt {
    line-height: 2.4rem;
  }
}
.message .message-txt h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 40px;
}
@media only screen and (max-width: 750px) {
  .message .message-txt h3 {
    font-size: 5vw;
    line-height: 7vw;
    margin-bottom: 20px;
  }
}
.message .message-txt h3 span {
  color: #004cbf;
}
.message .message-txt .c-blue {
  font-weight: 600;
  color: #004cbf;
  font-size: 2rem;
}
@media only screen and (max-width: 750px) {
  .message .message-txt .c-blue {
    font-size: 4.2vw;
    padding: 2% 0;
  }
}
.message .message-txt p + p {
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .message .message-txt p + p {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .message .message-img {
    margin: auto;
    margin-bottom: 40px;
  }
}
.message .message-img img {
  max-width: 280px;
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  .message .message-img img {
    max-width: 210px;
  }
}
.message .message-img .position {
  font-size: 1.8rem;
  font-weight: 600;
  border-left: 2px solid #004cbf;
  padding-left: 10px;
}

.about {
  padding: 80px 0;
  background-color: #fdfdfd;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: -200px;
}
@media only screen and (max-width: 750px) {
  .about {
    padding: 60px 0px;
  }
}
@media only screen and (max-width: 750px) {
  .about .mg-title {
    padding: 0 20px;
  }
}
.about .logo-about {
  max-width: 721px;
  width: 50%;
  margin-top: 40px;
  margin-right: -40px;
}
@media only screen and (max-width: 1280px) {
  .about .logo-about {
    width: 40%;
  }
}
@media only screen and (max-width: 1180px) {
  .about .logo-about {
    margin: auto;
    margin-right: 80px;
    width: 30%;
  }
}
@media only screen and (max-width: 850px) {
  .about .logo-about {
    margin: auto;
    width: 80%;
    display: block;
    margin-bottom: 20px;
  }
}
.about h3 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 5.2rem;
  white-space: nowrap;
}
@media only screen and (max-width: 1376px) {
  .about h3 {
    width: 100%;
  }
}
@media only screen and (max-width: 850px) {
  .about h3 {
    max-width: 600px;
    width: 100%;
    margin: auto;
  }
}
@media only screen and (max-width: 750px) {
  .about h3 {
    white-space: inherit;
    font-size: 5.3vw;
    line-height: 8.5vw;
    margin: auto;
    max-width: 600px;
    width: 100%;
  }
}
.about h3 span {
  color: #004cbf;
}
.about .dis-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 850px) {
  .about .dis-flex {
    display: block;
    padding: 0 20px;
  }
}
.about .txt-content {
  position: relative;
  left: -50px;
  width: 50%;
}
@media only screen and (max-width: 1376px) {
  .about .txt-content {
    width: 60%;
  }
}
@media only screen and (max-width: 850px) {
  .about .txt-content {
    width: 100%;
    left: 0;
  }
}
@media only screen and (max-width: 750px) {
  .about .txt-content .show1180 {
    display: none !important;
  }
}
.about .w600 {
  max-width: 600px;
  width: 100%;
  margin-top: 40px;
  margin-left: 140px;
}
@media only screen and (max-width: 1180px) {
  .about .w600 {
    margin-left: 0px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 850px) {
  .about .w600 {
    margin: auto;
    margin-top: 20px;
  }
}

.full-img {
  position: relative;
  z-index: 0;
  padding: 300px 0;
  background: url("/assets/images/bg-line.jpg") no-repeat center center;
  background-size: 110%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -100px;
}
@media only screen and (max-width: 750px) {
  .full-img {
    padding: 240px 0;
    background-size: 160%;
  }
}
.full-img img {
  width: 98%;
  max-width: 1440px;
  margin-top: -100px;
}

.business {
  position: relative;
  z-index: 1;
  background-color: #004cbf;
  padding: 120px 0;
}
@media only screen and (max-width: 750px) {
  .business {
    padding: 40px 0 100px 0;
  }
}
.business .slick-prev, .business .slick-next {
  top: inherit;
  bottom: -70px;
  background: url("/assets/images/next-icon.svg") no-repeat center;
}
.business .slick-next {
  right: inherit;
  left: 60px;
}
@media only screen and (max-width: 750px) {
  .business .content-1440 {
    width: 100% !important;
  }
}
@media only screen and (max-width: 750px) {
  .business .mg-title {
    width: 95%;
    margin: auto;
    padding: 0 20px;
  }
}
.business .flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.business .business-tt {
  color: #fff;
}
.business .business-tt h2 {
  color: #fff;
  background-color: #004cbf;
}
.business .business-tt .line-h2::after {
  background-color: #fff !important;
}
@media only screen and (max-width: 750px) {
  .business .business-sp-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.business .business-sp-slide .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.business .business-sp-slide .slick-slide {
  height: inherit;
}
.business .content-business {
  margin-top: 80px;
  max-width: 1357px;
  width: 100%;
  height: auto;
  color: #fff;
  background-image: url("/assets/images/bg-box-txt.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  .business .content-business {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
    background: rgba(255, 255, 255, 0.12);
    -webkit-box-shadow: inset 4px 5px 18px rgba(255, 255, 255, 0.25);
            box-shadow: inset 4px 5px 18px rgba(255, 255, 255, 0.25);
    border-radius: 11px;
    margin-top: 60px;
    margin-left: 5px;
    margin-right: 5px;
  }
}
.business .content-business.bg-no1 {
  background-size: 100% 73%;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}
@media only screen and (max-width: 1180px) {
  .business .content-business.bg-no1 {
    background-size: 100% 92%;
  }
}
@media only screen and (max-width: 850px) {
  .business .content-business.bg-no1 {
    -ms-flex-item-align: inherit;
        -ms-grid-row-align: inherit;
        align-self: inherit;
    background-size: inherit;
  }
}
.business .content-business.bg-no2 {
  margin-top: 110px;
  background-size: 100% 74%;
}
@media only screen and (max-width: 1180px) {
  .business .content-business.bg-no2 {
    background-size: 100% 92%;
    margin-top: 80px;
  }
}
@media only screen and (max-width: 850px) {
  .business .content-business.bg-no2 {
    background-size: inherit;
  }
}
@media only screen and (max-width: 750px) {
  .business .content-business.bg-no2 {
    margin-top: 60px;
  }
}
.business .content-business.bg-no3 {
  background-size: 100% 78%;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}
@media only screen and (max-width: 1180px) {
  .business .content-business.bg-no3 {
    background-size: 100% 92%;
  }
}
@media only screen and (max-width: 850px) {
  .business .content-business.bg-no3 {
    -ms-flex-item-align: inherit;
        -ms-grid-row-align: inherit;
        align-self: inherit;
    background-size: inherit;
  }
}
.business .content-business.bg-no4 {
  margin-top: 50px;
  background-size: 100% 84%;
}
@media only screen and (max-width: 1180px) {
  .business .content-business.bg-no4 {
    background-size: 100% 92%;
    margin-top: 80px;
  }
}
@media only screen and (max-width: 850px) {
  .business .content-business.bg-no4 {
    background-size: inherit;
  }
}
@media only screen and (max-width: 750px) {
  .business .content-business.bg-no4 {
    margin-top: 60px;
  }
}
.business .content-business h3 {
  font-size: 4rem;
  line-height: 4.6rem;
  font-weight: 600;
  margin: 20px 0;
}
@media only screen and (max-width: 750px) {
  .business .content-business h3 {
    font-size: 1.8rem;
    line-height: 3rem;
    margin-top: -25px;
    margin-left: 35px;
    margin-bottom: 10px;
  }
}
.business .content-business .logo-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  .business .content-business .logo-name {
    line-height: 2.2rem;
    font-size: 1.2rem;
  }
}
.business .content-business .logo-name img {
  max-width: 111px;
  background-color: #fff;
  padding: 10px;
  margin-right: 20px;
}
@media only screen and (max-width: 750px) {
  .business .content-business .logo-name img {
    max-width: 80px;
    margin-right: 10px;
  }
}
.business .content-business .btn-more-window {
  position: absolute;
}
@media only screen and (max-width: 750px) {
  .business .content-business .btn-more-window {
    position: inherit;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    max-width: inherit;
    height: 48px;
  }
  .business .content-business .btn-more-window:after {
    right: 12px;
    width: 12px;
    height: 12px;
  }
}
.business .content-business .txt-cont {
  max-width: 595px;
  width: 100%;
  margin: 40px;
  position: relative;
  top: -80px;
}
@media only screen and (max-width: 750px) {
  .business .content-business .txt-cont {
    margin: auto;
    width: 89%;
    top: -20px;
  }
}
@media only screen and (max-width: 750px) {
  .business .content-business .txt-cont .number {
    width: 25px;
  }
}
.business .content-business .img-cont {
  margin-top: 40px;
}
@media only screen and (max-width: 750px) {
  .business .content-business .img-cont {
    margin: auto;
    margin-top: -30px;
    margin-bottom: 40px;
    width: 90%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
.business .content-business .img-cont img {
  max-width: 682px;
  width: 100%;
}

.company {
  padding: 80px 0;
  background-color: #fdfdfd;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 750px) {
  .company {
    padding: 40px 0;
  }
}
.company h2 {
  background-color: #fdfdfd !important;
}
.company h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
@media only screen and (max-width: 750px) {
  .company h3 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 750px) {
  .company .mg-title {
    width: 95%;
    margin: auto;
    padding: 0 10px;
  }
}
.company .company_content {
  max-width: 1183px;
  width: 100%;
  margin: auto;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 850px) {
  .company .company_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin-top: 40px;
  }
}
.company .company_content .profile {
  max-width: 597px;
  width: 100%;
}
@media only screen and (max-width: 850px) {
  .company .company_content .profile {
    margin: auto;
  }
}
.company .company_content .profile .profile-list {
  margin-top: 20px;
}
.company .company_content .profile .profile-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #cccccc;
  line-height: 2.6rem;
}
.company .company_content .profile .profile-list li span {
  max-width: 100px;
  min-width: 100px;
}
.company .company_content .map {
  padding-left: 30px;
}
@media only screen and (max-width: 850px) {
  .company .company_content .map {
    margin-top: 40px;
    padding-left: 0px;
  }
}
.company .company_content .map .google-map {
  min-width: 520px;
  max-width: 520px;
  width: 100%;
  height: 350px;
  margin: 20px 0;
}
@media only screen and (max-width: 1180px) {
  .company .company_content .map .google-map {
    min-width: 420px;
  }
}
@media only screen and (max-width: 850px) {
  .company .company_content .map .google-map {
    min-width: inherit;
    max-width: inherit;
  }
}
.company .list-style li {
  margin-bottom: 3px;
  border: none !important;
  padding: 0 !important;
}
.company .list-style li::before {
  content: "-";
  padding-right: 8px;
}

.sponsor {
  padding: 80px 0;
  background-color: #004cbf;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 750px) {
  .sponsor {
    padding: 40px 0;
  }
}
.sponsor h2 {
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .sponsor .mg-title {
    margin: auto;
    margin-bottom: 20px;
  }
}
.sponsor .btn-banner {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: table;
  max-width: 915px;
  width: 100%;
  margin: auto;
}
.sponsor .banner-logo {
  max-width: 915px;
  width: 95%;
  height: 245px;
  margin: auto;
  background: #fdfdfd;
  border: 1px solid #000000;
  -webkit-box-shadow: 14px 14px 0px #03357f;
          box-shadow: 14px 14px 0px #03357f;
  border-radius: 6px;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
  line-height: 4.2rem;
  font-weight: 600;
}
@media only screen and (max-width: 750px) {
  .sponsor .banner-logo {
    padding: 10px;
    font-size: 2rem;
    line-height: 3rem;
    height: inherit;
    width: 90%;
  }
}
.sponsor .banner-logo .dis-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sponsor .banner-logo .sponsor-logo {
  max-width: 189px;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .sponsor .banner-logo .sponsor-logo {
    width: 100px;
  }
}

.fz18 {
  font-size: 1.8rem;
  font-weight: 600;
}

.banner-contact {
  background-color: #004cbf;
  padding: 40px 0;
  position: relative;
  z-index: 0;
}
.banner-contact .banner-contact_content {
  overflow: hidden;
  margin: auto;
  padding: 60px 0px 60px 30px;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .banner-contact .banner-contact_content {
    padding: 30px;
  }
}
.banner-contact .banner-contact_content::after {
  content: "";
  position: absolute;
  background-color: #fdfdfd;
  width: 100%;
  height: 100%;
  border-radius: 6px 0px 0 6px;
  top: 0;
  z-index: 0;
}
@media only screen and (max-width: 750px) {
  .banner-contact .banner-contact_content::after {
    left: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .banner-contact .banner-contact_content .content-1376 {
    width: 100%;
  }
}
.banner-contact .banner-contact_content .sns_content {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.banner-contact .banner-contact_content .list-sns {
  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;
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  .banner-contact .banner-contact_content .list-sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
}
.banner-contact .banner-contact_content .list-sns .btn-sns-line {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #39cd00;
  border: 1px solid #39cd00;
  padding: 11px;
  height: 113px;
}
@media only screen and (max-width: 750px) {
  .banner-contact .banner-contact_content .list-sns .btn-sns-line {
    height: 110px;
  }
}
.banner-contact .banner-contact_content .list-sns .btn-sns-line img {
  max-width: 95px;
  width: 100%;
}
@media only screen and (max-width: 1376px) {
  .banner-contact .banner-contact_content .list-sns .btn-sns-line img {
    max-width: 65px;
  }
}
@media only screen and (max-width: 750px) {
  .banner-contact .banner-contact_content .list-sns .btn-sns-line img {
    max-width: 55px;
    margin-right: 10px;
  }
}
.banner-contact .banner-contact_content .list-sns a {
  width: 33%;
}
@media only screen and (max-width: 750px) {
  .banner-contact .banner-contact_content .list-sns a {
    width: 100%;
  }
}
.banner-contact .banner-contact_content .list-sns li {
  font-size: 2.4rem;
  font-weight: 600;
  border: 1px solid #cecece;
  margin: 0 0.5rem;
  padding: 24px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 1376px) {
  .banner-contact .banner-contact_content .list-sns li {
    font-size: 1.5vw;
    line-height: 2.5vw;
    height: 113px;
  }
}
@media only screen and (max-width: 750px) {
  .banner-contact .banner-contact_content .list-sns li {
    margin: auto;
    font-size: 2rem;
    line-height: inherit;
    margin-bottom: 5px;
    padding: 15px 10px;
    height: 110px;
  }
}
.banner-contact .banner-contact_content .list-sns li .number {
  font-size: 3.5rem;
  font-weight: 600;
  color: #004cbf;
}
@media only screen and (max-width: 1376px) {
  .banner-contact .banner-contact_content .list-sns li .number {
    font-size: 2vw;
  }
  .banner-contact .banner-contact_content .list-sns li .number.tel {
    font-size: 3vw;
  }
}
@media only screen and (max-width: 1180px) {
  .banner-contact .banner-contact_content .list-sns li .number {
    font-size: 2vw;
  }
  .banner-contact .banner-contact_content .list-sns li .number.tel {
    font-size: 3vw;
  }
}
@media only screen and (max-width: 750px) {
  .banner-contact .banner-contact_content .list-sns li .number {
    font-size: 7vw;
    line-height: 10vw;
  }
  .banner-contact .banner-contact_content .list-sns li .number.tel {
    font-size: 9vw;
  }
}
.banner-contact .banner-contact_content .list-sns li .ico-sns {
  position: relative;
  top: -6px;
}
@media only screen and (max-width: 750px) {
  .banner-contact .banner-contact_content .list-sns li .ico-sns {
    width: 20px;
  }
}

footer {
  padding: 20px 0;
}
footer .footer-sns {
  text-align: center;
}
@media only screen and (max-width: 750px) {
  footer .footer-sns {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
footer .footer-sns .footer-social {
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  footer .footer-sns .footer-social {
    margin-bottom: 10px;
  }
}
footer .footer-sns .footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footer-sns .footer-social ul li {
  margin: 0 8px;
}
footer .footer-sns .footer-social ul li img {
  width: 44px;
}
@media only screen and (max-width: 750px) {
  footer .footer-sns .footer-social ul li img {
    width: 32px;
  }
}