@charset "UTF-8";
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #101010;
  font-size: 16px;
  line-height: 1.875;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #005388;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.6;
}

strong {
  color: #32a7f8;
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
news
------------------------------------------------- */
.news-category {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 48px;
}
.news-category ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news-category ul li a {
  text-decoration: none;
  transition: all 0.5s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 34px;
  padding: 0 10px;
  background-color: #fff;
  border-radius: 17px;
  border: 1px solid #32a7f8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #101010;
}
.news-category ul li a:hover {
  opacity: 0.6;
}
.news-category ul li.active a {
  background-color: #32a7f8;
  border: unset;
  color: #fff;
}
@media (max-width: 999px) {
  .news-category {
    margin-bottom: 40px;
  }
  .news-category ul li a {
    min-width: 140px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .news-category {
    margin-bottom: 30px;
  }
  .news-category ul li a {
    min-width: 120px;
  }
}

#news {
  margin-bottom: 84px;
}
#news .contents {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
#news .contents article {
  border-bottom: 1px solid #ececec;
  padding: 30px 10px 31.5px 23px;
}
#news .contents article:not(:has(a)) {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
#news .contents article a {
  text-decoration: none;
  transition: all 0.5s ease-out;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
  position: relative;
  padding-right: 30px;
}
#news .contents article a:hover {
  opacity: 0.6;
}
#news .contents article a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 10px;
  aspect-ratio: 10/16;
  background: url(../images/arow-blue.webp) no-repeat center/cover;
  margin-left: auto;
}
#news .contents article .head {
  display: flex;
  -moz-column-gap: 27px;
       column-gap: 27px;
}
#news .contents article time {
  font-family: "bahnschrift", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #005388;
}
#news .contents article .cate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 12.5px;
  border: 1px solid #32a7f8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #101010;
}
#news .contents article .title {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #101010;
}
#news .contents article:first-child {
  border-top: 1px solid #ececec;
}
@media (max-width: 999px) {
  #news {
    margin-bottom: 70px;
  }
  #news .contents article {
    padding: 20px 10px 20px 15px;
  }
  #news .contents article:not(:has(a)) {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #news .contents article a {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #news .contents article .head {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  #news .contents article time {
    font-size: 14px;
  }
  #news .contents article .cate {
    font-size: 10px;
    min-width: 80px;
  }
  #news .contents article .title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #news {
    margin-bottom: 60px;
  }
  #news .contents article {
    padding: 10px;
  }
  #news .contents article:not(:has(a)) {
    flex-direction: column;
    align-items: unset;
  }
  #news .contents article a {
    flex-direction: column;
    align-items: unset;
  }
  #news .contents article .head {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  #news .contents article time {
    font-size: 14px;
  }
  #news .contents article .cate {
    font-size: 10px;
    min-width: 80px;
  }
  #news .contents article .title {
    font-size: 14px;
  }
}

/* ----------------------------------------------
case
------------------------------------------------- */
#case {
  margin-bottom: 113px;
}
#case .block a {
  transition: all 0.5s ease-out;
}
#case .block a:hover {
  opacity: 0.6;
}
#case .block .image {
  position: relative;
}
#case .block .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#case .block .image .cate {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 13.39px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #144994;
  border-radius: 14.23px;
  padding: 3.5px 20px;
}
@media (max-width: 999px) {
  #case {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  #case {
    margin-bottom: 80px;
  }
  #case .block .image .cate {
    top: 10px;
    left: 10px;
    padding: 2px 10px;
    font-size: 12px;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
.wrapper:has(.m_fixed) {
  padding-top: 87px;
}

#header a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#header a:hover {
  opacity: 0.6;
}
#header .top {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 24px 1.875% 17px 1.5%;
}
#header .top.m_fixed {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 1;
}
#header .logo {
  max-width: 294px;
}
#header #gnav {
  margin-left: auto;
}
#header #gnav ul {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  gap: 10px 50px;
  padding-bottom: 5px;
}
#header #gnav ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.025em;
  color: #101010;
}
#header #gnav ul li.contact a {
  display: flex;
  align-items: center;
  -moz-column-gap: 9px;
       column-gap: 9px;
  color: #005388;
}
@media (max-width: 999px) {
  #header .top {
    padding: 15px 10px;
  }
  #header .top.m_fixed {
    position: initial;
  }
  #header #gnav ul {
    padding-bottom: 0;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #header #gnav ul li a {
    font-size: 14px;
  }
  #header #gnav ul li.contact a {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}
@media (max-width: 767px) {
  #header .top {
    padding-right: 70px;
  }
  #header #gnav ul {
    justify-content: flex-start;
  }
  #header #gnav ul li a {
    color: #fff;
  }
  #header #gnav ul li.contact a {
    color: #fff;
  }
  #header #gnav ul li.contact a img {
    display: none;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 90px;
  z-index: 1;
  width: 60px;
  height: 60px;
}
#pagetop.fin {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  bottom: unset;
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #144994;
}
@media (max-width: 999px) {
  #pagetop {
    right: 20px;
  }
}
@media (max-width: 767px) {
  #pagetop {
    width: 40px;
    height: 40px;
    bottom: 70px;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  position: relative;
  padding: 87px 0;
}
#footer a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#footer a:hover {
  opacity: 0.6;
}
#footer .logo {
  max-width: 294px;
  margin: 0 auto 51px;
}
#footer .inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
#footer #fnav {
  margin-bottom: 44px;
}
#footer #fnav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 34px;
}
#footer #fnav ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #101010;
}
#footer .center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 5.9322033898%;
  margin-bottom: 83px;
}
#footer .center .address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8888888889;
  letter-spacing: 0.08em;
  color: #101010;
}
#footer .center .address a {
  font-weight: 600;
  color: #101010;
}
#footer .center .icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
#footer .center .icons a img {
  width: 36px;
}
#footer .center .left .address {
  margin-bottom: 10px;
}
#footer .bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}
#footer .bottom .left {
  overflow-x: clip;
}
#footer .bottom .left ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-left: -23px;
}
#footer .bottom .left ul li {
  display: flex;
}
#footer .bottom .left ul li::before {
  content: "│";
  margin: 0 4px;
}
#footer .bottom .left ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #101010;
}
#footer .bottom .copyright {
  margin-left: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #101010;
}
@media (max-width: 999px) {
  #footer {
    padding: 70px 0;
  }
  #footer .logo {
    margin-bottom: 40px;
  }
  #footer #fnav {
    margin-bottom: 30px;
  }
  #footer #fnav ul {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  #footer #fnav ul li a {
    font-size: 16px;
  }
  #footer .center {
    margin-bottom: 70px;
  }
  #footer .center .address {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #footer {
    padding: 60px 0;
  }
  #footer .logo {
    margin-bottom: 30px;
  }
  #footer #fnav {
    margin-bottom: 20px;
  }
  #footer #fnav ul {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #footer #fnav ul li a {
    font-size: 14px;
  }
  #footer .center {
    margin-bottom: 50px;
  }
  #footer .center .address {
    font-size: 14px;
  }
  #footer .bottom {
    flex-direction: column;
  }
  #footer .bottom .left ul li a {
    font-size: 12px;
  }
  #footer .bottom .copyright {
    margin-left: unset;
    text-align: center;
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */