@charset "UTF-8";
/*
Theme Name: 
Description:  Web Site
Author: Hiroki Ishiida
Version: 1.0
*/
/*------------ COMMON SETTING ------------ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px !important;
  font-size: 62.5%;
}

body {
  color: #262626;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "M PLUS 1", sans-serif;
  font-style: normal;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 3/2;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

section {
  padding: 30px 15px;
}
section:nth-child(odd) {
  background-color: #fff;
}
section:nth-child(even) {
  background-color: #f3fdff;
}
@media screen and (min-width: 1080px) {
  section {
    padding: 60px 15px;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding: 60px 0;
  }
}

.event {
  padding: 30px 0;
}

.Title {
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  position: relative;
  line-height: 1;
  padding-left: 35px;
}
@media screen and (min-width: 768px) {
  .Title {
    font-size: 3rem;
  }
}
.Title::before {
  content: "";
  width: 27px;
  height: 27px;
  background-color: #4cc0da;
  position: absolute;
  border-radius: 2px;
  top: 54%;
  left: 0;
  transform: translateY(-50%);
}

.Pcver {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .Pcver {
    display: block !important;
  }
}

.Spver {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .Spver {
    display: none !important;
  }
}

main {
  overflow: hidden;
}

/* ------- BTN -------- */
.Btn {
  max-width: 400px;
  width: 100%;
  margin: 20px auto 0;
  position: relative;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  background-color: #4cc0da;
  display: block;
  transition: all 0.3s;
  line-height: 1;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .Btn {
    font-size: 1.8rem;
  }
}
.Btn::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 17px;
  height: 17px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.Btn:hover::before {
  right: 20px;
  transition: all 0.3s;
}

.gridContent {
  display: grid;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .gridContent {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
  }
}
.gridContent .imgContent img {
  aspect-ratio: 16/9;
}

.TextContent p {
  line-height: 1.7;
}
.TextContent .Btn {
  margin: 30px auto 0;
}

/* 共通設定 */
/*----------------- HEADER ----------------- */
header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  border-top: 2px solid #4cc0da;
}
header .Header__inner {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 3px;
  transition: all 1s;
  background-color: #fff;
}

.logo {
  max-width: 140px;
  width: 100%;
  z-index: 100;
}
.logo img {
  aspect-ratio: unset;
  border-radius: 0;
}
@media screen and (min-width: 1080px) {
  .logo {
    max-width: 160px;
  }
}

/*------------------- NAV ------------------ */
nav {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9490196078);
  transition: all 0.5s;
  visibility: hidden;
}
nav.panelactive {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1080px) {
  nav {
    visibility: visible;
    opacity: 1;
    height: -moz-fit-content;
    height: fit-content;
    position: unset;
    background: unset;
    text-align: left;
    padding: 0 0;
    overflow: unset;
  }
}
nav .Menu__content {
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1080px) {
  nav .Menu__content {
    position: unset;
    transform: unset;
    padding: 0 0;
  }
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
}
nav .Menu__content .Menu__list .Menu__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8e6f2;
  font-size: 2.4rem;
  font-weight: 600;
  color: #3a3a3a;
}
nav .Menu__content .Menu__list .Menu__item a {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item {
    margin: 0 0 0 20px;
    padding: unset;
    border: unset;
    font-size: 1.4rem;
    white-space: nowrap;
  }
}
nav .Menu__content .Menu__list .Menu__item .current::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  opacity: 1;
  transition: all 0.3s;
}
nav .Menu__content .Menu__list .Menu__item.Btn {
  padding: 20px;
  margin: 0 auto;
  border-bottom: unset;
  font-size: 1.8rem;
  color: #fff;
  background-color: #f1b729;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item.Btn {
    margin: 0 0 0 20px;
    font-size: 1.4rem;
    max-width: 160px;
    padding: 15px;
  }
}
nav .Menu__content .Menu__list .Menu__item.Btn::before {
  background: url(../img/icon/arrow-yellow.svg) no-repeat;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item.Btn::before {
    display: none;
  }
}
nav .Copyright {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  nav .Copyright {
    display: none;
  }
}

/*------------- HAMBERGER MENU ------------ */
.MenuBtn {
  display: flex;
  gap: 5px;
  padding: 10px;
  background-color: #4cc0da;
  color: #fff;
  font-size: 1.4rem;
  padding: 10px;
  border-radius: 5px;
  align-items: center;
  font-weight: 500;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (min-width: 1080px) {
  .MenuBtn {
    display: none;
  }
}
.MenuBtn .OpenBtn {
  width: 23px;
  height: 12px;
  position: relative;
  display: block;
  transition: all 0.3s;
}
.MenuBtn .OpenBtn span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: all 0.3s;
  position: absolute;
  border-radius: 50px;
}
.MenuBtn .OpenBtn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.MenuBtn .OpenBtn span:nth-of-type(3) {
  bottom: 0;
}
.MenuBtn .OpenBtn.active span:nth-of-type(1) {
  top: 50%;
  transform: rotate(30deg) translateY(-50%);
}
.MenuBtn .OpenBtn.active span:nth-of-type(2) {
  transform: scaleX(0);
}
.MenuBtn .OpenBtn.active span:nth-of-type(3) {
  bottom: 50%;
  transform: rotate(150deg) translateY(-50%);
}

/*----------------- KEY-VISUAL ------------------ */
.KeyVisualContent {
  padding: 0 15px;
  margin-top: 70px;
}
@media screen and (min-width: 1080px) {
  .KeyVisualContent {
    margin-top: 80px;
  }
}

.KeyVisual {
  height: 25vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .KeyVisual {
    height: 35vh;
  }
}
.KeyVisual .full {
  overflow: hidden;
  margin-bottom: 0;
}
.KeyVisual .full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 25vh;
}
@media screen and (min-width: 768px) {
  .KeyVisual .full div {
    height: 35vh;
  }
}
.KeyVisual .full div.img01 {
  background-image: url(../img/KeyVisual/keyVisual01.png);
}
.KeyVisual .full div.img02 {
  background-image: url(../img/KeyVisual/keyVisual02.png);
}
.KeyVisual .full div.img03 {
  background-image: url(../img/KeyVisual/keyVisual03.png);
}
.KeyVisual .swiper-pagination-wrapper {
  position: absolute;
  right: 15px;
  bottom: 20px;
  z-index: 10;
  padding: 6px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.KeyVisual .swiper-pagination {
  display: flex;
  gap: 10px;
  bottom: 15px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  right: 15px !important;
  left: unset !important;
}
@media screen and (min-width: 1080px) {
  .KeyVisual .swiper-pagination {
    right: 3% !important;
    gap: 15px;
  }
}
.KeyVisual .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 !important;
  background: #fff;
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (min-width: 1080px) {
  .KeyVisual .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
  }
}
.KeyVisual .swiper-pagination-bullet-active {
  background: #4cc0da;
}
.KeyVisual .KeyVisualCatch {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 10;
  display: grid;
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .KeyVisual .KeyVisualCatch {
    gap: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualCatch {
    left: 3%;
    width: 100%;
  }
}
.KeyVisual .KeyVisualCatch img {
  aspect-ratio: unset;
  border-radius: unset;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
  height: 35px;
}
@media screen and (min-width: 768px) {
  .KeyVisual .KeyVisualCatch img {
    height: 50px;
  }
}

/*-----------------  TOP ------------------ */
/*-----------------  KeySection ------------------ */
.KeySection {
  max-width: 800px;
  width: 100%;
  margin: 10px auto 0;
  padding: 0 15px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1080px) {
  .KeySection {
    margin: 30px auto 0;
  }
}
.KeySection .NewsContent {
  background-color: #fff;
  border-radius: 15px;
  display: grid;
  border: 3px solid #daa74c;
}
.KeySection .NewsContent .NewsContentTitleContent {
  background-color: #daa74c;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 7px 10px 10px;
  border-radius: 10px 10px 0 0;
}
.KeySection .NewsContent .NewsContentTitleContent .NewsContentTitle {
  position: relative;
  padding-left: 25px;
}
.KeySection .NewsContent .NewsContentTitleContent .NewsContentTitle::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../img/icon/news.svg) no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.KeySection .NewsContent .NewsList {
  padding: 10px;
}
.KeySection .NewsContent .NewsList .NewsListItem {
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.KeySection .NewsContent .NewsList .NewsListItem:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.KeySection .NewsContent .NewsList .NewsListItem a .NewsListText {
  -webkit-line-clamp: 1;
}
@media screen and (min-width: 1080px) {
  .KeySection .NewsContent .NewsList .NewsListItem a {
    display: block;
  }
}

/*-----------------  NEWS ------------------ */
.NewsList .NewsListItem {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e8ebf0;
}
.NewsList .NewsListItem a {
  transition: all 0.3s;
  position: relative;
  display: block;
}
.NewsList .NewsListItem a:hover::before {
  right: 15px;
  transition: all 0.3s;
}
.NewsList .NewsListItem a::before {
  content: "";
  background: url(../img/icon/arrow-grey.svg) no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .NewsList .NewsListItem a {
    display: grid;
    align-items: center;
    grid-template-columns: 130px 1fr;
    gap: 15px;
  }
}
.NewsList .NewsListItem:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  margin-bottom: 0;
}
.NewsList .NewsListItem .NewsListText {
  padding-right: 20px;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}

