@charset "UTF-8";

/* ---------------------------------------------
  utility
--------------------------------------------- */
/* font */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=BIZ+UDPMincho:wght@400;700&display=swap');

@media (min-width: 768px) {
  .is-hidden_pc {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .is-hidden_sp {
    display: none !important;
  }
}


/* ---------------------------------------------
  パーツ
--------------------------------------------- */

img{
  pointer-events: none; 
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  touch-callout:none;
  user-select:none;
}

a {
  color: inherit;
  text-decoration: none;
  opacity: 1;
  transition: 0.4s;
}

a:hover{
  text-decoration: none;
  opacity: 0.7;
}

table {
  width: 100%;
}

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

#totop {
  position: fixed;
  right: 58px;
  bottom: 58px;
  z-index: 999;
  display: none;
  cursor: pointer;
  width: 68px;
  height: 68px;
}

#totop:hover {
  transform: translateY(-10px);
  transition: ease-in-out .4s;
}

.more-btn{
  background-color: #3989D4;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  text-align: center;
  width: 260px;
  padding: 14px 0;
  display: block;
  position: relative;
}

.more-btn::after{
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  transition: .4s;
}

.more-btn:hover::after{
  transform: translate(10px, -50%);
}

.more-btn-wide{
  background-color: #fff;
  width: 90%;
  display: block;
  text-align: center;
  color: #3989D4;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  border: 1px solid #3989D4;
  padding: 25px 0;
  margin: auto;
}

.more-btn-wide.round{
  width: 600px;
  border: 2px solid var(--primary);
  border-radius: 100px;
  color: #333;
}

