@charset "UTF-8";
/*【目次】
・[A]─全ページ共通
  ├──[A-0] Sass関数設定
  ├──[A-1] テーマカラー設定
  └──[A-2] 汎用設定
・[1] トップページ設定
・[2] ページヘッダー設定
・[3] ラッパー設定
  ├──[3-1] メインコンテンツ設定
  ├──[3-2] サイドA（サイドナビ）設定
  └──[3-3] サイドB（サイド）設定
・[4] グローバルフッター設定
 ******************************
*/
/* 【目次】 */
/*
body::after {
  display: block;
  content: "";
  position: absolute;
  top:0;
  left:0;
//  background-color: #000;
  width: 100%;
  height: 100%;
  z-index: 990000;
  animation: 2s hohoho linear 1;
}

@keyframes hohoho {
    0% { background-color: #000; }
   10% { background-color: #000; }
   20% { background-color: #222; }
   30% { background-color: #444; }
   40% { background-color: #666; }
   50% { background-color: #888; }
   60% { background-color: #aaa; }
   70% { background-color: #ccc; }
   80% { background-color: #fff; }
   90% { background-color: #fff; }
  100% { background-color: transparent }
}
*/
/* ****************************** */
/* [A-0] Sass関数設定 */
/* ****************************** */
/*このテキストが表示されていれば、function.scssが読み込まれています。*/
/*サイドバーのFlex共通設定*/
/*サイドバーの縦書き設定*/
/*余白設定*/
/*矢印のパーツ共通設定（垂直アロー）*/
/*矢印のパーツ共通設定（傾斜アロー）*/
/* ****************************** */
/* ****************************** */
/* [A-1] テーマカラー設定 */
/* ****************************** */
*:root {
  --Color-main: #249115;
  --Color-news: #2951d8;
  --Color-service: #ed1c1c;
  --Color-migration: #8afaff;
  --Color-tourism: #3bb144;
  --Color-login: #d9d903;
  --Color-access: #cc98ff;
  --Color-none: #ccc;
}

/*テーマカラー【変数】*/
.Bgc {
  /*メインカラー*/
  /*お知らせ*/
  /*住民サービス*/
  /*移住ガイド*/
  /*観光案内*/
  /*ログイン*/
  /*アクセス*/
  /*未設定*/
}
.Bgc-main {
  background-color: var(--Color-main);
}
.Bgc-news {
  background-color: var(--Color-news);
}
.Bgc-service {
  background-color: var(--Color-service);
}
.Bgc-migration {
  background-color: var(--Color-migration);
}
.Bgc-tourism {
  background-color: var(--Color-tourism);
}
.Bgc-login {
  background-color: var(--Color-login);
}
.Bgc-access {
  background-color: var(--Color-access);
}
.Bgc-none {
  background-color: var(--Color-none);
}

/*テーマカラー【背景色】*/
.Text {
  /*メインカラー*/
  /*お知らせ*/
  /*住民サービス*/
  /*移住ガイド*/
  /*観光案内*/
  /*ログイン*/
  /*アクセス*/
  /*未設定*/
}
.Text-main {
  color: var(--Color-main);
}
.Text-news {
  color: var(--Color-news);
}
.Text-service {
  color: var(--Color-service);
}
.Text-migration {
  color: var(--Color-migration);
}
.Text-tourism {
  color: var(--Color-tourism);
}
.Text-login {
  color: var(--Color-login);
}
.Text-access {
  color: var(--Color-access);
}
.Text-none {
  color: var(--Color-none);
}

/*テーマカラー【文字色】*/
/* ****************************** */
/* [A-2] 汎用設定 */
/* ****************************** */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  height: 100vh;
  margin: 0 auto;
  font-size: 12px;
  font-family: "Noto Serif";
  letter-spacing: 1.6px;
  line-height: 1.6;
}

