body {
  font-family: "Hiragino Kaku Gothic Std", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
  color: #271915;
  font-weight: 400;
  margin: 0;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body p {
  margin: 0;
}
body ul {
  margin: 0;
  padding: 0;
}
body li {
  list-style: none;
}
body a {
  color: inherit;
  text-decoration: none;
}
body img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

.header-pc {
  box-sizing: border-box;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .header-pc {
    display: none;
  }
}
.header-pc .inner {
  height: 128px;
  display: flex;
  justify-content: space-between;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  box-sizing: border-box;
}
.header-pc .inner .header_logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.header-pc .inner .header_logo .logo_top {
  width: 385px;
}
.header-pc .inner nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
}
.header-pc .inner nav .menu {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}
.header-pc .inner nav .menu li {
  text-align: center;
}
.header-pc .inner nav .menu li .top_name {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.2rem;
  position: relative;
  text-decoration: none;
}
.header-pc .inner nav .menu li .top_name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: #203877;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.header-pc .inner nav .menu li .top_name:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header-pc .inner .contact {
  font-size: 16px;
}
.header-pc .inner .contact:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}
.header-pc .inner .sab_nav {
  z-index: 10;
  display: flex;
  align-items: center;
}

.header-sp {
  display: none;
}
@media (max-width: 767px) {
  .header-sp {
    display: block;
    height: 60px;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #fff;
  }
}
.header-sp .hamburger {
  width: 100%;
  height: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.header-sp .hamburger .header_logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .header-sp .hamburger .header_logo .logo_top {
    width: 300px;
  }
}
@media (max-width: 450px) {
  .header-sp .hamburger .header_logo .logo_top {
    width: 200px;
  }
}
.header-sp .hamburger .btn-gNav {
  background-color: #1d3672;
  padding: 12px;
  box-sizing: border-box;
  display: none;
  position: relative;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  z-index: 999;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.header-sp .hamburger .btn-gNav.open span:nth-child(1) {
  top: 28px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.header-sp .hamburger .btn-gNav.open span:nth-child(2) {
  display: none;
}
.header-sp .hamburger .btn-gNav.open span:nth-child(3) {
  top: 28px;
  left: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 1279px) {
  .header-sp .hamburger .btn-gNav {
    display: block;
  }
}
.header-sp .hamburger .btn-gNav span {
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  right: 15px;
}
.header-sp .hamburger .btn-gNav span:nth-child(1) {
  top: 18px;
}
.header-sp .hamburger .btn-gNav span:nth-child(2) {
  top: 30px;
}
.header-sp .hamburger .btn-gNav span:nth-child(3) {
  top: 42px;
}
.header-sp nav .menu {
  padding-left: 20px;
}
.header-sp nav .top_name {
  font-weight: bold;
  letter-spacing: 0.15rem;
  font-size: 24px;
  display: flex;
  align-items: end;
}
@media (max-width: 1279px) {
  .header-sp nav .top_name {
    font-size: 8vw;
  }
}
@media (max-width: 767px) {
  .header-sp .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    padding-top: 60px;
    transition: 0.3s;
    z-index: 99;
  }
}
.header-sp .gNav.open {
  right: 0;
}

footer {
  box-sizing: border-box;
  background-color: #203877;
  padding: 30px 0 40px;
  color: #fff;
}
@media (max-width: 767px) {
  footer {
    padding: 20px 0;
  }
}
footer .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  footer .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  footer .inner {
    padding: 0 132px;
  }
}
footer .inner .header_logo h2 {
  font-size: 36px;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Hiragino Mincho", "Yu Mincho", "YuMincho", "MS PMincho", serif;
}
@media (max-width: 767px) {
  footer .inner .header_logo h2 {
    font-size: 24px;
    text-align: center;
  }
}
@media (max-width: 639px) {
  footer .inner .header_logo h2 {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  footer .inner .header_logo h2 {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  footer .inner .header_logo h2 {
    font-size: 14px;
  }
}
footer .inner nav {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
}
@media (max-width: 767px) {
  footer .inner nav {
    justify-content: center;
  }
}
@media (max-width: 450px) {
  footer .inner nav {
    margin-top: 15px;
  }
}
footer .inner nav .menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
footer .inner nav .menu li {
  text-align: center;
}
footer .inner nav .menu li .top_name {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.2rem;
  position: relative;
  text-decoration: none;
}
@media (max-width: 450px) {
  footer .inner nav .menu li .top_name {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  footer .inner nav .menu li .top_name {
    font-size: 8px;
  }
}
footer .inner nav .menu li .top_name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
footer .inner nav .menu li .top_name:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
footer .inner .sab_nav {
  display: flex;
  align-items: center;
}
footer .inner small {
  display: block;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  footer .inner small {
    font-size: 10px;
  }
}
@media (max-width: 639px) {
  footer .inner small {
    font-size: 9px;
  }
}
@media (max-width: 450px) {
  footer .inner small {
    font-size: 8px;
    margin-top: 15px;
  }
}
@media (max-width: 350px) {
  footer .inner small {
    font-size: 8px;
  }
}

/* @use "./pages/home/home-news"; */
.home-fv {
  width: 100%;
  height: 450px;
  margin-top: 128px;
}
@media (max-width: 767px) {
  .home-fv {
    height: 700px;
    margin-top: 60px;
  }
}
@media (max-width: 450px) {
  .home-fv {
    height: 480px;
  }
}
@media (min-width: 1440px) {
  .home-fv {
    height: 600px;
  }
}
.home-fv .inner {
  background-image: url("../img/fv1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .home-fv .inner {
    background-image: url("../img/spfv.png");
    background-position: top;
  }
}
.home-fv .inner .background {
  background-color: #1d3672;
  display: inline-block;
  padding: 1em;
}
@media (max-width: 767px) {
  .home-fv .inner .background {
    display: none;
  }
}
.home-fv .inner .background h2 {
  font-size: 50px;
  color: #fff;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .home-fv .inner .background h2 {
    font-size: 4vw;
  }
}

.home-section1 {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .home-section1 {
    padding: 40px 0;
  }
}
.home-section1 .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .home-section1 .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .home-section1 .inner {
    padding: 0 132px;
  }
}
.home-section1 .inner .wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-section1 .inner .wrap {
    flex-direction: column;
    gap: 1em;
  }
}
.home-section1 .inner .content {
  padding-left: 10%;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-section1 .inner .content {
    width: 100%;
    gap: 1em;
  }
}
@media (max-width: 639px) {
  .home-section1 .inner .content {
    padding-left: 5%;
  }
}
.home-section1 .inner .content h2 {
  font-size: 36px;
}
@media (max-width: 639px) {
  .home-section1 .inner .content h2 {
    font-size: 28px;
  }
}
.home-section1 .inner .content h2 span {
  font-size: 24px;
  color: #1d3672;
}
@media (max-width: 639px) {
  .home-section1 .inner .content h2 span {
    font-size: 20px;
  }
}
.home-section1 .inner .content p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 639px) {
  .home-section1 .inner .content p {
    font-size: 16px;
    font-weight: normal;
  }
}
.home-section1 .inner .content .btn a {
  display: inline-block;
  padding: 1rem 5rem;
  box-sizing: border-box;
  font-size: 24px;
  color: #fff;
  background-color: #1d3672;
  border-radius: 15px;
  font-weight: bold;
}
@media (max-width: 350px) {
  .home-section1 .inner .content .btn a {
    padding: 1rem 3rem;
  }
}
.home-section1 .inner .img-flex {
  width: 50%;
}
@media (max-width: 767px) {
  .home-section1 .inner .img-flex {
    width: 100%;
  }
}
.home-section1 .inner .img-flex .img {
  width: 100%;
}