.more-btn-wide::after{
  content: "";
  display: block;
  width: 40px;
  height: 24px;
  background: url(../img/common/arrow-green.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  transition: .4s;
}

.more-btn-wide.round::after{
  background: url(../img/common/arrow.png) no-repeat;
  background-size: cover;
}

.more-btn-wide:hover::after{
  transform: translate(7px, -50%);
}

.subpage .head-ttl-wrap h1{
  font-size: 30px;
  font-weight: bold;
}

.link-icon{
  display: flex;
  align-items: center;
}

.link-icon span{
  content: "";
  background: url(../img/common/link-icon.png) no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  margin-left: 20px;
  display: block;
}

h2.border-v{
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

h2.border-v::before{
  content: "";
  display: block;
  width: 16px;
  height: 80px;
  margin-right: 30px;
  background: var(--primary);
}

h3.circle{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
  
h3.circle::before{
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 7px solid var(--primary-deep);
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.top-news-wrap .application-btn-wrap{
  margin-top: 60px;
}

.top-news-wrap .application-btn-wrap a{
  max-width: 580px;
  display: block;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  font-size: 20px;
  margin: auto;
}

@media (max-width: 767px){

  .more-btn-wide::after{
    width: 25px;
    height: 16px;
    right: 15px;
  }

  .breadcrumbs ul{
    margin: 15px 0 20px;
    font-size: 11px;
    padding: 0;
  }

  .subpage .head-ttl-wrap h1{
    font-size: 22px;
    font-weight: bold;
  }

  .top-news-wrap .application-btn-wrap{
    margin-top: 200px;
  }

  .top-news-wrap .application-btn-wrap a{
    max-width: 90%;
    font-size: 16px;
  }

  .top-emergency-wrap{
    width: 90%;
    font-size: 14px;
    z-index: 9999;
  }

  .top-emergency-wrap .emergency-content{
    width: 100%;
  }

  .top-emergency-wrap h2::before{
    width: 20px;
    height: 19px;
  }
  
  .top-emergency-wrap p{
    font-size: 18px;
    padding: 0 10px;
    margin-bottom: 10px;
  }

  .more-btn-wide{
    width: 100%;
    font-size: 16px;
    padding: 15px 0;
  }
}

/* ---------------------------------------------
  base 専用
--------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  position: relative;
  box-sizing: border-box;
  width: min(1040px, 100%);
  padding: 0 20px;
  margin: auto;
}

.container.narrow{
  width: min(858px, 100%);
}

main {
  display: block;
  padding-top: 120px;
}

@media (max-width: 767px){
  body {
    font-size: 14px;
  }

  main {
    padding-top: 60px;
  }
}

@media (min-width: 768px) and (max-width: 769px) and (orientation: portrait) {
  main {
    min-height: 95vh;
  }
}

/* ---------------------------------------------
  header
--------------------------------------------- */

header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  height: 120px;
  box-sizing: border-box;
  transition: .3s;
  width: 100%;
}

header .header-inner{
  padding-top: 20px;
  margin: auto;
}

header .header-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

header .header-content .header-logo{
  width: 240px;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
}

header .header-content .header-nav{
  display: flex;
  align-items: center;
  gap: 70px;
}

header .header-content .header-nav .portal-link{
  display: block;
  background-color: #3989D4;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
}

footer{
  background-color: #3989D4;
}

footer.subpage{
  background-color: #F0C128;
}

footer a{
  width: fit-content;
  display: block;
  margin: auto;
}

footer .footer-logo{
  width: 240px;
  padding: 80px;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
}


@media (max-width: 820px){
  .pc-nav{
    display: none !important;
  }

  .sp-nav{
    display: block;
  }
}

@media (min-width: 821px){
  .pc-nav{
    display: block;
  }

  .sp-nav{
    display: none !important;
  }
}

@media (max-width: 820px){

}

.top-ttl-wrap{
  background-color: #3989D4;
}

.portalsite .top-ttl-wrap{
  background-color: #F0C128;
}

.top-ttl-wrap h1{
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  padding: 40px 0;
}

.top-news-wrap{
  margin: 90px auto 150px;
}

.top-news-wrap .news-list{
  display: flex;
  flex-wrap: wrap;
  gap: 90px 50px;
  margin-bottom: 90px;
}

.top-news-wrap .news-list li{
  width: calc((100% - 100px) / 3);
}

.top-news-wrap .news-list li .news-info{
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.top-news-wrap .news-list li .news-info .category{
  font-size: 12px;
  color: #fff;
  display: block;
  width: 120px;
  background-color: #3989D4;
  text-align: center;
  border-radius: 15px;
}

.portalsite .top-news-wrap .news-list{
  padding-top: 80px;
  border-top: 1px solid #333;
}

.portalsite .top-news-wrap .news-list li .news-info .category{
  background-color: #F0C128;
}

.top-news-wrap .news-list li .news-info time{
  font-size: 14px;
  margin-left: 15px;
}

.top-news-wrap .news-list li h3{
  font-size: 20px;
  font-weight: bold;
}

.pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #3989D4;
  font-size: 16px;
  font-weight: bold;
}

.portalsite{
  .pagination{
    color: #F0C128;
  }

  .pagination .page-numbers{
    background-color: #F0C128;
  }
  
  .pagination .page-numbers.current{
    border: 1px solid #F0C128;
    color: #F0C128;
  }

  .pagination .page-numbers.dots{
    color: #F0C128;
  }
} 

.pagination .page-numbers{
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3989D4;
  color: #fff;
}

.pagination .page-numbers.current{
  border: 1px solid #3989D4;
  color: #3989D4;
  background-color: #fff; 
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next{
  border-radius: 36px;
  width: 120px;
}

.pagination .page-numbers.prev::before,
.pagination .page-numbers.next::after{
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-right: 30px;
}

.pagination .page-numbers.next::after{
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-135deg);
  margin-right: 0;
  margin-left: 30px;
}

.pagination .page-numbers.dots{
  background-color: initial;
  color: #3989D4;
  border: none;
}

.cat-btn-list{
  display: flex;
  gap: 8px;
}

.cat-btn-list li{
  width: 140px;
}

.cat-btn-list li a{
  display: block;
  border-radius: 30px;
  color: #fff;
  padding: 10px;
  background-color: #F0C128;
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
}

.cat-btn-list li a.current{
  color: #F0C128;
  background-color: #fff;
  border: 1px solid #F0C128;
}

.news-detail-wrap{
  margin-bottom: 120px;
  margin-top: 80px;
}

.news-detail-wrap h2{
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0 20px;
}

.news-detail-wrap .news-info{
  display: flex;
}

.news-detail-wrap .category{
  font-size: 12px;
  color: #fff;
  display: block;
  width: 120px;
  background-color: #F0C128;
  text-align: center;
  border-radius: 15px;
  margin-left: 10px;
}

.login-content-wrap{
  margin: 100px auto;
  width: fit-content;
}

.login-content-wrap .upper-wrap img{
  width: 275px;
  margin: auto;
  display: block;
}

.login-content-wrap .upper-wrap h2{
  font-size: 33px;
  color: #3989D4;
  font-weight: bold;
  margin: 30px auto;
  text-align: center;
}

.login-content-wrap form{
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.login-content-wrap .field-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 35px;
  margin-left: -76px;
}

.login-content-wrap form label{
  font-weight: bold;
  margin-right: 10px;
}

.login-content-wrap form input{
  padding: 10px 7px;
  width: 320px;
}

.login-content-wrap form button{
  margin: auto;
  display: block;
  border: none;
  background-color: #3989D4;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  width: 155px;
  padding: 20px 0;
  font-weight: bold;
}

.login-content-wrap .my_forgot_pass{
  font-size: 14px;
  margin: auto;
  margin-top: -15px;
}

.login-content-wrap .login-error{
  font-size: 16px;
}

.login-content-wrap .login-error a{
  display: block;
  text-decoration: underline;
  text-align: center;
}