/* Scss Document */
html {
  scroll-behavior: smooth;
}

#global-header {
  width: 100%;
}
#global-header .inner {
  width: 1366px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#global-header .inner .logo {
  width: 7%;
  margin: 0 3% 0 3%;
}
#global-header .inner .logo a img {
  width: 100%;
  margin: 0 auto;
  display: block;
  height: auto;
  vertical-align: bottom;
}
#global-header .inner #global-navi {
  width: 80%;
  margin: 0 auto 0 0;
}
#global-header .inner #global-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
}
#global-header .inner #global-navi ul li {
  position: relative;
  width: 100%;
  z-index: 1;
}
#global-header .inner #global-navi ul li:hover ul {
  display: block;
  overflow: visible;
  top: 70px;
  background-color: #ea6515;
  color: #ffffff;
  width: 100%;
}
#global-header .inner #global-navi ul li a {
  color: #00649b;
  font-size: 1.55em;
  font-weight: bold;
  padding: 24px 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  transition: all 0.5s ease;
}
#global-header .inner #global-navi ul li a span {
  transition: all 0.5s ease;
}
#global-header .inner #global-navi ul li a:hover span {
  color: #ffffff;
  display: block;
}
#global-header .inner #global-navi ul li a:hover {
  background: #00649b;
  color: #ffffff;
  padding: 24px 0px;
}
#global-header .inner #global-navi ul li ul {
  display: none;
  position: absolute;
  width: 100%;
}
#global-header .inner #global-navi ul li ul a {
  color: #ffffff;
  width: 100%;
}
#global-header .inner #global-navi ul li ul a:hover {
  width: 100%;
  text-align: center;
  background-color: #ea6515;
}
@media screen and (max-width: 1366px) {
  #global-header .inner {
    width: 100%;
  }
  #global-header .inner .logo {
    padding-left: 24px;
  }
}
@media screen and (max-width: 1024px) {
  #global-header .inner {
    height: 70px;
  }
  #global-header .inner .logo {
    width: 100%;
    text-align: center;
  }
  #global-header .inner .logo a {
    display: inline-block;
  }
  #global-header .inner .logo a img {
    width: auto;
    height: 70%;
  }
  #global-header .inner #global-navi {
    display: none;
  }
}
@media screen and (max-width: 415px) {
  #global-header .inner .logo a {
    width: 30%;
  }
  #global-header .inner .logo a img {
    width: 70%;
    height: auto;
  }
}

main#container .page-header {
  text-align: center;
  margin: 10% 0 3% 0;
}
@media screen and (max-width: 415px) {
  main#container .page-header {
    margin: 15% 0 10% 0;
  }
}
main#container .page-header h2 {
  display: inline-block;
  padding-right: 18px;
  font-size: 1.85em;
  letter-spacing: 0.25em;
  font-weight: bold;
}
main#container .page-header img {
  width: 30px;
}
main#container .page-header .maru1 {
  margin: 0 13px -8px 0;
}
main#container .page-header .maru2 {
  width: 45px;
  margin: 0 0 2px -2px;
}
main#container .page-header.contact-content {
  margin-bottom: 40px;
}