@keyframes gradationTest {
  0% {
    background-color: #6CB8FF;
  }
  50% {
    background-color: #FFF66C;
  }
  90% {
    background-color: #FFA36C;
  }
  100% {
    background-color: #6CB8FF;
  }
}
/* ****************************** */
/* [1] トップページ設定 */
/* ****************************** */
.topBody {
  background-image: url(../res/image/image_001.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

/*トップページのbody*/
.topHeader {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  height: 90vh;
  padding-top: 20px;
  /*サイトタイトルの前（左）に擬似要素を生成*/
}
.topHeader::before {
  display: block;
  content: "";
  width: 30%;
}

/*トップヘッダー*/
.siteTitle {
  order: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 33%;
  font-family: "Hannari";
  font-weight: 900;
  text-shadow: 1px  1px 5px #fff, -1px -1px 5px #fff;
  text-orientation: upright;
}
.siteTitle__title {
  order: 2;
  margin-bottom: 2vh;
  font-size: 10vh;
  letter-spacing: 20px;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  position: relative;
}
.siteTitle__logo {
  order: 1;
  width: 60px;
  margin-top: 10%;
}
.siteTitle__since {
  order: 3;
  font-size: 16px;
  letter-spacing: 1px;
  -ms-writing-mode: horizontal-tb;
  writing-mode: horizontal-tb;
}

/*サイトタイトル*/
.topNavi {
  order: 3;
  width: 30%;
}
.topNavi__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.topNavi__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 100px;
  margin: 10px;
}
.topNavi__link {
  width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  color: #fff;
  line-height: 3em;
  position: relative;
}
.topNavi__link:hover .topNavi__label {
  display: block;
  width: 90%;
  left: 0;
  font-size: 16px;
  color: #000;
  opacity: 0.7;
  z-index: 1;
}
.topNavi__text {
  padding-left: 10px;
  margin-top: -1.5em;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  font-size: 20px;
  text-shadow: 1px  1px 1px #666, -1px -1px 1px #666;
}
.topNavi__label {
  content: "";
  display: inline-block;
  width: 10%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: .5s;
}

/*トップナビゲーション*/
.topFooter {
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.topFooter__topLinks {
  order: 1;
  display: flex;
  justify-content: space-around;
  width: 55%;
  max-width: 300px;
}
.topFooter__topLinksLink {
  display: block;
  padding: 10px 15px;
  margin: 0 auto;
  text-align: center;
}
.topFooter__copyright {
  order: 2;
  display: block;
  width: 45%;
  width: 100%;
  padding: 10px;
  text-align: center;
}

/*トップフッター*/
/* ****************************** */
/* [2] ページヘッダー設定【共通】 */
/* ****************************** */
.pageHeader {
  display: flex;
  justify-content: space-between;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: 70%;
  min-height: 500px;
  max-height: 900px;
  border-radius: 0 0 0 200px;
  box-shadow: 1px 1px 10px #000;
  position: relative;
}
.pageHeader__siteTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 80px;
  font-size: 10vh;
  letter-spacing: 30px;
  z-index: 50000;
}
.pageHeader__siteTitle--text {
  order: 2;
  font-family: "Hannari";
  font-weight: 900;
  text-shadow: 1px  1px 5px #fff, -1px -1px 5px #fff;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}
.pageHeader__siteTitle--logo {
  order: 1;
  background-image: url(../res/svg/siteicon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  margin-top: 20px;
}
.pageHeader__pageTitle {
  order: 2;
  position: absolute;
  right: 0;
  bottom: 80px;
  font-size: 40px;
  color: #fff;
  font-weight: 900;
  text-shadow: 1px  1px 5px #000, -1px -1px 5px #000;
  letter-spacing: 10px;
}

/*各ページ共通のヘッダー*/
.headerUnder {
  display: block;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 60px;
  z-index: -1;
  position: relative;
  box-shadow: 1px 1px 10px #000;
}
.headerUnder::after {
  display: block;
  content: "";
  background-image: url(../res/svg/marukado.svg);
  background-repeat: no-repeat;
  background-size: auto;
  width: 210px;
  height: 179px;
  position: absolute;
  top: -178px;
  left: 0;
  z-index: -1;
}

/*ページヘッダー下の空間用の空要素*/
.menuBtn {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  right: 0;
  /*ボタン（インプット）*/
}
.menuBtn__btn {
  display: none;
  /*ボタン（オープンラベル）*/
  /*ボタン（クローズラベル）*/
}
.menuBtn__btn--open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
  /*ボタン（FontAwesome）*/
}
.menuBtn__btn--open::after {
  display: block;
  content: "\f0c9";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 45px;
  line-height: 1.1;
  color: #fff;
  font-family: "FontAwesome";
  text-align: center;
  text-shadow: 1px  1px 1px #666, -1px -1px 1px #666;
  background-color: rgba(255, 255, 255, 0.2);
}
.menuBtn__btn--close {
  display: none;
  background: black;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: .3s ease-in-out;
}

/*ハンバーガーメニュー・ボタン*/
#btn-input:checked ~ .menuBtn__btn--close {
  display: block;
  /*カバーを表示*/
  opacity: .5;
}

/*チェックが入ったらもろもろ表示*/
#btn-input:checked ~ .globalNavi {
  transform: translateY(0px);
}

