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

html {
  font-family: "メイリオ", "Meiryo", "Noto Sans", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  scroll-behavior: smooth;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

body.open {
  overflow: hidden;
}

address {
  font-style: normal;
}

small {
  display: block;
}

p,
a {
  line-height: 1.3;
}

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

.display-tab {
  display: none;
}
@media (max-width: 1200px) {
  .display-tab {
    display: block;
  }
}
@media (max-width: 489px) {
  .display-tab {
    display: none;
  }
}

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

.main-title {
  font-size: clamp(60px, 110px - (1400px - 100vw) / 10, 110px);
  font-weight: bold;
  line-height: 0.9;
}
@media (max-width: 1200px) {
  .main-title {
    font-size: clamp(45px, 6.67vw, 65px);
  }
}
@media (max-width: 769px) {
  .main-title {
    font-size: clamp(40px, 60px - (600px - 100vw) / 10, 60px);
    line-height: 1;
  }
}
@media (max-width: 489px) {
  .main-title {
    font-size: clamp(50px, 60px - (490px - 100vw) / 10, 60px);
  }
}

.main-subtitle {
  font-size: clamp(20px, 32px - (1400px - 100vw) / 50, 32px);
  color: #fff;
}
@media (max-width: 1200px) {
  .main-subtitle {
    font-size: clamp(18px, 2vw, 20px);
  }
}
@media (max-width: 769px) {
  .main-subtitle {
    font-size: 20px;
  }
}
@media (max-width: 489px) {
  .main-subtitle {
    font-size: 24px;
  }
}

.section-title {
  padding: 20px 0px 20px max(50px, (100vw - 1250px) / 2 + 0px);
  background: linear-gradient(90deg, #7086D0 0%, #FFFFFF 100%) 0% 0%;
  font-size: 44px;
  color: #fff;
}
@media (max-width: 1200px) {
  .section-title {
    font-size: 38px;
    padding: 10px 80px;
  }
}
@media (max-width: 769px) {
  .section-title {
    font-size: 28px;
    padding: 10px 50px;
  }
}
@media (max-width: 489px) {
  .section-title {
    padding: 20px 40px;
  }
}

.btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 80px;
}
.btn .blue-btn {
  display: block;
  width: 500px;
  max-width: 90%;
  padding: 20px 10px;
  margin-bottom: 30px;
  background: linear-gradient(0deg, #869CEB 0%, #2F3A9F 30%, #181D50 100%);
  border-radius: 10px;
  cursor: pointer;
  word-break: keep-all;
  font-size: 28px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease;
}
.btn .blue-btn:hover {
  background: linear-gradient(180deg, #ABBBF5 0%, #2F3A9F 70%, #181D50 100%);
}
@media (max-width: 1200px) {
  .btn .blue-btn {
    font-size: 30px;
  }
}
@media (max-width: 769px) {
  .btn {
    padding: 0 130px;
  }
  .btn .blue-btn {
    font-size: 22px;
  }
}
@media (max-width: 489px) {
  .btn {
    padding: 0 20px;
  }
}

.btnToTop {
  position: fixed;
  bottom: 20px;
  z-index: 9999;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.btnToTop a {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 20px 0 auto;
}
.btnToTop a:hover {
  transform: scale(1.1);
}
.btnToTop svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 489px) {
  .btnToTop {
    display: none;
  }
}

header {
  position: relative;
  z-index: 999;
  height: 120px;
  padding-left: 20px;
  padding-bottom: 5px;
  background-color: #fff;
}
header span {
  display: block;
}
header a {
  display: block;
  text-decoration: none;
}
header a:hover {
  filter: brightness(1.5);
}
header img {
  display: block;
  max-width: 100%;
  height: auto;
}
header ul {
  list-style: none;
}
header .header-pc {
  display: block;
}
header .header-pc .header-top,
header .header-pc .header-bottom {
  display: flex;
  justify-content: space-between;
}
header .header-pc .header-top-left,
header .header-pc .header-top-right {
  display: flex;
}
header .header-pc .header-top-left {
  align-items: center;
  gap: 20px;
}
header .header-pc .header-top-left .header-info {
  font-size: 12px;
  font-weight: bold;
}
header .header-pc .header-top-right .header-tel,
header .header-pc .header-top-right .header-contact {
  padding-top: 10px;
  padding-bottom: 10px;
}
header .header-pc .header-top-right .header-tel {
  padding-left: 30px;
  padding-right: 30px;
  background-color: #eff1f1;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
header .header-pc .header-top-right .header-tel .header-tel-text {
  font-size: 12px;
  color: #333;
}
header .header-pc .header-top-right .header-tel .header-tel-number {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
}
header .header-pc .header-top-right .header-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  background-color: #12287a;
  color: #fff;
}
header .header-pc .header-bottom-right {
  display: flex;
  align-items: end;
  padding-bottom: 10px;
}
header .header-pc .header-bottom-right .header-links {
  display: flex;
  gap: 30px;
  padding-right: 40px;
  font-size: 14px;
}
header .header-pc .header-bottom-right .header-links li a {
  color: #333;
}
header #header-sp {
  display: none;
}
header #header-sp .header-sp-column {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding: 10px 20px;
}
header #header-sp .header-sp-right {
  cursor: pointer;
}
header #header-sp #header-menu-icon {
  position: relative;
  width: 50px;
  height: 50px;
  margin-top: 10px;
  border-top: #000 4px solid;
}
header #header-sp #header-menu-icon::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  display: block;
  width: 30px;
  margin: 0;
  border-top: #000 4px solid;
}
header #header-sp #header-menu-icon::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  display: block;
  width: 10px;
  margin: 0;
  border-top: #000 4px solid;
}
header #header-sp #header-dropdown {
  overflow: hidden scroll;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 0;
  transition: height 0.4s;
  background-color: #2450ac;
  scrollbar-width: none;
}
header #header-sp #header-dropdown::-webkit-scrollbar {
  display: none;
}
header #header-sp #header-dropdown #header-nav {
  width: 75%;
  margin: 0 auto;
  background-color: #2450ac;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
header #header-sp #header-dropdown #header-nav li {
  padding: 40px 0;
  border-bottom: 1px solid #fff;
}
header #header-sp #header-dropdown #header-nav li:last-child {
  border-bottom: none;
}
header #header-sp #header-dropdown #header-nav li a {
  color: #fff;
}
header #header-sp #header-dropdown #header-nav .parent a {
  width: 270px;
  margin: 0 auto;
}
header #header-sp #header-dropdown #header-nav .parent > ul li {
  padding: 20px;
  border-bottom: none;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
header #header-sp #header-dropdown #header-nav .parent > ul li:last-child {
  padding: 0;
}
header #header-sp.open #header-menu-icon {
  border: none;
  margin-top: 5px;
}
header #header-sp.open #header-menu-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 50px;
  transform: rotate(45deg) translateY(-50%);
}
header #header-sp.open #header-menu-icon::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 50%;
  right: 0;
  width: 50px;
  transform: rotate(-45deg) translateY(50%);
}
header #header-sp.open #header-dropdown {
  height: 100vh;
}
header #header-sp.open #header-dropdown #header-nav {
  height: 1300px;
}
@media (max-width: 1200px) {
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
    padding-left: 0;
    padding-bottom: 0;
  }
  header .header-pc {
    display: none;
  }
  header #header-sp {
    display: block;
  }
}

footer {
  padding-top: 80px;
  padding-bottom: 30px;
  background-color: #efeded;
}
footer span {
  display: block;
}
footer a {
  display: block;
  text-decoration: none;
}
footer a:hover {
  filter: brightness(1.5);
}
footer img {
  display: block;
  max-width: 100%;
  height: auto;
}
footer ul {
  list-style: none;
}
footer .footer-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
footer .footer-column {
  display: flex;
  margin-bottom: 40px;
}
footer .footer-left {
  width: 30%;
}
footer .footer-left .footer-logo {
  margin-bottom: 10px;
}
footer .footer-left address {
  font-size: 18px;
}
footer .footer-left .footer-tel,
footer .footer-left .footer-mail {
  width: 100%;
  max-width: 260px;
  padding: 10px;
  margin-top: 10px;
  background-color: #0050ba;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
footer .footer-left .footer-tel {
  display: block;
  cursor: pointer;
  color: #fff;
}
footer .footer-right {
  width: 70%;
}
footer .footer-right .footer-external {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 0;
  border: #333 solid 1px;
  background-color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #000;
}
footer .footer-right .footer-main-links {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 30px;
  padding-left: 20px;
}
footer .footer-right .footer-main-links li:first-child {
  grid-row: 1/4;
}
footer .footer-right .footer-main-links li a {
  font-size: 16px;
  font-weight: 900;
  color: #333;
}
footer .footer-right .footer-main-links .footer-child-links li {
  margin-top: 10px;
  padding-left: 20px;
}
footer .footer-right .footer-main-links .footer-child-links li a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
footer .footer-other-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}
footer .footer-other-links li a {
  font-size: 14px;
  color: #333;
}
footer .footer-copyright {
  font-size: 14px;
  text-align: center;
}
@media (max-width: 1200px) {
  footer .footer-wrapper {
    max-width: 760px;
  }
  footer .footer-column {
    flex-direction: column;
    gap: 30px;
  }
  footer .footer-left {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
  }
  footer .footer-left .footer-logo {
    height: -moz-fit-content;
    height: fit-content;
  }
  footer .footer-left address {
    text-align: center;
  }
  footer .footer-left .footer-tel,
  footer .footer-left .footer-mail {
    margin: 10px auto 0;
  }
  footer .footer-right {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
  footer .footer-right .footer-main-links {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: row;
    max-width: 700px;
    margin: 0 auto;
  }
  footer .footer-right .footer-main-links li:first-child {
    grid-row: 1/3;
  }
}
@media (max-width: 769px) {
  footer .footer-left {
    flex-direction: column;
  }
  footer .footer-right {
    display: none;
  }
}
@media (max-width: 489px) {
  footer .footer-other-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}/*# sourceMappingURL=common.css.map */