.contact-box {
  width: 70%;
  padding: 5%;
  margin: 2% auto 10% auto;
  display: flex;
  background: #fff;
  border: 4px solid #f2f8f9;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-box {
    width: 100%;
  }
}
.contact-box .contact_left {
  width: 65%;
}
@media screen and (max-width: 415px) {
  .contact-box .contact_left {
    width: 100%;
  }
}
.contact-box .contact_left h2 {
  color: #00649b;
  font-size: 2em;
  font-weight: bold;
}
.contact-box .contact_left .contact_bottom {
  display: flex;
}
@media screen and (max-width: 415px) {
  .contact-box .contact_left .contact_bottom {
    width: 100%;
  }
}
.contact-box .contact_left .contact_bottom .small_box {
  width: 40%;
  background: #f4f9f9;
  margin: 1%;
  padding: 3%;
}
@media screen and (max-width: 415px) {
  .contact-box .contact_left .contact_bottom .small_box {
    padding: 2%;
  }
}
.contact-box .contact_left .contact_bottom .small_box img {
  text-align: center;
  margin: 5% auto 10% auto;
  width: 40px;
  display: block;
}
.contact-box .contact_left .contact_bottom .small_box p {
  text-align: left;
  font-size: 1.55em;
  padding: 5%;
}
@media screen and (max-width: 768px) {
  .contact-box .contact_left {
    width: 90%;
    margin: 0 auto;
  }
}
.contact-box .contact_right {
  width: 35%;
  margin: 4% 0 0 5%;
}
@media screen and (max-width: 415px) {
  .contact-box .contact_right {
    width: 90%;
    margin: 5% auto 0 auto;
  }
}
.contact-box .contact_right .right_top {
  display: flex;
  align-items: center;
  margin-bottom: 10%;
}
.contact-box .contact_right .right_top img {
  width: 40%;
}
.contact-box .contact_right p {
  font-size: 1.55em;
  margin-left: 3%;
}
.contact-box .contact_right p span {
  font-size: 1.2em;
  color: #00649b;
}
.contact-box .right_bottom img {
  margin-top: 3%;
  width: 100%;
}
.contact-box .right_bottom img:nth-child(1):hover {
  opacity: 0.5;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }
}

#global-header .inner #global-navi ul li:nth-child(4) a {
  background-color: #00649b;
  color: #fff;
}
#global-header .inner #global-navi ul li:nth-child(4) a span {
  color: #fff;
}

#key-visual {
  background: url("../results/images/top.jpg") no-repeat center center;
  background-size: cover;
  height: 563px;
  width: 100%;
  position: relative;
}
#key-visual h2 {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 3em;
  color: #00afd8;
}
#key-visual h2 span {
  font-size: 5em;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 415px) {
  #key-visual h2 span {
    font-size: 2em;
  }
}
@media screen and (max-width: 415px) {
  #key-visual {
    height: 200px;
  }
}