.globalNavi {
  width: 100%;
  height: 180px;
  position: fixed;
  top: 0;
  right: 50px;
  z-index: 9999;
  transition: .3s ease-in-out;
  transform: translateY(-130%);
}
.globalNavi__list {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
}
.globalNavi__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  position: relative;
  font-size: 20px;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.globalNavi__link:hover .globalNavi__text::after {
  display: block;
  height: 100%;
  opacity: 0.7;
}
.globalNavi__link:nth-of-type(1) .globalNavi__text::after {
  background-color: var(--Color-news);
}
.globalNavi__link:nth-of-type(2) .globalNavi__text::after {
  background-color: var(--Color-service);
}
.globalNavi__link:nth-of-type(3) .globalNavi__text::after {
  background-color: var(--Color-migration);
}
.globalNavi__link:nth-of-type(4) .globalNavi__text::after {
  background-color: var(--Color-tourism);
}
.globalNavi__link:nth-of-type(5) .globalNavi__text::after {
  background-color: var(--Color-access);
}
.globalNavi__link:nth-of-type(6) .globalNavi__text::after {
  background-color: var(--Color-login);
}
.globalNavi__link:nth-of-type(1):hover .globalNavi__text::after {
  background-color: var(--Color-news);
}
.globalNavi__link:nth-of-type(2):hover .globalNavi__text::after {
  background-color: var(--Color-service);
}
.globalNavi__link:nth-of-type(3):hover .globalNavi__text::after {
  background-color: var(--Color-migration);
}
.globalNavi__link:nth-of-type(4):hover .globalNavi__text::after {
  background-color: var(--Color-tourism);
}
.globalNavi__link:nth-of-type(5):hover .globalNavi__text::after {
  background-color: var(--Color-access);
}
.globalNavi__link:nth-of-type(6):hover .globalNavi__text::after {
  background-color: var(--Color-login);
}
.globalNavi__text {
  display: block;
  width: 32px;
  height: 100%;
  padding: 10% 5px 0;
  border: 1px solid #fff;
  box-shadow: 1px 1px 10px #000;
  color: #fff;
  text-align: left;
  line-height: 1;
  text-shadow: 1px  1px 1px #000, -1px -1px 1px #000;
  position: relative;
}
.globalNavi__text::after {
  display: block;
  content: "";
  width: 100%;
  height: 8%;
  padding: 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: .5s;
  text-align: center;
}

/*ナビゲーションの中身*/
/* ****************************** */
/* [2] グローバルフッター設定 */
/* ****************************** */
.globalFooter {
  background-color: #363636;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  border-top: 5px solid #fff;
  box-shadow: 1px 1px 10px #000;
  padding: 20px 0 0;
  margin-top: 150px;
}
.globalFooter__copyright {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
  color: #000;
  text-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff;
  text-align: center;
}