.Date {
  font-size: 1.4rem;
  color: #656565;
  margin-bottom: 5px;
  line-height: 1 !important;
}
@media screen and (min-width: 1080px) {
  .Date {
    margin-bottom: 0;
  }
}

/*-----------------  TopMenu ------------------ */
.TopMenu .TopMenuList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .TopMenu .TopMenuList {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .TopMenu .TopMenuList {
    grid-template-columns: repeat(6, 1fr);
  }
}
.TopMenu .TopMenuList li img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: unset;
  aspect-ratio: unset;
}

/*-----------------  Event ------------------ */
.event .TitleContent,
.event .BtnContent {
  padding: 0 15px;
}
@media screen and (min-width: 1200px) {
  .event .TitleContent,
  .event .BtnContent {
    padding: 0 0;
  }
}
@media screen and (min-width: 768px) {
  .event .swiper {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1200px) {
  .event .swiper {
    padding: 0 0;
  }
}
.event .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 7px !important;
}
.event .swiper-pagination .swiper-pagination-bullet-active {
  background: #4cc0da;
}
.event .eventList {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .event .eventList {
    display: grid !important;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: unset;
  }
}
.event .eventList li .eventListImg {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.event .eventList li .eventListImg .catLabel {
  position: absolute;
  top: 10px;
  left: 10px;
}
.event .eventList li .eventListTextContent {
  margin-top: 10px;
  position: relative;
}
.event .eventList li .eventListTextContent::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon/arrow-grey.svg) no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.event .eventList li .eventListTextContent .eventListTitle {
  font-size: 1.8rem;
  font-weight: 600;
}

.EventArchive .searchText {
  margin-bottom: 20px;
}
.EventArchive .eventList {
  padding: 0 0;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .EventArchive .eventList {
    grid-template-columns: repeat(3, 1fr);
  }
}
.EventArchive .searchContainer form {
  max-width: 700px;
  margin: 0 auto 20px;
  display: flex;
  border: 1px solid #b0b0b0;
  border-radius: 5px;
  padding: 5px 5px 5px 15px;
}
.EventArchive .searchContainer form input[type=text] {
  flex: 1;
}
.EventArchive .searchContainer form button {
  background: #f1b729;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  position: relative;
}
.EventArchive .searchContainer form button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/icon/search.svg) no-repeat;
  width: 20px;
  height: 20px;
}
.EventArchive .categoryNav {
  margin-bottom: 20px;
}
.EventArchive .categoryNav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .EventArchive .categoryNav ul {
    justify-content: center;
  }
}
.EventArchive .categoryNav ul li a {
  display: block;
  padding: 10px 20px;
  border: 2px solid #4cc0da;
  color: #4cc0da;
  border-radius: 5px;
  transition: all 0.3s;
  line-height: 1;
  font-weight: 600;
}
.EventArchive .categoryNav ul li a:hover {
  background: #4cc0da;
  color: #fff;
}
.EventArchive .categoryNav ul li.is-active a {
  background: #4cc0da;
  color: #fff;
}
.EventArchive .archiveContainer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .EventArchive .archiveContainer {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.EventArchive .archiveContainer .archiveTitle {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.EventArchive .archiveContainer .yearList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.EventArchive .archiveContainer .yearList li a {
  display: block;
  padding: 10px 30px;
  border: 2px solid #3a3a3a;
  color: #3a3a3a;
  border-radius: 5px;
  font-weight: 600;
  line-height: 1;
  transition: background 0.3s, color 0.3s;
}
.EventArchive .archiveContainer .yearList li a:hover {
  background: #3a3a3a;
  color: #fff;
}

/*-----------------  instagram ------------------ */
.instagram #sb_instagram {
  padding: 0 0 !important;
}
.instagram #sb_instagram #sbi_images {
  gap: 3px !important;
  padding: 0 0 !important;
}
@media screen and (min-width: 768px) {
  .instagram #sb_instagram #sbi_images {
    gap: 10px !important;
  }
}
.instagram .Btn::before {
  background: url(../img/icon/blank.svg) no-repeat;
}

/*-----------------  About ------------------ */
.AboutPage .gridContent {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .AboutPage .gridContent {
    gap: 20px;
  }
}
.AboutPage .gridContent .TextContent p:nth-child(1) {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
  color: #4cc0da;
}
@media screen and (min-width: 768px) {
  .AboutPage .gridContent .TextContent p:nth-child(1) {
    font-size: 3rem;
  }
}
.AboutPage .history ul {
  display: grid;
  gap: 15px;
}
.AboutPage .history ul li {
  padding-bottom: 15px;
  border-bottom: 1px solid #d8e6f2;
  display: grid;
  gap: 2px;
}
.AboutPage .history ul li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .AboutPage .history ul li {
    grid-template-columns: 100px 1fr;
    gap: 10px;
  }
}
.AboutPage .history ul li p:nth-child(1) {
  font-size: 1.8rem;
  color: #4cc0da;
  font-weight: 600;
}
.AboutPage .history ul li p:nth-child(2) {
  line-height: 1.5;
}
.AboutPage .GroupMap img {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

/*----------------- LOW KEYVISUAL ------------------ */
.LowKeyVisual {
  padding: 70px 15px;
  background: url(../img/KeyVisual/low-kv.png) no-repeat;
  background-size: cover;
  border-radius: 15px;
}
.LowKeyVisual .Title {
  color: #fff;
  margin-bottom: 0;
}

/* パンクズリスト */
.breadcrumb-trail {
  background-color: #f2f9ff;
  border-radius: 100px;
  font-family: "M PLUS 1", sans-serif !important;
  margin: 10px 15px 0 15px;
}
.breadcrumb-trail .fbc-wrap {
  width: 100%;
  padding: 10px 15px;
  word-break: break-word;
}
.breadcrumb-trail .fbc-wrap .fbc-items {
  padding: 0 0 !important;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.breadcrumb-trail .fbc-wrap .fbc-items li {
  padding: 0 0 !important;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1;
}
.breadcrumb-trail .fbc-wrap .fbc-items li:first-child {
  padding: 0 0 !important;
}

.aboutUs .tableContent {
  padding: 20px 15px;
  background-color: #f3fdff;
  border-radius: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .aboutUs .tableContent {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 30px;
  }
}
.aboutUs .tableContent table {
  width: 100%;
}
.aboutUs .tableContent table tbody {
  display: grid;
  gap: 15px;
}
.aboutUs .tableContent table tbody tr {
  display: grid;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d8e6f2;
}
@media screen and (min-width: 768px) {
  .aboutUs .tableContent table tbody tr {
    grid-template-columns: 150px 1fr;
  }
}
.aboutUs .tableContent table tbody tr:last-child {
  border-bottom: unset;
  padding-bottom: 0;
}
.aboutUs .tableContent table tbody tr th {
  font-weight: 700;
}
.aboutUs .aboutUsImgList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .aboutUs .aboutUsImgList {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*----------------- question ------------------ */
.QList {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .QList {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}
.QList li {
  display: grid;
  gap: 10px;
}
.QList li .QListTitle {
  background-color: #8c8c8c;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: rem;
}
.QList li .QListTitle:nth-child(1) {
  font-size: 1.8rem;
}
.QList li p {
  line-height: 1.5;
}

/*----------------- Crime-prevent ------------------ */
.Crime-prevent .crimeList {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .Crime-prevent .crimeList {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
  }
}
.Crime-prevent .crimeList li {
  display: grid;
  gap: 5px;
}
.Crime-prevent .crimeList li a {
  color: #2370ca;
}

/*----------------- Archive ------------------ */
.archive .NewsCategory {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 1.4rem;
}
@media screen and (min-width: 1080px) {
  .archive .NewsCategory {
    font-size: 1.6rem;
    justify-content: center;
    margin-bottom: 60px;
  }
}
.archive .NewsCategory li button {
  padding: 10px 30px;
  border-radius: 2px;
  background-color: #999;
  color: #fff;
  font-weight: 500;
}

.Pagenation {
  font-size: 2rem;
  width: 100%;
  text-align: center;
  margin-top: 80px;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.archiveSearch {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 20px;
}
.archiveSearch .archiveSearchLabel {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.archiveSearch select {
  font-size: 1.6rem;
  border-radius: 5px;
  background-color: #fcfcfc;
  border: 1px solid #d6d7d9;
  width: 100%;
  padding: 15px;
  text-align: left;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/icon/select-icon.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}

.kawaraban .kawarabanList {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1080px) {
  .kawaraban .kawarabanList {
    grid-template-columns: repeat(4, 1fr);
  }
}
.kawaraban .kawarabanListItem .kawarabanListText {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
.kawaraban .kawarabanListItem .kawarabanThumb {
  margin-bottom: 7px;
}
.kawaraban .kawarabanListItem .kawarabanThumb img {
  aspect-ratio: 1/1.414;
}
.kawaraban .kawarabanListItem .Date {
  margin-bottom: 0;
  margin-top: 5px;
}
.kawaraban {
  /*-- Single -- */
}
.kawaraban .btnOpenContent {
  display: flex;
  justify-content: center;
}
.kawaraban .btnOpenContent .btnOpen {
  text-align: center;
  position: relative;
  padding-right: 20px;
  justify-items: center;
  border-bottom: 1px solid #262626;
}
.kawaraban .btnOpenContent .btnOpen img {
  filter: brightness(0);
  width: 17px !important;
  height: 17px;
  background-size: contain;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  aspect-ratio: unset;
  border-radius: 0;
}
.kawaraban .PostText {
  margin: 20px 0 30px;
}
.kawaraban .btnDownload.Btn::before {
  background: url(../img/icon/download.svg) no-repeat;
  background-size: contain;
}

.support .supportList {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1080px) {
  .support .supportList {
    grid-template-columns: repeat(4, 1fr);
  }
}
.support .supportList .supportListText {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
  margin-top: 10px;
}
.support .PostText {
  margin: 20px 0 30px;
}
.support .contactInfo .Title {
  margin-bottom: 5px;
}
.support .contactInfo .contactItem a {
  color: #2370ca;
}

.post-type-archive-event .eventList {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1080px) {
  .post-type-archive-event .eventList {
    grid-template-columns: repeat(4, 1fr);
  }
}
.post-type-archive-event .eventList .eventListText {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
  margin-top: 10px;
}

/*--------------- WP-PAGENAVI -------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    margin-top: 40px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 2.4rem;
  margin: 20px !important;
  border: unset !important;
  transition: all 0.3s;
  font-weight: 600 !important;
}
.wp-pagenavi .current {
  color: #bbbbbb;
}
.wp-pagenavi .pages {
  display: none !important;
}

/*----------------- Single ------------------ */
.CardContent {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}
.CardContent .Date {
  font-size: 1.4rem;
  color: #666666;
  line-height: 1;
}

.catLabel {
  background: #fff;
  color: #4cc0da;
  padding: 7px 10px;
  font-size: 1.4rem;
  font-weight: 600;
  border: 2px solid #4cc0da;
  border-radius: 5px;
  z-index: 2;
  line-height: 1;
}

#Post {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  word-wrap: break-word;
}
#Post .TextInner {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#Post .catLabel {
  font-size: 1.2rem;
  padding: 8px 14px;
}
#Post .CardTitle {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  #Post .CardTitle {
    font-size: 2.4rem;
  }
}
#Post h2.wp-block-heading {
  font-size: 2rem;
  position: relative;
  padding-left: 23px;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  #Post h2.wp-block-heading {
    font-size: 2.4rem;
  }
}
#Post h2.wp-block-heading::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #f1b729;
  position: absolute;
  border-radius: 100px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#Post h3.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 10px;
  background-color: #ebebeb;
  border-radius: 5px;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  #Post h3.wp-block-heading {
    font-size: 2rem;
  }
}
#Post .attachment-post-thumbnail {
  margin-bottom: 30px;
}
#Post p {
  line-height: 1.7;
}
#Post img {
  aspect-ratio: unset;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 768px) {
  #Post img {
    width: 80%;
  }
}
#Post .wp-block-columns {
  gap: 20px;
}
#Post .wp-block-buttons {
  display: flex;
  justify-content: center;
}
#Post .wp-block-image.aligncenter {
  display: block !important;
}
#Post .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: 100%;
}
#Post .BtnContent {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #ddd;
}
#Post .BtnContent .Btn {
  margin: 0 auto;
}
#Post .BtnContent .Btn::before {
  right: unset;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
#Post .BtnContent .Btn:hover::before {
  left: 20px;
}

/*----------------- FORM ------------------ */
.Form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.Form .FormText {
  line-height: 1.8;
  text-align: left;
}
.Form dl {
  text-align: left;
}
.Form dl .must,
.Form dl .any {
  font-size: 1.2rem;
  color: #fff;
  background-color: #3a3a3a;
  height: 26px;
  width: 60px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.Form dl .any {
  background-color: #fff;
  color: #3a3a3a;
  border: 2px solid #3a3a3a;
}
.Form dl dt {
  font-size: 1.8rem;
  font-weight: 700;
}
.Form dl dt p {
  display: flex;
  gap: 5px;
  align-items: center;
}
.Form dl dt p span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.Form dl dd {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 30px;
}
.Form dl dd:last-child {
  margin-bottom: 0;
}
.Form dl input[type=text],
.Form dl input[type=tel],
.Form dl input[type=email],
.Form dl select,
.Form dl textarea {
  font-size: 1.6rem;
  border-radius: 5px;
  background-color: #fcfcfc;
  border: 1px solid #d6d7d9;
  width: 100%;
  padding: 15px;
  text-align: left;
}
.Form dl ::-moz-placeholder {
  color: #ccc;
}
.Form dl ::placeholder {
  color: #ccc;
}
.Form dl .wpcf7-not-valid-tip {
  text-align: left;
}
.Form dl .wpcf7-checkbox,
.Form dl .wpcf7-radio {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 400;
}
.Form dl .wpcf7-checkbox .wpcf7-list-item,
.Form dl .wpcf7-radio .wpcf7-list-item {
  margin: 0 0;
  display: block;
}
.Form dl select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/icon/select-icon.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}
.Form dl textarea {
  height: 300px;
}
.Form .Btn {
  width: 100%;
  max-width: 600px;
  padding: 20px 0;
  font-size: 1.8rem;
  font-style: normal;
}
@media screen and (min-width: 1080px) {
  .Form .Btn {
    max-width: 440px;
  }
}
.Form .privacyContent {
  display: block;
  text-align: center;
  padding: 18px;
  border-radius: 3px;
  background: #ececec;
  max-width: 400px;
  margin: 20px auto 0;
  color: #262626;
}
.Form .privacyContent input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -3px;
}
.Form .privacyContent .privacyText {
  font-size: 1.5rem;
  font-weight: 500;
}
.Form .privacyContent .privacyText a {
  color: #1d8ad9;
  text-decoration: underline;
}

