/* 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(2) a {
  background-color: #00649b;
  color: #fff;
}
#global-header .inner #global-navi ul li:nth-child(2) a span {
  color: #fff;
}

#key-visual {
  background: url("../throught/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;
  }
}

.hert_wrap {
  background: url("../throught/images/top2.jpg") no-repeat center center;
  background-size: cover;
  height: 544px;
  justify-content: center;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 415px) {
  .hert_wrap {
    height: 400px;
    margin-top: 10%;
  }
}
.hert_wrap .cyatchi_wrap {
  width: 60%;
  margin: 5% auto;
  padding: 3% 5%;
  background: #fff;
}
@media screen and (max-width: 415px) {
  .hert_wrap .cyatchi_wrap {
    width: 85%;
  }
}
.hert_wrap .cyatchi_wrap h3 {
  font-size: 3.5em;
  color: #00649b;
  font-weight: bold;
}
.hert_wrap .cyatchi_wrap p {
  font-size: 1.55em;
  line-height: 2em;
  margin-top: 5%;
}

.parenthesis {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.parenthesis::before,
.parenthesis::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.parenthesis::before {
  top: 0;
  left: 0;
  border-top: 1px solid #00649b;
  border-left: 1px solid #00649b;
}

.parenthesis::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #00649b;
  border-right: 1px solid #00649b;
}

.point_wrap {
  width: 80%;
  margin: 0 auto;
}
.point_wrap .point_inner {
  display: flex;
}
@media screen and (max-width: 415px) {
  .point_wrap .point_inner {
    flex-direction: column;
  }
}
.point_wrap .point_inner .point_box {
  margin: 0 1%;
  width: 100%;
}
.point_wrap .point_inner .point_box .box_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 341px;
}
@media screen and (max-width: 415px) {
  .point_wrap .point_inner .point_box .box_top {
    width: 80%;
    margin: 0 auto;
    height: 270px;
  }
}
.point_wrap .point_inner .point_box .box_top h3 {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .point_wrap .point_inner .point_box .box_top h3 {
    font-size: 2em;
  }
}
@media screen and (max-width: 415px) {
  .point_wrap .point_inner .point_box .box_top h3 {
    font-size: 2.5em;
  }
}
.point_wrap .point_inner .point_box .box_bottom {
  padding: 3%;
}
@media screen and (max-width: 415px) {
  .point_wrap .point_inner .point_box .box_bottom {
    margin: -20px 0 50px 0;
  }
}
.point_wrap .point_inner .point_box .box_bottom p {
  font-size: 1.55em;
  line-height: 2em;
}

.box_bg1 {
  background: url("../throught/images/haguruma_1.svg") no-repeat center center;
  padding: 5%;
  background-size: contain;
}

.box_bg2 {
  background: url("../throught/images/haguruma_2.svg") no-repeat center center;
  padding: 5%;
  background-size: contain;
}

.box_bg3 {
  background: url("../throught/images/haguruma_3.svg") no-repeat center center;
  padding: 5%;
  background-size: contain;
}

.support_wrap {
  width: 60%;
  margin: 5% auto;
}
@media screen and (max-width: 1024px) {
  .support_wrap {
    width: 90%;
  }
}
.support_wrap h3 {
  font-size: 3.8em;
  font-weight: bold;
  line-height: 2em;
}
@media screen and (max-width: 1024px) {
  .support_wrap h3 {
    font-size: 2.8em;
    line-height: 1.6em;
    margin-left: 20px;
  }
}
@media screen and (max-width: 415px) {
  .support_wrap h3 {
    font-size: 2.6em;
    line-height: 1.6em;
  }
}
.support_wrap .support_inner {
  display: flex;
}
@media screen and (max-width: 415px) {
  .support_wrap .support_inner {
    flex-direction: column;
  }
}
.support_wrap .support_inner .support_box {
  width: 40%;
  padding: 7% 6% 7% 8%;
}
@media screen and (max-width: 1400px) {
  .support_wrap .support_inner .support_box {
    padding: 9% 6% 5% 8%;
  }
}
@media screen and (max-width: 768px) {
  .support_wrap .support_inner .support_box {
    width: 80%;
    margin: 0 auto;
  }
}
.support_wrap .support_inner .support_box h4 {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-top: 5%;
}
@media screen and (max-width: 1400px) {
  .support_wrap .support_inner .support_box h4 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 1024px) {
  .support_wrap .support_inner .support_box h4 {
    font-size: 2.4em;
  }
}
@media screen and (max-width: 768px) {
  .support_wrap .support_inner .support_box h4 {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 415px) {
  .support_wrap .support_inner .support_box h4 {
    font-size: 2.5em;
    line-height: 1.5em;
    margin-top: 30%;
  }
}
.support_wrap .support_inner .support_box p {
  font-size: 1.55em;
  margin-top: 20%;
  color: #fff;
  line-height: 2em;
  font-weight: bold;
}
@media screen and (max-width: 1400px) {
  .support_wrap .support_inner .support_box p {
    font-size: 1.4em;
    margin-top: 15%;
    line-height: 1.6;
    font-weight: normal;
  }
}
@media screen and (max-width: 1024px) {
  .support_wrap .support_inner .support_box p {
    font-size: 1.55em;
    line-height: 1.55em;
  }
}
@media screen and (max-width: 768px) {
  .support_wrap .support_inner .support_box p {
    font-size: 1.35em;
    line-height: 1.5em;
    font-weight: normal;
  }
}
@media screen and (max-width: 415px) {
  .support_wrap .support_inner .support_box p {
    font-size: 1.65em;
    line-height: 1.5em;
    margin: 10% 0 20% 0;
  }
}

.support_bg1 {
  background: url("../throught/images/support_1.png") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 415px) {
  .support_bg1 {
    background: url("../throught/images/support_1st.png") no-repeat center center;
    background-size: contain;
  }
}

.support_bg2 {
  background: url("../throught/images/support_2.png") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 415px) {
  .support_bg2 {
    background: url("../throught/images/support_2st.png") no-repeat center center;
    background-size: contain;
  }
}

.support_bg3 {
  background: url("../throught/images/support_3.png") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 415px) {
  .support_bg3 {
    background: url("../throught/images/support_3st.png") no-repeat center center;
    background-size: contain;
  }
}

.service_wrap {
  margin-top: 5%;
}
.service_wrap .service_inner {
  width: 70%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 5%;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service_wrap .service_inner {
    width: 80%;
  }
}
@media screen and (max-width: 415px) {
  .service_wrap .service_inner {
    width: 100%;
  }
}
.service_wrap .service_inner .service_box {
  background: #fff;
  height: 100px;
  padding: 2% 7%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3% 3%;
}
@media screen and (max-width: 415px) {
  .service_wrap .service_inner .service_box {
    width: 50%;
    margin: 5% 0;
  }
}
.service_wrap .service_inner .service_box img {
  margin: 10% auto;
  display: block;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .service_wrap .service_inner .service_box img {
    width: 30%;
  }
}
@media screen and (max-width: 415px) {
  .service_wrap .service_inner .service_box img {
    width: 45%;
  }
}
.service_wrap .service_inner .service_box p {
  color: #333;
  text-align: center;
  font-size: 1.55em;
  line-height: 1.7em;
}
@media screen and (max-width: 768px) {
  .service_wrap .service_inner .service_box p {
    font-size: 1.45em;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 415px) {
  .service_wrap .service_inner .service_box p {
    font-size: 1.5em;
    line-height: 1.4em;
  }
}

.fac_wrap {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fac_wrap {
    width: 90%;
  }
}
.fac_wrap p {
  font-size: 1.55em;
  width: 60%;
  margin: 5% auto 3% auto;
}
@media screen and (max-width: 768px) {
  .fac_wrap p {
    width: 90%;
  }
}
.fac_wrap .fac_inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .fac_wrap .fac_inner {
    flex-direction: column;
  }
}
.fac_wrap .fac_inner .fac_box {
  width: 50%;
  padding: 3%;
  margin: 2%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .fac_wrap .fac_inner .fac_box {
    width: 100%;
    padding: 13%;
  }
}
.fac_wrap .fac_inner .fac_box img {
  width: 100%;
}
.fac_wrap .fac_inner .fac_box .fac_bottom h3 {
  font-size: 2.5em;
  text-align: center;
  margin: 5% 0 10% 0;
  font-weight: bold;
}
.fac_wrap .fac_inner .fac_box .fac_bottom ul {
  margin: 5% 5%;
}
.fac_wrap .fac_inner .fac_box .fac_bottom ul li {
  font-size: 1.55em;
  list-style: disc;
  padding: 1% 0%;
}

#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=throught.css.map */
