@charset "UTF-8";

/*==================================
  0. Intro - イントロ
==================================*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading.ts-none {
  transition: none;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.loading-animation figure {
  width: 80%;
  margin: 0 auto;
  text-align: center;

  position: relative;
}

.loading-animation figure img {
  width: 100%;
  max-width: 680px;
}

/* wave animation*/
@keyframes pulseMotion {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
    background-color: rgba(170, 143, 123, 0.4);
  }
  100% {
    transform: translate(-50%, -50%) scale(6.5, 6.5);
    background-color: rgba(170, 143, 123, 0);
  }
}

.point {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 20px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  cursor: pointer;
}

.point.is-active {
  background-color: #eb011a;
}

.point.:focus {
  outline: none;
}

.point:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: opacity linear 0.4s;
  content: "";
}

.point.is-active:after {
  animation: pulseMotion 1.4s linear infinite;
}

.wave-position {
  position: relative;
}

.wave-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
  .point {
    width: 12px;
    height: 12px;
  }
  .wave-position {
    width: 80%;
  }
}

/*==================================
  1. General - トップ共通
==================================*/
.u-bgGreen {
  background: #287f62;
}

/*
 	1.1 Title - タイトル
====================================*/
.p-gyoseiTtl__green {
  font-weight: 700;
  color: #287f62;
}

.p-gyoseiTtl__white {
  font-weight: 700;
  color: #fff;
}

.p-gyoseiTtl_ja {
  font-size: 4.2rem;
  letter-spacing: 0.2em;
}

.p-gyoseiTtl_en {
  display: inline-block;
  font-family: "Rubik", sans-serif;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .p-gyoseiTtl_ja {
    font-size: 3rem;
  }
  .p-gyoseiTtl_en {
    margin-top: 10px;
  }
}

.p-gyoseiTtl01 {
  font-weight: 700;
  font-size: 3.6rem;
}

@media only screen and (max-width: 767px) {
  .p-gyoseiTtl01 {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 1199px) {
  .switch {
    text-align: center;
  }
}

/*
 	1.2 Background - 背景調整
====================================*/
[class^="bg"] {
  width: 100%;
  position: relative;
  background: transparent;
}

[class^="bg"]::before {
  content: "";
  position: absolute;
  top: 0;
  width: 1780px;
  height: 100%;
}

[class^="bg"].left::before {
  left: calc(100% - 1780px);
}

[class^="bg"].right::before {
  right: calc(100% - 1780px);
  border-radius: 0 100px 100px 0;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  [class^="bg"].right::before {
    border-radius: 0 50px 50px 0;
  }
}

/* bg-color */
[class^="bg"].beige::before {
  background: #faf5f0;
}
[class^="bg"].green::before {
  background: #287f62;
}

/*
 	1.3 Link - リンク系
====================================*/
.c-bnrList {
  display: grid;
  gap: 20px;
}

.c-bnrList:not(:first-of-type) {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .c-bnrList {
    gap: 10px;
  }

  .c-bnrList:not(:first-of-type) {
    margin-top: 20px;
  }
}

/* Link */
.c-bnrList a {
  display: block;
  width: 100%;

  text-decoration: none;
  color: inherit;
}

.c-bnrList.c-bnrList__col2 {
  grid-template-columns: repeat(2, 1fr);
}

.c-bnrList.c-bnrList__col3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-bnrList.c-bnrList__col4 {
  grid-template-columns: repeat(4, 1fr);
}

.c-bnrList.c-bnrList__col5 {
  grid-template-columns: repeat(5, 1fr);
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .c-bnrList.type-l {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-bnrList.c-bnrList__col5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .c-bnrList.c-bnrList__col2,
  .c-bnrList.c-bnrList__col3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-bnrList.c-bnrList__col4,
  .c-bnrList.c-bnrList__col5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Figure */
.c-bnrList figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.c-bnrList figcaption {
  margin-bottom: 20px;

  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 767px) {
  .c-bnrList figcaption {
    margin-bottom: 10px;
  }
}

/*==================================
  2. mainVisuial - トップ画像
==================================*/
.p-mainVisual {
  padding: 0 20px 0 100px;
  position: relative;
  z-index: 5;
}

.p-mainVisual_inr {
  position: relative;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.p-mainVisual_fade {
  width: 100%;
}

.p-mainVisual_catch {
  position: absolute;
  left: -80px;
  bottom: 100px;
}

.p-mainVisual_catch span {
  display: inline-block;

  font-size: 4.2rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3em;
  line-height: 1.4;
}

.p-mainVisual_catch span:not(:first-child) {
  margin-top: 20px;
}

/* Height-adjustment */
.p-mainVisual .slick-slide img {
  /* height: 70vh; */
  width: 100%;
  object-fit: cover;
  border-radius: 60px 60px 0 0;
  border: 1px solid #efefef;
}

@media only screen and (max-width: 767px) {
  .p-mainVisual {
    padding: 0 20px;
  }
  .p-mainVisual_catch {
    left: -10px;
  }
  .p-mainVisual_catch span {
    font-size: 2.2rem;
  }
  .p-mainVisual_catch span:not(:first-child) {
    margin-top: 10px;
  }
  .p-mainVisual .slick-slide img {
    border-radius: 30px 30px 0 0;
  }
}

/* slick-adjustment */
.p-mainVisual_fade.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.p-mainVisual_fade .slick-dots,
.p-slick_control {
  position: absolute;
  bottom: 40px;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}

.p-mainVisual_fade .slick-dots {
  right: 6em;
  width: auto;
  margin-top: 20px;
}

.p-slick_control {
  right: 2em;
  line-height: 1;
}

.p-slick_control > button {
  background: #287f62;
  width: calc(1em + 4px);
  height: calc(1em + 4px);
  padding: 2px;

  position: relative;
}

.p-slick_control > button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
}
.p-slick_control > button.i_pause::after {
  background: url(/assets/images/common/i_pause.svg) no-repeat center/cover;
}
.p-slick_control > button.i_play::after {
  background: url(/assets/images/common/i_play.svg) no-repeat center/cover;
}

.p-slick_control > *:not(:first-of-type) {
  margin-left: 10px;
}
.p-slick_control > button span {
  font-size: 0;
}

@media only screen and (max-width: 767px) {
  .p-mainVisual_fade .slick-dots,
  .p-slick_control {
    bottom: 20px;
  }
}

/*==================================
  3. Pickup News - 新着ピックアップ
==================================*/
.p-topPickup_bg {
  padding: 80px 0 550px 0;
  margin-top: -80px;
}

.p-topPickup_bg::before {
  border-radius: 100px 0 0;
  z-index: -2;
}

@media only screen and (max-width: 767px) {
  .p-topPickup_bg::before {
    border-radius: 50px 0 0;
  }
}

.p-topPickup_card {
  margin: 0 20px;
}

.p-topPickup_slider a {
  text-decoration: none;
}

/* adjustment */
.card .info > time {
  color: #464646;
}

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

.slick-prev {
  left: -40px;
}
.slick-next {
  right: -40px;
}

@media only screen and (max-width: 1199px) {
  .slick-prev {
    left: -16px;
  }
  .slick-next {
    right: -16px;
  }
}

/*==================================
  4. Easy Search - かんたん検索
==================================*/
.p-topSearch_inr {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .p-topSearch_inr {
    flex-direction: column;
  }
}

.p-searchList__top {
  width: 100%;
  max-width: 800px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}

.p-searchList__top li > a span {
  display: block;
  text-align: center;
  padding-bottom: 100%;
}

.p-searchList__top li > a span::before {
  bottom: 0;
  left: 0;
  border-radius: 1.6em;
  width: 100%;
  aspect-ratio: 9 / 8;
}

.p-searchList__top li > a span::after {
  top: calc(50% + 1.25em);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  aspect-ratio: 1 / 1;
}

@media only screen and (max-width: 1199px) {
  .p-topSearch_box {
    margin-top: 80px;
    display: flex;
    justify-content: center;
  }
  .p-searchList__top {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-searchList__top li > a span {
    padding-bottom: calc(100% - 28%);
  }
  .p-searchList__top li > a span::before {
    aspect-ratio: 3 / 2;
  }
  .p-searchList__top li > a span::after {
    width: 40%;
  }
}

@media only screen and (max-width: 767px) {
  .p-topSearch_box {
    margin-top: 40px;
  }
  .p-searchList__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

/* illust */
.illust01::before {
  bottom: 0;
  left: 0;
  width: 74%;
  aspect-ratio: 1 / 1;
  background: url(/assets/images/index/illust01.svg) no-repeat center/cover;
}

@media only screen and (max-width: 1199px) {
  .illust01::before {
    bottom: auto;
    left: auto;
    right: 8%;
    width: 14%;
  }
}
@media only screen and (max-width: 767px) {
  .illust01::before {
    display: none;
  }
}

/*==================================
  5. SubSite - サブサイト
==================================*/
.p-topSite_inr {
  width: 100%;
}

@media only screen and (max-width: 1199px) {
  .p-topSite_inr {
    max-width: 750px;
    margin: 0 auto;
  }
}

.c-siteList {
  display: grid;
  gap: 80px;

  margin-top: 40px;
}

.c-siteList_item {
  width: 100%;
}

.c-siteList_item::before {
  width: 50%;
  aspect-ratio: 4 / 3;
}

.c-siteDet {
  padding-top: 80px;
}

.c-siteDet_btn {
  text-align: right;
}

@media only screen and (min-width: 1200px) {
  /* PC-only */
  .c-siteList_item:nth-of-type(even) {
    padding-right: 50%;
  }
  .c-siteList_item:nth-of-type(odd) {
    padding-left: 50%;
  }
  .c-siteList_item:nth-of-type(even) .c-siteDet {
    margin-right: 80px;
  }
  .c-siteList_item:nth-of-type(odd) .c-siteDet {
    margin-left: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .c-siteList_item {
    padding-top: calc(100% - 20%);
  }
  .c-siteList_item::before {
    width: 100%;
  }
  .c-siteDet {
    padding-top: 0;
  }
  .c-siteDet_btn {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .c-siteList {
    gap: 60px;
  }
}

/* Photo */
.photo01::before {
  background: url(/assets/images/index/photo1.jpg) no-repeat center/cover;
}

.photo02::before {
  left: auto;
  right: 0;
  background: url(/assets/images/index/photo2.jpg) no-repeat center/cover;
}

.photo03::before {
  background: url(/assets/images/index/photo3.jpg) no-repeat center/cover;
}

/* illust */
.illust02::before {
  top: -60px;
  right: 0;
  width: 400px;
  aspect-ratio: 43 / 14;
  background: url(/assets/images/index/illust02.svg) no-repeat center/cover;
  z-index: 1;
}

.illust03::before {
  bottom: -100px;
  left: -100%;
  width: 200px;
  aspect-ratio: 4 / 3;
  background: url(/assets/images/index/illust03.svg) no-repeat center/cover;
  z-index: 1;
}

@media only screen and (max-width: 1199px) {
  .illust02::before {
    width: 60%;
    top: -90px;
  }
  .illust03::before {
    left: auto;
    right: 0;
    width: 28%;
  }
}

@media only screen and (max-width: 767px) {
  .illust02::before {
    top: -30px;
  }
  .illust03::before {
    bottom: -40px;
  }
}

/*==================================
  6. Information - 新着情報
==================================*/
.p-topInfo_position {
  text-align: center;
}

.p-topInfo_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-topInfo_ttl {
  display: flex;
  align-items: center;
}

.p-topInfo_rss {
  display: inline-block;
  margin-left: 40px;
}

.p-topInfo_rss img {
  width: 40px;
}

.p-topInfo_tab {
  width: 100%;
  max-width: 620px;
}

.p-topInfo_panel {
  background: #fff;
  padding: 40px;
  border-radius: 1.6em;
}

@media only screen and (max-width: 1199px) {
  .p-topInfo_position {
    text-align: left;
  }
  .p-topInfo_nav {
    flex-direction: column;
  }
  .p-topInfo_tab {
    margin-top: 40px;
  }
  .p-topInfo_rss {
    margin-left: 20px;
  }
  .p-topInfo_rss img {
    width: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .p-topInfo_tab {
    margin-top: 20px;
  }
  .p-topInfo_panel {
    padding: 20px;
  }
}

/* topNews - 高さ固定 */
.c-newsList--hFix {
  height: 370px;
  overflow-y: auto;
  margin-bottom: 0;
}
.c-newsList--hFix2 {
  height: 100%;
  overflow-y: auto;
  margin-bottom: 0;
}

/* Illust */
.illust04::before {
  top: -60px;
  left: 0;
  width: 18%;
  aspect-ratio: 34 / 29;
  background: url(/assets/images/index/illust04.svg) no-repeat center/cover;
}

@media only screen and (max-width: 1199px) {
  .illust04::before {
    left: 5%;
    top: -5%;
    width: 22%;
  }
}
@media only screen and (max-width: 767px) {
  .illust04::before {
    display: none;
  }
}

/*==================================
  7. About - 共和町について
==================================*/

/*
 	7.1 stats - 統計
====================================*/
.p-topAbout_inr {
  padding-right: calc(100% - 48%);
  min-width: 800px;
}

.p-topAbout_ttl {
  display: inline-block;
  background: #287f62;
  border-radius: 9999px;
  color: #fff;
  font-weight: 700;
  padding: 0.2em 1.2em;
}

.p-topAbout_num {
  font-weight: 700;
  font-size: 2.4rem;
}

.p-topAbout_num > span {
  font-size: 6rem;
  line-height: 1.6;
  margin-right: 0.1em;
}

.p-topAbout_data {
  display: flex;
  font-weight: 700;
}

.p-topAbout_data > p:not(:first-of-type) {
  margin-left: 1em;
}

.p-topAbout_data_ttl {
  position: relative;
}

.p-topAbout_data_ttl::after {
  content: "\ff1a";
}

.p-topAbout_data_ppl {
  font-size: 3.4rem;
}

@media only screen and (max-width: 767px) {
  .p-topAbout_inr {
    padding-top: calc(100% + 30%);
    padding-right: 0;
    min-width: auto;
  }
  .p-topAbout_num > span {
    font-size: 5rem;
  }
  .p-topAbout_data_ppl {
    font-size: 2.6rem;
  }
}

.illust05::before {
  bottom: 80px;
  right: 0;
  width: 26%;
  aspect-ratio: 5 / 3;
  background: url(/assets/images/index/illust05.svg) no-repeat center/cover;
}

.illust_map::before {
  top: -60px;
  right: 0px;
  aspect-ratio: 265 / 352;
  width: 48%;
  background: url(/assets/images/index/map.png) no-repeat center/cover;
}

@media only screen and (max-width: 1199px) {
  .illust_map::before {
    right: -20px;
  }
}

@media only screen and (max-width: 767px) {
  .illust05::before {
    bottom: auto;
    top: 10px;
  }
  .illust_map::before {
    top: -30px;
    width: 100%;
  }
}

/*
 	7.2 Links - リンク
====================================*/
.p-topLinks1 a img {
  border-radius: 1.6em;
}

.p-topLinks2 li button.c-btn02 {
  width: 100%;
  max-width: none;
}

/*
 	7.3 Topics - まちの話題
====================================*/
.illust07::before {
  top: -60px;
  right: 0;
  width: 240px;
  aspect-ratio: 60 / 49;
  background: url(/assets/images/index/illust07.svg) no-repeat center/cover;
}

@media only screen and (max-width: 1199px) {
  .illust07::before {
    width: 18%;
  }
}

@media only screen and (max-width: 767px) {
  .illust07::before {
    display: none;
  }
}

/*==================================
  8. Social - SNS
==================================*/
.c-snsUnit {
  display: flex;
  gap: 40px;
}

.c-snsUnit > div {
  flex: 1;
}

/* FB-embed */
.c-sns_embed {
  padding: 40px;
  border: 2px solid #287f62;
  border-radius: 1.6em;
}

/* SNS-button */
.c-sns_button {
  border: 2px solid transparent;
}

.c-snsList {
  display: grid;
  gap: 20px;
}

.c-snsList_item > a {
  display: block;
  padding: 20px;
  background: #fff;
  border: 2px solid #287f62;
  border-radius: 1.6em;
}

@media only screen and (max-width: 1199px) {
  .c-snsUnit {
    flex-direction: column;
    max-width: 580px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .c-snsUnit {
    gap: 20px;
  }
  .c-sns_embed {
    padding: 20px;
  }
}

/* Social-icon */
.c-sns_name {
  display: block;
  color: #464646;
  font-weight: 700;
  text-decoration: none;
}

.c-sns_name > span {
  padding-left: calc(3em + 20px);
}

.icon-facebook::before {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 3em;
  aspect-ratio: 1 / 1;
  background: url(/assets/images/index/icon-facebook.svg) no-repeat center/cover;
}

.icon-instagram::before {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 5rem;
  aspect-ratio: 1 / 1;
  background: url(/assets/images/index/icon-instagram.svg) no-repeat center/cover;
}

.icon-line::before {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 5rem;
  aspect-ratio: 1 / 1;
  background: url(/assets/images/index/icon-line.svg) no-repeat center/cover;
}

.icon-twitter::before {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 5rem;
  aspect-ratio: 1 / 1;
  background: url(/assets/images/index/icon-twitter.svg) no-repeat center/cover;
}

.icon-cjv::before {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 3em;
  aspect-ratio: 1 / 1;
  background: url(/assets/images/index/icon-cjv.svg) no-repeat center/cover;
}

/*==================================
  240402 美術館追記
==================================*/
.p-topLink_unit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 1199px) {
  .p-topLink_unit {
    width: 60%;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .p-topLink_unit {
    width: 100%;
  }
}

.line_wh {
  color: #fff;
}

/*==================================
  241118 youtube追記
==================================*/
.c-movie {
  display: flex;
}
.c-movie_thumb {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*background: #FAF5F0;*/
  border-radius: 1.6em;
  /*aspect-ratio: 4 / 3;*/
}
.c-movie .c-siteDet {
  flex: 1;
  padding-left: 80px;
}
@media only screen and (max-width: 1199px) {
  .c-movie {
    display: block;
  }
  .c-movie_thumb {
    width: 100%;
  }
  .c-movie .c-siteDet {
    padding-top: 40px;
    padding-left: 0;
  }
}