.results_wrap {
  width: 70%;
  margin: 3% auto;
}
@media screen and (max-width: 768px) {
  .results_wrap {
    width: 90%;
  }
}
.results_wrap .big_box {
  margin-top: 150px;
}
.results_wrap .big_box:nth-child(1) {
  margin-top: 1%;
}
@media screen and (max-width: 415px) {
  .results_wrap .big_box {
    margin-top: 70px;
  }
}
.results_wrap .big_box .small_box1 {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 415px) {
  .results_wrap .big_box .small_box1 {
    width: 100%;
    margin-top: 50px;
  }
}
.results_wrap .big_box .small_box1 h3 {
  font-size: 2.2em;
  font-weight: bold;
  display: flex;
}
.results_wrap .big_box .small_box1 h3::before {
  content: url("../results/images/midashi.png");
  margin: 0px 10px 0 0;
}
.results_wrap .big_box .small_box1 img {
  z-index: 1;
  width: 100%;
}
.results_wrap .big_box .small_box2 {
  position: absolute;
  right: 0;
  z-index: 2;
  width: 40%;
  margin: -11% 22% 0 auto;
  background: #EAEAEA;
  padding: 3%;
}
@media screen and (max-width: 768px) {
  .results_wrap .big_box .small_box2 {
    width: 60%;
    margin: -11% 5% 0 auto;
  }
}
@media screen and (max-width: 415px) {
  .results_wrap .big_box .small_box2 {
    width: 100%;
    margin: 5% auto;
    display: block;
    position: inherit;
  }
}
.results_wrap .big_box .small_box2 .box2_top h3 {
  font-size: 2em;
  line-height: 1.5em;
  margin-top: 1%;
  font-weight: bold;
}
.results_wrap .big_box .small_box2 .box2_top h3 span {
  font-size: 0.8em;
  color: #00649b;
}
.results_wrap .big_box .small_box2 .box2_top p {
  width: 100%;
  font-size: 1.55em;
  margin-top: 3%;
  line-height: 1.7em;
}
.results_wrap .big_box .small_box2 .box2_bottom {
  margin-top: 5%;
}
.results_wrap .big_box .small_box2 .box2_bottom h3 {
  font-size: 2em;
  line-height: 1.5em;
  margin-top: 1%;
  font-weight: bold;
}
.results_wrap .big_box .small_box2 .box2_bottom h3 span {
  font-size: 0.8em;
  color: #00649b;
}
.results_wrap .big_box .small_box2 .box2_bottom .seihin {
  margin-top: 2%;
}
.results_wrap .big_box .small_box2 .box2_bottom .seihin img {
  margin: 1%;
  width: 22%;
  flex-wrap: wrap;
}
.results_wrap .big_box .small_box3 {
  background: #EAEAEA;
  width: 80%;
  padding: 3%;
  margin: 25% auto 0 auto;
}
@media screen and (max-width: 2188px) {
  .results_wrap .big_box .small_box3 {
    margin-top: 30%;
  }
}
@media screen and (max-width: 1650px) {
  .results_wrap .big_box .small_box3 {
    margin-top: 38%;
  }
}
@media screen and (max-width: 1330px) {
  .results_wrap .big_box .small_box3 {
    margin-top: 35%;
  }
}
@media screen and (max-width: 1024px) {
  .results_wrap .big_box .small_box3 {
    margin-top: 58%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .results_wrap .big_box .small_box3 {
    margin-top: 64%;
    width: 100%;
  }
}
@media screen and (max-width: 415px) {
  .results_wrap .big_box .small_box3 {
    margin-top: 5%;
    width: 100%;
  }
}
.results_wrap .big_box .small_box3 h5 {
  color: #00649b;
  font-size: 8em;
  opacity: 0.3;
  margin: -7% 0 0 -3%;
  font-family: "UD Shin Go Medium";
}
.results_wrap .big_box .small_box3 h3 {
  text-align: center;
  font-size: 3em;
  font-weight: bold;
}
.results_wrap .big_box .small_box3 .btn {
  padding: 10px;
  width: 230px;
  position: relative;
  background: #1a1a1a;
  margin: 3% 5% 0 auto;
}
@media screen and (max-width: 415px) {
  .results_wrap .big_box .small_box3 .btn {
    margin: 7% 0 0 auto;
  }
}
.results_wrap .big_box .small_box3 .btn a {
  text-align: left;
  font-size: 15px;
  font-family: "Shin Go Regular";
  line-height: 12px;
  margin-bottom: 7px;
  padding: 6px 3px 6px 8px;
  margin: 0 auto;
  display: block;
  color: #fff;
}
.results_wrap .big_box .small_box3 .btn a:hover {
  color: #ffffff;
  transition: 0.5s;
  opacity: 0.5;
}
.results_wrap .big_box .small_box3 .btn a img {
  position: absolute;
  width: 40px;
  height: 13px;
  margin: -5px 0 0 10px;
}
.results_wrap .big_box .small_box3 .btn:hover {
  background: #1a1a1a;
  color: #ffffff;
  transition: 0.5s;
}
.results_wrap .big_box .small_box3 .merit_grid {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 5%;
}
@media screen and (max-width: 415px) {
  .results_wrap .big_box .small_box3 .merit_grid {
    flex-direction: column;
  }
}
.results_wrap .big_box .small_box3 .merit_grid .merit_box {
  position: relative;
  width: 30%;
  margin: 1%;
  background: #fff;
  border: 7px solid #C9C9C9;
  padding: 3%;
}
@media screen and (max-width: 415px) {
  .results_wrap .big_box .small_box3 .merit_grid .merit_box {
    width: 100%;
    margin-top: 10%;
  }
}
.results_wrap .big_box .small_box3 .merit_grid .merit_box img {
  position: absolute;
  width: 22%;
  margin: -24% 0 0 -6%;
}
@media screen and (max-width: 415px) {
  .results_wrap .big_box .small_box3 .merit_grid .merit_box img {
    width: 15%;
    margin: -12% 0 0 -1%;
  }
}
.results_wrap .big_box .small_box3 .merit_grid .merit_box h4 {
  text-align: center;
  font-size: 1.75em;
  font-weight: bold;
}
.results_wrap .big_box .small_box3 .merit_grid .merit_box p {
  margin-top: 8%;
  font-size: 1.55em;
  line-height: 1.8em;
}

#global-footer .footer-inner {
  background: url("../images/footer.jpg") no-repeat center;
  background-size: cover;
  height: 485px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#global-footer .footer-inner h1 {
  width: 15%;
}
#global-footer .footer-inner h1 a {
  padding: 12px 0;
  display: inline-block;
}
#global-footer .footer-inner h1 a img {
  vertical-align: bottom;
  width: 80%;
  height: auto;
  background: #fff;
  padding: 4%;
}
@media screen and (max-width: 415px) {
  #global-footer .footer-inner h1 a img {
    width: 20%;
  }
}
@media screen and (max-width: 1024px) {
  #global-footer .footer-inner h1 {
    width: 30%;
  }
}
@media screen and (max-width: 415px) {
  #global-footer .footer-inner h1 {
    width: 10%;
  }
}
#global-footer .footer-inner h2 {
  font-size: 1.6em;
  color: #fff;
}
#global-footer .footer-inner h2 span {
  font-size: 1.55em;
  color: #fff;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 415px) {
  #global-footer .footer-inner h2 span {
    font-size: 1.1em;
  }
}
#global-footer .footer-inner .footer-navi {
  width: 100%;
  margin-left: 3%;
}
#global-footer .footer-inner .footer-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
}
#global-footer .footer-inner .footer-navi ul li {
  position: relative;
  z-index: 1;
  width: 100%;
}
#global-footer .footer-inner .footer-navi ul li a {
  color: #fff;
  font-size: 1.55em;
  font-weight: bold;
  padding: 12px 0px;
  width: 100%;
  display: inline-block;
  text-align: center;
  transition: all 0.5s ease;
}
#global-footer .footer-inner .footer-navi ul li a span {
  color: #fff;
  transition: all 0.5s ease;
  display: inline-block;
}
#global-footer .footer-inner .footer-navi ul li a:hover span {
  color: #00649b;
  display: block;
}
#global-footer .footer-inner .footer-navi ul li a:hover {
  background: #fff;
  color: #00649b;
  padding: 12px 0px;
  display: block;
}
@media screen and (max-width: 1366px) {
  #global-footer .footer-inner {
    width: 100%;
  }
  #global-footer .footer-inner h1 {
    padding-left: 24px;
  }
}
@media screen and (max-width: 415px) {
  #global-footer .footer-inner {
    height: 100px;
    align-items: center;
    justify-content: center;
  }
}
#global-footer .copy small {
  display: block;
  width: 1366px;
  margin: 0 auto 0 auto;
  color: #ffffff;
  font-size: 1.2em;
}
@media screen and (max-width: 1366px) {
  #global-footer .copy small {
    width: 100%;
    padding-left: 24px;
  }
}
@media screen and (max-width: 1024px) {
  #global-footer .copy small {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  #global-footer .footer-inner {
    width: 100%;
  }
  #global-footer .footer-inner h1 {
    width: 30%;
    text-align: center;
  }
  #global-footer .footer-inner .footer-navi {
    display: none;
  }
}
@media screen and (max-width: 415px) {
  #global-footer .footer-inner {
    width: 100%;
  }
  #global-footer .footer-inner h1 {
    width: 30%;
    padding-right: 10px;
  }
  #global-footer .footer-inner h1 a {
    padding: 6px 0 10px;
  }
  #global-footer .footer-inner h1 a img {
    width: 90%;
  }
  #global-footer .copy small {
    padding-right: 10px;
  }
}

.copy_small {
  width: 100%;
  text-align: center;
  color: #fff;
}

.footer_top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1300px;
  margin: 6% auto 0 auto;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=results.css.map */
