@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #273138;
  font-family: "Shippori Mincho", serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

main {
  overflow: hidden;
  margin-top: 146px;
}
@media (max-width: 1080px) {
  main {
    margin-top: 96px;
  }
}
@media (max-width: 768px) {
  main {
    margin-top: 48px;
  }
}

.container {
  margin: 0 auto;
}
.container.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1920px) {
  .container {
    width: 1280px;
  }
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1080px;
    padding: 0 40px;
  }
}
@media (max-width: 1080px) {
  .container {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .container.container-small {
    padding: 0 24px;
  }
}
@media screen and (max-width: 366px) {
  .container {
    padding: 0 12px;
  }
  .container.container-small {
    padding: 0 16px;
  }
}

header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}
header.hidden {
  transform: translateY(-100%);
}
header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  padding-left: calc((100% - 1080px) / 2);
}
header .hamburger-menu {
  display: none;
}
header .site-title {
  text-decoration: none;
}
header .site-title a {
  display: flex;
  align-items: center;
}
header .sub-menu {
  display: flex;
  align-items: center;
}
header .sub-menu img {
  width: 290px;
  height: 64px;
}
header .sub-menu img.tel-icon {
  margin-right: 24px;
}
header .sub-menu .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 96px;
  background-image: linear-gradient(-90deg, #e54600, #c90000);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 8px;
  margin-left: auto;
}
header .sub-menu .contact:hover {
  background-color: #cc0000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}
header .sub-menu .contact img {
  width: 32px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .sub-menu .contact span.pc,
header .sub-menu .contact span.sp {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
header .sub-menu .contact span.sp {
  display: none;
}
header nav {
  background-image: linear-gradient(-90deg, #1b4ece, #1b479e);
  padding: 12px 0;
  position: relative;
  z-index: 1000;
}
header nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  flex: 1;
}
header nav .nav-menu li {
  padding: 0 24px;
  border-right: 1px solid #fff;
}
header nav .nav-menu li:last-child {
  border-right: 0;
}
header nav .nav-menu a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
}
header nav .nav-menu a:hover {
  color: #ddd;
}
@media screen and (max-width: 1920px) {
  header .header-top {
    padding-left: calc((100% - 1280px) / 2);
  }
}
@media screen and (max-width: 1440px) {
  header .header-top {
    padding-left: calc((100% - 1080px) / 2);
  }
}
@media (max-width: 1080px) {
  header .header-top {
    padding-left: 24px;
  }
  header .sub-menu img.tel-icon {
    display: none;
  }
  header .hamburger-menu {
    position: absolute;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 96px;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    background: #1b479e;
    transition: background 0.3s ease;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    margin-left: auto;
  }
  header .hamburger-menu:hover {
    background: #1b4ece;
  }
  header .hamburger-menu span {
    width: 38px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
  }
  header .hamburger-menu.active {
    display: block;
  }
  header .hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 7px);
  }
  header .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  header .hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -8px);
  }
  header nav {
    padding: 0;
  }
  header nav .nav-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1b479e;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    flex: none;
  }
  header nav .nav-menu.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
  }
  header nav .nav-menu li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header nav .nav-menu li:last-child {
    border-bottom: none;
  }
  header nav .nav-menu a {
    display: block;
    padding: 16px 24px;
  }
  header nav .nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 768px) {
  header .header-top {
    padding-left: 24px;
  }
  header .site-title a img {
    width: auto;
    height: 30px;
  }
  header .sub-menu img {
    width: 290px;
    height: 64px;
  }
  header .sub-menu .contact {
    width: 64px;
    height: 56px;
    gap: 2px;
  }
  header .sub-menu .contact img {
    width: 20px;
    height: 15px;
  }
  header .sub-menu .contact span.pc {
    display: none;
  }
  header .sub-menu .contact span.sp {
    display: block;
    font-size: 10px;
  }
  header .hamburger-menu {
    width: 64px;
    height: 56px;
  }
  header .hamburger-menu span {
    width: 28px;
    height: 2px;
    margin: 3px 0;
  }
  header .hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 5px);
  }
  header .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  header .hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }
}
@media screen and (max-width: 366px) {
  header .site-title a img {
    width: 160px;
    height: auto;
  }
}

footer {
  background-color: #1b2b44;
  padding: 80px 0 24px;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
}
footer .footer-content .footer-left .footer-logo {
  margin-bottom: 32px;
}
footer .footer-content .footer-left .footer-logo img {
  width: 325px;
  height: 48px;
}
footer .footer-content .footer-left .footer-address p {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}
footer .footer-content .footer-left .footer-address p a {
  color: #fff;
}
footer .footer-content .footer-right {
  width: 400px;
}
footer .footer-content .footer-right .footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
footer .footer-content .footer-right .footer-menu ul li {
  width: 50%;
  margin-bottom: 16px;
}
footer .footer-content .footer-right .footer-menu ul a {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-left: 16px;
}
footer .footer-content .footer-right .footer-menu ul a:hover {
  color: #007cba;
}
footer .footer-content .footer-right .footer-menu ul a::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 8px;
  left: 0;
  border-radius: 10px;
  background: #1b4ece;
}
footer .footer-bottom {
  border-top: 1px solid #fff;
  margin-top: 56px;
  padding-top: 24px;
  text-align: center;
}
footer .footer-bottom p {
  color: #fff;
  font-size: 15px;
}
@media screen and (max-width: 1920px) {
  footer .footer-bottom {
    margin-top: 40px;
  }
  footer .footer-bottom p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1440px) {
  footer .footer-bottom {
    margin-top: 40px;
  }
  footer .footer-bottom p {
    font-size: 15px;
  }
}
@media (max-width: 1080px) {
  footer .footer-content {
    display: block;
  }
  footer .footer-content .footer-left {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 64px 0 24px;
  }
  footer .footer-content .footer-left .footer-address p {
    font-size: 15px;
  }
  footer .footer-content .footer-right {
    width: 352px;
  }
  footer .footer-content .footer-right .footer-menu ul li a {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 48px 0 16px;
  }
  footer .footer-content .footer-left {
    margin-bottom: 32px;
  }
  footer .footer-content .footer-left .footer-logo img {
    width: 100%;
    height: auto;
  }
  footer .footer-content .footer-right {
    width: 100%;
  }
  footer .footer-content .footer-right .footer-menu ul li {
    width: 100%;
  }
  footer .footer-bottom {
    margin-top: 32px;
    padding-top: 16px;
  }
  footer .footer-bottom p {
    font-size: 14px;
  }
}

.main-visual {
  height: 793px;
  background: url("../img/top-mv.png") no-repeat center;
  background-size: cover;
  text-align: left;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.main-visual .main-visual-container {
  width: 576px;
}
.main-visual .main-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 96px;
  margin-bottom: 16px;
}
.main-visual .main-title .dot {
  position: relative;
}
.main-visual .main-title .dot::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  top: 0;
  left: calc(50% - 5px);
  background: #1b479e;
}
.main-visual .main-title .blue {
  color: #1b479e;
}
.main-visual .main-title .font-56 {
  font-size: 56px;
}
.main-visual .main-title .line {
  position: relative;
  display: inline-block;
}
.main-visual .main-title .line::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  left: 0;
  bottom: 0;
  background: #cadcff;
  z-index: -1;
}
.main-visual .main-title .highlight {
  color: #007cba;
  display: block;
  margin-top: 0.5rem;
}
.main-visual .main-subtitle {
  color: #273138;
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 8px;
}
.main-visual .main-subtitle span {
  font-size: 36px;
  font-weight: bold;
  color: #1b479e;
}
.main-visual p.main-catch {
  position: relative;
  width: 100%;
  text-align: center;
}
.main-visual p.main-catch::before, .main-visual p.main-catch::after {
  position: absolute;
  content: "";
  width: 160px;
  height: 2px;
  top: 32px;
  background: #1b479e;
  text-align: center;
  z-index: 1;
}
.main-visual p.main-catch::before {
  left: 0;
}
.main-visual p.main-catch::after {
  right: 0;
}
.main-visual p.main-catch span {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  color: #1b479e;
  z-index: 2;
}
.main-visual .main-cta.sp {
  display: none;
}
.main-visual .main-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #c90000, #e54600);
  width: 100%;
  height: 88px;
  text-decoration: none;
  border-radius: 50px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 0, 0, 0.3);
  margin-top: 8px;
}
.main-visual .main-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 0, 0, 0.4);
  color: #fff;
}
.main-visual .main-cta::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 19px;
  top: 34px;
  right: 40px;
  background: url(../img/icon-btn.svg) no-repeat center;
}
.main-visual .medal-box {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.main-visual .medal-box img {
  width: 188px;
  height: 188px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1920px) {
  .main-visual {
    height: 930px;
  }
  .main-visual .main-visual-container {
    width: 672px;
  }
  .main-visual .main-subtitle {
    font-size: 48px;
    margin-bottom: 32px;
  }
  .main-visual .main-title {
    font-size: 56px;
    margin-top: 112px;
    margin-bottom: 32px;
  }
  .main-visual .main-title .font-56 {
    font-size: 64px;
  }
  .main-visual p.main-catch::before, .main-visual p.main-catch::after {
    width: 220px;
  }
  .main-visual .medal-box {
    gap: 4px;
  }
  .main-visual .medal-box img {
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 1440px) {
  .main-visual {
    height: 793px;
  }
  .main-visual .main-visual-container {
    width: 576px;
  }
  .main-visual .main-title {
    font-size: 48px;
    margin-top: 96px;
    margin-bottom: 16px;
  }
  .main-visual .main-title .font-56 {
    font-size: 56px;
  }
  .main-visual .main-subtitle {
    font-size: 40px;
    margin-bottom: 8px;
  }
  .main-visual p.main-catch::before, .main-visual p.main-catch::after {
    width: 160px;
  }
  .main-visual .medal-box {
    gap: 4px;
  }
  .main-visual .medal-box img {
    width: 188px;
    height: 188px;
  }
}
@media (max-width: 1080px) {
  .main-visual {
    height: 720px;
  }
  .main-visual .main-visual-container {
    width: 468px;
  }
  .main-visual .main-title {
    font-size: 36px;
  }
  .main-visual .main-title .font-56 {
    font-size: 48px;
  }
  .main-visual .main-subtitle {
    font-size: 33px;
  }
  .main-visual p.main-catch::before, .main-visual p.main-catch::after {
    width: 128px;
    top: 26px;
  }
  .main-visual p.main-catch span {
    font-size: 32px;
  }
  .main-visual .main-cta {
    height: 80px;
    font-size: 20px;
  }
  .main-visual .main-cta::before {
    top: 30px;
  }
  .main-visual .medal-box img {
    width: 172px;
    height: 172px;
  }
}
@media (max-width: 768px) {
  .main-visual {
    height: 800px;
    background: url("../img/top-mv-sp.png") no-repeat center bottom 30%;
    background-size: cover;
  }
  .main-visual .main-visual-container {
    width: 100%;
    margin: 0;
  }
  .main-visual .main-title {
    font-size: 40px;
    margin-top: 64px;
  }
  .main-visual .main-title .dot::before {
    width: 8px;
    height: 8px;
    left: calc(50% - 4px);
  }
  .main-visual .main-title .line::before {
    height: 16px;
  }
  .main-visual .main-title .font-56 {
    font-size: 56px;
  }
  .main-visual .main-subtitle {
    font-size: 22px;
  }
  .main-visual p.main-catch {
    text-align: left;
  }
  .main-visual p.main-catch::before, .main-visual p.main-catch::after {
    width: 196px;
    height: 1px;
    top: 16px;
    left: 112px;
    right: auto;
  }
  .main-visual p.main-catch::before {
    display: none;
  }
  .main-visual p.main-catch span {
    font-size: 20px;
  }
  .main-visual .main-cta.pc {
    display: none;
  }
  .main-visual .main-cta.sp {
    display: flex;
    height: 72px;
    bottom: -280px;
    font-size: 20px;
  }
  .main-visual .main-cta.sp::before {
    top: 27px;
    right: 32px;
  }
  .main-visual .medal-box {
    position: relative;
    margin-top: 24px;
  }
  .main-visual .medal-box img {
    position: absolute;
    width: 156px;
    height: 156px;
  }
  .main-visual .medal-box img:nth-child(1) {
    top: 0;
    left: 48px;
  }
  .main-visual .medal-box img:nth-child(2) {
    top: 128px;
    left: -24px;
  }
  .main-visual .medal-box img:nth-child(3) {
    top: 128px;
    left: 120px;
  }
}
@media (max-width: 480px) {
  .main-visual {
    height: 800px;
    background: url("../img/top-mv-sp.png") no-repeat center;
    background-size: cover;
  }
  .main-visual .main-visual-container {
    width: 100%;
    margin: 0;
  }
  .main-visual .main-title {
    font-size: 36px;
    margin-top: 64px;
  }
  .main-visual .main-title .dot::before {
    width: 8px;
    height: 8px;
    left: calc(50% - 4px);
  }
  .main-visual .main-title .line::before {
    height: 16px;
  }
  .main-visual .main-title .font-56 {
    font-size: 48px;
  }
  .main-visual .main-subtitle {
    font-size: 22px;
  }
  .main-visual p.main-catch {
    text-align: left;
  }
  .main-visual p.main-catch::before, .main-visual p.main-catch::after {
    width: 196px;
    height: 1px;
    top: 16px;
    left: 112px;
    right: auto;
  }
  .main-visual p.main-catch::before {
    display: none;
  }
  .main-visual p.main-catch span {
    font-size: 20px;
  }
  .main-visual .main-cta.pc {
    display: none;
  }
  .main-visual .main-cta.sp {
    display: flex;
    height: 72px;
    bottom: -280px;
    font-size: 20px;
  }
  .main-visual .main-cta.sp::before {
    top: 27px;
    right: 32px;
  }
  .main-visual .medal-box {
    position: relative;
    margin-top: 24px;
  }
  .main-visual .medal-box img {
    position: absolute;
    width: 156px;
    height: 156px;
  }
  .main-visual .medal-box img:nth-child(1) {
    top: 0;
    left: 48px;
  }
  .main-visual .medal-box img:nth-child(2) {
    top: 128px;
    left: -24px;
  }
  .main-visual .medal-box img:nth-child(3) {
    top: 128px;
    left: 120px;
  }
}
@media screen and (max-width: 366px) {
  .main-visual {
    height: 790px;
  }
  .main-visual .medal-box {
    margin-top: 56px;
  }
  .main-visual .main-title .font-56 {
    font-size: 46px;
  }
  .main-visual .main-cta.sp {
    font-size: 18px;
  }
}

.floating-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 300px;
  height: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideIn 0.5s ease-out;
}
.floating-popup .popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1001;
}
.floating-popup .popup-close:hover {
  background: #f0f0f0;
  color: #333;
}
.floating-popup .popup-content {
  padding: 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.floating-popup .popup-content h3 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.floating-popup .popup-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.floating-popup .popup-cta {
  display: inline-block;
  background: #007cba;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.floating-popup .popup-cta:hover {
  background: #005a8b;
  color: #fff;
  transform: translateY(-1px);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.news-section {
  position: relative;
  padding: 0 0 80px;
  background-image: linear-gradient(-90deg, #1b4ece, #1b479e);
  z-index: 2;
}
.news-section .news-section-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  top: -64px;
  padding: 56px 48px;
  border-radius: 12px;
  background: #fff;
}
.news-section .news-section-box .section-title-box {
  position: relative;
  width: 156px;
}
.news-section .news-section-box .section-title-box .section-title span {
  color: #1b479e;
  font-size: 48px;
  font-weight: bold;
}
.news-section .news-section-box .section-title-box .section-title p {
  color: #273138;
  font-size: 18px;
  font-weight: bold;
}
.news-section .news-section-box .news-list {
  width: calc(100% - 188px);
}
.news-section .news-section-box .news-list .news-item {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #eaeaea;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-section .news-section-box .news-list .news-item:hover {
  transform: translateY(-2px);
}
.news-section .news-section-box .news-list .news-item:first-child {
  padding-top: 0;
}
.news-section .news-section-box .news-list .news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.news-section .news-section-box .news-list .news-item .news-date {
  min-width: 128px;
  color: #1b479e;
  font-size: 18px;
  font-weight: bold;
}
.news-section .news-section-box .news-list .news-item .news-title {
  color: #273138;
  font-size: 18px;
  font-weight: bold;
}
.news-section .news-section-box .news-more {
  position: absolute;
  bottom: 0;
}
.news-section .news-section-box .news-more a.news-more-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 144px;
  height: 40px;
  color: #273138;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-section .news-section-box .news-more a.news-more-btn:hover {
  transform: translateY(-2px);
}
.news-section .news-section-box .news-more a.news-more-btn::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  right: 0;
  border-radius: 40px;
  border: 1px solid #e2e2e2;
  background: #fff url(../img/icon-btn-more.svg) no-repeat center;
  background-size: 8px 14px;
}
.news-section .news-section-box .news-more.sp {
  display: none;
}
@media screen and (max-width: 1920px) {
  .news-section .news-section-box {
    top: -80px;
    padding: 80px;
  }
  .news-section .news-section-box .news-list {
    width: calc(100% - 204px);
  }
}
@media screen and (max-width: 1440px) {
  .news-section .news-section-box {
    top: -64px;
    padding: 56px 48px;
  }
  .news-section .news-section-box .news-list {
    width: calc(100% - 188px);
  }
}
@media (max-width: 768px) {
  .news-section .news-section-box {
    display: block;
    top: -56px;
    padding: 32px 48px 48px;
  }
  .news-section .news-section-box .section-title-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
  }
  .news-section .news-section-box .section-title-box .section-title span {
    color: #1b479e;
    font-size: 48px;
    font-weight: bold;
  }
  .news-section .news-section-box .section-title-box .section-title p {
    color: #273138;
    font-size: 18px;
    font-weight: bold;
  }
  .news-section .news-section-box .news-list {
    width: 100%;
  }
  .news-section .news-section-box .news-list .news-item .news-title {
    font-size: 16px;
  }
  .news-section .news-section-box .news-list .news-item .news-date {
    font-size: 16px;
  }
  .news-section .news-section-box .news-more {
    position: relative;
    bottom: 0;
  }
  .news-section .news-section-box .news-more a.news-more-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 144px;
    height: 40px;
    color: #273138;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .news-section .news-section-box .news-more a.news-more-btn:hover {
    transform: translateY(-2px);
  }
  .news-section .news-section-box .news-more a.news-more-btn::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    right: 0;
    border-radius: 40px;
    border: 1px solid #e2e2e2;
    background: #fff url(../img/icon-btn-more.svg) no-repeat center;
    background-size: 8px 14px;
  }
  .news-section .news-section-box .news-more.sp {
    display: none;
  }
}
@media (max-width: 480px) {
  .news-section .news-section-box {
    display: block;
    top: -56px;
    padding: 32px;
  }
  .news-section .news-section-box .section-title-box {
    width: 100%;
    margin-bottom: 24px;
  }
  .news-section .news-section-box .section-title-box .section-title span {
    font-size: 36px;
    line-height: 1;
  }
  .news-section .news-section-box .section-title-box .section-title p {
    font-size: 15px;
  }
  .news-section .news-section-box .news-list .news-item {
    display: block;
  }
  .news-section .news-section-box .news-list .news-item .news-date {
    margin-bottom: 4px;
  }
  .news-section .news-section-box .news-more {
    position: relative;
  }
  .news-section .news-section-box .news-more a.news-more-btn {
    width: 130px;
    font-size: 16px;
  }
}
@media screen and (max-width: 366px) {
  .news-section {
    padding: 0 0 48px;
  }
  .news-section .news-section-box {
    padding: 32px 24px;
    top: -24px;
  }
}
.news-section .pickup-section-box {
  position: relative;
}
.news-section .pickup-section-box .section-title-box {
  position: relative;
  margin-bottom: 24px;
}
.news-section .pickup-section-box .section-title-box .section-title {
  display: flex;
  align-items: flex-end;
}
.news-section .pickup-section-box .section-title-box .section-title span {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  margin-right: 16px;
}
.news-section .pickup-section-box .section-title-box .section-title p {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.news-section .pickup-section-box .media-carousel {
  position: relative;
  width: 100%;
}
.news-section .pickup-section-box .media-carousel .carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.news-section .pickup-section-box .media-carousel .carousel-item {
  min-width: calc(33.333% - 20px);
  margin-right: 20px;
  text-decoration: none;
}
.news-section .pickup-section-box .media-carousel .carousel-item .media-image {
  position: relative;
  width: 336px;
  height: 200px;
  overflow: hidden;
  border: #d3d3d3 1px solid;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #fff;
}
.news-section .pickup-section-box .media-carousel .carousel-item .media-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news-section .pickup-section-box .media-carousel .carousel-item:hover .media-image img {
  transform: scale(1.05);
}
.news-section .pickup-section-box .media-carousel .carousel-item .media-title {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}
.news-section .pickup-section-box .media-carousel .carousel-nav-box {
  position: absolute;
  top: -48px;
  right: 0;
}
.news-section .pickup-section-box .media-carousel .carousel-nav-box .carousel-nav {
  cursor: pointer;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}
.news-section .pickup-section-box .media-carousel .carousel-nav-box .carousel-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.news-section .pickup-section-box .media-carousel .carousel-nav-box .carousel-nav.carousel-prev {
  left: -112px;
}
.news-section .pickup-section-box .media-carousel .carousel-nav-box .carousel-nav.carousel-next {
  right: 0;
}
.news-section .pickup-section-box .media-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.news-section .pickup-section-box .media-carousel .carousel-dots .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}
.news-section .pickup-section-box .media-carousel .carousel-dots .carousel-dot.active {
  background: #007cba;
}
@media screen and (max-width: 1920px) {
  .news-section .pickup-section-box .media-carousel .carousel-item {
    min-width: calc(33.333% - 36px);
    margin-right: 36px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item .media-image {
    width: 100%;
    height: 240px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item .media-image img {
    height: 240px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item .media-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .news-section .pickup-section-box .media-carousel .carousel-item {
    min-width: calc(33.333% - 20px);
    margin-right: 20px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item .media-image {
    height: 200px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item .media-image img {
    height: 200px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item .media-title {
    font-size: 18px;
  }
}
@media (max-width: 1080px) {
  .news-section .pickup-section-box .section-title-box .section-title span {
    margin-right: 8px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item .media-image {
    width: 100%;
    height: 180px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item .media-image img {
    height: 180px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item .media-title {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .news-section .pickup-section-box .section-title-box .section-title span {
    font-size: 36px;
  }
  .news-section .pickup-section-box .section-title-box .section-title p {
    font-size: 15px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item {
    min-width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .news-section .pickup-section-box .section-title-box .section-title span {
    font-size: 36px;
  }
  .news-section .pickup-section-box .section-title-box .section-title p {
    font-size: 15px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-item {
    min-width: calc(100% - 20px);
  }
}
@media screen and (max-width: 366px) {
  .news-section .pickup-section-box .section-title-box {
    margin-bottom: 12px;
  }
  .news-section .pickup-section-box .section-title-box .section-title span {
    font-size: 32px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-nav-box .carousel-nav {
    width: 40px;
    height: 40px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-nav-box .carousel-nav.carousel-prev {
    left: -88px;
  }
  .news-section .pickup-section-box .media-carousel .carousel-nav-box {
    top: -36px;
  }
}

.message-section {
  position: relative;
  padding: 80px 0;
  background: url("../img/message-bg.png") no-repeat;
  background-size: contain;
  background-position: top left;
}
.message-section .message-section-container {
  width: 720px;
  margin-left: auto;
  margin-right: 0;
}
.message-section .message-section-container .section-title-box {
  margin-bottom: 40px;
}
.message-section .message-section-container .section-title-box .section-title span {
  color: #1b479e;
  font-size: 64px;
  font-weight: bold;
}
.message-section .message-section-container .section-title-box .section-title p {
  color: #273138;
  font-size: 18px;
  font-weight: bold;
}
.message-section .message-section-container h3 {
  color: #1b479e;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}
.message-section .message-section-container img.sp {
  display: none;
}
.message-section .message-section-container p {
  color: #273138;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
}
.message-section .message-section-container .medal-box {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
}
.message-section .message-section-container .medal-box img {
  width: 240px;
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1920px) {
  .message-section {
    background: url("../img/message-bg.png") no-repeat;
    background-size: contain;
    background-position: top left;
  }
}
@media (max-width: 1560px) {
  .message-section {
    background: url("../img/message-bg.png") no-repeat;
    background-size: inherit;
    background-position: top left;
  }
  .message-section .message-section-container .medal-box img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 1560px) {
  .message-section .message-section-container {
    width: 648px;
  }
  .message-section .message-section-container h3 {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .message-section .message-section-container p {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .message-section .message-section-container .medal-box {
    margin-top: 32px;
  }
  .message-section .message-section-container .medal-box img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 1080px) {
  .message-section {
    padding: 80px 0 56px;
    background: #fff;
  }
  .message-section .message-section-container {
    width: 100%;
  }
  .message-section .message-section-container h3 {
    font-size: 36px;
  }
  .message-section .message-section-container img.sp {
    display: block;
    width: calc(100% + 80px);
    margin-left: -40px;
  }
  .message-section .message-section-container p {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .message-section .message-section-container .medal-box {
    margin-top: 32px;
  }
  .message-section .message-section-container .medal-box img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .message-section {
    padding: 64px 0;
  }
  .message-section .message-section-container {
    width: 100%;
  }
  .message-section .message-section-container .section-title-box .section-title span {
    font-size: 40px;
  }
  .message-section .message-section-container .section-title-box .section-title p {
    font-size: 15px;
  }
  .message-section .message-section-container h3 {
    font-size: 28px;
  }
  .message-section .message-section-container h3 br {
    display: none;
  }
  .message-section .message-section-container p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .message-section .message-section-container .medal-box {
    margin-top: 32px;
    gap: 0;
  }
  .message-section .message-section-container .medal-box img {
    width: 33.3333333333%;
    height: 33%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 480px) {
  .message-section .message-section-container h3 {
    font-size: 24px;
  }
  .message-section .message-section-container .medal-box {
    margin-top: 32px;
    gap: 0;
  }
  .message-section .message-section-container .medal-box img {
    width: 40%;
    height: 148px;
    margin: 0 -12px;
  }
}
@media screen and (max-width: 366px) {
  .message-section {
    padding: 32px 0;
  }
  .message-section .message-section-container .medal-box img {
    width: 40%;
    height: 120px;
    margin: 0 -10px;
  }
}

.service-section {
  overflow: hidden;
}
.service-section .service-section-container .section-title-box {
  margin-bottom: 48px;
}
.service-section .service-section-container .section-title-box .section-title {
  margin-bottom: 56px;
}
.service-section .service-section-container .section-title-box .section-title span {
  color: #1b479e;
  font-size: 64px;
  font-weight: bold;
}
.service-section .service-section-container .section-title-box .section-title p {
  color: #273138;
  font-size: 18px;
  font-weight: bold;
}
.service-section .service-section-container .service-box {
  display: flex;
  justify-content: space-between;
}
.service-section .service-section-container .service-box .service-item {
  width: calc((100% - 72px) / 3);
}
.service-section .service-section-container .service-box .service-item img {
  width: 336px;
  height: 240px;
  border-radius: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 24px;
}
.service-section .service-section-container .service-box .service-item h3 {
  color: #273138;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 12px;
}
.service-section .service-section-container .service-box .service-item p {
  color: #273138;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 1920px) {
  .service-section .service-section-container .service-box .service-item img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1440px) {
  .service-section .service-section-container .service-box .service-item img {
    width: 336px;
    height: 240px;
  }
}
@media (max-width: 1080px) {
  .service-section .service-section-container .section-title-box {
    margin-bottom: 40px;
  }
  .service-section .service-section-container .section-title-box .section-title {
    margin-bottom: 40px;
  }
  .service-section .service-section-container .service-box .service-item {
    width: calc((100% - 64px) / 3);
  }
  .service-section .service-section-container .service-box .service-item img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
  .service-section .service-section-container .service-box .service-item h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .service-section .service-section-container .service-box .service-item p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .service-section .service-section-container .section-title-box .section-title span {
    font-size: 40px;
  }
  .service-section .service-section-container .section-title-box .section-title p {
    font-size: 15px;
  }
  .service-section .service-section-container .service-box {
    flex-wrap: wrap;
  }
  .service-section .service-section-container .service-box .service-item {
    width: calc(50% - 16px);
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .service-section .service-section-container .service-box .service-item {
    width: 100%;
    margin-bottom: 32px;
  }
  .service-section .service-section-container .service-box .service-item h3 {
    font-size: 20px;
  }
  .service-section .service-section-container .service-box .service-item p {
    font-size: 15px;
  }
}

.works-section {
  overflow: hidden;
  padding: 88px 0;
  background-image: linear-gradient(0deg, #1b479e 5%, #fff);
}
.works-section .section-title-box {
  width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.works-section .section-title-box .section-title span {
  color: #1b479e;
  font-size: 48px;
  font-weight: bold;
}
.works-section .section-title-box .section-title p {
  color: #273138;
  font-size: 18px;
  font-weight: bold;
}
.works-section .works-more .works-more-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 144px;
  height: 40px;
  color: #273138;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.works-section .works-more .works-more-btn:hover {
  transform: translateY(-2px);
}
.works-section .works-more .works-more-btn::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  right: 0;
  border-radius: 40px;
  border: 1px solid #e2e2e2;
  background: #fff url(../img/icon-btn-more.svg) no-repeat center;
  background-size: 8px 14px;
}
.works-section .works-more.sp {
  display: none;
}
.works-section .works-section-container {
  position: relative;
  width: calc((100% - 1080px) / 2 + 1080px);
  margin-left: calc((100% - 1080px) / 2);
  height: 680px;
  padding: 64px 0;
  background: #fff;
}
.works-section .works-section-container::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  top: 0;
  left: -80px;
  background: #fff;
  border-radius: 12px 0 0 12px;
}
.works-section .works-section-container::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  background: #fff;
  border-radius: 0 12px 12px 0;
}
.works-section .works-section-container .works-carousel {
  position: absolute;
  width: 100%;
}
.works-section .works-section-container .works-carousel .works-container {
  overflow: hidden;
}
.works-section .works-section-container .works-carousel .works-track {
  display: flex;
  transition: transform 0.5s ease;
}
.works-section .works-section-container .works-carousel .works-item {
  min-width: 304px;
  margin-right: 36px;
  text-decoration: none;
}
.works-section .works-section-container .works-carousel .works-item .works-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.works-section .works-section-container .works-carousel .works-item .works-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.works-section .works-section-container .works-carousel .works-item:hover .works-image img {
  transform: scale(1.05);
}
.works-section .works-section-container .works-carousel .works-item .works-title {
  font-size: 20px;
  color: #273138;
  font-weight: bold;
}
.works-section .works-section-container .works-carousel .works-nav-container {
  width: 1080px;
}
.works-section .works-section-container .works-carousel .works-nav-container .works-nav {
  position: absolute;
  bottom: -16px;
  left: 128px;
}
.works-section .works-section-container .works-carousel .works-nav-container .works-nav .works-nav-btn {
  cursor: pointer;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}
.works-section .works-section-container .works-carousel .works-nav-container .works-nav .works-nav-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.works-section .works-section-container .works-carousel .works-nav-container .works-nav .works-nav-btn.works-prev {
  left: -128px;
}
.works-section .works-section-container .works-carousel .works-nav-container .works-nav .works-nav-btn.works-next {
  right: 16px;
}
.works-section .works-section-container .works-carousel .works-nav-container .carousel-dots {
  display: flex;
  justify-content: end;
  gap: 16px;
  margin-top: 16px;
}
.works-section .works-section-container .works-carousel .works-nav-container .carousel-dots .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(27, 71, 158, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}
.works-section .works-section-container .works-carousel .works-nav-container .carousel-dots .carousel-dot.active {
  background: #1b479e;
}
.works-section .works-section-container .works-carousel .works-nav-container .carousel-dots .carousel-dot:hover {
  background: rgba(27, 71, 158, 0.5);
}
@media screen and (max-width: 1920px) {
  .works-section .works-section-container {
    width: calc((100% - 1280px) / 2 + 1280px);
    margin-left: calc((100% - 1280px) / 2);
  }
  .works-section .works-section-container .works-carousel .works-nav-container {
    width: 1280px;
  }
  .works-section .section-title-box {
    width: 1280px;
  }
}
@media screen and (max-width: 1440px) {
  .works-section .works-section-container {
    width: calc((100% - 1080px) / 2 + 1080px);
    margin-left: calc((100% - 1080px) / 2);
  }
  .works-section .works-section-container .works-carousel .works-nav-container {
    width: 1080px;
  }
  .works-section .section-title-box {
    width: 1080px;
  }
}
@media (max-width: 1080px) {
  .works-section .section-title-box {
    width: calc(100% - 80px);
    margin-bottom: 40px;
  }
  .works-section .works-section-container {
    width: calc(100% - 40px);
    margin-left: 72px;
    height: 640px;
    padding: 64px 0;
  }
  .works-section .works-section-container::after {
    width: 48px;
    left: -48px;
  }
  .works-section .works-section-container .works-carousel {
    width: 100%;
  }
  .works-section .works-section-container .works-carousel .works-item .works-image {
    margin-bottom: 8px;
  }
  .works-section .works-section-container .works-carousel .works-item .works-title {
    font-size: 18px;
  }
  .works-section .works-section-container .works-carousel .works-nav-container {
    width: calc(100% - 80px);
  }
}
@media (max-width: 480px) {
  .works-section {
    padding: 64px 0;
  }
  .works-section .section-title-box {
    margin-bottom: 32px;
  }
  .works-section .section-title-box .section-title span {
    font-size: 36px;
  }
  .works-section .section-title-box .section-title p {
    font-size: 15px;
  }
  .works-section .works-section-container {
    height: 620px;
    padding: 48px 0;
  }
  .works-section .works-section-container .works-carousel .works-nav-container .carousel-dots {
    justify-content: center;
  }
  .works-section .works-more.pc {
    display: none;
  }
  .works-section .works-nav {
    display: none;
  }
  .works-section .works-more.sp {
    display: block;
    margin-top: 32px;
  }
  .works-section .works-more.sp .works-more-btn {
    justify-content: center;
    width: 100%;
    height: 64px;
    border-radius: 64px;
    border: 1px solid #e2e2e2;
    background: #fff;
  }
  .works-section .works-more.sp .works-more-btn::before {
    right: 12px;
  }
}
@media screen and (max-width: 366px) {
  .works-section {
    padding: 32px 0;
  }
  .works-section .works-section-container .works-carousel .works-nav-container {
    width: calc(100% - 24px);
  }
  .works-section .works-section-container {
    height: 580px;
    margin-left: 40px;
    padding: 32px 0;
  }
  .works-section .works-section-container::after {
    width: 24px;
    left: -24px;
  }
  .works-section .works-section-container .works-carousel .works-nav-container .carousel-dots {
    gap: 12px;
    margin-top: 24px;
  }
}

.contact-section {
  background: url("../img/contact-bg.png") no-repeat center;
  background-size: cover;
  padding: 80px 0;
}
.contact-section .section-title-box .section-title {
  margin-bottom: 32px;
}
.contact-section .section-title-box .section-title span {
  font-size: 64px;
  font-weight: bold;
  color: #fff;
}
.contact-section .section-title-box .section-title p {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.contact-section .section-title-box > p {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
.contact-section .contact-box {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.contact-section .contact-box .contact-item {
  width: calc((100% - 48px) / 2);
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-section .contact-box .contact-item .title {
  font-size: 20px;
  font-weight: bold;
  color: #273138;
  margin-bottom: 16px;
}
.contact-section .contact-box .contact-item.tel a {
  position: relative;
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  color: #1b2b44;
  line-height: 1;
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.contact-section .contact-box .contact-item.tel a::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  top: 2px;
  left: -40px;
  background: url(../img/icon-tel.svg) no-repeat center;
}
.contact-section .contact-box .contact-item.tel a:hover {
  color: #1b479e;
}
.contact-section .contact-box .contact-item.tel .time {
  font-size: 20px;
  font-weight: bold;
  color: #1b2b44;
}
.contact-section .contact-box .contact-item.tel .time span {
  display: inline-block;
  width: 96px;
  height: 26px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #1b479e;
  border-radius: 24px;
  margin-right: 12px;
}
.contact-section .contact-box .contact-item.mail a.main-cta.sp {
  display: none;
}
.contact-section .contact-box .contact-item.mail a.main-cta {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  background: linear-gradient(-90deg, #e54600, #c90000);
  border-radius: 72px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-section .contact-box .contact-item.mail a.main-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
  color: #fff;
}
.contact-section .contact-box .contact-item.mail a.main-cta::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 18px;
  top: 28px;
  left: 40px;
  background: url(../img/icon-contact.svg) no-repeat center;
}
.contact-section .contact-box .contact-item.mail a.main-cta::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 19px;
  top: 26px;
  right: 36px;
  background: url(../img/icon-btn.svg) no-repeat center;
}
@media screen and (max-width: 1920px) {
  .contact-section .section-title-box > p {
    font-size: 20px;
  }
  .contact-section .contact-box .contact-item .title {
    font-size: 24px;
  }
  .contact-section .contact-box .contact-item.mail a.main-cta {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .contact-section .section-title-box > p {
    font-size: 18px;
  }
  .contact-section .contact-box .contact-item .title {
    font-size: 20px;
  }
  .contact-section .contact-box .contact-item.mail a.main-cta {
    font-size: 18px;
  }
}
@media (max-width: 1080px) {
  .contact-section .contact-box {
    display: block;
    margin-top: 40px;
  }
  .contact-section .contact-box .contact-item {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 64px 0;
  }
  .contact-section .section-title-box > p {
    font-size: 16px;
  }
  .contact-section .section-title-box .section-title {
    margin-bottom: 24px;
  }
  .contact-section .section-title-box .section-title span {
    font-size: 40px;
  }
  .contact-section .section-title-box .section-title p {
    font-size: 15px;
  }
  .contact-section .contact-box .contact-item {
    padding: 24px;
    margin-top: 24px;
  }
  .contact-section .contact-box .contact-item .title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .contact-section .contact-box .contact-item.tel a {
    font-size: 32px;
  }
  .contact-section .contact-box .contact-item.tel a::after {
    width: 28px;
    height: 28px;
    left: -36px;
  }
  .contact-section .contact-box .contact-item.tel .time {
    font-size: 16px;
  }
  .contact-section .contact-box .contact-item.tel .time span {
    width: 80px;
    height: 24px;
    font-size: 14px;
  }
  .contact-section .contact-box .contact-item.mail a.main-cta.pc {
    display: none;
  }
  .contact-section .contact-box .contact-item.mail a.main-cta.sp {
    display: flex;
    height: 56px;
    font-size: 16px;
  }
  .contact-section .contact-box .contact-item.mail a.main-cta.sp::before {
    width: 24px;
    height: 18px;
    top: 20px;
    left: 24px;
  }
  .contact-section .contact-box .contact-item.mail a.main-cta.sp::after {
    width: 12px;
    height: 19px;
    top: 18px;
    right: 24px;
  }
}
@media screen and (max-width: 366px) {
  .contact-section {
    padding: 32px 0;
  }
  .contact-section .contact-box .contact-item.tel a {
    font-size: 28px;
  }
  .contact-section .contact-box .contact-item.mail a.main-cta.sp::before {
    width: 20px;
  }
}

.img-loop-section {
  overflow: hidden;
  position: relative;
}
.img-loop-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, #f8f9fa, transparent);
  z-index: 2;
  pointer-events: none;
}
.img-loop-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to left, #f8f9fa, transparent);
  z-index: 2;
  pointer-events: none;
}
.img-loop-section .image-container {
  display: flex;
  animation: slideImages 30s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
.img-loop-section .image-container img {
  width: 336px;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@keyframes slideImages {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .img-loop-section .image-container {
    animation-duration: 20s;
  }
  .img-loop-section .image-container img {
    width: 280px;
    height: 260px;
  }
}
@media (max-width: 480px) {
  .img-loop-section .image-container {
    animation-duration: 15s;
  }
  .img-loop-section .image-container img {
    width: 200px;
    height: 180px;
  }
}

.reason-section {
  background-color: #f0f5ff;
  padding: 112px 0 104px;
}
.reason-section .section-title h2 {
  font-size: 40px;
  font-weight: bold;
  color: #1b479e;
  text-align: center;
  margin-bottom: 24px;
}
.reason-section .section-title h2 br {
  display: none;
}
.reason-section .section-title p {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 64px;
}
.reason-section .reason-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.reason-section .reason-box .reason-item {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 56px 64px;
}
.reason-section .reason-box .reason-item span {
  position: absolute;
  top: -64px;
  left: -32px;
  font-size: 88px;
  font-weight: bold;
  color: rgba(27, 71, 158, 0.2);
  z-index: 2;
}
.reason-section .reason-box .reason-item h3 {
  width: 390px;
  margin-right: 48px;
  font-size: 28px;
  font-weight: bold;
  color: #1b479e;
}
.reason-section .reason-box .reason-item p {
  font-size: 18px;
  font-weight: bold;
  color: #1b2b44;
}
@media screen and (max-width: 1920px) {
  .reason-section .section-title p {
    font-size: 20px;
  }
  .reason-section .reason-box .reason-item p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .reason-section .section-title p {
    font-size: 18px;
  }
  .reason-section .reason-box .reason-item p {
    font-size: 18px;
  }
}
@media (max-width: 1080px) {
  .reason-section {
    padding: 64px 0;
  }
  .reason-section .section-title h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: left;
  }
  .reason-section .section-title h2 br {
    display: block;
  }
  .reason-section .section-title p {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: left;
  }
  .reason-section .section-title p br {
    display: none;
  }
  .reason-section .reason-box {
    gap: 24px;
  }
  .reason-section .reason-box .reason-item {
    padding: 32px 48px;
  }
  .reason-section .reason-box .reason-item span {
    top: -40px;
    left: -24px;
    font-size: 56px;
  }
  .reason-section .reason-box .reason-item h3 {
    width: 275px;
    margin-right: 48px;
    font-size: 21px;
  }
  .reason-section .reason-box .reason-item p {
    width: calc(100% - 320px);
    font-size: 16px;
  }
  .reason-section .reason-box .reason-item p br {
    display: none;
  }
}
@media (max-width: 768px) {
  .reason-section .section-title h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .reason-section .reason-box {
    gap: 24px;
  }
  .reason-section .reason-box .reason-item {
    display: block;
    padding: 32px 40px;
  }
  .reason-section .reason-box .reason-item span {
    top: -40px;
    left: auto;
    right: 24px;
    font-size: 64px;
  }
  .reason-section .reason-box .reason-item h3 {
    width: 100%;
    margin: 0 0 16px;
    font-size: 24px;
  }
  .reason-section .reason-box .reason-item p {
    width: 100%;
  }
  .reason-section .reason-box .reason-item p br {
    display: none;
  }
}
@media (max-width: 480px) {
  .reason-section {
    padding: 48px 0;
  }
  .reason-section .section-title h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .reason-section .reason-box .reason-item {
    padding: 32px;
  }
  .reason-section .reason-box .reason-item h3 br {
    display: none;
  }
  .reason-section .reason-box .reason-item span {
    top: -48px;
    right: 0;
    font-size: 64px;
  }
}
@media screen and (max-width: 366px) {
  .reason-section .reason-box .reason-item {
    padding: 32px 24px 24px;
  }
  .reason-section .reason-box .reason-item h3 {
    font-size: 20px;
  }
  .reason-section .reason-box .reason-item span {
    font-size: 56px;
  }
}

.company-section {
  position: relative;
  background: url("../img/company-bg.png") no-repeat center;
  background-size: cover;
  padding: 112px 0 120px;
}
.company-section .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.company-section .container .company-section-container {
  max-width: 520px;
}
.company-section .container .company-section-container .section-title-box {
  margin-bottom: 64px;
}
.company-section .container .company-section-container .section-title-box .section-title span {
  font-size: 64px;
  font-weight: bold;
  color: #fff;
}
.company-section .container .company-section-container .section-title-box .section-title p {
  font-size: 18px;
  color: #fff;
}
.company-section .container .company-section-container .section-txt-box h3 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 32px;
}
.company-section .container .company-section-container .section-txt-box span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
}
.company-section .container .company-section-container .section-txt-box p {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
}
.company-section .container .company-section-container .section-txt-box a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 72px;
  border-radius: 72px;
  color: #273138;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #e2e2e2;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.company-section .container .company-section-container .section-txt-box a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 71, 158, 0.5);
}
.company-section .container .company-section-container .section-txt-box a::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  right: 20px;
  border-radius: 40px;
  border: 1px solid #e2e2e2;
  background: #fff url(../img/icon-btn-more.svg) no-repeat center;
  background-size: 8px 14px;
}
.company-section .container .company-section-container .section-txt-box img {
  max-width: 517px;
  height: auto;
}
@media screen and (max-width: 1920px) {
  .company-section .container .company-section-container {
    max-width: 720px;
  }
  .company-section .container .company-section-container .section-txt-box p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .company-section .container .company-section-container {
    max-width: 520px;
  }
  .company-section .container .company-section-container .section-txt-box p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1080px) {
  .company-section {
    padding: 80px 0 520px;
    margin-bottom: 64px;
  }
  .company-section .container {
    display: block;
  }
  .company-section .container .company-section-container {
    max-width: 100%;
    margin-bottom: 64px;
  }
  .company-section .container .company-section-container .section-title-box {
    margin-bottom: 64px;
  }
  .company-section .container .company-section-container .section-title-box .section-title span {
    font-size: 64px;
  }
  .company-section .container .company-section-container .section-title-box .section-title p {
    font-size: 18px;
  }
  .company-section .container .company-section-container .section-txt-box h3 {
    font-size: 40px;
    margin-bottom: 32px;
  }
  .company-section .container .company-section-container .section-txt-box h3 br {
    display: none;
  }
  .company-section .container .company-section-container .section-txt-box span {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .company-section .container .company-section-container .section-txt-box p {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .company-section .container .company-section-container .section-txt-box p br {
    display: none;
  }
  .company-section .container img {
    position: absolute;
    max-width: calc(100% - 48px);
    height: auto;
  }
}
@media (max-width: 768px) {
  .company-section {
    padding: 80px 0 80%;
  }
  .company-section .container .company-section-container .section-title-box {
    margin-bottom: 32px;
  }
  .company-section .container .company-section-container .section-title-box .section-title span {
    font-size: 36px;
  }
  .company-section .container .company-section-container .section-title-box .section-title p {
    font-size: 15px;
  }
  .company-section .container .company-section-container .section-txt-box h3 {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .company-section .container .company-section-container .section-txt-box h3 br {
    display: block;
  }
  .company-section .container .company-section-container .section-txt-box span {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .company-section .container .company-section-container .section-txt-box p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .company-section .container .company-section-container .section-txt-box p br {
    display: none;
  }
}
@media (max-width: 480px) {
  .company-section {
    padding: 64px 0 80%;
  }
  .company-section .container .company-section-container .section-txt-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .company-section .container .company-section-container .section-txt-box span {
    font-size: 20px;
  }
  .company-section .container .company-section-container .section-txt-box a {
    width: 100%;
  }
}
@media screen and (max-width: 366px) {
  .company-section {
    padding: 32px 0;
  }
  .company-section .container img {
    position: relative;
    max-width: 100%;
    margin-bottom: -80px;
  }
}

.article-section {
  background-color: #fff;
  padding: 80px 0 64px;
}
.article-section .article-section-container {
  width: calc((100% - 1080px) / 2 + 1080px);
  margin-left: calc((100% - 1080px) / 2);
  margin-bottom: 56px;
}
.article-section .article-more.sp {
  display: none;
}
.article-section .article-more .article-more-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 144px;
  height: 40px;
  color: #273138;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-section .article-more .article-more-btn:hover {
  transform: translateY(-2px);
}
.article-section .article-more .article-more-btn::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  right: 0;
  border-radius: 40px;
  border: 1px solid #e2e2e2;
  background: #fff url(../img/icon-btn-more.svg) no-repeat center;
  background-size: 8px 14px;
}
.article-section .section-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1080px;
  margin-bottom: 40px;
}
.article-section .section-title-box .section-title span {
  font-size: 48px;
  font-weight: bold;
  color: #1b479e;
}
.article-section .section-title-box .section-title p {
  font-size: 18px;
  font-weight: bold;
  color: #1b2b44;
}
.article-section .article-carousel {
  position: relative;
}
.article-section .article-carousel .article-track {
  display: flex;
  gap: 36px;
  transition: transform 0.3s ease;
}
.article-section .article-carousel .article-track .article-item {
  min-width: 304px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-section .article-carousel .article-track .article-item:hover {
  transform: translateY(-5px);
}
.article-section .article-carousel .article-track .article-item .article-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}
.article-section .article-carousel .article-track .article-item .article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.article-section .article-carousel .article-track .article-item:hover .article-image img {
  transform: scale(1.05);
}
.article-section .article-carousel .article-track .article-item .article-title {
  font-size: 20px;
  font-weight: bold;
  color: #273138;
}
.article-section .article-carousel .article-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1080px;
  margin-top: 48px;
  gap: 20px;
}
.article-section .article-carousel .article-nav-container .article-nav {
  position: relative;
  bottom: 0;
  left: 128px;
}
.article-section .article-carousel .article-nav-container .article-nav .article-nav-btn {
  cursor: pointer;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}
.article-section .article-carousel .article-nav-container .article-nav .article-nav-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.article-section .article-carousel .article-nav-container .article-nav .article-nav-btn.article-prev {
  left: -128px;
}
.article-section .article-carousel .article-nav-container .article-nav .article-nav-btn.article-next {
  right: 0;
}
.article-section .article-carousel .article-nav-container .carousel-dots {
  display: flex;
  gap: 10px;
}
.article-section .article-carousel .article-nav-container .carousel-dots .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(27, 71, 158, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.article-section .article-carousel .article-nav-container .carousel-dots .carousel-dot:hover {
  background: #1b479e;
}
.article-section .article-carousel .article-nav-container .carousel-dots .carousel-dot.active {
  background: #1b479e;
}
@media (max-width: 1080px) {
  .article-section .article-section-container {
    width: calc(100% - 80px);
    margin-left: 40px;
  }
  .article-section .section-title-box {
    width: 100%;
  }
  .article-section .article-carousel .article-track .article-item .article-title {
    font-size: 18px;
  }
  .article-section .article-carousel .article-nav-container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .article-section .article-section-container {
    width: calc(100% - 80px);
    margin-left: 40px;
    margin-bottom: 16px;
  }
  .article-section .article-more.pc {
    display: none;
  }
  .article-section .article-more.sp {
    display: flex;
    margin-top: 32px;
  }
  .article-section .article-more.sp .article-more-btn {
    justify-content: center;
    width: 100%;
    height: 64px;
    font-size: 18px;
    border-radius: 64px;
    border: 1px solid #e2e2e2;
  }
  .article-section .article-more.sp .article-more-btn::before {
    right: 12px;
  }
  .article-section .section-title-box {
    width: 100%;
    margin-bottom: 32px;
  }
  .article-section .section-title-box .section-title span {
    font-size: 36px;
  }
  .article-section .section-title-box .section-title p {
    font-size: 15px;
  }
  .article-section .article-carousel .article-track .article-item .article-title {
    font-size: 18px;
  }
  .article-section .article-carousel .article-nav-container {
    display: block;
    margin-top: 32px;
  }
  .article-section .article-carousel .article-nav-container .article-nav {
    display: none;
  }
  .article-section .article-carousel .article-nav-container .carousel-dots {
    justify-content: center;
  }
}

.links-section {
  background-color: #fff;
  padding: 72px 0;
}
.links-section .section-title-box {
  margin-bottom: 32px;
}
.links-section .section-title-box .section-title {
  display: flex;
  align-items: baseline;
}
.links-section .section-title-box .section-title span {
  font-size: 48px;
  font-weight: bold;
  color: #1b479e;
  margin-right: 16px;
}
.links-section .section-title-box .section-title p {
  font-size: 18px;
  font-weight: bold;
  color: #1b479e;
}
.links-section .links-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.links-section .links-box .links-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid #e2e2e2;
  background: #fff;
  transition: all 0.3s ease;
}
.links-section .links-box .links-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.links-section .links-box .links-item img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.links-section .links-box .links-item:hover img {
  filter: grayscale(0%);
}
@media (max-width: 1080px) {
  .links-section .links-box {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .links-section .links-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .links-section .links-box .links-item img {
    max-height: 50px;
  }
}
@media (max-width: 480px) {
  .links-section .links-box {
    grid-template-columns: repeat(1, 1fr);
  }
}

.post {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}
.post:last-child {
  border-bottom: none;
}
.post .post-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.post .post-title a {
  color: #333;
  text-decoration: none;
}
.post .post-title a:hover {
  color: #007cba;
}
.post .post-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.post .post-content {
  margin-bottom: 1rem;
}
.post .read-more {
  display: inline-block;
  background-color: #007cba;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
}
.post .read-more:hover {
  background-color: #005a8b;
}

.single-post .post-content,
.page .post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.category-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  border-bottom: 2px solid #007cba;
  padding-bottom: 0.5rem;
}

.page-head-section .breadcrumb {
  margin-top: 24px;
}
.page-head-section .breadcrumb .breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #1b2b44;
  font-weight: bold;
}
.page-head-section .breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}
.page-head-section .breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin: 0 12px;
  color: #1b2b44;
  font-weight: bold;
}
.page-head-section .breadcrumb .breadcrumb-link {
  color: #1b479e;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}
.page-head-section .breadcrumb .breadcrumb-link:hover {
  color: #1b479e;
  text-decoration: underline;
}
.page-head-section .breadcrumb .breadcrumb-current {
  color: #1b2b44;
  font-weight: bold;
}
.page-head-section .section-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 80px 0 48px;
}
.page-head-section .section-title span {
  display: block;
  font-size: 64px;
  font-weight: bold;
  color: #1b479e;
  margin-right: 16px;
}
.page-head-section .section-title p {
  font-size: 18px;
  color: #1b2b44;
}
@media (max-width: 480px) {
  .page-head-section .section-title {
    margin: 48px 0 24px;
  }
  .page-head-section .section-title span {
    font-size: 40px;
  }
  .page-head-section .section-title p {
    font-size: 15px;
  }
}

.page-company .page-section .page-company-head {
  padding-top: 0;
  background: url(../img/page-company-bg.png) no-repeat top;
  background-size: cover;
}
.page-company .page-section .page-company-head + .container {
  position: relative;
  margin-top: -80px;
  z-index: 2;
}
.page-company .page-company-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.page-company .page-company-container .company-head {
  width: 504px;
  margin: 96px 0 160px;
}
.page-company .page-company-container .company-head h3 {
  font-size: 40px;
  font-weight: bold;
  color: #1b479e;
  line-height: 1.4;
}
.page-company .page-company-container .company-head span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin: 32px 0 24px;
}
.page-company .page-company-container .company-head span br {
  display: none;
}
.page-company .page-company-container .company-head p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
@media (max-width: 1080px) {
  .page-company .page-section .page-company-head {
    background: url(../img/page-company-bg.png) no-repeat top left 32%;
    background-size: cover;
  }
  .page-company .page-company-container .company-head {
    width: 420px;
    margin: 80px 0 144px;
  }
  .page-company .page-company-container .company-head h3 {
    font-size: 36px;
  }
  .page-company .page-company-container .company-head span {
    font-size: 20px;
    margin: 24px 0 16px;
  }
  .page-company .page-company-container .company-head p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .page-company .page-section .page-company-head {
    background: url(../img/page-company-bg-sp.png) no-repeat top left;
    background-size: contain;
  }
  .page-company .page-section .page-company-head + .container {
    margin-top: 0;
  }
  .page-company .page-company-container .company-head {
    width: 100%;
    margin: 70% 40px 24px;
  }
  .page-company .page-company-container .company-head h3 {
    font-size: 32px;
  }
  .page-company .page-company-container .company-head span br {
    display: block;
  }
  .page-company .page-company-container .company-head p br {
    display: none;
  }
}
@media (max-width: 480px) {
  .page-company .page-company-container {
    justify-content: center;
  }
  .page-company .page-company-container .company-head {
    margin: 70% 24px 24px;
  }
}
@media screen and (max-width: 366px) {
  .page-company .page-company-container .company-head h3 {
    font-size: 28px;
  }
}

.page-section {
  margin-bottom: 48px;
}
.page-section .page-section-head {
  position: relative;
  padding-top: 20%;
}
.page-section .page-section-head img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-section .section-box {
  padding: 64px 80px;
  border-radius: 12px;
  background: #fff;
}
.page-section .section-box .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.page-section .section-box .head .section-title {
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.page-section .section-box .head .section-title p {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}
.page-section .section-box .head .section-title span {
  font-size: 18px;
  color: #1b479e;
  font-weight: bold;
}
.page-section .section-box .head .more .more-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 144px;
  height: 40px;
  color: #273138;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.page-section .section-box .head .more .more-btn::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  right: 0;
  border-radius: 40px;
  border: 1px solid #e2e2e2;
  background: #fff url(../img/icon-btn-more.svg) no-repeat center;
  background-size: 8px 14px;
}
.page-section .section-box .head .more .more-btn:hover {
  transform: translateY(-2px);
}
.page-section .section-box > p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.page-section .section-box > .more.sp {
  display: none;
}
.page-section .section-box table.company {
  width: 100%;
}
.page-section .section-box table.company tr {
  display: block;
  border-bottom: 1px solid #dfe5ea;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.page-section .section-box table.company tr:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}
.page-section .section-box table.company tr th {
  width: 136px;
  color: #1b479e;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  vertical-align: baseline;
}
.page-section .section-box table.company tr td {
  font-size: 18px;
  font-weight: bold;
}
.page-section .section-box table.company tr td ul {
  list-style: none;
}
.page-section .section-box table.company tr td a {
  color: #1b479e;
}
.page-section .section-box iframe {
  width: 100%;
  height: 340px;
  margin: 64px 0 0;
}
.page-section .section-box .section-item h4 {
  position: relative;
  margin: 72px 0 32px;
}
.page-section .section-box .section-item h4 p {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #1b479e;
  background: #fff;
  padding-right: 24px;
  z-index: 2;
}
.page-section .section-box .section-item h4 p br {
  display: none;
}
.page-section .section-box .section-item h4::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background: #1b479e;
  z-index: 1;
}
.page-section .section-box .section-item > img {
  width: 100%;
  height: auto;
}
.page-section .section-box .section-item > img.pc {
  display: block;
}
.page-section .section-box .section-item > img.sp {
  display: none;
}
.page-section .section-box .section-item > p {
  margin: 32px 0;
  font-size: 15px;
  font-weight: bold;
}
.page-section .section-box .section-item .flex-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-section .section-box .section-item .flex-box div.flex-item {
  width: calc((100% - 80px) / 3);
  margin-bottom: 40px;
}
.page-section .section-box .section-item .flex-box div.flex-item:nth-last-child(1), .page-section .section-box .section-item .flex-box div.flex-item:nth-last-child(2), .page-section .section-box .section-item .flex-box div.flex-item:nth-last-child(3) {
  margin-bottom: 0;
}
.page-section .section-box .section-item .flex-box div.flex-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-section .section-box .section-item .flex-box div.flex-item h5 {
  font-size: 18px;
  font-weight: bold;
  color: #1b479e;
  margin: 12px 0 8px;
}
.page-section .section-box .section-item .flex-box div.flex-item p {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}
.page-section .section-box .section-item .flex-box div.flex-item .compact {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.page-section .section-box .section-item .flex-box div.flex-item small {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #1b479e;
  margin-top: 16px;
}
.page-section .section-box .section-item .flex-box div.flex-item .more-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  border-radius: 72px;
  margin-top: 20px;
  color: #273138;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #1b479e;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.page-section .section-box .section-item .flex-box div.flex-item .more-btn:hover {
  transform: translateY(-2px);
}
.page-section .section-box .section-item .flex-box div.flex-item .more-btn::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  right: 20px;
  border-radius: 40px;
  border: 1px solid #e2e2e2;
  background: #fff url(../img/icon-btn-more.svg) no-repeat center;
  background-size: 8px 14px;
}
.page-section .section-box .section-item .flex-box .flow-box {
  width: calc((100% - 40px) / 2);
  padding: 24px;
  background: rgba(27, 71, 158, 0.06);
  margin-top: 24px;
}
.page-section .section-box .section-item .flex-box .flow-box .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #1b479e;
  border-radius: 50px;
  border: 1px solid #1b479e;
  margin-top: -48px;
  background: #fff;
}
.page-section .section-box .section-item .flex-box .flow-box p {
  font-size: 18px;
  font-weight: bold;
  margin: 24px 0;
}
.page-section .section-box .section-item .flex-box .flow-box .blue {
  color: #1b479e;
  text-align: center;
}
.page-section .section-box .section-item .flex-box .flow-box .flow-item {
  position: relative;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #1b479e;
  background: #fff;
  text-align: center;
  margin-bottom: 24px;
}
.page-section .section-box .section-item .flex-box .flow-box .flow-item::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: calc(50% - 12px);
  bottom: -24px;
  background: url(../img/icon-flow.svg) no-repeat center;
}
.page-section .section-box .section-item .flex-box .flow-box .flow-item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.page-section .section-box .section-item .flex-box .flow-box .flow-item:nth-last-of-type(1)::before {
  display: none;
}
.page-section .section-box .section-item .flex-box .flow-box .flow-item span {
  font-size: 15px;
  font-weight: bold;
  color: #1b479e;
}
.page-section .section-box .section-item .box {
  display: flex;
  align-items: center;
  padding: 32px;
  margin-bottom: 24px;
  background: rgba(27, 71, 158, 0.06);
}
.page-section .section-box .section-item .box:last-child {
  margin-bottom: 0;
}
.page-section .section-box .section-item .box h5 {
  font-size: 20px;
  font-weight: bold;
  color: #1b479e;
  margin-right: 32px;
}
.page-section .section-box .section-item .box p {
  width: -webkit-fill-available;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}
.page-section .section-box .section-item .box ul {
  list-style: none;
}
.page-section .section-box .section-item .box ul li {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 1080px) {
  .page-section .section-box {
    padding: 48px;
  }
  .page-section .section-box .head .section-title {
    gap: 16px;
  }
  .page-section .section-box .head .section-title p {
    font-size: 32px;
  }
  .page-section .section-box .head .section-title span {
    font-size: 16px;
  }
  .page-section .section-box .head .more .more-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 144px;
    height: 40px;
    color: #273138;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .page-section .section-box .head .more .more-btn::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    right: 0;
    border-radius: 40px;
    border: 1px solid #e2e2e2;
    background: #fff url(../img/icon-btn-more.svg) no-repeat center;
    background-size: 8px 14px;
  }
  .page-section .section-box .head .more .more-btn:hover {
    transform: translateY(-2px);
  }
  .page-section .section-box > p {
    font-size: 16px;
  }
  .page-section .section-box table.company tr th {
    width: 112px;
    font-size: 16px;
  }
  .page-section .section-box table.company tr td {
    font-size: 16px;
  }
  .page-section .section-box table.company tr td ul {
    font-size: 16px;
  }
  .page-section .section-box iframe {
    margin: 48px 0 0;
  }
  .page-section .section-box .section-item h4 {
    margin: 48px 0 24px;
  }
  .page-section .section-box .section-item > p {
    margin: 24px 0;
  }
  .page-section .section-box .section-item .flex-box div.flex-item {
    width: calc((100% - 32px) / 2);
    margin-bottom: 32px;
  }
  .page-section .section-box .section-item .flex-box div.flex-item:nth-last-child(3) {
    margin-bottom: 32px;
  }
  .page-section .section-box .section-item .flex-box div.flex-item:nth-last-child(1), .page-section .section-box .section-item .flex-box div.flex-item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .page-section .section-box .section-item .flex-box div.flex-item img {
    height: 180px;
  }
  .page-section .section-box .section-item .flex-box .flow-box {
    width: calc((100% - 32px) / 2);
  }
  .page-section .section-box .section-item .flex-box .flow-box .title {
    font-size: 16px;
  }
  .page-section .section-box .section-item .flex-box .flow-box p {
    font-size: 16px;
  }
  .page-section .section-box .section-item .flex-box .flow-box p br {
    display: none;
  }
  .page-section .section-box .section-item .flex-box .flow-box .flow-item {
    font-size: 16px;
  }
  .page-section .section-box .section-item .box {
    display: flex;
    align-items: center;
    padding: 32px;
    margin-bottom: 24px;
    background: rgba(27, 71, 158, 0.06);
  }
  .page-section .section-box .section-item .box:last-child {
    margin-bottom: 0;
  }
  .page-section .section-box .section-item .box h5 {
    font-size: 18px;
    margin-right: 24px;
  }
  .page-section .section-box .section-item .box p {
    font-size: 15px;
  }
  .page-section .section-box .section-item .box ul li {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .page-section .page-section-head img {
    width: auto;
    height: 200px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .page-section .section-box {
    padding: 48px 40px;
  }
  .page-section .section-box .head .section-title {
    display: block;
  }
  .page-section .section-box .head .section-title p {
    font-size: 28px;
    line-height: 1;
  }
  .page-section .section-box .head .section-title span {
    font-size: 14px;
  }
  .page-section .section-box > p {
    font-size: 15px;
  }
  .page-section .section-box .section-item h4 p {
    font-size: 20px;
    padding-right: 12px;
  }
  .page-section .section-box .section-item h4 p br {
    display: block;
  }
  .page-section .section-box .section-item > img.pc {
    display: none;
  }
  .page-section .section-box .section-item > img.sp {
    display: block;
  }
  .page-section .section-box .section-item .flex-box div.flex-item {
    width: 100%;
    margin-bottom: 32px;
  }
  .page-section .section-box .section-item .flex-box div.flex-item:nth-last-child(3), .page-section .section-box .section-item .flex-box div.flex-item:nth-last-child(2) {
    margin-bottom: 32px;
  }
  .page-section .section-box .section-item .flex-box div.flex-item:nth-last-child(1) {
    margin-bottom: 0;
  }
  .page-section .section-box .section-item .flex-box div.flex-item img {
    height: 200px;
  }
  .page-section .section-box .section-item .flex-box .flow-box {
    width: 100%;
    margin-bottom: 32px;
  }
  .page-section .section-box .section-item .flex-box .flow-box:last-child {
    margin-bottom: 0;
  }
  .page-section .section-box .section-item .box {
    display: block;
  }
  .page-section .section-box .section-item .box h5 {
    width: 100% !important;
    font-size: 18px;
    margin: 0 0 12px;
  }
  .page-section .section-box .section-item .box h5 br {
    display: none;
  }
}
@media (max-width: 480px) {
  .page-section .section-box {
    padding: 40px 24px;
  }
  .page-section .section-box .head .more {
    display: none;
  }
  .page-section .section-box > .more.sp {
    display: block;
  }
  .page-section .section-box > .more.sp .more-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 64px;
    color: #273138;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 64px;
    border: 1px solid #e2e2e2;
    background: #fff;
    margin-top: 24px;
  }
  .page-section .section-box > .more.sp .more-btn::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    right: 12px;
    border-radius: 40px;
    border: 1px solid #e2e2e2;
    background: #fff url(../img/icon-btn-more.svg) no-repeat center;
    background-size: 8px 14px;
  }
  .page-section .section-box table.company tr {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .page-section .section-box table.company tr th {
    display: block;
    width: 100%;
    font-size: 16px;
  }
  .page-section .section-box table.company tr td {
    font-size: 16px;
  }
  .page-section .section-box table.company tr td ul {
    font-size: 16px;
  }
  .page-section .section-box .section-item h4 {
    margin: 48px 0 24px;
  }
  .page-section .section-box .section-item > p {
    margin: 24px 0;
  }
  .page-section .section-box .section-item .box {
    padding: 24px;
  }
}
@media screen and (max-width: 366px) {
  .page-section .section-box .section-item .flex-box .flow-box {
    padding: 16px;
  }
}

.works-box .works-item {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid #dfe5ea;
}
.works-box .works-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.works-box .works-item h3 {
  font-size: 28px;
  font-weight: bold;
  color: #1b2b44;
  padding-left: 20px;
  border-left: 4px solid #1b479e;
  margin-bottom: 32px;
}
.works-box .works-item .flex-box {
  display: flex;
  gap: 48px;
}
.works-box .works-item .flex-box .left-box {
  width: 400px;
  flex-shrink: 0;
}
.works-box .works-item .flex-box .left-box img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.works-box .works-item .flex-box .left-box ul {
  list-style: none;
}
.works-box .works-item .flex-box .left-box ul li {
  display: flex;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}
.works-box .works-item .flex-box .left-box ul li:last-child {
  border-bottom: none;
}
.works-box .works-item .flex-box .left-box ul li span {
  font-size: 16px;
  font-weight: bold;
  color: #1b479e;
  min-width: 96px;
}
.works-box .works-item .flex-box .left-box ul li:not(:has(span + *)) {
  font-size: 16px;
  font-weight: bold;
  color: #273138;
}
.works-box .works-item .flex-box .right-box {
  flex: 1;
}
.works-box .works-item .flex-box .right-box .detail-box {
  margin-bottom: 32px;
}
.works-box .works-item .flex-box .right-box .detail-box:last-child {
  margin-bottom: 0;
}
.works-box .works-item .flex-box .right-box .detail-box h4 {
  position: relative;
  font-size: 18px;
  margin-bottom: 8px;
}
.works-box .works-item .flex-box .right-box .detail-box h4::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background: #1b479e;
  z-index: 1;
}
.works-box .works-item .flex-box .right-box .detail-box h4 p {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #1b479e;
  margin: 0;
  padding-right: 12px;
  background: #fff;
  z-index: 2;
}
.works-box .works-item .flex-box .right-box .detail-box p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  color: #273138;
  margin: 0;
}
.works-box .works-item .flex-box .right-box .detail-box p strong {
  color: #1b479e;
}
@media (max-width: 1080px) {
  .works-box .works-item {
    margin-bottom: 48px;
  }
  .works-box .works-item h3 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .works-box .works-item .flex-box {
    gap: 32px;
  }
  .works-box .works-item .flex-box .left-box {
    width: 320px;
  }
  .works-box .works-item .flex-box .left-box img {
    height: 200px;
    margin-bottom: 20px;
  }
  .works-box .works-item .flex-box .left-box ul li {
    padding: 10px 0;
  }
  .works-box .works-item .flex-box .left-box ul li span {
    font-size: 15px;
    min-width: 72px;
  }
  .works-box .works-item .flex-box .left-box ul li:not(:has(span + *)) {
    font-size: 15px;
  }
  .works-box .works-item .flex-box .right-box .detail-box {
    margin-bottom: 24px;
  }
  .works-box .works-item .flex-box .right-box .detail-box h4 {
    margin-bottom: 12px;
  }
  .works-box .works-item .flex-box .right-box .detail-box h4 p {
    font-size: 18px;
  }
  .works-box .works-item .flex-box .right-box .detail-box p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .works-box .works-item {
    margin-bottom: 40px;
  }
  .works-box .works-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .works-box .works-item .flex-box {
    flex-direction: column;
    gap: 24px;
  }
  .works-box .works-item .flex-box .left-box {
    width: 100%;
  }
  .works-box .works-item .flex-box .left-box img {
    height: 180px;
    margin-bottom: 16px;
  }
  .works-box .works-item .flex-box .left-box ul li {
    padding: 8px 0;
  }
  .works-box .works-item .flex-box .left-box ul li span {
    font-size: 14px;
    min-width: 72px;
  }
  .works-box .works-item .flex-box .left-box ul li:not(:has(span + *)) {
    font-size: 14px;
  }
  .works-box .works-item .flex-box .right-box .detail-box {
    margin-bottom: 20px;
  }
  .works-box .works-item .flex-box .right-box .detail-box h4 {
    margin-bottom: 10px;
  }
  .works-box .works-item .flex-box .right-box .detail-box h4 p {
    font-size: 16px;
  }
  .works-box .works-item .flex-box .right-box .detail-box p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .works-box .works-item {
    margin-bottom: 32px;
  }
  .works-box .works-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .works-box .works-item .flex-box {
    gap: 20px;
  }
  .works-box .works-item .flex-box .left-box img {
    height: 160px;
    margin-bottom: 12px;
  }
  .works-box .works-item .flex-box .left-box ul li {
    padding: 6px 0;
  }
  .works-box .works-item .flex-box .left-box ul li span {
    font-size: 13px;
    min-width: 72px;
  }
  .works-box .works-item .flex-box .left-box ul li:not(:has(span + *)) {
    font-size: 13px;
  }
  .works-box .works-item .flex-box .right-box .detail-box {
    margin-bottom: 16px;
  }
  .works-box .works-item .flex-box .right-box .detail-box h4 {
    margin-bottom: 8px;
  }
  .works-box .works-item .flex-box .right-box .detail-box h4 p {
    font-size: 15px;
  }
  .works-box .works-item .flex-box .right-box .detail-box p {
    font-size: 13px;
  }
}

.info-box a {
  display: flex;
  align-items: baseline;
  color: #1b479e;
  border-bottom: 1px solid #dfe5ea;
  padding: 20px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.info-box a:hover {
  transform: translateY(-3px);
}
.info-box a:first-child {
  padding-top: 0;
}
.info-box a:nth-last-of-type(1) {
  border: 0;
  padding-bottom: 0;
}
.info-box a time {
  width: 136px;
  color: #1b479e;
  font-size: 18px;
  font-weight: bold;
}
.info-box a p {
  width: calc(100% - 136px);
  color: #1b2b44;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .info-box a time {
    width: 120px;
    font-size: 16px;
  }
  .info-box a p {
    width: calc(100% - 120px);
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .info-box a {
    display: block;
  }
  .info-box a time {
    width: 100%;
  }
  .info-box a p {
    width: 100%;
  }
}

.media-box > p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.media-box .media-item {
  padding-top: 48px;
  border-top: 1px solid #dfe5ea;
  margin-top: 48px;
}
.media-box .media-item .flex-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.media-box .media-item .flex-box .left-box {
  width: calc(100% - 412px);
}
.media-box .media-item .flex-box .left-box h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
.media-box .media-item .flex-box .left-box p {
  font-size: 15px;
  font-weight: bold;
}
.media-box .media-item .flex-box .right-box {
  display: flex;
  align-items: center;
  width: 372px;
  height: 220px;
  border: #e2e2e2 1px solid;
  border-radius: 8px;
  overflow: hidden;
}
.media-box .media-item .flex-box .right-box img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.media-box .media-item .box {
  display: flex;
  align-items: center;
  padding: 24px 24px 32px;
  border-radius: 8px;
  background: rgba(27, 71, 158, 0.06);
}
.media-box .media-item .box img {
  margin-right: 40px;
}
.media-box .media-item .box span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}
.media-box .media-item .box a {
  color: #1b479e;
  font-size: 15px;
  font-weight: bold;
}
@media (max-width: 1080px) {
  .media-box .media-item .flex-box .left-box {
    width: calc(100% - 324px);
  }
  .media-box .media-item .flex-box .left-box h3 br {
    display: none;
  }
  .media-box .media-item .flex-box .right-box {
    width: 300px;
    height: 180px;
  }
  .media-box .media-item .box img {
    width: 300px;
    margin-right: 32px;
  }
}
@media (max-width: 768px) {
  .media-box > p {
    font-size: 15px;
    text-align: left;
  }
  .media-box .media-item {
    padding-top: 32px;
  }
  .media-box .media-item .flex-box {
    display: block;
    margin-bottom: 24px;
  }
  .media-box .media-item .flex-box .left-box {
    width: 100%;
    margin-bottom: 24px;
  }
  .media-box .media-item .flex-box .left-box h3 {
    margin-bottom: 16px;
  }
  .media-box .media-item .flex-box .left-box h3 br {
    display: none;
  }
  .media-box .media-item .flex-box .right-box {
    width: 100%;
    height: 200px;
  }
  .media-box .media-item .box {
    display: block;
  }
  .media-box .media-item .box img {
    width: 100%;
    margin: 0 0 24px;
  }
  .media-box .media-item .box span {
    font-size: 16px;
  }
}

.article-box > p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
.article-box .flex-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.article-box .flex-box::after {
  display: block;
  content: "";
  width: calc((100% - 32px) / 3);
}
.article-box .flex-box .article-item {
  width: calc((100% - 32px) / 3);
  padding: 24px;
  background: rgba(27, 71, 158, 0.1);
  margin-top: 64px;
}
.article-box .flex-box .article-item img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -48px;
}
.article-box .flex-box .article-item h3 {
  height: 58px;
  font-size: 18px;
  margin: 16px 0 12px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.article-box .flex-box .article-item time {
  display: block;
  color: #1b479e;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 16px;
}
.article-box .flex-box .article-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 4px;
  text-decoration: none;
  background: #1b479e url(../img/icon_download.svg) no-repeat center right 20px;
  background-size: 18px;
  transition: all 0.3s ease;
}
.article-box .flex-box .article-item a:hover {
  transform: translateY(-3px);
}
@media (max-width: 1080px) {
  .article-box > p {
    text-align: left;
  }
  .article-box .flex-box::after {
    width: calc((100% - 32px) / 2);
  }
  .article-box .flex-box .article-item {
    width: calc((100% - 32px) / 2);
  }
}
@media (max-width: 768px) {
  .article-box > p {
    text-align: left;
  }
  .article-box .flex-box::after {
    width: 100%;
  }
  .article-box .flex-box .article-item {
    width: 100%;
  }
  .article-box .flex-box .article-item h3 {
    height: auto;
  }
}

.contact-form-box > p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 64px;
}
.contact-form-box .wpcf7-form .form-group {
  margin-bottom: 32px;
}
.contact-form-box .wpcf7-form .form-group.checkbox-group {
  margin-bottom: 64px;
}
.contact-form-box .wpcf7-form .form-group.submit-group {
  margin-bottom: 0;
  text-align: center;
}
.contact-form-box .wpcf7-form .form-label {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}
.contact-form-box .wpcf7-form .required,
.contact-form-box .wpcf7-form .optional {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 24px;
  color: #fff;
  font-size: 14px;
  margin-right: 12px;
}
.contact-form-box .wpcf7-form .required {
  background: #c90000;
}
.contact-form-box .wpcf7-form .optional {
  background: #273138;
}
.contact-form-box .wpcf7-form .form-input,
.contact-form-box .wpcf7-form .form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #c9c9c9;
  font-size: 16px;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
  background: #f7f7f7;
  transition: all 0.3s ease;
}
.contact-form-box .wpcf7-form .form-input:focus,
.contact-form-box .wpcf7-form .form-textarea:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}
.contact-form-box .wpcf7-form .form-input::-moz-placeholder, .contact-form-box .wpcf7-form .form-textarea::-moz-placeholder {
  color: #a3a3a3;
}
.contact-form-box .wpcf7-form .form-input::placeholder,
.contact-form-box .wpcf7-form .form-textarea::placeholder {
  color: #a3a3a3;
}
.contact-form-box .wpcf7-form .form-input.error,
.contact-form-box .wpcf7-form .form-textarea.error {
  border-color: #c90000;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}
.contact-form-box .wpcf7-form .form-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-box .wpcf7-form .form-textarea#inquiry {
  min-height: 150px;
}
.contact-form-box .wpcf7-form .checkbox-group .checkbox-label {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.contact-form-box .wpcf7-form .checkbox-group .checkbox-label a {
  color: #1b479e;
  text-decoration: underline;
}
.contact-form-box .wpcf7-form .checkbox-group .checkbox-label a:hover {
  color: rgba(27, 71, 158, 0.5);
}
.contact-form-box .wpcf7-form .checkbox-group .form-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contact-form-box .wpcf7-form .checkbox-group .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.contact-form-box .wpcf7-form .checkbox-group input {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #f7f7f7;
  border: 1px solid #c9c9c9;
  margin-right: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-form-box .wpcf7-form .checkbox-group input:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-form-box .wpcf7-form .checkbox-group .form-checkbox:checked ~ .checkmark {
  background: #1b479e;
  border-color: #007cba;
}
.contact-form-box .wpcf7-form .checkbox-group .form-checkbox:checked ~ .checkmark:after {
  display: block;
}
.contact-form-box .wpcf7-form .checkbox-group .form-checkbox:focus ~ .checkmark {
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}
.contact-form-box .wpcf7-form .submit-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(-90deg, #e54600, #c90000);
  color: #fff;
  border: none;
  font-size: 24px;
  font-weight: bold;
  border-radius: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 400px;
  height: 88px;
  margin: 0 auto;
}
.contact-form-box .wpcf7-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}
.contact-form-box .wpcf7-form .submit-btn::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 19px;
  top: 34px;
  right: 40px;
  background: url(../img/icon-btn.svg) no-repeat center;
}
.contact-form-box .wpcf7-form .submit-btn:active {
  transform: translateY(0);
}
.contact-form-box .wpcf7-form .submit-btn:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (max-width: 1080px) {
  .contact-form-box > p {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .contact-form-box > p {
    font-size: 15px;
  }
  .contact-form-box .wpcf7-form .form-label {
    font-size: 16px;
  }
  .contact-form-box .wpcf7-form .form-input,
  .contact-form-box .wpcf7-form .form-textarea {
    font-size: 15px;
  }
  .contact-form-box .wpcf7-form .checkbox-group .checkbox-label {
    font-size: 16px;
  }
  .contact-form-box .wpcf7-form .submit-btn {
    font-size: 20px;
    min-width: 100%;
    height: 64px;
  }
  .contact-form-box .wpcf7-form .submit-btn::before {
    top: 23px;
    right: 32px;
  }
}
@media screen and (max-width: 366px) {
  .contact-form-box .wpcf7-form .checkbox-group .checkbox-label {
    display: block;
  }
}

.privacy-policy-box dl {
  margin-top: 48px;
  padding-top: 48px;
  border-top: #dfe5ea 1px solid;
}
.privacy-policy-box dl:nth-of-type(1) {
  margin-top: 0;
  padding-top: 0;
  border: 0;
}
.privacy-policy-box dl dt {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
}
.privacy-policy-box dl dd p {
  font-size: 16px;
  font-weight: bold;
}
.privacy-policy-box dl dd p a {
  color: #1b479e;
  text-decoration: underline;
}
.privacy-policy-box dl dd ul ol {
  font-size: 16px;
  font-weight: bold;
}
.privacy-policy-box dl dd table {
  width: 100%;
}
.privacy-policy-box dl dd table tr th {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
  background: #1b479e;
  text-align: center;
}
.privacy-policy-box dl dd table tr td {
  font-size: 16px;
  font-weight: bold;
  padding: 20px 24px;
  background: rgba(27, 71, 158, 0.06);
}
@media (max-width: 768px) {
  .privacy-policy-box dl dt {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .privacy-policy-box dl dd p {
    font-size: 15px;
  }
  .privacy-policy-box dl dd ul ol {
    font-size: 15px;
  }
  .privacy-policy-box dl dd table tr th {
    font-size: 15px;
    padding: 16px;
  }
  .privacy-policy-box dl dd table tr td {
    font-size: 15px;
    padding: 16px 20px;
  }
}
@media (max-width: 480px) {
  .privacy-policy-box dl {
    margin-top: 32px;
    padding-top: 32px;
  }
  .privacy-policy-box dl dd table tr th {
    display: block;
    width: 100%;
  }
  .privacy-policy-box dl dd table tr td {
    display: block;
    width: 100%;
    padding: 16px;
  }
}

.info-page-box .page-section {
  padding: 80px 0;
  margin: 24px 0 0;
  background: #f0f5ff;
}
.info-page-box .page-section time {
  color: #1b479e;
  font-size: 18px;
  font-weight: bold;
}
.info-page-box .page-section h1 {
  font-size: 32px;
  margin: 8px 0 40px;
}
.info-page-box .page-section .post-content {
  padding: 80px;
  border-radius: 12px;
  background: #fff;
}
.info-page-box .page-section .post-content h2 {
  font-size: 24px;
  border-bottom: 1px solid #dfe5ea;
  padding: 48px 0 16px;
  margin-bottom: 24px;
}
.info-page-box .page-section .post-content h3 {
  font-size: 18px;
  border-left: 4px solid #1b479e;
  padding-left: 16px;
  margin: 40px 0 12px;
}
.info-page-box .page-section .post-content p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 24px;
}
.info-page-box .page-section .post-content p:nth-last-of-type(1) {
  margin-bottom: 0;
}
.info-page-box .page-section .post-content p strong {
  color: #1b479e;
}
.info-page-box .page-section .post-content ul, .info-page-box .page-section .post-content ol {
  padding-left: 20px;
  margin-bottom: 24px;
}
.info-page-box .page-section .post-content ul li, .info-page-box .page-section .post-content ol li {
  font-size: 16px;
  font-weight: bold;
}
.info-page-box .page-section .post-content ul li strong, .info-page-box .page-section .post-content ol li strong {
  color: #1b479e;
}
.info-page-box .page-section .post-content figure {
  margin: 24px 0;
}
.info-page-box .page-section .post-content figure img {
  width: 100%;
  height: auto;
}
.info-page-box .page-section .post-content a {
  display: inline-block;
  color: #1b479e;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.info-page-box .page-section .post-content a:hover {
  transform: translateY(-2px);
}
.info-page-box .page-section .post-content a.wp-block-button__link {
  color: #fff;
  font-size: 18px;
  margin-top: 32px;
  background: #1b479e;
  text-decoration: none;
  transition: all 0.3s ease;
}
.info-page-box .page-section .post-content a.wp-block-button__link:hover {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .info-page-box .page-section {
    padding: 80px 0;
    margin: 24px 0 0;
  }
  .info-page-box .page-section time {
    font-size: 16px;
  }
  .info-page-box .page-section h1 {
    font-size: 24px;
    margin: 8px 0 40px;
  }
  .info-page-box .page-section .post-content {
    padding: 48px;
  }
  .info-page-box .page-section .post-content h2 {
    font-size: 20px;
    padding: 24px 0 12px;
    margin-bottom: 16px;
  }
  .info-page-box .page-section .post-content h3 {
    font-size: 18px;
    padding-left: 16px;
    margin: 32px 0 12px;
  }
  .info-page-box .page-section .post-content p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .info-page-box .page-section .post-content ul, .info-page-box .page-section .post-content ol {
    padding-left: 20px;
    margin-bottom: 24px;
  }
  .info-page-box .page-section .post-content ul li, .info-page-box .page-section .post-content ol li {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .info-page-box .page-section {
    padding: 48px 0;
    margin: 24px 0 0;
  }
  .info-page-box .page-section time {
    font-size: 14px;
  }
  .info-page-box .page-section h1 {
    margin: 8px 0 32px;
  }
  .info-page-box .page-section .post-content {
    padding: 32px 24px;
  }
}/*# sourceMappingURL=style.css.map */