.home-section2 {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .home-section2 {
    padding: 40px 0;
  }
}
.home-section2 .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .home-section2 .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .home-section2 .inner {
    padding: 0 132px;
  }
}
.home-section2 .inner .wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-section2 .inner .wrap {
    flex-direction: column-reverse;
    gap: 1em;
  }
}
.home-section2 .inner .wrap .content {
  padding-left: 10%;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-section2 .inner .wrap .content {
    width: 100%;
    gap: 1em;
  }
}
@media (max-width: 639px) {
  .home-section2 .inner .wrap .content {
    padding-left: 5%;
  }
}
.home-section2 .inner .wrap .content h2 {
  font-size: 36px;
}
@media (max-width: 639px) {
  .home-section2 .inner .wrap .content h2 {
    font-size: 28px;
  }
}
.home-section2 .inner .wrap .content h2 span {
  font-size: 24px;
  color: #1d3672;
}
@media (max-width: 639px) {
  .home-section2 .inner .wrap .content h2 span {
    font-size: 20px;
  }
}
.home-section2 .inner .wrap .content p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 639px) {
  .home-section2 .inner .wrap .content p {
    font-size: 16px;
    font-weight: normal;
  }
}
.home-section2 .inner .wrap .content .btn a {
  display: inline-block;
  padding: 1rem 5rem;
  box-sizing: border-box;
  font-size: 24px;
  color: #fff;
  background-color: #1d3672;
  border-radius: 15px;
  font-weight: bold;
}
@media (max-width: 350px) {
  .home-section2 .inner .wrap .content .btn a {
    padding: 1rem 3rem;
  }
}
.home-section2 .inner .wrap .img-flex {
  width: 50%;
}
@media (max-width: 767px) {
  .home-section2 .inner .wrap .img-flex {
    width: 100%;
  }
}
.home-section2 .inner .wrap .img-flex .img {
  width: 100%;
}

.home-section3 {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .home-section3 {
    padding: 40px 0;
  }
}
.home-section3 .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .home-section3 .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .home-section3 .inner {
    padding: 0 132px;
  }
}
.home-section3 .inner .wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/img3.png");
}
.home-section3 .inner .wrap .content {
  display: flex;
  flex-direction: column;
  gap: 200px;
  padding: 5% 10%;
}
@media (max-width: 639px) {
  .home-section3 .inner .wrap .content {
    padding: 5%;
    gap: 100px;
  }
}
.home-section3 .inner .wrap .content h2 {
  font-size: 36px;
}
@media (max-width: 639px) {
  .home-section3 .inner .wrap .content h2 {
    font-size: 28px;
  }
}
.home-section3 .inner .wrap .content h2 span {
  font-size: 24px;
  color: #1d3672;
}
@media (max-width: 639px) {
  .home-section3 .inner .wrap .content h2 span {
    font-size: 20px;
  }
}
.home-section3 .inner .wrap .content p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 639px) {
  .home-section3 .inner .wrap .content p {
    font-size: 16px;
    font-weight: normal;
  }
}
.home-section3 .inner .wrap .content .btn a {
  display: inline-block;
  padding: 1rem 5rem;
  box-sizing: border-box;
  font-size: 24px;
  color: #fff;
  background-color: #1d3672;
  border-radius: 15px;
  font-weight: bold;
}
@media (max-width: 350px) {
  .home-section3 .inner .wrap .content .btn a {
    padding: 1rem 3rem;
  }
}

.page-company .company-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/fv2.png");
  width: 100%;
  height: 650px;
  margin-top: 128px;
}
@media (max-width: 767px) {
  .page-company .company-fv {
    height: 450px;
    margin-top: 60px;
  }
}
@media (max-width: 450px) {
  .page-company .company-fv {
    height: 350px;
  }
}
.page-company .company-fv .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-company .company-fv .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-company .company-fv .inner {
    padding: 0 132px;
  }
}
.page-company .company-fv .inner h2 {
  color: #fff;
  font-size: 60px;
  padding-top: 150px;
  padding-left: 150px;
  text-shadow: 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000;
}
@media (max-width: 767px) {
  .page-company .company-fv .inner h2 {
    padding-top: 100px;
    padding-left: 100px;
  }
}
@media (max-width: 639px) {
  .page-company .company-fv .inner h2 {
    font-size: 36px;
  }
}
@media (max-width: 450px) {
  .page-company .company-fv .inner h2 {
    padding-top: 50px;
    padding-left: 50px;
  }
}

