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

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

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #000000;
  font-size: 16px;
  line-height: 2;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
}
body.open #header .top {
  z-index: unset;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

strong {
  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 .contents article {
  border-bottom: 1px solid #000;
  padding-bottom: 35px;
}
#news .contents article:not(:has(a)),
#news .contents article a {
  display: flex;
  flex-direction: column;
  align-items: start;
}
#news .contents article a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#news .contents article a:hover {
  opacity: 0.6;
}
#news .contents article time {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 11.4px;
  line-height: 1.6;
  color: #fff;
  background-color: #0099c2;
  padding: 0 16px;
  margin-bottom: 9px;
}
#news .contents article .title {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 13.03px;
  line-height: 1.6;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#news .contents article:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 999px) {
  #news .contents article {
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  #news .contents article time {
    font-size: 10px;
    padding: 0 5px;
  }
  #news .contents article .title {
    font-size: 12px;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
@keyframes m_fixed {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  99.9% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: none;
  }
}
@keyframes remove {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  99.9% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: none;
  }
}
@keyframes submenu {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  99.9% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: none;
  }
}
#header a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#header a:hover {
  opacity: 0.6;
}
#header .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 2;
  padding: 34px 3.125% 0 2.9166666667%;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#header .top.remove {
  animation: remove 1s forwards;
}
#header .top.m_fixed {
  position: fixed;
  animation: m_fixed 1s forwards;
}
#header .top.m_fixed .logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .top.m_fixed .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .top.m_fixed .logo::before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 80px;
  z-index: -1;
  padding: 0 30px;
}
#header .logo {
  max-width: 470px;
}
#header .right {
  background-color: #fff;
  display: flex;
  margin-left: auto;
  margin-top: 10px;
  -moz-column-gap: 64px;
       column-gap: 64px;
  padding-left: 115px;
  border-radius: 32.5px/50%;
}
#header #gnav {
  min-height: 65px;
  align-content: center;
}
#header #gnav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px 0;
  padding: 5px 0;
  -moz-column-gap: 90px;
       column-gap: 90px;
}
#header #gnav > ul > li {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #00479d;
}
#header #gnav > ul > li a {
  color: #00479d;
}
#header #gnav > ul > li::after {
  position: absolute;
  content: "";
  height: 1em;
  width: 1px;
  right: -45px;
  top: 0.3em;
  background: #00479d;
}
#header #gnav > ul > li:last-child::after {
  display: none;
}
#header #gnav > ul > li:hover > .submenu {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#header #gnav > ul > li > .submenu {
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: all 0.5s ease-out;
  z-index: 1;
  top: 100%;
  left: -45px;
  width: calc(100% + 90px);
  white-space: nowrap;
  padding-top: 20px;
}
#header #gnav > ul > li > .submenu .flow-a, #header #gnav > ul > li > .submenu .flow-b {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: calc(100% - 22px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#header #gnav > ul > li > .submenu .flow-b {
  background-color: #00479d;
  bottom: calc(100% - 20px);
  z-index: 1;
}
#header #gnav > ul > li > .submenu > ul {
  background-color: #fff;
  border: #00479d solid 1px;
  padding: 10px;
  flex-direction: column;
  row-gap: 0;
  display: flex;
}
#header #gnav > ul > li > .submenu > ul > li a {
  color: #00479d;
}
#header #gnav > ul > li > .submenu > ul > li:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #00479d;
}
#header .contact {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .contact p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#header .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 209px;
  min-height: 100%;
  background-color: #00479d;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  border-radius: 0 32.5px 32.5px 0/0 50% 50% 0;
}
@media (max-width: 1600px) {
  #header .logo {
    max-width: 450px;
  }
  #header #gnav > ul {
    -moz-column-gap: 47px;
         column-gap: 47px;
  }
  #header #gnav > ul > li::after {
    right: -23.5px;
  }
}
@media (max-width: 1400px) {
  #header .top.m_fixed .logo::before {
    height: 95%;
    padding: 0 20px;
  }
  #header .logo {
    max-width: 380px;
  }
  #header .right {
    padding-left: 30px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #header #gnav > ul {
    -moz-column-gap: 27px;
         column-gap: 27px;
  }
  #header #gnav > ul > li::after {
    right: -13.5px;
  }
  #header .contact a {
    width: 150px;
  }
}
@media (max-width: 999px) {
  #header .top {
    padding: 10px 10px 0;
  }
  #header .top.m_fixed .logo {
    max-width: 300px;
  }
  #header .top.m_fixed .logo::before {
    height: 65%;
    padding: 0 10px;
  }
  #header .logo {
    max-width: 300px;
  }
  #header .right {
    padding-left: 10px;
  }
  #header #gnav ul li {
    font-size: 16px;
  }
  #header .contact a {
    width: 150px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #header .top {
    padding-right: 70px;
  }
  #header .right {
    padding: 0;
  }
  #header .contact {
    display: none;
  }
  #header #gnav {
    align-content: start;
  }
  #header #gnav > ul {
    margin-left: 0;
    padding-left: 0;
  }
  #header #gnav > ul > li {
    color: #fff;
    margin-right: 0;
    padding-left: 0;
  }
  #header #gnav > ul > li a {
    color: #fff;
  }
  #header #gnav > ul > li::after {
    display: none;
  }
  #header #gnav > ul > li > ul {
    position: unset;
    clip-path: unset;
    transition: unset;
    background-color: unset;
    padding: unset;
    flex-direction: unset;
    z-index: unset;
    row-gap: unset;
    display: unset;
    top: unset;
    left: unset;
    white-space: unset;
  }
  #header #gnav > ul > li > ul > li {
    border-bottom: 1px dotted #fff;
  }
  #header #gnav > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px dotted #fff;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  container-type: inline-size;
  background-color: #0025bc;
}
#footer a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#footer a:hover {
  opacity: 0.6;
}
#footer .top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 10px;
  padding: 140px max(1.8229166667%, 10px) 0 calc(min(22.4479166667cqw, 431px) - min(22.4479166667cqw, 431px) * 0.2436194896);
  margin-bottom: 97px;
}
#footer .top .left .logo {
  max-width: 637px;
  margin-bottom: 13px;
}
#footer .top .left .data {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  color: #fff;
}
#footer .top .right {
  margin: 80px 10px 0 auto;
}
#footer .top .right #fnav {
  margin-bottom: 28px;
}
#footer .top .right #fnav > ul {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  -moz-column-gap: 41px;
       column-gap: 41px;
  row-gap: 15px;
}
#footer .top .right #fnav > ul > li {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  position: relative;
}
#footer .top .right #fnav > ul > li a {
  color: #fff;
}
#footer .top .right #fnav > ul > li::after {
  position: absolute;
  content: "";
  background-color: #fff;
  height: 1em;
  width: 1px;
  left: -20.5px;
  top: 0.3em;
}
#footer .top .right #fnav > ul > li:last-child::before {
  position: absolute;
  content: "";
  background-color: #fff;
  height: 1em;
  width: 1px;
  right: -20.5px;
  top: 0.3em;
}
#footer .top .right #fnav > ul > li > ul > li a {
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
#footer .top .right #fnav > ul > li > ul > li a::before {
  content: "-";
}
#footer .top .right .links ul {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  gap: 10px;
}
#footer .top .right .links ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0 16px;
  min-width: 165px;
}
#footer .top .right .links ul li.contact a {
  background-color: #3fa9f5;
}
#footer .top .right .links ul li.privacy a {
  background-color: #0075c2;
}
#footer .bottom {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-right: 0.9375%;
}
#footer .bottom .name {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: min(6.0458333333cqw, 116.08px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  position: relative;
  padding-left: calc(min(22.4479166667cqw, 431px) - min(22.4479166667cqw, 431px) * 0.5684454756);
}
#footer .bottom .name::before, #footer .bottom .name::after {
  content: "";
  position: absolute;
  background-color: #29abe2;
}
#footer .bottom .name::before {
  width: min(30.2083333333cqw, 580px);
  height: 90px;
  bottom: var(--tsize);
  left: 0;
  transform: translateY(100%);
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
}
#footer .bottom .name::after {
  left: 0;
  bottom: 0;
  width: min(22.4479166667cqw, 431px);
  height: calc(var(--tsize) - 90px + 1px);
  clip-path: polygon(64% 0, 100% 0, 61% 100%, 26% 100%);
  transform: translateX(-30.162412993%);
}
#footer .bottom .copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 0 0 22px auto;
}
@media (max-width: 999px) {
  #footer .top {
    padding-top: 100px;
  }
  #footer .top .left .logo {
    max-width: 400px;
  }
  #footer .top .left .data {
    font-size: 13px;
  }
  #footer .top .right #fnav > ul > li {
    font-size: 14px;
  }
  #footer .top .right #fnav > ul > li:first-child::before {
    margin-right: 5px;
  }
  #footer .top .right #fnav > ul > li > ul > li a {
    font-size: 14px;
  }
  #footer .top .right .links ul li a {
    font-size: 16px;
    min-width: unset;
  }
  #footer .bottom .name::before {
    height: 70px;
  }
  #footer .bottom .name::after {
    height: calc(var(--tsize) - 70px + 1px);
  }
  #footer .bottom .copyright {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  #footer .top {
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
    margin-bottom: 30px;
  }
  #footer .top .left .logo {
    margin-bottom: 10px;
  }
  #footer .top .right {
    margin: 0;
  }
  #footer .top .right #fnav > ul {
    justify-content: start;
  }
  #footer .top .right .links ul {
    justify-content: center;
  }
  #footer .top .right .links ul li a {
    font-size: 14px;
    padding: 0 10px;
    height: 35px;
  }
  #footer .bottom .name::before {
    height: 50px;
  }
  #footer .bottom .name::after {
    height: calc(var(--tsize) - 50px + 1px);
  }
  #footer .bottom .copyright {
    font-size: 8px;
  }
}/*# sourceMappingURL=style.css.map */