/*------ Footer --------*/
footer {
  background-color: #4cc0da;
  color: #fff;
  padding: 30px 15px 20px;
}
@media screen and (min-width: 1200px) {
  footer {
    padding: 30px 0 20px;
  }
}
footer .FooterTop .Menu__content {
  position: unset;
  transform: unset;
  padding: 0 0;
  margin: 30px 0 20px;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content {
    margin: 0 0;
    width: 100%;
  }
}
footer .FooterTop .Menu__content .Menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 15px;
  font-weight: 600;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px auto;
  }
}
footer .FooterTop .Menu__content .Menu__list .Menu__item {
  font-size: 1.8rem;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list .Menu__item {
    font-size: 1.6rem;
  }
}
footer .FooterTop .Menu__content .Menu__list .Menu__item.Btn {
  padding: 20px;
  margin: 0 0;
  border-bottom: unset;
  color: #fff;
  background-color: #f1b729;
  grid-column: 1/3;
  max-width: unset;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list .Menu__item.Btn {
    margin: 0 0;
    font-size: 1.4rem;
    max-width: 160px;
    padding: 13px;
    font-size: 1.4rem;
    grid-column: unset;
  }
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list .Menu__item.Btn::before {
    display: none;
  }
}
footer .privacy,
footer .Copyright {
  font-size: 1.2rem;
}
footer .FooterBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.Copyright {
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */