@charset "UTF-8";
/*
 * 変数
 */
/*
 * ブレークポイント
 */
/*
 * 480pxより広くなったら改行なくす
 */
@media (min-width: 560px) {
  .br_sp {
    display: none;
  }
}

/*
 * 780pxより広くなったら改行なくす
 */
@media (min-width: 880px) {
  .br_tab {
    display: none;
  }
}

/*
 * 780pxより狭くなったら改行なくす
 */
@media (max-width: 880px) {
  .pc_br {
    display: none;
  }
}

/*
 * トランジション
 */
.main-block {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .main-block {
    max-height: none;
  }
}

.main-top {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-image: url(../images/top-back.png);
  background-repeat: no-repeat;
  background-size: 127%;
  background-position: center bottom -6px;
  text-align: center;
  padding: 29% 1% 13%;
}
@media (max-width: 560px) {
  .main-top {
    background-image: url(../images/top-back-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 47% 3% 40%;
  }
}
.main-top .top-catch {
  max-width: 833px;
  margin: 0 auto;
  width: 66%;
  opacity: 0;
  margin-top: -15%;
  transform: scale(1.3);
}
@media (max-width: 560px) {
  .main-top .top-catch {
    margin-top: 0%;
    width: 84%;
  }
}

@keyframes logo-load {
  from {
    opacity: 0;
    transform: scale(1.15);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.loaded .top-catch {
  animation: logo-load 1.7s cubic-bezier(0.18, -0.01, 0.3, 1) 0.4s forwards;
}

/*
 * メイン
 */
.main-column {
  padding: 7% 0;
}
@media (max-width: 560px) {
  .main-column {
    padding: 9% 0;
  }
}

.main-column-block {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.main-tit-block {
  text-align: center;
}

.main-tit {
  position: relative;
  z-index: 1;
  padding: 14px 8% 18px;
  display: inline-block;
  margin: 0 auto;
  background-color: white;
  border-radius: 3em;
  margin-bottom: 2%;
}
.main-tit p {
  font-size: 1.5em;
  line-height: 1;
}
@media (max-width: 560px) {
  .main-tit {
    padding: 7px 21% 11px;
  }
}
@media (max-width: 560px) {
  .main-tit {
    margin-bottom: 5%;
  }
}

/*
 * アニメーション
 */
.sa {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.37, 0.16, 0.12, 1);
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--up {
  transform: translate(0, 20px);
}

.sa--down {
  transform: translate(0, -20px);
}

.sa--ri {
  transform: translate(30px, 0);
}

/*新着情報*/
.topick {
  max-width: 1274px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding: 0;
}

.news-list-top-wrapp {
  display: flex;
  margin-top: -3%;
  filter: drop-shadow(4px 9px 8px rgba(115, 226, 255, 0.5));
  max-width: 670px;
  width: 80%;
  background: white;
  position: relative;
  z-index: 2;
  margin-left: auto;
}
.news-list-top-wrapp:after {
  position: absolute;
  display: block;
  width: 110%;
  height: 100%;
  content: "";
  left: 0%;
  top: 0%;
  transform: skewX(-36deg);
  transform-origin: 100% 0;
  background: white;
  z-index: -1;
}
@media (max-width: 560px) {
  .news-list-top-wrapp:after {
    transform: skewX(-31deg);
  }
}
@media (max-width: 880px) {
  .news-list-top-wrapp {
    width: 72%;
  }
}
@media (max-width: 560px) {
  .news-list-top-wrapp {
    width: 76%;
    margin-top: 9%;
  }
}
.news-list-top-wrapp .news_item {
  border: none;
  width: 84%;
  padding: 17px 0 17px 13px;
  position: relative;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 0;
}
.news-list-top-wrapp .news_item:hover {
  background-color: white;
}
.news-list-top-wrapp .news_item:hover::before {
  right: 2%;
}
@media (max-width: 880px) {
  .news-list-top-wrapp .news_item {
    width: 83%;
  }
}
@media (max-width: 560px) {
  .news-list-top-wrapp .news_item {
    top: -1%;
    flex-direction: column;
    align-items: flex-start;
    padding: 9px 0 9px 9px;
  }
}
.news-list-top-wrapp .news_item:before {
  position: absolute;
  content: url(../images/arrow-right-circle-fill.svg);
  border-radius: 50%;
  right: 4%;
  width: 23px;
  height: 23px;
  padding: 3px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
}
@media (max-width: 560px) {
  .news-list-top-wrapp .news_item:before {
    content: none;
  }
}
.news-list-top-wrapp .news_item .news_in_title {
  width: 75%;
  margin: 0;
  text-align: left;
}
@media (max-width: 560px) {
  .news-list-top-wrapp .news_item .news_in_title {
    width: 98%;
    font-size: 15px;
  }
}
.news-list-top-wrapp .news_item .news_in_title:hover .news_item::before {
  right: 1%;
}
.news-list-top-wrapp .news_item .news-flex-brock {
  display: flex;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 22%;
}
.news-list-top-wrapp .news_item .news-flex-brock .news_time {
  color: #b3b3b3;
  font-weight: normal;
}
.news-list-top-wrapp .news_item .news-flex-brock .news_category {
  margin-left: 0;
  text-align: center;
  width: 100%;
  padding: 0;
}
@media (max-width: 560px) {
  .news-list-top-wrapp .news_item .news-flex-brock .news_category {
    margin-left: 5px;
    width: auto;
    padding: 0px 3px;
  }
}
.news-list-top-wrapp .news_item .news-flex-brock span.ippan {
  background-color: #0068B6;
}
.news-list-top-wrapp .news_item .news-flex-brock span.daihyou {
  background-color: #FFFF00;
}
.news-list-top-wrapp .news_item .news-flex-brock span.activitynews {
  background-color: #FCAE00;
}
.news-list-top-wrapp .news_item .news-flex-brock span.info {
  background-color: #824a8a;
}
@media (max-width: 560px) {
  .news-list-top-wrapp .news_item .news-flex-brock {
    width: 82%;
    flex-direction: row;
  }
}
.news-list-top-wrapp .news-top-tit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border-radius: 6px 0 0 6px;
  width: 17%;
  font-size: 15px;
  position: relative;
}
.news-list-top-wrapp .news-top-tit::before {
  content: "";
  width: 4px;
  height: 26px;
  background-color: #FFFF00;
  border-radius: 4px;
  display: inline-block;
  position: absolute;
  right: 0;
}
@media (max-width: 560px) {
  .news-list-top-wrapp .news-top-tit {
    width: 25%;
  }
}

.news {
  margin: 0;
  position: relative;
}
@media (max-width: 560px) {
  .news {
    padding: 5% 0 14%;
  }
}
.news-wrapp {
  width: 90%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  padding: 5em 2em;
  background-color: #FFFF00;
  border-radius: 4em;
}
@media (max-width: 880px) {
  .news-wrapp {
    padding-bottom: 5%;
  }
}
@media (max-width: 560px) {
  .news-wrapp {
    padding: 2em 1em;
    border-radius: 2em;
  }
}
.news .main-tit-block {
  text-align: center;
}
.news-tit {
  margin-bottom: 2%;
}
.news-tit img {
  width: 77%;
  max-width: 278px;
}
@media (max-width: 880px) {
  .news-tit img {
    width: 67%;
  }
}
@media (max-width: 560px) {
  .news-tit img {
    width: 58%;
  }
}
.news-link {
  box-sizing: border-box;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 700;
  line-height: 24px;
  outline: 0 solid transparent;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  position: relative;
  border: 0;
  overflow: hidden;
  isolation: isolate;
  margin-top: 3%;
}
.news-link a {
  padding: 1rem 7rem 1rem 2rem;
  color: #0068B6;
  border-radius: 0;
  border: 1px solid #0068B6;
  display: inline-block;
}
.news-link a span {
  position: relative;
}
.news-link a:before,
.news-link a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  height: 1px;
  background: #0068B6;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}
.news-link a:before {
  width: 60px;
}
.news-link a:after {
  width: 15px;
  transform-origin: right center;
  transform: rotate(25deg);
}
.news-link a:hover:before {
  transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
  transition-property: transform;
  transform: translate(7px, -50%);
}
.news-link a:hover:after {
  transition: all 0.5s cubic-bezier(0.7, 0, 0.2, 1);
  transition-property: transform;
  transform: translate(7px, -50%) rotate(25deg);
}
@media (max-width: 880px) {
  .news-link a {
    padding: 9px 7em 8px;
  }
}
@media (max-width: 560px) {
  .news-link {
    margin-top: 5%;
  }
  .news-link a {
    padding: 13px 7em 14px 3em;
  }
}
.news-list {
  max-width: 1118px;
  margin: 0 auto;
  width: 92%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-list-wrapp {
  margin-top: 4%;
}
@media (max-width: 560px) {
  .news-list-wrapp {
    margin-top: 8%;
  }
}
@media (max-width: 880px) {
  .news-list {
    width: 100%;
  }
}
.news_item {
  display: flex;
  padding: 17px 13px;
  justify-content: center;
  position: relative;
  align-items: center;
  width: 48%;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition-duration: 0.3s;
  z-index: 1;
  margin-bottom: 2%;
  border: 1px solid #FFFF00;
  background-color: white;
}
@media (max-width: 880px) {
  .news_item {
    padding: 11px 13px;
  }
}
@media (max-width: 560px) {
  .news_item {
    width: 100%;
    align-items: center;
    padding: 5% 5%;
    border-radius: 9px;
    margin-bottom: 5%;
  }
}
.news-flex-brock {
  width: 60%;
}
@media (max-width: 560px) {
  .news-flex-brock {
    width: 65%;
    text-align: left;
  }
}
.news .headline-image {
  width: 37%;
  text-align: end;
}
.news .headline-image img {
  width: 100%;
  height: auto;
  max-width: 150px;
}
@media (max-width: 560px) {
  .news .headline-image {
    width: 30%;
  }
}
.news_time {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
}
.news_category {
  padding: 1px 5px;
  font-size: 14px;
  background: #0068B6;
  color: white;
  margin-left: 4px;
  border-radius: 2em;
}
@media (max-width: 560px) {
  .news_category {
    font-size: 12px;
    padding: 2px 5px;
  }
}
.news span.ippan {
  background-color: #0068B6;
}
.news span.daihyou {
  background-color: #FFFF00;
}
.news span.activitynews {
  background-color: #FCAE00;
}
.news span.info {
  background-color: #824a8a;
}
.news_in_title {
  width: 100%;
  text-align: left;
}
.news_in_title a {
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition-property: color;
  width: 100%;
  display: block;
}
.news_in_title a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  background-color: transparent;
}
.news_in_title:hover a {
  color: #0068B6;
}
@media (max-width: 560px) {
  .news_in_title {
    margin-top: 5px;
    margin-left: 0;
    width: 90%;
    text-align: left;
  }
  .news_in_title a {
    width: 100%;
  }
}

/*
 * 政策
 */
#policy {
  position: relative;
  background: url(../images/background-y.jpg);
  background-size: cover;
  background-repeat: repeat;
  padding: 5% 0 3%;
}
@media (max-width: 560px) {
  #policy {
    padding: 11% 0 9%;
  }
}

.policy-wrapp {
  text-align: center;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .policy-wrapp {
    justify-content: space-between;
  }
}
@media (max-width: 560px) {
  .policy-wrapp {
    flex-direction: column;
  }
}
.policy-wrapp .policy-box {
  width: 45%;
  margin-bottom: 4%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 880px) {
  .policy-wrapp .policy-box {
    width: 48%;
    line-height: 1.2;
    padding-bottom: 2%;
    justify-content: space-between;
  }
}
@media (max-width: 560px) {
  .policy-wrapp .policy-box {
    width: 95%;
  }
}
.policy-wrapp .policy-box-num {
  width: 30%;
}
@media (max-width: 880px) {
  .policy-wrapp .policy-box-num {
    width: 20%;
  }
}
@media (max-width: 560px) {
  .policy-wrapp .policy-box-num {
    width: 10%;
  }
}
.policy-wrapp .policy-box-num img {
  height: 115px;
}
@media (max-width: 880px) {
  .policy-wrapp .policy-box-num img {
    max-height: 115px;
    width: auto;
    height: auto;
  }
}
@media (max-width: 560px) {
  .policy-wrapp .policy-box-num img {
    width: 100%;
  }
}
.policy-wrapp .policy-box-text {
  text-align: left;
  width: 75%;
  color: #FFFF00;
  font-weight: bold;
}
@media (max-width: 560px) {
  .policy-wrapp .policy-box-text {
    width: 86%;
  }
}
.policy-wrapp .policy-box-text .pol-tit {
  font-size: 1.5em;
  border-bottom: 1px solid;
  padding-bottom: 3px;
  margin-bottom: 2%;
}
@media (max-width: 880px) {
  .policy-wrapp .policy-box-text .pol-tit {
    padding-bottom: 5px;
    margin-bottom: 3%;
    padding-left: 4px;
  }
}
.policy-wrapp .policy-box-text .pol-list p {
  position: relative;
  padding-left: 1.2em;
  vertical-align: middle;
}
@media (max-width: 880px) {
  .policy-wrapp .policy-box-text .pol-list p {
    padding-bottom: 2%;
    padding-left: 1em;
  }
}
.policy-wrapp .policy-box-text .pol-list p::before {
  position: absolute;
  left: 0.15em;
  content: "・";
}
@media (max-width: 880px) {
  .policy-wrapp .policy-box-text .pol-list p::before {
    left: 0;
  }
}
@media (max-width: 560px) {
  .policy-wrapp .policy-box:first-of-type img {
    width: 67%;
  }
}

.member {
  padding: 6% 0;
  background-color: #FFFF00;
}
@media (max-width: 560px) {
  .member {
    background-color: white;
  }
}
@media (max-width: 560px) {
  .member-tit {
    background-color: #FFFF00;
  }
}
.member-wrapp-link {
  pointer-events: auto;
}
.member-wrapp-link::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  content: "";
  background-color: transparent;
}
.member-wrapp {
  width: 90%;
  margin: 0 auto;
  max-width: 1129px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .member-wrapp {
    width: 94%;
  }
}
@media (max-width: 560px) {
  .member-wrapp {
    margin-top: 19px;
  }
}
.member-wrapp-box-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 560px) {
  .member-wrapp-box-inner {
    flex-direction: column;
  }
}
.member-wrapp-box-inner .picture {
  width: 37%;
  overflow: hidden;
}
.member-wrapp-box-inner .picture img {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
}
@media (max-width: 560px) {
  .member-wrapp-box-inner .picture {
    width: 73%;
  }
}
.member-wrapp-box-inner .text {
  width: 54%;
}
@media (max-width: 560px) {
  .member-wrapp-box-inner .text {
    width: 74%;
    margin-top: 6%;
  }
}
.member-wrapp-box-inner .text .class {
  display: flex;
  align-items: center;
  font-weight: bold;
}
@media (max-width: 560px) {
  .member-wrapp-box-inner .text .class {
    justify-content: center;
  }
}
.member-wrapp-box-inner .text .class p {
  font-size: 1.3em;
}
.member-wrapp-box-inner .text .class span {
  font-size: 0.8em;
  margin-left: 3%;
}
@media (max-width: 560px) {
  .member-wrapp-box-inner .text .class span {
    margin-left: 5%;
  }
}
.member-wrapp-box-inner .text .name {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 4%;
  line-height: 1.3;
}
@media (max-width: 560px) {
  .member-wrapp-box-inner .text .name {
    font-size: 2.5em;
    text-align: center;
  }
}
.member-wrapp-box-inner .text .line {
  display: flex;
  font-size: 0.9em;
}
@media (max-width: 560px) {
  .member-wrapp-box-inner .text .line {
    flex-direction: column;
    font-size: 0.8em;
    width: fit-content;
    margin: 0 auto;
  }
}
.member-wrapp-box-inner .text .sns-area {
  display: flex;
  align-items: center;
  margin-top: 5%;
}
@media (max-width: 560px) {
  .member-wrapp-box-inner .text .sns-area {
    margin-top: 7%;
  }
}
.member-wrapp-box-inner .text .sns-area a {
  width: 35px;
  display: inline-block;
  padding: 0 4px;
}
.member-wrapp-box-inner .text .sns-area a img {
  width: 100%;
}
.member-wrapp-box-inner .text .sns-area a:hover {
  opacity: 0.7;
}
.member-wrapp-flex {
  max-width: 879px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 880px) {
  .member-wrapp-flex {
    justify-content: space-around;
    margin-top: 0;
  }
}
.member-wrapp-flex .member-wrapp-box {
  margin-bottom: 9%;
  margin-right: 29px;
  margin-left: 29px;
}
@media (max-width: 880px) {
  .member-wrapp-flex .member-wrapp-box {
    margin-right: 8px;
    margin-left: 8px;
  }
}
@media (max-width: 880px) {
  .member-wrapp-flex .member-wrapp-box {
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 5%;
  }
}
@media (max-width: 560px) {
  .member .sp-aline {
    margin-right: auto;
    margin-left: 7px;
  }
}
@media (max-width: 370px) {
  .member .sp-aline {
    margin-left: 2px;
  }
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 555;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader .txt {
  font-size: 45px;
  font-weight: bold;
  color: rgb(30, 50, 93);
  display: none;
}

.loader .txt.mov {
  animation: load-mov 1.2s cubic-bezier(0.6, 0.03, 0.49, 0.98) 1s forwards;
}

@keyframes load-mov {
  from {
    transform: translate(0, 0);
    opacity: 1;
  }
  to {
    transform: translate(0, -20px);
    opacity: 0;
  }
}
.loader .looping-rhombuses-spinner {
  display: none;
}

.looping-rhombuses-spinner, .looping-rhombuses-spinner * {
  box-sizing: border-box;
}

.looping-rhombuses-spinner {
  width: 60px;
  height: 15px;
  position: relative;
}

.looping-rhombuses-spinner .rhombus {
  height: 15px;
  width: 15px;
  background-color: #FFFF00;
  left: 60px;
  position: absolute;
  margin: 0 auto;
  border-radius: 2px;
  transform: translateY(0) rotate(45deg) scale(0);
  animation: looping-rhombuses-spinner-animation 2500ms linear infinite;
}
.looping-rhombuses-spinner .rhombus:nth-of-type(2) {
  background-color: #0068B6;
}

.looping-rhombuses-spinner .rhombus:nth-child(1) {
  animation-delay: -1666.6666666667ms;
}

.looping-rhombuses-spinner .rhombus:nth-child(2) {
  animation-delay: -3333.3333333333ms;
}

.looping-rhombuses-spinner .rhombus:nth-child(3) {
  animation-delay: -5000ms;
}

@keyframes looping-rhombuses-spinner-animation {
  0% {
    transform: translateX(0) rotate(45deg) scale(0);
  }
  50% {
    transform: translateX(-233%) rotate(45deg) scale(1);
  }
  100% {
    transform: translateX(-466%) rotate(45deg) scale(0);
  }
}

/*# sourceMappingURL=frontpage.css.map */