.page-company .company-message {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-company .company-message {
    padding: 40px 0;
  }
}
.page-company .company-message .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-company .company-message .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-company .company-message .inner {
    padding: 0 132px;
  }
}
.page-company .company-message .inner h2 {
  padding: 0 5%;
}
.page-company .company-message .inner .text p {
  padding: 2% 0 0 8%;
  font-size: 20px;
}
@media (max-width: 639px) {
  .page-company .company-message .inner .text p {
    font-size: 16px;
    padding: 2% 0;
  }
}
.page-company .company-message .inner .name {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.page-company .company-message .inner .name h3 {
  font-size: 24px;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Hiragino Mincho", "Yu Mincho", "YuMincho", "MS PMincho", serif;
}
@media (max-width: 639px) {
  .page-company .company-message .inner .name h3 {
    font-size: 16px;
  }
}
.page-company .company-message .inner .name h4 {
  font-size: 24px;
}
@media (max-width: 639px) {
  .page-company .company-message .inner .name h4 {
    font-size: 16px;
  }
}

.page-company .company-map {
  background-color: #f0efec;
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-company .company-map {
    padding: 40px 0;
  }
}
.page-company .company-map .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-company .company-map .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-company .company-map .inner {
    padding: 0 132px;
  }
}
.page-company .company-map .inner h2 {
  padding: 0 5%;
}
.page-company .company-map .inner .wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 8%;
}
@media (max-width: 1023px) {
  .page-company .company-map .inner .wrap {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 639px) {
  .page-company .company-map .inner .wrap {
    padding: 2% 0;
  }
}
.page-company .company-map .inner .wrap .text {
  width: 60%;
}
@media (max-width: 1023px) {
  .page-company .company-map .inner .wrap .text {
    width: 100%;
  }
}
.page-company .company-map .inner .wrap .text ul {
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .page-company .company-map .inner .wrap .text ul {
    margin-top: 0;
  }
}
.page-company .company-map .inner .wrap .text ul li {
  border-bottom: solid 1px #271915;
  padding: 1rem;
  font-size: 20px;
}
@media (max-width: 639px) {
  .page-company .company-map .inner .wrap .text ul li {
    font-size: 16px;
  }
}
.page-company .company-map .inner .wrap .map {
  width: 38%;
}
@media (max-width: 1023px) {
  .page-company .company-map .inner .wrap .map {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .page-company .company-map .inner .wrap .map iframe {
    width: 100%;
    height: 300px;
  }
}

.page-company .company-banner {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-company .company-banner {
    padding: 40px 0;
  }
}
.page-company .company-banner .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-company .company-banner .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-company .company-banner .inner {
    padding: 0 132px;
  }
}
.page-company .company-banner .inner ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.page-company .company-banner .inner ul li img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.page-service .service-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/fv3.png");
  width: 100%;
  height: 650px;
  margin-top: 128px;
}
@media (max-width: 767px) {
  .page-service .service-fv {
    height: 450px;
    margin-top: 60px;
  }
}
@media (max-width: 450px) {
  .page-service .service-fv {
    height: 350px;
  }
}
.page-service .service-fv .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-service .service-fv .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-service .service-fv .inner {
    padding: 0 132px;
  }
}
.page-service .service-fv .inner h2 {
  color: #fff;
  font-size: 60px;
  padding-top: 150px;
  padding-left: 150px;
  text-shadow: 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000;
}
@media (max-width: 767px) {
  .page-service .service-fv .inner h2 {
    padding-top: 100px;
    padding-left: 100px;
  }
}
@media (max-width: 639px) {
  .page-service .service-fv .inner h2 {
    font-size: 36px;
  }
}
@media (max-width: 450px) {
  .page-service .service-fv .inner h2 {
    padding-top: 50px;
    padding-left: 50px;
  }
}

