@charset "UTF-8";
/*=============================
レスポンシブ
=============================*/
/*=============================
共通パーツ
=============================*/
body {
  font-family: serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 13.5px;
  }
}

p {
  line-height: 1.9;
  letter-spacing: 0.2em;
  text-align: justify;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  padding-top: 70px;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.inner {
  width: 85%;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 90%;
  }
}

.section-title {
  font-size: 30px;
  color: #042275;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
  }
}

.section-subtitle {
  font-size: 25px;
  color: #042275;
  font-weight: 600;
  text-align: center;
  width: 700px;
  margin: 0 auto 40px;
  position: relative;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .section-subtitle {
    font-size: 16px;
    width: 300px;
    font-weight: 500;
    margin-bottom: 25px;
  }
}
.section-subtitle::before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 7px #9fa0a0;
  top: -40px;
  left: 42%;
  width: 10%;
}
@media screen and (max-width: 767px) {
  .section-subtitle::before {
    top: -15px;
    border-bottom: solid 4px #9fa0a0;
    width: 14%;
    left: 40%;
  }
}
.section-subtitle::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 7px #042275;
  top: -40px;
  left: 42%;
  width: 5%;
}
@media screen and (max-width: 767px) {
  .section-subtitle::after {
    top: -15px;
    border-bottom: solid 4px #042275;
    width: 7%;
    left: 40%;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/*=============================
header
=============================*/
header {
  width: 100%;
  display: flex;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  header {
    padding: 15px 20px;
  }
}
header .header-l {
  width: 200px;
}
@media screen and (max-width: 767px) {
  header .header-l {
    width: 38%;
  }
}
header .header-l img {
  width: 100%;
}
header .header-r {
  width: 230px;
}
@media screen and (max-width: 767px) {
  header .header-r {
    width: 40%;
  }
}
header .header-r img {
  width: 100%;
}

/*=============================
top
=============================*/
.top {
  background: linear-gradient(135deg, #f9f9f8, #e9e5e3);
  color: #042275;
  text-align: center;
  padding: 90px 0 40px;
}
@media screen and (max-width: 767px) {
  .top {
    padding: 50px 0 30px;
  }
}
.top .proud-master {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top .proud-master {
    width: 100%;
  }
}
.top .section-title_proud {
  margin-top: 50px;
  font-size: 35px;
}
@media screen and (max-width: 767px) {
  .top .section-title_proud {
    margin-top: 30px;
    font-size: 18px;
    letter-spacing: 0.1em;
    padding-left: 10px;
  }
}
.top p {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top p {
    margin-bottom: 15px;
  }
}

/*=============================
mission
=============================*/
.mission {
  background-color: #fff !important;
}
.mission .voice-title {
  text-align: center;
  font-size: 30px;
  color: #042275;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .mission .voice-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.mission .section-title {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .mission .section-title {
    margin-bottom: 50px;
  }
}
.mission p {
  color: #042275;
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .mission p {
    margin-bottom: 40px;
  }
}
.mission .pb {
  margin-bottom: 0px;
}

/*=============================
for
=============================*/
.for {
  background: linear-gradient(135deg, #f9f9f8, #e9e5e3);
}
.for .section-title {
  margin-bottom: 100px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .for .section-title {
    margin-bottom: 50px;
  }
}
.for p {
  color: #042275;
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .for p {
    margin-bottom: 40px;
  }
}
.for .pb {
  margin-bottom: 0px;
}

/*=============================
graph
=============================*/
.graph .graph-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .graph .graph-wrapper {
    display: block;
    margin-top: 20px;
  }
}
.graph .graph-wrapper .graph-left {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .graph .graph-wrapper .graph-left {
    width: 100%;
  }
}
.graph .graph-wrapper .graph-right {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .graph .graph-wrapper .graph-right {
    width: 100%;
  }
}
.graph .graph-wrapper .graph-right h3 {
  font-size: 28px;
  color: #001239;
  margin-bottom: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .graph .graph-wrapper .graph-right h3 {
    font-size: 20px;
    text-align: center;
    margin: 20px 0px 15px;
  }
}
.graph .graph-wrapper .graph-right p {
  line-height: 1.6;
  font-size: 15px;
}

/*=============================
nomucom
=============================*/
.nomucom {
  background: linear-gradient(170deg, #f9f9f8, #e9e5e3);
  width: 85%;
  padding: 50px 70px;
}
@media screen and (max-width: 767px) {
  .nomucom {
    padding: 30px 20px;
  }
}
.nomucom .nomu_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .nomucom .nomu_wrapper {
    display: block;
    margin-bottom: 0px;
  }
}
.nomucom .nomu_wrapper .nomu_left {
  width: 53%;
}
@media screen and (max-width: 767px) {
  .nomucom .nomu_wrapper .nomu_left {
    width: 100%;
  }
}
.nomucom .nomu_wrapper .nomu_left h2 {
  color: #002063;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .nomucom .nomu_wrapper .nomu_left h2 {
    font-size: 16.5px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
}
.nomucom .nomu_wrapper .nomu_right {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .nomucom .nomu_wrapper .nomu_right {
    width: 90%;
    margin: 25px auto 0;
    max-width: 400px;
  }
}
.nomucom .caption {
  margin-top: 15px;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .nomucom .caption {
    margin-top: 10px;
    font-size: 8px;
  }
}

/*=============================
contact
=============================*/
.contact {
  padding-bottom: 30px;
}
.contact .contact-title {
  font-size: 36px;
  color: #333;
  line-height: 2;
  font-weight: normal;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contact .contact-title {
    line-height: 1.5;
    margin-bottom: 30px;
    font-size: 17px;
    font-weight: bold;
  }
}
.contact .satisfaction {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contact .satisfaction {
    margin-bottom: 40px;
  }
}
.contact .satisfaction h2 {
  color: #fff;
  background-color: #000036;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .contact .satisfaction h2 {
    font-size: 15px;
    padding: 10px;
    padding-left: 20px;
    line-height: 1.3;
  }
}
.contact .satisfaction .satisfaction_img {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact .satisfaction .satisfaction_img {
    width: 90%;
    max-width: 400px;
  }
}
.contact .satisfaction .satisfaction_img p {
  margin-top: 10px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0px;
}
@media screen and (max-width: 767px) {
  .contact .satisfaction .satisfaction_img p {
    letter-spacing: 0px;
    font-size: 8px;
  }
}
.contact img {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contact img {
    margin-bottom: 15px;
  }
}
.contact .img-b {
  margin-bottom: 0px;
}

/*=============================
map
=============================*/
.map iframe {
  width: 100%;
  height: 650px;
  margin-top: 70px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .map iframe {
    margin-top: 30px;
    height: 400px;
  }
}

/*=============================
footer
=============================*/
.footer {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 30px;
  }
}
.footer .section-title {
  color: #152142;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .footer .section-title {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.footer .img {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .footer .img {
    width: 70%;
    margin: 0 auto 40px;
  }
}
.footer .footer-wrapper {
  width: 60%;
  margin: 0 auto;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper {
    width: 80%;
    max-width: 400px;
  }
}/*# sourceMappingURL=style.css.map */