@charset "UTF-8";
/* -----------------------------------------------
文字位置
----------------------------------------------- */
.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

.tl {
  text-align: left;
}

.tj {
  text-align: justify;
}

/* -----------------------------------------------
文字太さ
----------------------------------------------- */
.fb {
  font-weight: 700;
}

.fsb {
  font-weight: 600;
}

.fm {
  font-weight: 500;
}

.fr {
  font-weight: 400;
}

.fl {
  font-weight: 300;
}

/* -----------------------------------------------
line-hight
----------------------------------------------- */
.lh1 {
  line-height: 1;
}

.lh1\.25 {
  line-height: 1.25;
}

.lh1\.5 {
  line-height: 1.5;
}

.lh1\.75 {
  line-height: 1.75;
}

.lh2 {
  line-height: 2;
}

/* -----------------------------------------------
縦書き
----------------------------------------------- */
.ver {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.ver.ver_part {
  text-orientation: sideways;
}

/* -----------------------------------------------
要素の位置指定
----------------------------------------------- */
.mc {
  margin: auto;
}

.mxc {
  margin-left: auto;
  margin-right: auto;
}

.myc {
  margin-top: auto;
  margin-bottom: auto;
}

.mr {
  margin-left: auto;
  margin-right: 0;
}

.ml {
  margin-left: 0;
  margin-right: auto;
}

/* -----------------------------------------------
アニメーション
----------------------------------------------- */
.opa {
  transition: 0.3s !important;
  cursor: pointer;
}
.opa:hover {
  opacity: 0.6 !important;
}

.u_line {
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}
.u_line:hover {
  border-bottom: 1px solid;
}

/* -----------------------------------------------
その他
----------------------------------------------- */
.short {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.b1 {
  border: 1px solid;
}
.b1t {
  border-top: 1px solid;
}
.b1r {
  border-right: 1px solid;
}
.b1b {
  border-bottom: 1px solid;
}
.b1l {
  border-left: 1px solid;
}
.b2 {
  border: 2px solid;
}
.b2t {
  border-top: 2px solid;
}
.b2r {
  border-right: 2px solid;
}
.b2b {
  border-bottom: 2px solid;
}
.b2l {
  border-left: 2px solid;
}
.b3 {
  border: 3px solid;
}
.b3t {
  border-top: 3px solid;
}
.b3r {
  border-right: 3px solid;
}
.b3b {
  border-bottom: 3px solid;
}
.b3l {
  border-left: 3px solid;
}

/* 共通設定 */
html {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #222;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 1;
  word-break: break-word;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

img {
  vertical-align: bottom;
}

.inter {
  font-family: "Inter", sans-serif;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
.d1440 {
  display: block;
}

@media screen and (max-width: 1440px) {
  .d1440 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
main {
  padding-top: 82px;
}

@media screen and (max-width: 1440px) {
  main {
    padding-top: 76px;
  }
}
@media screen and (max-width: 1024px) {
  main {
    padding-top: 84px;
  }
}
.toLeft, .toLeft2 {
  transform: translateX(100%);
  transition: all 1s ease;
  transition-delay: 0.3s;
}
.toLeft.animated, .toLeft2.animated {
  transform: translateX(0);
}

.fade {
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 0.3s;
}
.fade.in {
  opacity: 1;
}

.ttl_wrap {
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.ttl_wrap p {
  color: #fff;
  font-weight: 700;
}
.ttl_wrap h2 {
  margin-top: 10px;
  font-size: 42px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99998;
  background-color: #fff;
  border-bottom: 2px solid #0A6ADD;
}
header .header_wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_wrapper .logo {
  padding: 0 40px;
  max-width: 335px;
}
header .header_wrapper .header_container {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}
header .header_wrapper .header_container > * {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_wrapper .header_container ul {
  display: flex;
  gap: 32px;
  margin-right: 40px;
}
header .header_wrapper .header_container ul a {
  transition: all 0.5s ease;
}
header .header_wrapper .header_container ul a:hover {
  color: #0A6ADD;
}
header .header_wrapper .header_container .contact {
  min-width: 200px;
  text-align: center;
  background-color: #0757B6;
  color: #fff;
  transition: all 0.5s ease;
}
header .header_wrapper .header_container .contact:hover {
  opacity: 0.8;
}
header .header_wrapper .header_container .schedule {
  min-width: 200px;
  text-align: center;
  padding: 16px;
  background-color: #053165;
  line-height: 1.5;
  color: #fff;
  transition: all 0.5s ease;
}
header .header_wrapper .header_container .schedule:hover {
  opacity: 0.8;
}
header .header_wrapper .burger {
  display: none;
}
header > nav {
  display: none;
}

@media screen and (max-width: 1440px) {
  header .header_wrapper .logo {
    padding: 0 20px;
  }
  header .header_wrapper .header_container ul {
    gap: 20px;
    margin-right: 20px;
  }
  header .header_wrapper .header_container ul a {
    font-size: 14px;
  }
  header .header_wrapper .header_container .contact {
    min-width: 120px;
    padding: 30px 0;
    font-size: 14px;
    height: 100%;
  }
  header .header_wrapper .header_container .schedule {
    min-width: 140px;
    padding: 16px 0;
    font-size: 14px;
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  header > nav {
    display: block;
  }
  header .header_wrapper {
    padding: 20px;
  }
  header .header_wrapper .logo {
    padding: 0;
  }
  header .header_wrapper .header_container {
    display: none;
  }
  header .header_wrapper .burger {
    display: block;
    position: relative;
    width: 44px;
    height: 40px;
    cursor: pointer;
  }
  header .header_wrapper .burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #0A6ADD;
  }
  header .header_wrapper .burger span:first-child {
    top: 0;
  }
  header .header_wrapper .burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header .header_wrapper .burger span:last-child {
    bottom: 0;
  }
  header nav .burger_menu {
    display: block;
    z-index: 99999;
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #90BBEF;
    width: 100%;
    height: 100%;
    padding: 5vw;
    overflow-y: scroll;
  }
  header nav .burger_menu .logo_sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5vw;
  }
  header nav .burger_menu .logo_sp a {
    max-width: 355px;
  }
  header nav .burger_menu .logo_sp .close {
    width: 45px;
    height: 45px;
    position: relative;
    cursor: pointer;
  }
  header nav .burger_menu .logo_sp .close::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    height: 3px;
    width: 100%;
    background-color: #0A6ADD;
    transform: rotate(45deg);
  }
  header nav .burger_menu .logo_sp .close::after {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    height: 3px;
    width: 100%;
    background-color: #0A6ADD;
    transform: rotate(-45deg);
  }
  header nav .burger_menu .nav_list {
    border-bottom: 1px solid #0A6ADD;
  }
  header nav .burger_menu .nav_list li {
    border-top: 1px solid #0A6ADD;
    color: #0A6ADD;
    font-size: max(3vw, 16px);
  }
  header nav .burger_menu .nav_list li a {
    display: block;
    padding: 1em 3vw;
  }
  header nav .burger_menu .nav_contact {
    padding: 5vw 0;
  }
  header nav .burger_menu .nav_contact a {
    display: block;
    margin-bottom: 5vw;
    padding: 1em;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    font-size: max(4vw, 20px);
  }
  header nav .burger_menu .nav_contact a:last-child {
    margin-bottom: 0;
  }
  header nav .burger_menu .nav_contact a.contact {
    background-color: #0757B6;
  }
  header nav .burger_menu .nav_contact a.schedule {
    background-color: #053165;
  }
}
@media screen and (max-width: 768px) {
  header .header_wrapper {
    height: 85px;
  }
}
@media screen and (max-width: 450px) {
  header .header_wrapper .logo {
    max-width: 80%;
  }
  header nav .burger_menu .logo_sp a {
    max-width: 80%;
  }
}
footer .contact_schedule {
  display: flex;
}
footer .contact_schedule a {
  position: relative;
  width: 50%;
  display: block;
  overflow: hidden;
  z-index: 1;
}
footer .contact_schedule a img {
  transition: all 0.5s ease;
}
footer .contact_schedule a .text {
  position: absolute;
  top: 120px;
  left: 60px;
  overflow: hidden;
}
footer .contact_schedule a .text h3 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
footer .contact_schedule a .text p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
footer .contact_schedule a .arrow {
  position: absolute;
  right: 92px;
  bottom: 37px;
  width: 78px;
  height: 40px;
  border-radius: 8px;
  background-color: #EEF0F4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
footer .contact_schedule a .arrow path {
  transition: all 0.5s ease;
}
footer .contact_schedule a:hover img {
  scale: 1.2;
}
footer .contact_schedule a:hover .arrow {
  background-color: #0A6ADD;
}
footer .contact_schedule a:hover .arrow path {
  fill: #fff;
}
footer .bg {
  background-color: #03254E;
}
footer .footer_wrapper {
  padding: 115px 80px 0;
  color: #fff;
}
footer .footer_wrapper .logo_sitemap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 114px;
  border-bottom: 1px solid #304A67;
}
footer .footer_wrapper .logo_sitemap .left {
  max-width: 370px;
}
footer .footer_wrapper .logo_sitemap .left .address {
  margin-top: 30px;
  line-height: 1.5;
}
footer .footer_wrapper .logo_sitemap .right {
  display: flex;
  gap: 0 80px;
}
footer .footer_wrapper .logo_sitemap .right > ul > li > a {
  color: #fff;
  padding: 10px 0;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}
footer .footer_wrapper .logo_sitemap .right > ul > li > a::after {
  content: "";
  position: absolute;
  transition: all 0.5s ease;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
}
footer .footer_wrapper .logo_sitemap .right > ul > li > a:hover::after {
  width: 100%;
}
footer .footer_wrapper .logo_sitemap .right > ul > li > a:has(br)::before {
  content: "";
  position: absolute;
  transition: all 0.5s ease;
  bottom: 35px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
}
footer .footer_wrapper .logo_sitemap .right > ul > li > a:has(br):hover::before {
  width: 100%;
}
footer .footer_wrapper .logo_sitemap .right > ul > ul {
  padding: 12px 0 0 1em;
}
footer .footer_wrapper .logo_sitemap .right > ul > ul li a {
  line-height: 1.5;
  padding-bottom: 0.5em;
  position: relative;
  display: inline-block;
  color: #B3D0F1;
  font-size: 14px;
}
footer .footer_wrapper .logo_sitemap .right > ul > ul li a::after {
  content: "";
  position: absolute;
  transition: all 0.5s ease;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #B3D0F1;
}
footer .footer_wrapper .logo_sitemap .right > ul > ul li a:hover::after {
  width: 100%;
}
footer .footer_wrapper .privacy_copy {
  display: flex;
  padding: 60px 0;
  justify-content: space-between;
}
footer .footer_wrapper .privacy_copy .privacy a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
  position: relative;
}
footer .footer_wrapper .privacy_copy .privacy a::after {
  content: "";
  position: absolute;
  transition: all 0.5s ease;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
}
footer .footer_wrapper .privacy_copy .privacy a:hover::after {
  width: 100%;
}
footer .footer_wrapper .privacy_copy .copy {
  color: #fff;
  font-size: 10px;
  font-weight: 400;
}

@media screen and (max-width: 1440px) {
  footer .contact_schedule a .text {
    top: 4vw;
    left: 3vw;
  }
  footer .contact_schedule a .arrow {
    right: 3vw;
    bottom: 3vw;
  }
  footer .footer_wrapper {
    padding: 115px 4vw 0;
  }
  footer .footer_wrapper .logo_sitemap .right {
    gap: 0 40px;
  }
}
@media screen and (max-width: 1024px) {
  footer .contact_schedule {
    flex-wrap: wrap;
  }
  footer .contact_schedule a {
    width: 100%;
  }
  footer .contact_schedule a .text {
    top: 10vw;
    left: 4vw;
  }
  footer .contact_schedule a .text h3 {
    font-size: max(6vw, 24px);
  }
  footer .contact_schedule a .text p {
    font-size: 16px;
    padding-right: 4vw;
  }
  footer .contact_schedule a .arrow {
    right: 4vw;
    bottom: 4vw;
  }
  footer .footer_wrapper {
    padding: 80px 4vw 0;
  }
  footer .footer_wrapper .logo_sitemap {
    padding-bottom: 80px;
    flex-direction: column;
  }
  footer .footer_wrapper .logo_sitemap .left {
    width: 100%;
    max-width: unset;
  }
  footer .footer_wrapper .logo_sitemap .left .logo {
    max-width: 340px;
    margin: 0 auto;
  }
  footer .footer_wrapper .logo_sitemap .left .address {
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto;
  }
  footer .footer_wrapper .logo_sitemap .right {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 80px;
  }
  footer .footer_wrapper .logo_sitemap .right > ul > ul {
    padding-left: 0;
  }
  footer .footer_wrapper .logo_sitemap .right > ul > li > a:hover::after, footer .footer_wrapper .logo_sitemap .right > ul > ul li a:hover::after {
    width: 0;
  }
  footer .footer_wrapper .logo_sitemap .right > ul > li > a:has(br):hover::before {
    width: 0;
  }
  footer .footer_wrapper .privacy_copy .privacy a {
    font-size: 16px;
  }
  footer .footer_wrapper .privacy_copy .copy {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  footer .contact_schedule a .arrow {
    width: 60px;
    height: 36px;
  }
  footer .footer_wrapper .logo_sitemap {
    padding-bottom: 0;
    border-bottom: unset;
  }
  footer .footer_wrapper .logo_sitemap .right {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: unset;
    border-top: 1px solid #777;
  }
  footer .footer_wrapper .logo_sitemap .right li {
    border-bottom: 1px solid #777;
  }
  footer .footer_wrapper .logo_sitemap .right > ul > ul {
    padding: 0;
  }
  footer .footer_wrapper .logo_sitemap .right > ul > li > a {
    padding: 16px;
    font-size: 16px;
  }
  footer .footer_wrapper .logo_sitemap .right > ul > ul li a {
    padding: 16px 16px 16px 32px;
    font-size: 16px;
  }
  footer .footer_wrapper .logo_sitemap .right ul li a, footer .footer_wrapper .logo_sitemap .right > ul > ul li a {
    display: block;
  }
  footer .footer_wrapper .privacy_copy {
    flex-direction: column;
    align-items: flex-end;
  }
  footer .footer_wrapper .privacy_copy .copy {
    margin-top: 1em;
  }
}/*# sourceMappingURL=common.css.map */