.page-service .service-message {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-service .service-message {
    padding: 40px 0;
  }
}
.page-service .service-message .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-service .service-message .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-service .service-message .inner {
    padding: 0 132px;
  }
}
.page-service .service-message .inner h2 {
  font-size: 36px;
}
@media (max-width: 767px) {
  .page-service .service-message .inner h2 {
    font-size: 28px;
  }
}
.page-service .service-message .inner h3 {
  font-size: 28px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .page-service .service-message .inner h3 {
    font-size: 20px;
    margin-top: 16px;
  }
}
.page-service .service-message .inner .text-wrap {
  font-size: 24px;
  margin-top: 30px;
  line-height: 1.6;
}
@media (max-width: 1279px) {
  .page-service .service-message .inner .text-wrap {
    font-size: 16px;
    margin-top: 16px;
  }
}
.page-service .service-message .inner .text-wrap .contrent-1 {
  list-style: disc;
  margin-left: 0;
  padding-left: 1.5em;
  list-style-position: outside;
}
.page-service .service-message .inner .text-wrap .contrent-1 li {
  list-style: disc;
}
.page-service .service-message .inner .text-wrap .contrent-2 {
  margin-top: 30px;
}
.page-service .service-message .inner .text-wrap h4 {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .page-service .service-message .inner .text-wrap h4 {
    margin-top: 16px;
  }
}
.page-service .service-message .inner .text-wrap .border {
  display: inline-block;
  border: solid 1px #000;
  padding: 1rem;
  margin-top: 20px;
}
.page-service .service-message .inner .img-1 {
  width: 80%;
  margin: 40px auto 0;
}
.page-service .service-message .inner .img-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.page-service .service-message .inner .img-flex li {
  width: 45%;
}
.page-service .service-message .inner .img-flex li h5 {
  font-size: 36px;
  text-align: center;
}
@media (max-width: 1279px) {
  .page-service .service-message .inner .img-flex li h5 {
    font-size: 2.5vw;
  }
}
.page-service .service-message .inner .img-flex li .img-2 {
  margin-top: 20px;
}

.archive .archive-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/contact-fv.png");
}
.archive .archive-fv .inner {
  height: 100%;
}
.archive .archive-fv .inner .fv_wrap {
  height: 100%;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 300px 0 80px 10%;
}
@media (max-width: 767px) {
  .archive .archive-fv .inner .fv_wrap {
    padding: 250px 10px 60px 50px;
  }
}
@media (max-width: 639px) {
  .archive .archive-fv .inner .fv_wrap {
    padding: 150px 10px 40px 35px;
  }
}
@media (min-width: 1440px) {
  .archive .archive-fv .inner .fv_wrap {
    padding: 300px 132px 80px;
    padding-bottom: 80px;
  }
}
.archive .archive-fv .inner .fv_wrap h2 {
  display: inline;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 85px;
  position: relative;
}
@media (max-width: 639px) {
  .archive .archive-fv .inner .fv_wrap h2 {
    font-size: 36px;
  }
}
.archive .archive-fv .inner .fv_wrap h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-2.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .archive .archive-fv .inner .fv_wrap h2::before {
    top: -2vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.archive .archive-fv .inner .fv_wrap h3 {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 639px) {
  .archive .archive-fv .inner .fv_wrap h3 {
    font-size: 16px;
  }
}
.archive .news .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .archive .news .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .archive .news .inner {
    padding: 0 132px;
  }
}
.archive .news .inner ul {
  border-top: solid #E40000 1px;
  margin-top: 50px;
}
.archive .news .inner ul li {
  border-bottom: solid #E40000 1px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px 20px 16px 30px;
}
@media (max-width: 1279px) {
  .archive .news .inner ul li {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .archive .news .inner ul li {
    font-size: 16px;
    padding: 16px 8px 16px 8px;
    gap: 16px;
  }
}
@media (max-width: 639px) {
  .archive .news .inner ul li {
    font-size: 14px;
    padding: 8px 8px 8px 8px;
  }
}
@media (max-width: 639px) {
  .archive .news .inner ul li {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 639px) {
  .archive .news .inner ul li p {
    margin-right: auto;
  }
}
.archive .news .inner ul li h5 {
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 639px) {
  .archive .news .inner ul li h5 {
    margin-right: auto;
  }
}
.archive .news .inner ul li h4 {
  font-weight: normal;
}
.archive .news .inner .btn-wrap {
  margin-left: auto;
}
.archive .news .inner .btn-wrap a {
  background-color: #E40000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  border: solid #fff 2px;
  box-sizing: border-box;
  width: 150px;
  height: 30px;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 639px) {
  .archive .news .inner .btn-wrap a {
    width: 120px;
  }
}
.archive .news .inner .past {
  padding: 24px 20px 0 30px;
}
.archive .news .inner .past a {
  margin-left: auto;
  background-color: #fff;
  border: solid #E40000 1px;
  color: #E40000;
}
.archive .news .inner .past a::after {
  border-top: 2px solid #E40000;
  border-right: 2px solid #E40000;
}
.archive .news .inner .pagination_wrap {
  margin: 60px 0;
}
.archive .news .inner .pagination_wrap .pagination {
  text-align: center;
  margin-top: 20px;
}
.archive .news .inner .pagination_wrap .pagination a,
.archive .news .inner .pagination_wrap .pagination span {
  display: inline-block;
  padding: 10px 15px;
  margin: 2px;
  background: #f4f4f4;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
}
.archive .news .inner .pagination_wrap .pagination .current {
  background: #E40000;
  color: #fff;
}

.single .single-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/contact-fv.png");
}
.single .single-fv .inner {
  height: 100%;
}
.single .single-fv .inner .fv_wrap {
  height: 100%;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 300px 0 80px 10%;
}
@media (max-width: 767px) {
  .single .single-fv .inner .fv_wrap {
    padding: 250px 10px 60px 50px;
  }
}
@media (max-width: 639px) {
  .single .single-fv .inner .fv_wrap {
    padding: 150px 10px 40px 35px;
  }
}
@media (min-width: 1440px) {
  .single .single-fv .inner .fv_wrap {
    padding: 300px 132px 80px;
    padding-bottom: 80px;
  }
}
.single .single-fv .inner .fv_wrap h2 {
  display: inline;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 85px;
  position: relative;
}
@media (max-width: 639px) {
  .single .single-fv .inner .fv_wrap h2 {
    font-size: 36px;
  }
}
.single .single-fv .inner .fv_wrap h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-2.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .single .single-fv .inner .fv_wrap h2::before {
    top: -2vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.single .single-fv .inner .fv_wrap h3 {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 639px) {
  .single .single-fv .inner .fv_wrap h3 {
    font-size: 16px;
  }
}
.single .single_content {
  margin-top: 40px;
}
.single .single_content .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .single .single_content .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .single .single_content .inner {
    padding: 0 132px;
  }
}
.single .single_content .inner .content {
  padding-bottom: 100px;
}
.single .single_content .inner .content .title {
  color: #E40000;
  border-bottom: 1px solid #E40000;
  font-size: 28px;
  padding-bottom: 1rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .single .single_content .inner .content .title {
    font-size: 22px;
  }
}
.single .single_content .inner .content .wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .single .single_content .inner .content .wrap {
    margin-top: 20px;
  }
}
.single .single_content .inner .content .wrap .day {
  font-size: 24px;
}
@media (max-width: 767px) {
  .single .single_content .inner .content .wrap .day {
    font-size: 18px;
  }
}
.single .single_content .inner .content .text {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .single .single_content .inner .content .text {
    margin-top: 30px;
  }
}
.single .single_content .inner .content .text p {
  font-size: 14px;
}