.footerNavi {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footerNavi__list {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
}
.footerNavi__link {
  width: 150px;
  padding: 10px;
  border: 3px solid transparent;
  margin-bottom: 10px;
  text-align: center;
  color: #000;
  transition: .8s;
}
.footerNavi__link:hover {
  border-bottom-color: #fff !important;
}
.footerNavi__link:nth-of-type(1) {
  border-bottom-color: var(--Color-news);
}
.footerNavi__link:nth-of-type(1):hover {
  background-color: var(--Color-news);
}
.footerNavi__link:nth-of-type(2) {
  border-bottom-color: var(--Color-service);
}
.footerNavi__link:nth-of-type(2):hover {
  background-color: var(--Color-service);
}
.footerNavi__link:nth-of-type(3) {
  border-bottom-color: var(--Color-migration);
}
.footerNavi__link:nth-of-type(3):hover {
  background-color: var(--Color-migration);
}
.footerNavi__link:nth-of-type(4) {
  border-bottom-color: var(--Color-tourism);
}
.footerNavi__link:nth-of-type(4):hover {
  background-color: var(--Color-tourism);
}
.footerNavi__link:nth-of-type(5) {
  border-bottom-color: var(--Color-access);
}
.footerNavi__link:nth-of-type(5):hover {
  background-color: var(--Color-access);
}
.footerNavi__link:nth-of-type(6) {
  border-bottom-color: var(--Color-login);
}
.footerNavi__link:nth-of-type(6):hover {
  background-color: var(--Color-login);
}

/*フッターナビゲーション*/
.externalLinks {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 40px auto;
}
.externalLinks__banner {
  display: flex;
  align-items: center;
  width: 234px;
  box-shadow: 1px 1px 10px #000;
  margin-bottom: 20px;
  color: #000;
  text-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff;
  position: relative;
}
.externalLinks__banner:hover {
  border: 1px solid #000;
  box-shadow: none;
  transform: translateY(-3px);
}

/*外部リンク集*/
.siteSearch {
  width: 100%;
  box-shadow: 1px 1px 3px #000;
  margin: 20px auto;
  transition: all .2s;
  font-size: 12px;
}
.siteSearch .searchBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  font-size: 18px;
}
.siteSearch .searchBox__form {
  background-color: rgba(204, 204, 204, 0.43);
  height: 40px;
  padding: 10px;
  border: 1px solid #969696;
  background-color: transparent;
}
.siteSearch .searchBox__btn {
  height: 40px;
  background-color: transparent;
  border: 1px solid #969696;
  padding: 10px;
  color: #000;
}
.siteSearch .searchBox__label {
  padding: 10px;
}

/*サイト内検索*/
/* ****************************** */
/* [2] グローバルフォーム設定 */
/* ****************************** */
.globalForm {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: rgba(190, 190, 190, 0.5);
  width: 90%;
  padding: 40px 20px 20px;
  border: 1px solid #666;
  box-shadow: 1px 1px 5px #666;
  margin: 0 auto;
  color: #000;
}

/* ****************************** */
/* [3] 検索結果ページ */
/* ****************************** */
#page-search {
  background-image: url(../res/image/image_031.jpg);
}

.searchPanel {
  width: 100%;
  overflow: hidden;
}
.searchPanel input, .searchPanel textarea {
  padding: 10px !important;
}
.searchPanel input:hover, .searchPanel textarea:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: #000 !important;
}
.searchPanel .wpcf7 {
  background-color: rgba(255, 255, 255, 0.6);
  width: 80%;
  max-width: 900px;
  padding: 10px;
  margin: 0 auto;
}

.Entered {
  color: #666 !important;
  background-color: #ccc !important;
}
.Entered:hover {
  color: #666 !important;
  background-color: #ccc !important;
}

/*inputフォームにログイン情報が自動入力されていた場合のclass*/
select {
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  padding: 10px;
  border: 1px solid #696969 !important;
  border-radius: none;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  word-break: break-all;
}

#userSubmit {
  width: 80% !important;
  margin: 20px auto 0;
}
#userSubmit:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
#userSubmit:active {
  background-color: #fff;
  color: #000;
}

/*送信ボタン*/
.wpcf7-form {
  width: 100%;
  font-size: 18px;
  padding: 10px;
}
.wpcf7-form label {
  background-color: transparent;
  display: block;
  width: 100%;
}
.wpcf7-form input, .wpcf7-form textarea {
  background-color: transparent;
  display: block;
  width: 100%;
  padding: .3em;
  border: 1px solid #696969 !important;
}
.wpcf7-form .userRequired {
  color: #f00;
}

.formLabel {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 3px !important;
}
.formLabel__text {
  padding-left: 10px;
  border-left: 5px solid #969696 !important;
}

.userRequired,
#userRequired {
  color: #f00 !important;
}

/* ****************************** */
/* [3] メインコンテンツ設定【共通】 */
/* ****************************** */
body[id*="page-"] {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.mainConts {
  order: 1;
  background-color: transparent;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
.mainConts--top {
  width: 50%;
}
.mainConts--page {
  width: 75%;
}
.mainConts__title {
  color: #000;
  margin: 20px 5px;
  font-size: 28px;
  text-align: center;
  font-weight: 900;
  text-shadow: 1px  1px 5px #fff, -1px -1px 5px #fff;
}
.mainConts__text {
  padding: 10px;
}

/*メインコンテンツ領域*/
.pageNews {
  background-color: rgba(255, 255, 255, 0.84);
  width: 95%;
  max-width: 800px;
  padding: 10px;
  margin: -20px auto 80px;
  box-shadow: 2px 2px 10px #000;
}
.pageNews__title {
  padding: 10px;
  font-size: 20px;
  border-bottom: 1px dotted #000;
}

.pageNewsBox {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  word-break: break-all;
  border: 1px solid transparent;
  font-size: 16px;
}
.pageNewsBox:not(.Before):hover {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: #969696;
  color: #000;
}
.pageNewsBox__title {
  order: 2;
  width: 55%;
  padding: 10px;
}
.pageNewsBox__date {
  order: 1;
  width: 150px;
  min-width: 45%;
  min-width: 125px;
  padding: 10px 0 10px 10px;
}
.pageNewsBox__more {
  width: 50%;
  border: 1px solid #000;
  text-align: center;
  margin: 20px auto 0;
  padding: 10px;
}
.pageNewsBox__more:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}
.pageNewsBox__contents {
  display: none;
}

.newsWindow {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.85);
  width: 90%;
  padding: 10px 10px 80px 10px;
  border-radius: 5px;
  box-shadow: 1px 1px 10px #000;
  margin: -250px 0 0 -45%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99999;
  font-size: 18px;
  transition: .8s;
}
.newsWindow__title {
  order: 1;
  width: 100%;
  padding: 10px;
  border-bottom: 1px dotted #969696;
  text-align: center;
  font-size: 24px;
}
.newsWindow p {
  order: 3;
  width: 70%;
  padding: 10px;
  border-left: 1px dotted #969696;
  border-right: 1px dotted #969696;
  border-bottom: 1px dotted #969696;
}
.newsWindow__date {
  order: 2;
  width: 30%;
  padding: 10px;
  word-break: break-all;
}

.newsBg {
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  padding: 100px;
  position: fixed;
  z-index: 99998;
}
.newsBg--topLeft {
  top: 0;
  left: 0;
}
.newsBg--topRight {
  top: 0;
  right: 0;
}
.newsBg--bottomLeft {
  bottom: 0;
  left: 0;
}
.newsBg--bottomRight {
  bottom: 0;
  right: 0;
}

.iconBlocks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 20px;
  margin: 0 auto;
}
.iconBlocks__link {
  background-color: rgba(255, 255, 255, 0.6);
  width: 150px;
  height: 150px;
  padding: 5px;
  box-shadow: 1px  1px 6px #898989;
  border-radius: 3px;
  margin: 10px 10px 50px;
  text-align: center;
}
.iconBlocks__link:hover {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 1px  1px 1px #666, -1px -1px 1px #666;
  transform: translateY(-3px);
  transition: .5s;
}
.iconBlocks__icon {
  width: 70%;
}
.iconBlocks__text,
.iconBlocks .iconBlocks ul li a {
  display: block;
  width: 100%;
  border-top: 5px;
  font-size: 16px;
}
.iconBlocks__data {
  background-color: #ff0;
  color: #000;
}

.btn > div {
  display: none;
}

.panel {
  display: none;
  background-color: rgba(255, 255, 255, 0.8);
  width: 120%;
  overflow: hidden;
  padding: 10px;
  box-shadow: 1px 1px 10px #000;
  margin-bottom: 40px;
  font-size: 20px;
}
.panel__inputer {
  opacity: 0;
}
.panel h3 {
  padding: 10px;
  font-size: 20px;
  color: #000;
  text-align: center;
  text-shadow: 1px 1px 1px #ccc, -1px -1px 1px #ccc;
}
.panel h3::before, .panel h3::after {
  display: inline;
  content: "―";
  padding: 0 10px;
}
.panel p {
  padding: 10px;
}

/* ****************************** */
/* [4-1] メインコンテンツ設定【住民サービス】 */
/* ****************************** */
#page-service {
  background-image: url(../res/image/image_020.png);
}

/* ****************************** */
/* [4-2] メインコンテンツ設定【移住ガイド】 */
/* ****************************** */
#page-migration {
  background-image: url(../res/image/image_008.png);
}

/* ****************************** */
/* [4-3] メインコンテンツ設定【観光案内】 */
/* ****************************** */
#page-tourism {
  background-image: url(../res/image/image_033.png);
}

.placeBox {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 800px;
  padding: 10px;
  margin: 0 auto 40px;
}
.placeBox__image {
  width: 50%;
}
.placeBox .ImageLeft {
  float: left;
  margin-right: 10px;
}
.placeBox .ImageRight {
  float: right;
  margin-left: 10px;
}
.placeBox__title {
  font-size: 24px;
  padding: 0 10px 10px;
}
.placeBox__text {
  padding: 5px 10px;
  font-size: 16px;
}
.placeBox__text::before {
  content: "　";
}
.placeBox__author {
  display: block;
  padding: 5px 5px 10px;
  text-align: right;
}
.placeBox__serif {
  background-color: #fff9f9;
  max-width: 90%;
  padding: 15px;
  border: 1px dashed #000;
  margin: 10px auto;
  font-size: 16px;
  font-family: "Sawarabi Mincho";
  text-align: center;
}
.placeBox__serif::before, .placeBox__serif::after {
  font-family: "FontaWesome";
  font-weight: 100;
  font-size: 6px;
}
.placeBox__serif::before {
  content: "\f10d";
  padding-right: 5px;
  vertical-align: top;
}
.placeBox__serif::after {
  content: "\f10e";
  padding-left: 5px;
  vertical-align: bottom;
}

/* ****************************** */
/* [4-4] メインコンテンツ設定【アクセス】 */
/* ****************************** */
#page-access {
  background-image: url(../res/image/image_086.jpg);
}

/* ****************************** */
/* [4-5] メインコンテンツ設定【藁埜村について】 */
/* ****************************** */
#page-about {
  background-image: url(../res/image/image_015.png);
}

.sectionBox {
  background-color: rgba(255, 255, 255, 0.8);
  width: 80%;
  padding: 10px 10px 20px;
  margin: 0 auto 40px;
  font-size: 18px;
}
.sectionBox__title {
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
}
.sectionBox__title::before, .sectionBox__title::after {
  content: "—";
  padding: 0 15px;
}

.infoList {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px solid #000;
}
.infoList__title {
  width: 30%;
  display: flex;
  justify-content: space-between;
  padding: 2.5px 0 2.5px 10px;
  margin-bottom: 20px;
  font-weight: 600;
}
.infoList__title::after {
  content: "：";
  display: inline;
  color: #c6c6c6;
}
.infoList__data {
  width: 70%;
  padding: 2.5px 0 2.5px 10px;
  margin-bottom: 20px;
  position: relative;
}
.infoList__map {
  background-color: #ccc;
  width: 100%;
  height: 200px;
}
.infoList sup {
  font-size: 75.5%;
  vertical-align: top;
  position: absolute;
  top: -0.1em;
}

.mapImage {
  display: block;
  width: 100%;
  border: 1px solid #000;
}

