@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
html {
  scroll-behavior: smooth;
}
html a {
  text-decoration: none;
}
html a:hover {
  background-color: transparent;
  opacity: 1;
}
html li {
  list-style: none !important;
}

body.is-fixed {
  overflow: hidden;
  touch-action: none;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.c-h-opacity {
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .c-h-opacity:hover {
    opacity: 0.7;
  }
}

.c-hover-opacity {
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .c-hover-opacity:hover {
    opacity: 0.7;
  }
}

.zen-kaku-gothic-antique {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.font-roboto {
  font-family: "Roboto", sans-serif;
}

.font-noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
}

.cus-header * {
  transition: 0.3s all;
}
.cus-header .wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0px 2px 17px rgba(0, 63, 111, 0.2);
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .cus-header .wrap {
    height: 6rem;
  }
}
.cus-header .wrap > figure {
  margin-left: 15rem;
}
@media screen and (max-width: 767px) {
  .cus-header .wrap > figure {
    margin-left: 2rem;
  }
}
.cus-header .wrap > figure a {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  transition: 0.3s all;
}
.cus-header .wrap > figure a svg {
  width: 14rem;
  height: 3rem;
}
@media screen and (max-width: 767px) {
  .cus-header .wrap > figure a svg {
    width: 10rem;
  }
}
.cus-header .wrap > figure a p {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .cus-header .wrap > figure a p {
    line-height: 190%;
  }
}
.cus-header .wrap > figure a:hover {
  opacity: 0.7;
}
.cus-header .wrap .nav-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.cus-header .wrap .nav-wrap::-webkit-scrollbar {
  display: none;
}
.cus-header .wrap .nav-wrap > ul {
  display: flex;
  align-items: center;
}
.cus-header .wrap .nav-wrap > ul > li {
  width: 9.4rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cus-header .wrap .nav-wrap > ul > li a, .cus-header .wrap .nav-wrap > ul > li p {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0em;
  color: #000;
}
.cus-header .wrap .nav-wrap > ul > li > a {
  position: relative;
}
.cus-header .wrap .nav-wrap > ul > li > a::before {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #0068B7;
  position: absolute;
  transform: translateX(-50%);
  bottom: -0.8rem;
  left: 50%;
  opacity: 0;
  transition: 0.3s all;
}
.cus-header .wrap .nav-wrap > ul > li > a:hover::before {
  opacity: 1;
}
.cus-header .wrap .nav-wrap > ul > li figure {
  width: 1.3rem;
  height: 0.6rem;
  position: absolute;
  transform: translateX(-50%) rotate(180deg);
  bottom: 2rem;
  left: 50%;
}
.cus-header .wrap .nav-wrap > ul > li figure svg {
  width: 100%;
  height: 100%;
}
.cus-header .wrap .nav-wrap > ul > li .sub-menu {
  background-color: #DEE4EC;
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.15));
  width: 100vw;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 8rem;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.cus-header .wrap .nav-wrap > ul > li .sub-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.cus-header .wrap .nav-wrap > ul > li .sub-menu ul li a {
  display: block;
  background-color: #fff;
  padding: 2rem 5rem;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0em;
  color: #222;
  position: relative;
}
.cus-header .wrap .nav-wrap > ul > li .sub-menu ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(185deg, #0068B7 0%, #003F6F 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.cus-header .wrap .nav-wrap > ul > li .sub-menu ul li a:hover {
  background: transparent;
  color: #fff;
}
.cus-header .wrap .nav-wrap > ul > li.mega-li:hover {
  background-color: #DEE4EC;
}
.cus-header .wrap .nav-wrap > ul > li.mega-li:hover figure {
  transform: translateX(-50%) rotate(0deg);
}
.cus-header .wrap .nav-wrap > ul > li.mega-li:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}
.cus-header .wrap .nav-wrap .hn-btn {
  width: 8rem;
  height: 8rem;
  position: relative;
  background: linear-gradient(185deg, #0068B7 0%, #003F6F 100%);
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .cus-header .wrap .nav-wrap .hn-btn {
    width: 6rem;
    height: 6rem;
  }
}
.cus-header .wrap .nav-wrap .hn-btn span {
  width: 2.2rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
}
.cus-header .wrap .nav-wrap .hn-btn span:nth-child(1) {
  top: calc(50% - 0.7rem);
}
.cus-header .wrap .nav-wrap .hn-btn span:nth-child(2) {
  width: 1.5rem;
  top: 50%;
  left: calc(50% + 0.3rem);
}
.cus-header .wrap .nav-wrap .hn-btn span:nth-child(3) {
  width: 1.5rem;
  top: calc(50% + 0.7rem);
  left: calc(50% + 0.3rem);
}
.cus-header .hn-menu {
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  padding-top: 6.6rem;
  background: linear-gradient(285deg, #0068B7 0%, #003F6F 100%);
  position: fixed;
  top: 0rem;
  left: 0;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .cus-header .hn-menu {
    width: 40rem;
    left: auto;
    right: 0;
  }
}
.cus-header .hn-menu .hn-btn {
  width: 8rem;
  height: 8rem;
  position: relative;
  background: linear-gradient(185deg, #0068B7 0%, #003F6F 100%);
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .cus-header .hn-menu .hn-btn {
    width: 6rem;
    height: 6rem;
  }
}
.cus-header .hn-menu .hn-btn span {
  width: 2.2rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
}
.cus-header .hn-menu .hn-btn span:nth-child(1) {
  top: calc(50% - 0.7rem);
}
.cus-header .hn-menu .hn-btn span:nth-child(2) {
  width: 1.5rem;
  top: 50%;
  left: calc(50% + 0.3rem);
}
.cus-header .hn-menu .hn-btn span:nth-child(3) {
  width: 1.5rem;
  top: calc(50% + 0.7rem);
  left: calc(50% + 0.3rem);
}
.cus-header .hn-menu > figure {
  width: 14rem;
  height: 3.2rem;
  margin: 0 auto;
}
.cus-header .hn-menu > figure a svg * {
  fill: #fff;
}
.cus-header .hn-menu .top-li {
  width: 26rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 1.5rem;
  margin: 0 auto;
  margin-top: 6rem;
}
.cus-header .hn-menu .top-li li a {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.cus-header .hn-menu .top-li li a figure {
  width: 1rem;
  height: 0.7rem;
}
.cus-header .hn-menu .top-li li a figure svg {
  width: 100%;
  height: 100%;
}
.cus-header .hn-menu .top-li li a:hover {
  background: transparent;
}
.cus-header .hn-menu .center-li {
  width: 26rem;
  margin: 0 auto;
  margin-top: 2rem;
}
.cus-header .hn-menu .center-li h4 {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #fff;
}
.cus-header .hn-menu .center-li ul {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cus-header .hn-menu .center-li ul li a {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #fff;
  padding-left: 1.4rem;
  position: relative;
}
.cus-header .hn-menu .center-li ul li a::before {
  content: "";
  width: 0.6rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  top: 50%;
}
.cus-header .hn-menu .center-li ul li a figure {
  width: 1rem;
  height: 0.7rem;
  position: absolute;
  transform: translateY(-50%);
  right: 0;
  top: 50%;
}
.cus-header .hn-menu .center-li ul li a figure svg {
  width: 100%;
  height: 100%;
}
.cus-header .hn-menu .center-li ul li a:hover {
  background: transparent;
}
.cus-header .hn-menu .privacy-link {
  margin-top: 3rem;
  text-align: center;
}
.cus-header .hn-menu .privacy-link a {
  font-size: 1.3rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: normal;
  color: #fff;
}
.cus-header .hn-menu .bottom-b {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .cus-header .hn-menu .bottom-b {
    padding-bottom: 6rem;
  }
}
.cus-header .hn-menu .bottom-b p {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
.cus-header .hn-menu .bottom-b .sns-li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}
.cus-header .hn-menu .bottom-b .sns-li .inst {
  width: 2.5rem;
  height: 2.5rem;
}
.cus-header .hn-menu .bottom-b .sns-li .inst svg {
  width: 100%;
  height: 100%;
}
.cus-header .hn-menu .bottom-b .sns-li .logo {
  width: 5.7rem;
  height: 5.2rem;
}
.cus-header .hn-menu .bottom-b .sns-li .logo svg {
  width: 100%;
  height: 100%;
}
.cus-header .hn-menu .bottom-b .sns-li .line {
  width: 2.5rem;
  height: 2.3rem;
}
.cus-header .hn-menu .bottom-b .sns-li .line svg {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .cus-header.is-open .wrap > figure {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .cus-header.is-open .wrap > figure {
    opacity: 0;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .cus-header.is-open .wrap .nav-wrap > ul {
    opacity: 0;
    pointer-events: none;
  }
}
.cus-header.is-open .wrap .hn-btn {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .cus-header.is-open .wrap .hn-btn {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
  }
}
.cus-header.is-open .wrap .hn-btn span {
  background-color: #0068B7;
}
.cus-header.is-open .wrap .hn-btn span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
  width: 2.2rem;
}
.cus-header.is-open .wrap .hn-btn span:nth-child(2) {
  opacity: 0;
  pointer-events: none;
  width: 2.2rem;
}
.cus-header.is-open .wrap .hn-btn span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  width: 2.2rem;
}
.cus-header.is-open .hn-menu {
  opacity: 1;
  pointer-events: auto;
}
.cus-header.is-open .hn-menu .hn-btn {
  background: #fff;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
}
.cus-header.is-open .hn-menu .hn-btn span {
  background-color: #0068B7;
}
.cus-header.is-open .hn-menu .hn-btn span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
  width: 2.2rem;
}
.cus-header.is-open .hn-menu .hn-btn span:nth-child(2) {
  opacity: 0;
  pointer-events: none;
  width: 2.2rem;
}
.cus-header.is-open .hn-menu .hn-btn span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  width: 2.2rem;
}

.c-mv {
  margin-top: 7.9rem;
}
@media screen and (max-width: 767px) {
  .c-mv {
    margin-top: 5.9rem;
  }
}

.cus-footer {
  width: 120rem;
  margin: 0 auto;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .cus-footer {
    width: 100%;
    padding: 0 2.2rem;
    padding-top: 4rem;
  }
}
.cus-footer .top-logo {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .cus-footer .top-logo {
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
  }
}
.cus-footer .top-logo figure {
  width: 20.4rem;
  height: 5.7rem;
}
.cus-footer .top-logo figure a svg {
  width: 100%;
  height: 100%;
}
.cus-footer .top-logo .line {
  width: 100%;
  height: 1px;
  background: linear-gradient(185deg, #0068B7 0%, #003F6F 100%);
}
.cus-footer .wrap {
  display: flex;
  align-items: flex-start;
  gap: 20rem;
  margin-top: 2rem;
  padding-bottom: 8.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cus-footer .wrap {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .cus-footer .wrap {
    flex-direction: column;
    align-items: center;
    padding-bottom: 6rem;
    gap: 4rem;
  }
}
.cus-footer .wrap .information > p {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .cus-footer .wrap .information > p {
    font-size: 1.4rem;
    text-align: center;
  }
}
.cus-footer .wrap .information .sns-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .cus-footer .wrap .information .sns-box {
    margin-top: 1.5rem;
    justify-content: center;
  }
}
.cus-footer .wrap .information .sns-box figure {
  width: 2.5rem;
  height: 2.5rem;
}
.cus-footer .wrap .information .sns-box figure a svg {
  width: 100%;
  height: 100%;
}
.cus-footer .wrap .information .sns-box figure a svg * {
  fill: #222;
}
@media screen and (max-width: 767px) {
  .cus-footer .wrap .information .sns-box figure a svg * {
    fill: #0068B7;
  }
}
@media screen and (max-width: 767px) {
  .cus-footer .wrap .link-box {
    width: 100%;
  }
}
.cus-footer .wrap .link-box > ul {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  row-gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .cus-footer .wrap .link-box > ul {
    grid-template-rows: repeat(5, auto);
    row-gap: 1.5rem;
    -moz-column-gap: normal;
         column-gap: normal;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .cus-footer .wrap .link-box > ul > li:nth-child(3) {
    order: 6;
  }
}
.cus-footer .wrap .link-box > ul > li > a {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #222;
  padding-right: 1.5rem;
  position: relative;
}
.cus-footer .wrap .link-box > ul > li > a figure {
  width: 0.8rem;
  height: 0.5rem;
  position: absolute;
  transform: translateY(-50%);
  right: 0;
  top: 50%;
}
.cus-footer .wrap .link-box > ul > li > a figure svg * {
  stroke: #0068B7;
}
.cus-footer .wrap .link-box > ul > li.s-li {
  grid-row: span 3;
}
@media screen and (max-width: 767px) {
  .cus-footer .wrap .link-box > ul > li.s-li {
    grid-row: span 5;
  }
}
.cus-footer .wrap .link-box > ul > li.s-li > ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.cus-footer .wrap .link-box > ul > li.s-li > ul > li > a {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #222;
  padding-left: 1.1rem;
  padding-right: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cus-footer .wrap .link-box > ul > li.s-li > ul > li > a {
    font-size: 1.4rem;
  }
}
.cus-footer .wrap .link-box > ul > li.s-li > ul > li > a:before {
  content: "";
  width: 0.6rem;
  height: 1px;
  background-color: #0068B7;
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  top: 50%;
}
.cus-footer .wrap .link-box > ul > li.s-li > ul > li > a figure {
  width: 0.8rem;
  height: 0.5rem;
  position: absolute;
  transform: translateY(-50%);
  right: 0;
  top: 50%;
}
.cus-footer .wrap .link-box > ul > li.s-li > ul > li > a figure svg * {
  stroke: #0068B7;
}
.cus-footer .wrap > a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: absolute;
}
.cus-footer .wrap > a.privacy-link {
  bottom: 4.6rem;
  right: 0rem;
}
.cus-footer .wrap > a.leone-link {
  bottom: 4.6rem;
  right: 17rem;
}
.cus-footer .wrap > a p {
  font-size: 1.3rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0em;
  color: #222;
}
.cus-footer .wrap > a figure {
  width: 1.2rem;
  height: 1.1rem;
}
.cus-footer .wrap > a figure svg {
  width: 100%;
  height: 100%;
}
.cus-footer .wrap > p {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0em;
  color: #9C9C9C;
  position: absolute;
  transform: translateX(-50%);
  bottom: 2rem;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .cus-footer .wrap > p {
    width: 100%;
    text-align: center;
    bottom: 1.5rem;
  }
}

.b-news {
  padding: 6rem 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@media screen and (max-width: 767px) {
  .b-news {
    padding: 3rem 0;
  }
}
.b-news .b-news-wrap {
  width: 120rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4.2rem;
}
@media screen and (max-width: 767px) {
  .b-news .b-news-wrap {
    position: relative;
    width: 100%;
    padding: 0 2rem;
    flex-direction: column;
    padding-bottom: 7.5rem;
    gap: 2rem;
  }
}
.b-news .b-news-wrap .ttl-b {
  flex-shrink: 0;
}
.b-news .b-news-wrap .ttl-b h4 {
  font-size: 5.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 90%;
}
@media screen and (max-width: 767px) {
  .b-news .b-news-wrap .ttl-b h4 {
    font-size: 4.55rem;
  }
}
.b-news .b-news-wrap .ttl-b .link-a {
  background-color: #fff;
  border: 1px solid #0068B7;
  width: 22rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .b-news .b-news-wrap .ttl-b .link-a {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
  }
}
.b-news .b-news-wrap .ttl-b .link-a > p {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #0068B7;
}
.b-news .b-news-wrap .ttl-b .link-a > figure {
  width: 2rem;
  height: 0.5rem;
}
.b-news .b-news-wrap .ttl-b .link-a > figure svg {
  width: 100%;
  height: 100%;
}
.b-news .b-news-wrap .news-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .b-news .b-news-wrap .news-list {
    gap: 1.4rem;
  }
}
.b-news .b-news-wrap .news-list li {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .b-news .b-news-wrap .news-list li {
    padding-bottom: 1.4rem;
  }
}
.b-news .b-news-wrap .news-list li a .date-cat {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.b-news .b-news-wrap .news-list li a .date-cat .date {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 170%;
  color: #fff;
}
.b-news .b-news-wrap .news-list li a .date-cat .cat {
  background-color: #0068B7;
  border: 1px solid #fff;
  padding: 0 0.9rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 7.4rem;
  height: 2.8rem;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 170%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-news .b-news-wrap .news-list li a .ttl {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.05em;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 任意の行数を指定 */
  margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
  .b-news .b-news-wrap .news-list li a .ttl {
    -webkit-line-clamp: 2; /* 任意の行数を指定 */
  }
}

.b-column {
  padding-top: 12rem;
  padding-bottom: 8rem;
}
.b-column .b-column-wrap {
  width: 120rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .b-column .b-column-wrap {
    width: 100%;
    padding: 0 2rem;
  }
}
.b-column .b-column-wrap > .ttl {
  font-size: 5.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #222;
  line-height: 90%;
  padding-left: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .b-column .b-column-wrap > .ttl {
    font-size: 4.55rem;
    padding-left: 3.7rem;
    background: linear-gradient(90deg, #0068B7 0%, #003F6F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
}
.b-column .b-column-wrap > .ttl::before {
  content: "";
  width: 2.1rem;
  height: 2.1rem;
  background: linear-gradient(90deg, #0068B7 0%, #003F6F 100%);
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .b-column .b-column-wrap > .ttl::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.b-column .b-column-wrap > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4.3rem;
}
@media screen and (max-width: 767px) {
  .b-column .b-column-wrap > ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9rem;
    margin-top: 3rem;
  }
}
.b-column .b-column-wrap > ul li a {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .b-column .b-column-wrap > ul li a {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
  }
}
.b-column .b-column-wrap > ul li a figure {
  width: 100%;
  height: auto;
  aspect-ratio: 260/173;
}
@media screen and (max-width: 767px) {
  .b-column .b-column-wrap > ul li a figure {
    flex-shrink: 0;
    width: 15.8rem;
  }
}
.b-column .b-column-wrap > ul li a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b-column .b-column-wrap > ul li a .t-box {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .b-column .b-column-wrap > ul li a .t-box {
    margin-top: 0;
  }
}
.b-column .b-column-wrap > ul li a .t-box .cat {
  background-color: #0068B7;
  padding: 0 0.9rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 7.4rem;
  height: 2.8rem;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 170%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-column .b-column-wrap > ul li a .t-box .ttl {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .b-column .b-column-wrap > ul li a .t-box .ttl {
    font-size: 1.6rem;
    margin-top: 1rem;
    line-height: 140%;
  }
}
.b-column .b-column-wrap > ul li a .t-box .date {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0em;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 0.4rem;
}
.b-column .b-column-wrap .link-a {
  background: linear-gradient(-135deg, #0068B7 0%, #003F6F 100%);
  border: 1px solid #0068B7;
  width: 22rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  margin-left: auto;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .b-column .b-column-wrap .link-a {
    margin: 0 auto;
    margin-top: 2rem;
  }
}
.b-column .b-column-wrap .link-a > p {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #fff;
}
.b-column .b-column-wrap .link-a > figure {
  width: 2rem;
  height: 0.5rem;
}
.b-column .b-column-wrap .link-a > figure svg {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */