@charset "UTF-8";

/*==================================
MainVisual
==================================*/
.p-mainVisual {
  position: relative;
}
.p-mainVisual_ttl {
  width: 80%;
  max-width: 1080px;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* Height-adjustment */
.p-mainVisual {
  height: calc(100% - 80px);
}
.p-mainVisual .slick-slide img {
  height: 66vh;

  width: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 1200px) {
  .p-mainVisual {
    height: calc(100% - 50px);
  }
  .p-mainVisual .slick-slide img {
    height: 80vh;
  }
}

/* slick-adjustment */
.p-mainVisual_fade .slick-dots {
  z-index: 2;
  position: absolute;
  bottom: 40px;
  right: 6em;

  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.p-mainVisual_fade .slick-dots li button:before {
  opacity: 0.6;
}
.p-mainVisual_fade .slick-dots li.slick-active button:before {
  opacity: 0.9;
  color: #3c6eaf;
}

/* slick-control */
.p-slick_control {
  z-index: 2;
  position: absolute;
  bottom: 40px;
  right: 2em;

  line-height: 1;
  display: flex;
  justify-content: flex-end;
}
.p-slick_control > button {
  background: #3c6eaf;
  border-radius: 3px;
  color: #fff;
  width: calc(1em + 4px);
  height: calc(1em + 4px);
  padding: 2px;
  position: relative;
}
.p-slick_control > *:not(:first-of-type) {
  margin-left: 10px;
}
.p-slick_control > button span {
  font-size: 0;
}

/* 230921追記 */
.icon_pause::before,
.icon_play::before {
  content: "";
  width: 1rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.icon_pause::before{
  background: url(/assets/images/common/icon-pause.svg) no-repeat center/cover;
}
.icon_play::before{
  background: url(/assets/images/common/icon-play.svg) no-repeat center/cover;
}

/*==================================
Topics - 新着トピックス
==================================*/
.p-topTopics_bg {
  padding: 80px 0;

  position: relative;
}
.p-topTopics_bg:before {
  content: "";
  background: url(/assets/images/index/bg_wave1.svg) no-repeat top left 24% / cover;
  position: absolute;
  top: -82px;
  left: 0;
  width: 100%;
  height: 120px;
}

.p-topTopics_card {
  margin: 0 20px;
  background: #fff;
}

.p-topTopics_card > figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.p-topTopics_card_info {
  padding: 20px;
}

.p-topTopics_card_info > time {
  font-size: 1.6rem;
  font-weight: 700;
}

/* slick-adjustment */
.p-topTopics_slider .slick-track {
  display: flex;
}
.p-topTopics_slider .slick-slide {
  height: auto !important;
}

.p-topTopics_slider .slick-prev {
  left: -40px;
}
.p-topTopics_slider .slick-next {
  right: -40px;
}
.p-topTopics_slider .slick-prev:before,
.p-topTopics_slider .slick-next:before {
  opacity: 1;
  color: #3c6eaf;
}

@media only screen and (max-width: 1200px) {
  .p-topTopics_slider .slick-prev {
    left: -10px;
  }
  .p-topTopics_slider .slick-next {
    right: -10px;
  }
}

/*==================================
News - 新着情報
==================================*/
.p-topNews_bg {
  position: relative;

  /* Adjustment */
  margin-top: 60px;
}
.p-topNews_bg:before {
  content: "";
  background: url(/assets/images/index/bg_wave2.svg) no-repeat top right 50% / cover;
  width: 100%;
  height: 220px;
  position: absolute;
  top: -60px;
  left: 0;
}

.p-topNews_inr {
  padding: 80px 0 120px;
}

.p-topNews_tab {
  width: 94%;
  margin: 0 auto;
}

.p-topNews_box {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #fff;
}

.p-topNews_box .c-newsList_item {
  padding: 20px;
}

@media only screen and (max-width: 768px) {
  .p-topNews {
    margin-top: 30px;
  }
  .p-topNews_box {
    border-radius: 10px;
    padding: 20px;
  }
  .p-topNews_box .c-newsList_item {
    padding: 20px 0;
  }
}

/*==================================
Information - SNS & 更新情報
==================================*/
.p-topInfoUnit__col2 {
  display: flex;
  justify-content: space-between;
}
.p-topInfoUnit__col2 > * {
  width: calc(100% / 2 - 20px);
}

@media only screen and (max-width: 1200px) {
  .p-topInfoUnit__col2 {
    flex-direction: column;
  }
  .p-topInfoUnit__col2 > * {
    width: 100%;
  }
  .p-topInfo_update {
    margin-top: 60px;
  }
}

.p-topInfo_box {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #c3ebfa;
  /* height adjustment */
  height: 694px;
}

@media only screen and (max-width: 1200px) {
  .p-topInfo_box {
    padding: 20px;
    border-radius: 10px;
  }
  .p-topInfo_social .p-topInfo_box {
    height: auto;
  }
  .p-topInfo_update .p-topInfo_box {
    height: 500px;
  }
}

/* ----- Social ----- */
.p-topSocialList > li {
  background: #fff;
  padding: 20px;
}
.p-topSocialList > li:not(:first-of-type) {
  margin-top: 20px;
}

.p-topSocialList_ttl span {
  display: block;
  font-size: 75%;
}
.p-topSocialList_ttl > a {
  display: block;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 700;

  position: relative;
  padding-left: 80px;
}

.p-topSocialList_ttl > a:before {
  content: "";
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-topSocialList_ttl_youtube > a:before {
  background: url(/assets/images/index/ic_youtube.svg);
}
.p-topSocialList_ttl_facebook > a:before {
  background: url(/assets/images/index/ic_facebook.svg);
}

@media only screen and (max-width: 768px) {
  .p-topSocialList_ttl > a {
    font-size: 1.8rem;
    padding-left: 60px;
  }
  .p-topSocialList_ttl > a:before {
    width: 40px;
    height: 40px;
  }
}

/* Youtube Embed */
.p-topVideo {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-topVideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----- Update ----- */
.p-topUpdate {
  height: 100%;
}
.p-topUpdate .c-newsList_item {
  padding: 20px;
}
.p-topUpdate .c-newsList_item_dept {
  margin-left: 1em;
  color: #3c6eaf;
  font-size: 90%;
}

/* ----- event_calendar ----- */
.p-topCalendar_btn {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.p-topCalendar_btn > a {
  display: block;
}

/*==================================
Links - リンク
==================================*/
/* ----- カード型リンク -----*/
.p-topLinks_bg {
  margin-top: 42px;
  position: relative;
}
.p-topLinks_bg:before {
  content: "";
  background: url(/assets/images/index/bg_round.svg) no-repeat bottom center/contain;
  width: 100%;
  height: 42px;
  position: absolute;
  top: -41px;
  left: 0;
}

.p-topLinks_inr {
  padding-top: calc(120px - 42px);
  padding-bottom: 120px;
}

.p-topLinks_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-topLinks_bnr > li {
  margin-top: 20px;
  width: calc(100% / 2 - 20px);
}
.p-topLinks_bnr > li a {
  display: block;
}

@media only screen and (max-width: 768px) {
  .p-topLinks_bg {
    margin-top: 21px;
  }
  .p-topLinks_bg:before {
    height: 21px;
    top: -20px;
  }
  .p-topLinks_bnr {
    flex-direction: column;
  }
  .p-topLinks_bnr > li {
    width: 100%;
  }
}

.c-cardListUnit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-cardListUnit > li {
  margin-top: 20px;
}

.c-cardListUnit.c-cardListUnit__col3 > li {
  width: calc(100% / 3 - 20px);
}

.c-cardListUnit.c-cardListUnit__col4:before {
  order: 1;
}
.c-cardListUnit.c-cardListUnit__col4:before,
.c-cardListUnit.c-cardListUnit__col4:after {
  content: "";
  display: block;
  width: calc(100% / 4 - 20px);
}
.c-cardListUnit.c-cardListUnit__col4 > li {
  width: calc(100% / 4 - 20px);
}
.c-cardListUnit.c-cardListUnit__col4 > li a {
  font-size: 90%;
}

@media only screen and (max-width: 768px) {
  .c-cardListUnit {
    flex-direction: column;
  }
  .c-cardListUnit.c-cardListUnit__col3 > li,
  .c-cardListUnit.c-cardListUnit__col4 > li {
    width: 100%;
  }
  .c-cardListUnit.c-cardListUnit__col4 > li a {
    font-size: 100%;
  }
}

.c-cardListUnit > li a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  background: #fff;
  height: 100%;

  position: relative;
  padding: 20px;
}
.c-cardListUnit > li a:hover {
  opacity: 0.8;
}

.c-cardListUnit > li a.c-cardList_img {
  padding: calc(100% + 20px) 20px 20px;
}
.c-cardListUnit > li a.c-cardList_img::before {
  content: "";
  width: 100%;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 0;
  left: 0;
}

.c-cardListUnit > li a.c-cardList_img__furusato:before {
  background: url(/assets/images/index/contents_01.jpg) no-repeat center/cover;
}
.c-cardListUnit > li a.c-cardList_img__ijyu:before {
  background: url(/assets/images/index/contents_02.jpg) no-repeat center/cover;
}
.c-cardListUnit > li a.c-cardList_img__gikai:before {
  background: url(/assets/images/index/contents_03.jpg) no-repeat center/cover;
}

.c-cardList_ttl {
  padding-left: 1.8em;
}
.c-cardList_ttl.s5-3:after {
  border-color: inherit;
}

/* ----- 罫線 -----*/
.p-topLinks_line {
  height: 2px;
  color: #fff;
  margin: 80px auto;
}

@media only screen and (max-width: 768px) {
  .p-topLinks_line {
    margin: 40px auto;
  }
}

/* ----- バナーリンク -----*/
.c-bnrList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-top: -10px;
}
.c-bnrList > li {
  margin-left: 10px;
  margin-top: 10px;
}
.c-bnrList > li img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.c-bnrList a {
  text-decoration: none;
}

.c-bnrList.c-bnrList__col4:before {
  order: 1;
}
.c-bnrList.c-bnrList__col4:before,
.c-bnrList.c-bnrList__col4:after {
  content: "";
  display: block;
  width: calc(100% / 4 - 10px);
  margin-left: 10px;
}
.c-bnrList.c-bnrList__col4 > li {
  width: calc(100% / 4 - 10px);
}

.c-bnrList.c-bnrList__col5 > li {
  width: calc(100% / 5 - 10px);
}

@media only screen and (max-width: 1200px) {
  .c-bnrList.c-bnrList__col4 > li,
  .c-bnrList.c-bnrList__col5 > li {
    width: calc(100% / 3 - 10px);
  }
  .c-bnrList.c-bnrList__col4:before,
  .c-bnrList.c-bnrList__col4:after {
    width: calc(100% / 3 - 10px);
  }
}
@media only screen and (max-width: 768px) {
  .c-bnrList.c-bnrList__col4 > li,
  .c-bnrList.c-bnrList__col5 > li {
    width: calc(100% / 2 - 10px);
  }
  .c-bnrList.c-bnrList__col4:before,
  .c-bnrList.c-bnrList__col4:after {
    width: calc(100% / 2 - 10px);
  }
}

/* ダミーバナー（広告募集中） */
.c-dummy {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #3c6eaf;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 140%;
  padding: 20px;
}

@media only screen and (max-width: 768px) {
  .c-dummy {
    padding: 10px;
  }
}

/*==================================
About - 市について
==================================*/
.p-topAbout_bg {
  position: relative;
}
.p-topAbout_bg:after {
  content: "";
  background: url(/assets/images/index/clione.svg) no-repeat center/cover;
  width: 160px;
  height: 180px;
  position: absolute;
  left: 20vw;
  top: -60px;
}

@media only screen and (max-width: 768px) {
  .p-topAbout_bg:after {
    width: 80px;
    height: 90px;
    left: 10vw;
    top: -30px;
  }
}

.p-topAbout_inr {
  position: relative;
}
.p-topAbout_img {
  position: relative;
  margin-right: 34vw;
  /* order-adjustment */
  z-index: -1;
}
.p-topAbout_img img {
  width: 100%;
  max-width: 960px;
}

.p-topAbout_map {
  position: absolute;
  top: -100px;
  left: 47vw;
  /* order-adjustment */
  z-index: 1;
}

@media only screen and (max-width: 1200px) {
  .p-topAbout_img {
    margin-right: auto;
  }
  .p-topAbout_map {
    top: 10vw;
    right: 0;
  }
}

/* 統計 */
.p-topAbout_data {
  border-radius: 20px;
  padding: 40px 80px;
  color: #fff;
  margin-top: -80px;
}

@media only screen and (max-width: 1200px) {
  .p-topAbout_data {
    border-radius: 10px;
    padding: 20px 40px;
    margin-top: -10vw;
  }
}

/* 上の段 */
.p-topAbout_data_total_def {
  width: 100%;
  display: flex;
  align-items: center;
}

.p-topAbout_data_total_def dt {
  width: 240px;
}
.p-topAbout_data_total_def dd {
  flex: 1;

  display: flex;
  justify-content: space-between;
}

.p-topAbout_data_total_def dt > span {
  display: inline-block;
  background: #ff7d00;
  padding: 0.1em 1em;
  border-radius: 30px;
  color: #363636;
  font-size: 2.2rem;
  font-weight: 700;
}

.p-topAbout_data_total_num > span {
  font-size: 7.4rem;
  font-weight: 700;
  line-height: 7rem;
}

.p-topAbout_data_total_ann {
  display: flex;
  align-items: flex-end;
  font-size: 90%;
}

@media only screen and (max-width: 1200px) {
  .p-topAbout_data_total_def,
  .p-topAbout_data_total_def dd {
    flex-direction: column;
  }
  .p-topAbout_data_total_def {
    align-items: flex-start;
  }
  .p-topAbout_data_total_def dt {
    width: auto;
  }
  .p-topAbout_data_total_def dt > span {
    font-size: 1.6rem;
  }
  .p-topAbout_data_total_num > span {
    font-size: 5.8rem;
  }
}

/* 下の段 */
.p-topAbout_data_detail {
  display: flex;
}

.p-topAbout_data_detail_def {
  width: 100%;
  display: flex;
  align-items: center;
}

.p-topAbout_data_detail_def dt > span {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 0 1em;
  width: 120px;
  text-align: center;
  font-size: 90%;
}

.p-topAbout_data_detail_def dd {
  margin-left: 20px;
}

.p-topAbout_data_detail_def dd > span {
  font-size: 4rem;
  font-weight: 700;
}

@media only screen and (max-width: 1200px) {
  .p-topAbout_data_detail {
    flex-direction: column;
  }
  .p-topAbout_data_detail_def dt > span {
    width: 90px;
  }
  .p-topAbout_data_detail_def dd > span {
    font-size: 3rem;
  }
}

.p-topAbout_text > p {
  margin-top: 10px;
}

/*==================================
Adsense - 広告
==================================*/
.p-topAdsense_bg {
  padding: 80px 0;
  position: relative;
  margin-top: 20px;
}

.p-topAdsense_bg:before {
  content: "";
  background: url(/assets/images/index/bg_wave3.svg) no-repeat top center/cover;
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

/* Adjustment */
.is-gyoseiTop .l-footer {
  margin-top: 0;
  background: #c3ebfa;
}

/*==================================
Spot - 単発バナー
==================================*/
.p-spotbnr_img {
  text-align: center;
}
.p-spotbnr_img > a {
  display: inline-block;
}
.p-spotbnr_img > a img {
  width: 100%;
  max-width: 980px;
}

.p-spotbnr_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 980px;
}

.p-spotbnr_item > li {
  width: calc(100% / 2 - 20px);
}
.p-spotbnr_item > li a {
  display: block;
}

.p-spotbnr_item > li a img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .p-spotbnr_item > li {
    width: calc(100% / 2 - 10px);
  }
}

/*==================================
Today's Event - 230330
=================================*/
/* 一行表示 */
.overtext-parent {
  padding-right: 20px;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.overtext-child {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: table-cell;
}

.c-eventlist_item_next > a {
  text-decoration: none;
}

.c-eventlist_item_next > a:hover {
  opacity: 0.7;
}

.c-eventlist_item_next > a span {
  font-size: 2.6rem;
  color: #ff7d00;
}

/* 本日のイベント*/
.p-schedule {
  background: #fff;
}
.p-schedule_inr {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px;
}
.p-schedule_body {
  display: flex;
  margin-top: 10px;
}
.p-schedule_ttl {
  white-space: nowrap;
  font-weight: 500;
  padding-left: 40px;
  position: relative;
}
.p-schedule_ttl:before {
  /* font-family: "icomoon"; */
  /* content: "\e90d"; */
  content: "";
  /* color: #ff7d00; */
  /* font-size: 34px; */
  /* font-size: 3.4rem; */
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(/assets/images/common/i_schedule.svg) no-repeat center/cover;
    width: 35px;
    aspect-ratio: 1;
}
.icon_circle_arrow_right {
  display: inline-block;
  width: 27px;
  aspect-ratio: 1;
  position: relative;
}
.icon_circle_arrow_right::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  background: url(/assets/images/common/arrow_next_or.svg) no-repeat center/cover;
}

.p-topCalendar {
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #fff;
}

@media only screen and (min-width: 1200px) {
  .p-schedule_inr {
    display: flex;
    align-items: center;
    height: 80px;
  }
  .p-schedule_body {
    align-items: center;
    margin-top: 0;
    padding-left: 2em;
  }
}

@media only screen and (max-width: 1199px) {
  .p-schedule_inr .c-eventlist_item_txt {
    margin-top: 10px;
    margin-left: 0;
  }

}

@media only screen and (max-width: 768px){
  .p-topCalendar{
      padding: 20px;
  }
}


/* 黒背景 */
body.is-black:not(.is-top) .p-topCalendar {
  border-color: #ff0;
}
body.is-black:not(.is-top) .p-schedule_inr {
  border-color: #ff0;
}
body.is-black:not(.is-top) .p-schedule_ttl::before {
  background: url(/assets/images/common/i_schedule_bk.svg) no-repeat center/cover;
}
body.is-black:not(.is-top) .icon_circle_arrow_right::before {
  background: url(/assets/images/common/arrow_next_bk.svg) no-repeat center/cover;
}