/* ****************************** */
/* [4-6] メインコンテンツ設定【マイページ】 */
/* ****************************** */
#page-mypage {
  background-image: url(../res/image/image_002.jpg);
}

#page-mypage #wpmem_login,
#page-mypage #wpmem_reg {
  display: flex;
}

#page-mypage section ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 20px;
  margin: 0 auto;
}

#page-mypage section ul li {
  background-color: rgba(255, 255, 255, 0.6);
  width: 150px;
  height: 150px;
  padding: 5px;
  box-shadow: 1px  1px 6px #898989;
  border-radius: 3px;
  margin: 10px 10px 50px;
  text-align: center;
  background-repeat: no-repeat;
}

#page-mypage section ul li:nth-of-type(1) a {
  background-image: url(../res/icon/icon_mypage-1.svg);
  background-size: 70%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

#page-mypage section ul li:nth-of-type(2) a {
  background-image: url(../res/icon/icon_mypage-2.svg);
  background-size: 70%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

#page-mypage section ul li:hover {
  background-color: rgba(255, 255, 0, 0.9);
  box-shadow: 1px  1px 1px #000, -1px -1px 1px #000;
  transform: translateY(-3px);
  transition: .5s;
}

#page-mypage section ul li a {
  display: block;
  width: 100%;
  height: 100%;
  border-top: 5px;
  font-size: 16px;
}

#page-mypage .div_text {
  background-color: transparent !important;
  width: 90%;
}

#page-mypage .wpmem_msg {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100% !important;
  margin: 0 auto;
  padding: 10px 0;
}
#page-mypage .wpmem_msg p {
  font-size: 18px;
  color: #ed7e7e;
  text-shadow: 1px 1px 1px #ccc, -1px -1px 1px #ccc;
}
#page-mypage .wpmem_msg p::before, #page-mypage .wpmem_msg p::after {
  content: "—";
  display: inline;
  padding: 0 10px;
}

#wpmem_login_form {
  width: 100% !important;
  margin: 0 auto !important;
}

#wpmem_profile_form,
#wpmem_register_form,
#wpmem_login {
  width: 100% !important;
  padding: 0 20% !important;
  color: #fff !important;
  margin: none !important;
  padding: none !important;
  text-shadow: 1px 1px 1px #000, -1px -1px 1px #000;
}
#wpmem_profile_form fieldset,
#wpmem_register_form fieldset,
#wpmem_login fieldset {
  width: 100% !important;
}
#wpmem_profile_form legend,
#wpmem_register_form legend,
#wpmem_login legend {
  padding: 10px;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px #000, -1px -1px 1px #000;
}
#wpmem_profile_form label,
#wpmem_register_form label,
#wpmem_login label {
  display: inline-block !important;
  width: 100%;
  padding: 10px;
  border-top: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
  border-left: 1px solid #fff !important;
  box-sizing: border-box;
  margin: 0 auto !important;
  font-size: 18px;
}
#wpmem_profile_form .div_text,
#wpmem_register_form .div_text,
#wpmem_login .div_text {
  width: 100% !important;
  margin: 0 auto 30px !important;
}
#wpmem_profile_form .div_text input,
#wpmem_register_form .div_text input,
#wpmem_login .div_text input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2) !important;
  padding: 10px !important;
  border: 1px solid #fff !important;
  border-top: none !important;
  border-radius: 0 !important;
  color: #fff !important;
  text-shadow: 1px 1px 1px #000, -1px -1px 1px #000;
}
#wpmem_profile_form .div_text input:focus-within,
#wpmem_register_form .div_text input:focus-within,
#wpmem_login .div_text input:focus-within {
  background-color: #fff !important;
  color: #000 !important;
  text-shadow: none !important;
}
#wpmem_profile_form .button_div,
#wpmem_register_form .button_div,
#wpmem_login .button_div {
  display: block;
  width: 100% !important;
  text-align: left !important;
}
#wpmem_profile_form .button_div input[type="submit"],
#wpmem_register_form .button_div input[type="submit"],
#wpmem_login .button_div input[type="submit"] {
  display: block;
  background-color: transparent !important;
  width: 100%;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 15px;
  color: #fff;
  text-shadow: 1px 1px 1px #000, -1px -1px 1px #000;
}
#wpmem_profile_form .button_div input[type="submit"]:hover,
#wpmem_register_form .button_div input[type="submit"]:hover,
#wpmem_login .button_div input[type="submit"]:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
}
#wpmem_profile_form .button_div input[type="submit"]:active,
#wpmem_register_form .button_div input[type="submit"]:active,
#wpmem_login .button_div input[type="submit"]:active {
  background-color: #fff !important;
  color: #000;
  text-shadow: none !important;
}

#wpmem_login #wpmem_pwdchange_form {
  width: 100%;
}

.req {
  text-shadow: none !important;
}

#rememberme {
  display: inline-block !important;
  width: 5% !important;
}
#rememberme + label {
  display: inline-block !important;
  width: 90% !important;
  border: none !important;
}

.link-text {
  width: 100% !important;
  text-align: center !important;
}
.link-text-forgot {
  display: block;
}
.link-text-forgot a {
  color: #f77;
  display: inline-block;
}

.usenameBox {
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  padding: 10px;
  margin: 0 auto;
  font-size: 16px;
  text-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff;
  text-align: center;
}
.usenameBox__name:first-child {
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 1px 1px #000, -1px -1px 1px #000;
}

@media screen and (max-width: 720px) {
  .div_text {
    width: 100% !important;
  }
  .div_text input {
    display: block;
    width: 100% !important;
  }

  #wpmem_reg label.text,
  #wpmem_reg label.checkbox,
  #wpmem_reg label.textarea,
  #wpmem_reg label.select {
    width: 100% !important;
  }
}
/* ****************************** */
/* [4-6] メインコンテンツ設定【ご挨拶】 */
/* ****************************** */
/* ****************************** */
/* [4-7] メインコンテンツ設定【歴史】 */
/* ****************************** */
#page-history {
  background-image: url(../res/image/image_019.png);
}

.history {
  background-color: rgba(255, 255, 255, 0.8);
  width: 80%;
  padding: 10px;
  border: 1px solid #000;
  margin: 0 auto 40px;
  position: relative;
}
.history__title {
  background-color: #bcbcbc;
  width: 100%;
  padding-left: 10px;
  border-left: 10px solid #000;
  margin: 0 auto;
  font-size: 24px;
}
.history__text {
  padding: 5px;
  margin: 10px 0;
  font-size: 16px;
}
.history__text::before {
  content: "　";
}
.history__serif {
  background-color: #fff9f9;
  width: 90%;
  padding: 30px;
  border: 1px dashed #000;
  margin: 20px auto;
  font-size: 18px;
  font-family: "Sawarabi Mincho";
  text-align: center;
}
.history__serif::before {
  content: "\f10d";
  padding-right: 5px;
  font-family: "FontaWesome";
  font-weight: 100;
  font-size: 6px;
  vertical-align: top;
}
.history__serif::after {
  content: "\f10e";
  padding-left: 5px;
  font-family: "FontaWesome";
  font-weight: 100;
  font-size: 6px;
  vertical-align: bottom;
}
.history__author {
  display: block;
  background-color: #fafad2;
  padding: 5px 5px 10px;
  border-bottom: 1px dotted #000;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: right;
}

/* ****************************** */
/* [4-8] メインコンテンツ設定【サイトマップ】 */
/* ****************************** */
/* ****************************** */
/* [4-9] メインコンテンツ設定【404】 */
/* ****************************** */
#page-404 {
  background-image: url(../res/image/image_032.png);
}

.error {
  background-color: rgba(255, 255, 255, 0.5);
}

/**********************************************/
/***********************/
/*モバイル用CSS*/
/***********************/
/**********************************************/
@media all and (max-width: 768px) {
  .topHeader {
    justify-content: center;
  }
  .topHeader::before {
    display: none;
  }

  .siteTitle {
    width: 50%;
  }
  .siteTitle__title {
    font-size: 55px;
  }

  .topNavi {
    width: 50%;
  }
}

/*# sourceMappingURL=common.css.map */