.page-cta .cta-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/fv2.png");
  width: 100%;
  height: 650px;
  margin-top: 128px;
}
@media (max-width: 767px) {
  .page-cta .cta-fv {
    height: 450px;
    margin-top: 60px;
  }
}
@media (max-width: 450px) {
  .page-cta .cta-fv {
    height: 350px;
  }
}
.page-cta .cta-fv .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-cta .cta-fv .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-cta .cta-fv .inner {
    padding: 0 132px;
  }
}
.page-cta .cta-fv .inner h2 {
  color: #fff;
  font-size: 60px;
  padding-top: 150px;
  padding-left: 150px;
  text-shadow: 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000;
}
@media (max-width: 767px) {
  .page-cta .cta-fv .inner h2 {
    padding-top: 100px;
    padding-left: 100px;
  }
}
@media (max-width: 639px) {
  .page-cta .cta-fv .inner h2 {
    font-size: 36px;
  }
}
@media (max-width: 450px) {
  .page-cta .cta-fv .inner h2 {
    padding-top: 50px;
    padding-left: 50px;
  }
}
.page-cta .from {
  margin: 40px auto;
  max-width: 1100px;
  padding: 40px 100px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-cta .from {
    padding: 20px 10px;
  }
}
.page-cta .from-wrap br {
  display: none;
}
.page-cta .from-wrap table {
  width: 100%;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table {
    padding: 20px 0px;
  }
}
.page-cta .from-wrap table tr {
  all: unset;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table tr {
    flex-direction: column;
    align-items: start;
  }
}
.page-cta .from-wrap table tr:nth-child(6) {
  align-items: start;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table tr:nth-child(6) {
    margin-top: 0;
  }
}
.page-cta .from-wrap table tr .checkbox-wrap {
  padding: 16px 0;
  border-radius: 5px;
  background-color: #fff;
  padding: 16px 0;
}
.page-cta .from-wrap table tr .checkbox-wrap .form-label_checkbox {
  color: initial;
  display: flex;
  justify-content: start;
  padding: 5px 16px;
}
.page-cta .from-wrap table td {
  padding: 0;
}
.page-cta .from-wrap table .item {
  font-size: 18px;
  padding: 0.3rem 0rem;
  width: 20%;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table .item {
    width: 100%;
  }
}
.page-cta .from-wrap table .item .color {
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  color: #fff;
  box-sizing: border-box;
  padding: 0.3rem 1rem;
  margin-left: 48px;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table .item .color {
    padding: 0.5em;
    font-size: 16px;
    margin-left: 16px;
  }
}
.page-cta .from-wrap table .item .necessary {
  background-color: #E62232;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table .item .necessary {
    font-size: 14px;
  }
}
.page-cta .from-wrap table .item .optional {
  background-color: #0054AB;
}
.page-cta .from-wrap table .text {
  width: 80%;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table .text {
    width: 100%;
  }
}
.page-cta .from-wrap table .form-label {
  width: 100%;
  height: 100%;
  display: block;
}
.page-cta .from-wrap table .form-label .form-control {
  width: 100%;
  display: block;
  padding: 5px 16px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table .form-label .form-control {
    font-size: 18px;
  }
}
.page-cta .from-wrap table .form-label_checkbox {
  display: flex;
  justify-content: center;
}
.page-cta .from-wrap .wpcf7-spinner {
  display: none;
}
.page-cta .from-wrap .page_btn {
  box-sizing: border-box;
  background-color: #1d3672;
  display: block;
  color: #fff;
  font-size: 18px;
  padding: 18px 0;
  width: 315px;
  text-align: center;
  border-radius: 10px;
  letter-spacing: 0.15rem;
  cursor: pointer;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-cta .from-wrap .page_btn {
    width: 275px;
  }
}
.page-cta .from-wrap .page_btn:hover {
  opacity: 0.7;
}
.page-cta .wpcf7-submit {
  background-color: #1d3672;
  color: white;
  padding: 10px 100px;
  border-radius: 25px;
  border: none;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 36px;
  cursor: pointer;
}
.page-cta .wpcf7-submit:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}/*# sourceMappingURL=style.css.map */