@charset "UTF-8";
/******************** CSS RESET ********************/
*, *:before, *:after {
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #7098FF;
  margin: 1em 0;
  padding: 0;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
address {
  font-style: normal;
}
input:not([type="radio"]):not([type="checkbox"]), button, textarea {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}
input[type="radio"] {
  margin-top: 0;
  padding-top: 0;
}
input, label {
  vertical-align: middle;
}
legend {
  width: 100%;
}
/******************** 共通設定 ********************/
body {
  font-family: arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}
@media print, screen and (min-width: 769px) and (max-width: 1000px) {
  body {
    width: 1000px;
  }
}
@media (min-width: 769px) {
  body {
    position: static !important;
    width: 100% !important;
  }
}
/**** テキスト ****/
p, li {
  margin-top: 12px;
}
.small {
  font-size: 85%;
}
/**** リンク ****/
a:link {
  text-decoration: underline;
  color: #2b3095;
}
a:visited {
  text-decoration: underline;
  color: #791e78;
}
a:hover {
  text-decoration: none;
  color: #9f0000;
}
a:active {
  text-decoration: none;
  color: #9f0000;
}
.link_white:link {
  text-decoration: underline;
  color: #fff;
}
.link_white:visited {
  text-decoration: underline;
  color: #eee;
}
.link_white:hover {
  text-decoration: underline;
  color: #ffff00;
}
.link_white:active {
  text-decoration: underline;
  color: #ffff00;
}
/**** 別ウィンドウで開く ****/
.window {
  display: inline-block;
  font-size: 62.5%;
  font-weight: normal;
  background: #F1FDD2;
  color: #333;
  border-radius: 4px;
  padding: 1px 4px;
  margin: 0 4px;
  border: 1px solid #C1DB81;
  vertical-align: text-bottom;
  word-wrap: break-word;
}
h2 .window {
  font-size: 56.25%;
}
.main_naka h2 .window {
  font-size: 49%;
}
/**** 本文へ_スキップ用リンク ****/
.skip {
  position: relative;
  text-align: center;
  width: 100%;
  margin: 0;
}
.skip a {
  background-color: #fff;
  width: 1px;
  font-size: 0.1%;
  line-height: 0.1;
  position: absolute;
  top: auto;
  left: -3000px;
  z-index: 9999;
  padding: 4px 0;
}
.skip a:active, .skip a:focus {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-size: 100%;
  left: 0;
  right: 0;
  top: 0;
  line-height: 1.5;
}
.skip_sp {
  display: none;
}
/**** フォーム ****/
#body input, #body button, #body textarea {
  background: #fff;
  border: 1px solid #757575;
  font-size: 85%;
}
/* text,textarea */
#body input[type="text"], #body textarea, #body input[type="password"] {
  font-family: arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: #fff;
  border: 1px solid #757575;
  padding: 8px 6px;
}
/* select */
#body select[size], #body select[multiple], #body select[size][multiple] {
  padding: 6px;
}
/* submit,reset,button */
#body input[type="submit"], #body input[type="reset"], #body button[type="button"], #body button {
  background: #555;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 6px 16px;
}
#body input[type="submit"]:hover, #body input[type="reset"]:hover, #body button[type="button"]:hover, #body button:hover {
  background: #666;
}
/**** その他 ****/
.anchor, .notit {
  display: block;
  height: 1px;
  margin-top: -1px;
}
.date {
  display: inline-block;
  min-width: 160px;
}
.noscript {
  font-size: 85%;
  color: #a90000;
}
.none {
  display: none;
}
/******************** レイアウトCSS ********************/
/******************************
ここに該当liguid.cssを入れる
******************************/
.design {
  clear: both;
}
@media only screen and (max-width: 768px) {
}
/********************** ヘッダー **********************/
.mainHeader {
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .mainHeader {
    overflow: hidden;
    min-width: 100%;
    position: relative;
  }
}
/**** ヘッダー上段リンク ****/
.h_top_wrap {
  background: #cbdbff;
  border-bottom: 3px solid #0e0e88;
  font-size: 75%;
  padding-bottom: 8px;
  overflow: hidden;
}
.h_top {
  width: 1000px;
  margin: 0 auto;
}
.h_top .h_toplist01 {
  float: left;
}
.h_top .h_toplist02 {
  float: right;
}
.h_top .h_toplist01 > li {
  float: left;
  margin-top: 8px;
  padding: 0 16px;
  position: relative;
}
.h_top .h_toplist01 > li::before {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: 0;
  border-right: 2px solid #757575;
  border-bottom: 2px solid #757575;
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
}
.h_top .h_toplist02 > li {
  float: left;
  margin-left: 8px;
  margin-top: 8px;
}
.h_top .h_toplist02 > li a {
  display: block;
  border: 1px solid #7098FF;
  border-radius: 4px;
  background: #fff;
  text-decoration: none;
  padding: 0 4px;
}
.h_top .h_toplist02 > li.btn_first {
  margin-left: 0;
}
.h_top .h_toplist02 > li.btn_end {
  margin-right: 16px;
}
@media only screen and (max-width: 768px) {
  .h_top_wrap {
    display: none;
  }
}
/* フォントサイズ */
.font_size {
  font-size: 82%;
  display: flex;
  align-items: center;
  background: #F1FDD2;
  border-radius: 6px;
  padding: 5px 8px;
  margin-left: 12px;
  margin-bottom: 5px;
}
.font_size .font_tit {
  margin: 0 6px 0 0;
}
.font_tit {
  background: url('img/icon_font.svg') no-repeat center left;
  background-size: 18px 18px;
  padding-left: 24px;
}
.font_size ul {
  display: flex;
}
.font_size ul li {
  position: relative;
  margin: 0 0 0 8px;
}
.font_size ul li:last-child {
  margin-right: 0;
}
.font_size ul li a {
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  padding: 2px 6px;
  text-decoration: none;
}
.font_size ul li:first-child a {
  background: #fff;
  border-color: #197BBC;
  color: #2b3095;
}
/* ふりがな　音声読み上げ */
.voice, .furigana {
  margin-left: 12px;
  margin-bottom: 5px;
}
.voice a, .furigana a {
  font-size: 80%;
  display: inline-block;
  border: 1px solid #197BBC;
  border-radius: 4px;
  text-decoration: none;
  padding: 6px 6px 6px 28px;
}
.voice a {
  background: url(img/icon_voice.svg) no-repeat center left 5px;
  background-size: 16px 16px;
}
.furigana a {
  background: url(img/icon_furigana.svg) no-repeat center left 5px;
  background-size: 16px 16px;
}
/* リンク */
.head_sub_list {
  display: flex;
  margin-left: 16px;
}
.head_sub_list li {
  font-size: 78%;
  position: relative;
  padding: 0;
  margin-left: 8px;
  margin-top: 0;
}
.head_sub_list li:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 9px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
  transform: rotate(-45deg);
}
.head_sub_list li a {
  background: #edf2ff;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px 5px 22px;
}
/**** ヘッダーメイン ****/
.head {
  position: relative;
  z-index: 100;
}
.head_in {
  display: flex;
  padding: 0 12px;
  max-width: 1224px;
  margin: 0 auto;
  position: relative;
}
.h_main {
	max-width: 1224px;
	padding: 0 12px 10px;
	margin: 0 auto;
	overflow: hidden;
}
.h_main_in{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.h_main .h1 img {
  width: 387px;
}
.h_mainList01{
}
.h_mainList01 li {
  margin-top: 0;
}
.h_mainList01 li a {
  display: block;
  border: 2px solid #197BBC;
  border-top: none;
  background: #fff;
  font-size: 87%;
  padding: 9px 12px 9px 36px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  position: relative;
/*  min-width: 205px;*/
}
.h_mainList01 li a::before{
	content: "";
	position: absolute;
	width: 16px;
	height: 12px;
	background: url("img/icon_arrow_bl.svg") no-repeat center / contain;
	left: 12px;
	top: 13px;
	transform: scale(-1,1);
}
.h_mainList01 li a:hover {
 
}
.h_mainRight{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

@media only screen and (max-width: 768px) {
  .head_in {
    display: none;
  }
  .h_main{
  	padding: 15px 12px 10px;
	border-top: 4px solid #197BBC;
  }
  .h_main_in{
  	flex-direction: column;
	align-items: flex-start;
  }
   .h_main .h1 img{
	height: 52px;
	width: auto;
   }
/*
  .h_main .h1 img{
  	width: 320px;
	height: 52px;
  }
*/
  .h_mainRight{
  	align-items: center;
	width: 100%;
	margin-top: 11px;
  }
}
@media only screen and (max-width: 600px) {
	  .h_main .h1{
	  	max-width: 293px;
		width: calc(100% - 78px);
		height: 52px;
	  }
	 .h_main .h1 img{
		height: auto;
		}
}
@media only screen and (max-width: 320px) {
	  .h_main .h1{
		width: calc(100% - 60px);
	  }
}

/** サブ **/
.head_sub {
  margin-left: auto;
  margin-top: 10px;
}
.head_sub_top, .head_sub_bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.head_sub_top {
  margin-bottom: 10px;
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .head_in {
    padding: 8px 10px;
  }
  .head_sub {
    display: none;
  }
  .h_main .h_mainList01 > li {
    margin-top: 4px;
  }
}
@media only screen and (max-width: 480px) {
  .h_main .h_mainList01 {
    display: block;
    width: 100%;
  }
  .h_main .h_mainList01 > li {
    margin: -4px 0 0 10px;
  }
  .h_main .h_mainList01 > li a {
    margin: 0;
  }
}
/* 言語 */
.langage {
  background: #F1FDD2;
  border-radius: 6px;
  font-size: 76%;
  padding: 9px 2px;
  letter-spacing: 0;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.langage li {
  border-right: 1px solid #197BBC;
  margin: 0;
  padding: 0 12px;
}
.langage li:last-child {
  border-right: 0;
}
/* 検索ボックス */
.h_main .src_box {
  width: 370px;
  margin: 4px 0 9px;
}
.h_main .src_box .q,
#sidr .src_box .q {
  float: left;
  width: calc(100% - 96px);
  margin: 0;
  height: 38px;
  padding: 0 6px !important;
  border: 1px solid #197BBC !important;
  border-right: none;
	border-radius: 4px 0 0 4px;
}
.h_main .src_box .q{
  border: 1px solid #197BBC !important;
}
#sidr .src_box .q{
	width: 70%;
}
.h_main .src_box #search_button, #sidr .src_box #search_button_sp {
  width: 96px;
  min-height: 38px;
  margin: 0;
  padding: 0;
  background: #D9F2FF;
  font-size: 80%;
  cursor: pointer;
  border: 1px solid #197BBC;
  border-left: none;
  white-space: normal;
  border-radius: 0 4px 4px 0;
}
#sidr .src_box #search_button_sp{
	width: 30%;
	color: #2B3095;
}
.h_main .src_box #search_button{
  border: 1px solid #197BBC;
  border-left: 0;
  color: #2B3095;
  position: relative;
  padding: 0 23px 0 46px;
}
.h_main .src_box #search_button::before{
	content: "";
	position: absolute;
	background: url("img/icon_search.svg") no-repeat center / contain;
	width: 16px;
	height: 16px;
	left: 23px;
	top: 10px;
}
.h_main .src_box #search_button:hover{
  
}

@media only screen and (max-width: 768px){
	.h_main .src_box{
		width: 100%;
	}
}

/* ヘッダーナビゲーション */
.h_list{
	display: flex;
	gap: 6px;
	margin-left: 20px;
}
.h_list > li {
	margin: 0;
}
.h_list > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 4px;
	color: #fff;
	text-decoration: none;
 	background-color: #197BBC;
	border-radius: 4px;
	padding: 5px 13px 5px;
	transition: .3s;
}
.h_list > li > a img{
	width: 28px;
}
.h_list > li > a > strong {
  display: block;
}
.h_list > li > a:hover{
	background-color: #10659d;
}

@media only screen and (max-width: 768px){
	.h_list{
		margin: 0;
		gap: 5px;
		width: 100%;
	}
	.h_list > li{
		flex: 1;
	}
	.h_list > li > a{
		height: 100%;		
	}
}
@media only screen and (max-width: 480px){
	.h_list > li > a{
		font-size: 87%;
		padding: 6px 4px;
		letter-spacing: 0;
	}
	.h_list > li > a img{
		width: 24px;
	}
}

/**** グローバルナビ ****/
.g_navi {
	width: 100%;
	max-width: 1224px;
	margin: 15px auto 0;
	padding: 0 12px;
}
.g_navi_in {
	display: flex;
	gap: 6px;
}
.g_navi_in > li {
	margin: 0;
}
.g_navi_in > li > a {
	display: block;
    text-align: center;
    text-decoration: none;
    background-color: #D9F2FF;
    border-radius: 10px;
    font-size: 113%;
    padding: 15px 10px 13px;	
}
.g_navi_in > li > a:hover, .g_navi_in > li.active > a {
	background-color: #197BBC;
    color: #fff;
}

@media only screen and (max-width: 768px){
	.g_navi{
		display: none;
	}
}

/**** 追従ナビ ****/
/*
.clone-nav {
  background: rgba(255, 255, 255, 0.9);
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  transition: .4s;
  transform: translateY(-120%);
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.is-show {
  transform: translateY(0);
}

.clone-nav .head_sub {
  display: none;
}
.clone-nav .head_in {
  width: auto;
}
.clone-nav .g_navi {
}
.clone-nav .g_navi_in li .g_navi_in_sub {
  display: none !important;
}
.clone-nav .h_mainList01{
	position: static;
}
.clone-nav .h_mainList01 li a{
	font-size: 75%;
	padding: 5px 8px 5px 25px;
	min-width: auto;
}
.clone-nav .h_mainList01 li a::before{
	top: 7px;
	left: 6px;
	width: 14px;
	height: 10px;
}
.clone-nav .h_main .src_box{
	width: 340px;
}
.clone-nav .h_main .src_box .q{
	height: 33px;
	width: calc(100% - 76px);
}
.clone-nav .h_main .src_box #search_button{
	min-height: 33px;
	width: 76px;
	padding: 0 0 0 14px;
}
.clone-nav .h_main .src_box #search_button::before{
	top: 7px;
	left: 12px;
}


@media (max-width: 768px) {
  .clone-nav {
    display: none;
  }
}
*/
/**** スマホメニューに関するスタイル ****/
#menu_button {
  float: right;
  display: inline-block;
  position: absolute;
  z-index: 100;
  right: 12px;
  top: 0;
  margin-top: 15px;
}
#menu_button a {
  position: relative;
  background: #D9F2FF;
  border-radius: 6px;
  color: #333;
  font-size: 70%;
  display: inline-block;
  text-decoration: none;
  letter-spacing: -0.5px;
  text-align: center;
  padding-top: 34px;
  min-height: 54px;
  width: 54px;
}
#menu_button a .icon_ham {
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -15px;
  display: inline-block;
  background: #333;
  height: 3px;
  width: 30px;
}
#menu_button a .icon_ham:before, #menu_button a .icon_ham:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -15px;
  background: #333;
  height: 3px;
  width: 30px;
}
#menu_button a .icon_ham:before {
  top: 8px;
}
#menu_button a .icon_ham:after {
  top: 16px;
}
@media print, screen and (min-width: 769px) {
  #menu_button, #lan_drop {
    display: none !important;
  }
}
#sidr {
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 9999;
  width: 260px;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 100%;
  background: #fff;
  border-left: 4px solid #197BBC;
  box-sizing: border-box;
  color: #333;
}
@media print, screen and (min-width: 769px) {
  #sidr {
    display: none !important;
  }
}
#sidr .sidr-inner {
  padding: 0 0 15px;
}
.sidr.right {
  left: auto;
  right: -260px;
}
#sidr .close {
  text-align: left;
  position: relative;
  padding: 0;
  margin: 0;
}
#sidr .close a {
  background: #197BBC;
  display: inline-block;
  color: #fff;
  padding: 14px 10px 14px 32px;
  position: relative;
  width: 100%;
}
#sidr .close a:before, #sidr .close a:after {
  content: '';
  background: #fff;
  height: 2px;
  width: 16px;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: 0;
  transform: rotate(-45deg);
}
#sidr .close a:after {
  transform: rotate(45deg);
}
#sidr .src_box {
  padding: 10px;
  border-bottom: 3px solid #197BBC;
}
#sidr ul {
  display: block;
  border-bottom: 3px solid #197BBC;
  margin: 0;
  padding: 0;
}
#sidr ul li {
  background: none;
  border-bottom: 1px solid #197BBC;
  display: block;
  text-align: left;
  margin: 0;
  padding: 0;
  position: relative;
}
#sidr ul li:before {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 14px;
  height: 10px;
	background: url("img/icon_arrow_bl.svg") no-repeat center / contain;
	transform: translateY(-50%);
}
#sidr ul li:last-child {
  border-bottom: none;
}
#sidr ul li a {
  display: inline-block;
  padding: 12px 24px 12px 12px;
  text-decoration: none;
  width: 100%;
}
#sidr ul.sidr_navi_sub {
  display: flex;
  flex-wrap: wrap;
}
#sidr ul.sidr_navi_sub li {
  font-size: 85%;
  width: 50%;
}
#sidr ul.sidr_navi_sub li:nth-child(2n+1) {
  border-right: 1px solid #343497;
}
#sidr ul.sidr_navi_sub li a {
  letter-spacing: -0.01em;
  font-size: 89%;
}
.sidr_mainsite {
  background: #D9F2FF;
}
#sidr ul.sidr_navi_sub02 {
  font-size: 85%;
  padding: 10px 8px 4px;
  display: flex;
  flex-wrap: wrap;
}
#sidr ul.sidr_navi_sub02 li {
  border: 0;
  margin-right: 1.25%;
  margin-bottom: 6px;
  width: 24%;
}
#sidr ul.sidr_navi_sub02 li:last-child {
  margin-right: 0;
}
#sidr ul.sidr_navi_sub02 li:before {
  display: none;
}
#sidr ul.sidr_navi_sub02 li a {
  display: inline-block;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 70%;
  letter-spacing: -0.01em;
  padding: 6px 2px;
  text-align: center;
}
/**** 支援機能 ****/
#sidr .side_shien {
  background: #cbdbff;
}
#sidr ul.sidr_navi02 {
  border-bottom: 0;
  padding: 10px 10px 4px;
  display: flex;
  flex-wrap: wrap;
}
#sidr ul.sidr_navi02 li {
  border: 0;
  margin-right: 1.25%;
  margin-bottom: 6px;
  width: 24%;
}
#sidr ul.sidr_navi02 li:nth-of-type(4n) {
  margin-right: 0;
}
#sidr ul.sidr_navi02 li:before {
  display: none;
}
#sidr ul.sidr_navi02 li a {
  display: inline-block;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 70%;
  letter-spacing: -0.01em;
  padding: 6px 2px;
  text-align: center;
}
#sidr ul.sidr_navi03 {
  display: flex;
  border-top: 1px solid #bbb;
}
#sidr ul.sidr_navi03 li {
  border-bottom: 0;
  font-size: 85%;
  width: 50%;
}
#sidr ul.sidr_navi03 li:nth-child(odd) {
  border-right: 1px solid #bbb;
}
/*********** フッター ***********/
.main_footer {

}
@media only screen and (max-width: 768px) {
  .main_footer {
    min-width: 100%;
  }
}
/**** マイページのスタイル ****/
.online_strage_a {
  padding-bottom: 24px;
}
.online_strage_a .mypage {
  width: 1000px;
  margin: 0 auto;
}
.online_strage_a .mypage_h2_wrapper {
  background-color: #cbddff;
  padding-left: 16px;
}
.online_strage_a .mypage_title {
  float: left;
  color: #fff;
  margin: 0;
  padding: 0;
}
.online_strage_a .mypage_h2_wrapper p {
  float: right;
}
.online_strage_a .mypage_contents {
  background-color: #edf2ff;
  padding: 4px 16px 16px;
}
.online_strage_a .mypage_list li {
  display: inline-block;
  font-size: 85%;
}
.online_strage_a .mypage_list li p.online_strage_title {
  background: #fff;
  border: 1px solid #7098FF;
  padding: 2px 8px;
  margin: 0;
  border-radius: 4px;
}
.online_strage_a .online_strage button {
  background: #fff;
  color: #333;
  font-size: 68.75%;
  padding: 2px 4px;
  margin: 12px 0;
  vertical-align: bottom;
}
#body .online_strage_a .online_strage button[type="button"] {
  background: #fff;
  color: #222;
  font-size: 75%;
  padding: 4px 6px;
}
#body .online_strage_a .online_strage button[type="button"]:hover {
  background: #efefef;
}
@media only screen and (max-width: 768px) {
  .online_strage_a {
    padding: 0 10px 24px;
  }
  .online_strage_a .mypage {
    width: 100%;
  }
}
/**** ピックアップのスタイル ****/
.design .main_naka .pickup_post {
  margin-top: 24px;
}
.design .main_naka .pickup_post .category_p01 {
  margin-top: 0;
}
/**** トップへ戻る ****/
.foot_modori {
	background: url("img/foot_bg.png") no-repeat top center / cover;
}
.foot_modori .modoriin {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 0 12px;
}
.foot_modori a {
	margin-top: 86px;
	text-decoration: none;
	line-height: 0;
	position: relative;
} 
.foot_modori a img{
  	width: 142px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -86px;
}
.foot_modori a span{
	display: flex;
	align-items: center;
	min-height: 73px;
	padding: 35px 18px 24px;
	background-color: #F1FDD2;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	transition: .3s;
}
.foot_modori a:hover span{
	background-color: #e0f3ae;
	box-shadow: 0 0 1px rgba(0,0,0,.1);
}
@media only screen and (max-width: 768px) {
  .foot_modori {
    padding: 0 10px;
	background-position: top left;
  }
  .foot_modori .modoriin {
    width: 100%;
    padding: 0;
  }
}

/**** メインフッター ****/
.foot_wrap {
  background: #D9F2FF;
}
.foot_list_wrap {
	padding-top: 18px;
}
.main_footer li{
	font-size: 88%;
}
.main_footer .foot_wrap li::after{
	border: none;
	background-color: #197BBC;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	transform: rotate(0);
	top: 0.3em;
}

.foot_list {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 12px;
}
.foot_list ul {
  display: flex;
}
.foot_list li {
  padding: 0;
  display: inline-block;
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
}
.foot_list li::after {
  display: block;
  content: '';
  position: absolute;
  top: .4em;
  left: -16px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #757575;
  border-bottom: 2px solid #757575;
  transform: rotate(-45deg);
}
.foot {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 12px 20px;
  display: flex;
}
.foot_link li {
  padding: 0;
  display: inline-block;
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
}
.foot_link li::after {
  display: block;
  content: '';
  position: absolute;
  top: .4em;
  left: -16px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #757575;
  border-bottom: 2px solid #757575;
  transform: rotate(-45deg);
}
.foot_id {
  margin-top: 22px;
}
.foot_id .logo {
  flex-shrink: 0;
  margin-right: 20px;
  width: 220px;
}
.foot .address {
  margin-top: 8px;
}
.foot .address span.main_ad {
  display: inline-block;
  font-size: 140%;
}
.foot .address02{
	font-size: 88%;
	margin-top: 11px;
}
.foot .address a[href^="tel:"] {
  cursor: default;
  color: #222;
  text-decoration: none;
}
.foot_sub {
  margin-left: auto;
}
.foot_sub ul li {
  margin-top: 5px;
}
.foot_sub ul li a {
  border: 2px solid #a8a8a8;
  background: #ccdbff;
  display: inline-block;
  font-size: 80%;
  text-decoration: none;
  text-align: center;
  padding: 8px 16px 8px 10px;
  width: 190px;
  position: relative;
}
.foot_sub ul li a:before {
  display: block;
  content: '';
  position: absolute;
  top: 15px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
  transform: rotate(-45deg);
}
.foot_copy {
  background: #197BBC;
  font-size: 80%;
  color: #fff;
  padding: 9px 0;
  text-align: center;
}
.foot_copyin {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .foot {
    width: 100%;
    display: block;
  }
  .foot_copyin {
    padding: 0 12px;
    width: 100%;
  }
  .foot .address a[href^="tel:"] {
    cursor: pointer;
    color: #2b3095;
    text-decoration: underline;
  }
  .foot_sub {
    margin-top: 16px;
  }
  .foot_sub ul li a {
    width: 100%;
  }
}
@media only screen and (max-width: 480px){
	.foot_copy{
		font-size: 68.75%;
	}
}

/********************** 領域共通のスタイル **********************/
.main {
  padding-bottom: 40px;
}
.main h2{
	font-size: 200%;
	text-align: center;
	position: relative;
	padding-bottom: 8px;
	margin-bottom: 15px;
}
.main h2::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	border-radius: 50px;
	background-color: #197BBC;
	left: 0;
	right: 0;
	bottom: 0;
}
.main h2.no_border{
	padding-bottom: 0;
	margin-bottom: 0;
}
.main h2.no_border::before{
	display: none;
}
.main .no_h2{
	background: transparent;
	padding: 0;
	margin: 0;
	height: 0;
}
.main li {
  position: relative;
  padding-left: 20px;
}
.main li::before {
 	content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #C1DB81;
    top: 0.35em;
    left: 0;
    border: none;
    transform: rotate(0);
}
.inner{
	max-width: 1224px;
	padding: 0 12px;
	margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .main {
    width: 100%;
  }
  .main h2{
  	font-size: 150%;
  }
}
@media only screen and (max-width: 480px) {
  .main {
    padding-bottom: 20px;
  }
}
/**** 分類1のスタイル ****/
@media only screen and (max-width: 768px) {
  .main .category_p01 {
    padding: 0 10px;
  }
}

/**** 緊急情報のスタイル ****/
.emergency {
  margin-top: 24px;
}
.main .emergency h2{
	text-align: left;
	font-size: 150%;
	padding: 0;
	margin: 0;
}
.main .emergency h2::before{
	display: none;
}
.main .emergency h2, .main .emergency .h2 {
  background: #cc1813;
  color: #fff;
}
.main .emergency .h2 {
  overflow: hidden;
  padding: 12px 24px 10px;
  border-radius: 20px 20px 0 0;
}
.main .emergency .h2 p {
  padding: 8px 16px 8px 8px;
  margin: 0;
}
.main .emergency_lower {
  border: 3px solid #cc1813;
  border-top: none;
  padding: 8px 24px 20px;
  border-radius: 0 0 20px 20px;
}

@media only screen and (max-width: 768px){
	.main .emergency .h2{
		padding: 8px 12px 6px;
		border-radius: 10px 10px 0 0;
	}
	.main .emergency h2{
		font-size: 125%;
	}
	.main .emergency_lower{
		padding: 2px 12px 10px;
		border-radius: 0 0 10px 10px;
	}
}

/**** 画像リストのスタイル ****/
.ilist {
}
.main .ilist_lower ul {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
.main .ilist_lower ul > li {
  display: flex;
  text-align: center;
  width: calc((100% - 80px) / 5);
  padding: 0;
  margin: 0;
}
.main .ilist_lower ul > li::before {
  display: none;
}
.main .ilist_lower ul > li a {
  display: block;
  background-color: #fff;
  padding: 33px 25px 20px;
  width: 100%;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  transition: .3s;
}
.main .ilist_lower ul > li a:hover{
	box-shadow: 0 0 1px rgba(0,0,0,.1);
	background-color: #e4f6ff;
}
.main .ilist_lower .ilist_left img{
	width: 130px;
}
.main .ilist_lower .ilist_right {
  margin-top: 29px
}
.main .ilist_lower ul > li .ilist_title {
  text-align: left;
  display: flex;
  justify-content: center;
}
.main .ilist_lower ul > li .ilist_text {
  text-align: left;
  font-size: 88%;
  margin-top: 6px;
  color: #333;
}
.ilist .ilist_title {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
	.main .ilist_lower ul{
		gap: 10px 9px;
	}
	.main .ilist_lower ul > li {
		width: calc((100% - 18px) / 3);
  }
}
@media only screen and (max-width: 480px) {
	.main .ilist_lower ul > li a{
		padding: 10px 6px;
		border-radius: 6px;
	}
	.main .ilist_lower .ilist_left img{
		width: 78px;
	}
	.main .ilist_lower .ilist_right{
		margin-top: 6px;
	}
	.main .ilist_lower ul > li .ilist_title{
		font-size: 88%;
	}
	.main .ilist_lower ul > li .ilist_text{
		font-size: 75%;
		margin-top: 3px;
	}
}
/**** 画像リスト2のスタイル ****/
.ilist2 {
  margin-top: 24px;
}
.main .ilist2_lower ul {
  display: flex;
  flex-flow: row wrap;
}
.main .ilist2_lower ul > li {
  display: flex;
  padding-left: 0;
  margin-right: 12px;
  text-align: center;
  width: calc((100% - 36.1px) / 4);
}
.main .ilist2_lower ul > li:nth-of-type(4n) {
  margin-right: 0;
}
.main .ilist2_lower ul > li::before {
  display: none;
}
.main .ilist2_lower ul > li a {
  padding: 16px;
  width: 100%;
  background: #cbdbff;
  display: flex;
  text-decoration: none;
}
.main .ilist2_lower ul > li .ilist_left {
  align-self: center;
  width: 40%;
}
.main .ilist2_lower ul > li .ilist_right {
  align-self: center;
  width: 54%;
  margin-left: 6%;
}
.ilist2 .ilist_title {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .main .ilist2_lower ul > li {
    width: calc((100% - 24.1px) / 2);
  }
  .main .ilist2_lower ul > li:nth-of-type(3n) {
    margin-right: 12px;
  }
  .main .ilist2_lower ul > li:nth-of-type(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .main .ilist2_lower ul > li:nth-of-type(n) {
    margin-right: 0;
    width: 100%;
  }
}
/**** 分類のスタイル ****/
.category {
  margin-top: 40px;
}
.category2 {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.category3 {
  margin-top: 40px;
}
.category4 {
  margin-top: 40px;
}
.category5 {
  margin-top: 40px;
}
.main .category_3_ul {
  font-size: 85%;
}
.main .category_lower {
}

@media only screen and (max-width: 768px){
	.category2 {
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}
}

/**** 各課の窓口のスタイル ****/
.kakuka {
  margin-top: 40px;
}

@media only screen and (max-width: 768px){
	.kakuka {
	  margin-top: 24px;
	}
}

/**** 催し物・講座のスタイル ****/
.event {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.main .event_lower {
}
.main .event_lower li {
  padding-left: 0;
}
.main .event_lower li::before {
  display: none;
}
.main .event_lower li .eve_cate {
  display: inline-block;
  font-size: 85%;
  background: #D9F2FF;
  border-radius: 4px;
  padding: 4px 4px 2px;
  margin-right: 8px;
  text-align: center;
  vertical-align: top;
  line-height: 1;
  min-width: 80px;
}
.main .event_lower .event_month li {
  margin-right: 12px;
  display: inline-block;
  font-size: 130%;
  margin-top: 8px;
  margin-bottom: 4px;
}
.main .event_lower .event_month img {
  vertical-align: middle;
}
.event_month li.pre a, .event_month li.next a {
  display: inline-block;
  background: #efefef;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 81.25%;
  margin-bottom: 10px;
  text-decoration: none;
  padding: 0 5px;
  position: relative;
  line-height: 1;
}
.main .event_lower .event_month li.pre{
	margin-right: 6px;
}
.event_month li.pre a {
  padding-left: 16px;
  padding: 6px 4px 6px 16px;
}
.event_month li.next a {
  padding-right: 15px;
  padding: 6px 16px 6px 4px;
}
.event_month li.pre a:before, .event_month li.next a:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -4px;
  width: 0;
  height: 0;
  border-style: solid;
}
.event_month li.pre a:before {
  left: 4px;
  border-width: 4px 6px 4px 0;
  border-color: transparent #555 transparent transparent;
}
.event_month li.next a:before {
  right: 4px;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #555;
}

@media only screen and (max-width: 768px){
	.event{
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}
	.main .event_lower .event_month li{
		margin-top: 0;
	}
	.event_month li.pre a, .event_month li.next a{
		font-size: 63%;
	}
}

/**** イベントカレンダーのスタイル ****/
.calendar {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.main .calendar_lower {
  overflow: auto;
}
.main .calendar_lower li {
  padding-left: 0;
}
.main .calendar_lower li::before {
  display: none;
}
.main .calendar_lower .event_month li {
  margin-right: 8px;
  display: inline-block;
}
.main .calendar_lower .event_month img {
  vertical-align: baseline;
}
.main .calendar table {
  width: 100%;
}
.main .calendar caption {
  display: none;
}
.main .calendar th {
  border: 1px solid #ccc;
  text-align: center;
}
.main .calendar th img {
  vertical-align: middle;
}
.main .calendar td {
  border: 1px solid #ccc;
  text-align: center;
}
.main .calendar .sun {
  background: #ffd8d6;
}
.main .calendar .sat {
  background: #d9e4fc;
}
.main .calendar .today {
  background: #c9171e;
  color: #fff;
}
.main .calendar .today a {
  color: #fff;
}
.calendar .event_month li.pre a, .calendar .event_month li.next a {
  font-size: 100%;
}

@media only screen and (max-width: 768px){
	.calendar{
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}
	.main .calendar_lower .event_month li{
		margin-top: 0;
	}
	.calendar .event_month li.pre a, .calendar .event_month li.next a{
		font-size: 81.25%;
	}
}

/**** 新着情報のスタイル ****/
.new {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.new h2{
	margin-bottom: 25px;
}
.main .new ul li{
	border-bottom: 1px dotted #ccc;
	padding: 0 20px 16px 40px;
	overflow: hidden;
}
.main .new ul li::before{
	left: 20px;
}
.main .new ul li .new_lst {
  
}
.main .new ul li.catch_lst .new_lst {
  margin-right: 100px;
}
.main .new ul li.catch_lst .new_img {
  float: right;
  margin-top: 0;
}
.main .new .more li{
	border: none;
	padding: 0;
}
.main .new .more li::before{
	display: none;
}
@media only screen and (max-width: 768px) {
	.new{
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}
	.main .new ul li{
		padding-left: 20px;
	}
	.main .new ul li::before{
		left: 0;
	}
}
/**** トピックスのスタイル ****/
.topics {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.topics h2{
	margin-bottom: 25px;
}
.main .topics .h2 p {
  padding: 8px 16px 8px 8px;
  margin: 0;
}
.main .topics_lower {
}
.main .topics ul li{
	border-bottom: 1px dotted #ccc;
	padding: 0 20px 16px 40px;
}
.main .topics ul li::before{
	left: 20px;
}
.main .topics ul li.catch_lst .topics_lst {
  margin-right: 100px;
}
.main .topics ul li.catch_lst .topics_img {
  float: right;
  margin-top: 0;
}
.main .topics .more li{
	padding: 0;
	border: none;
}
.main .topics .more li::before{
	display: none;
}
@media only screen and (max-width: 768px) {
	.topics{
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}

	.main .topics ul li{
		padding-left: 20px;
	}
	.main .topics ul li::before{
		left: 0;
	}
}

/**** 新着情報・トピックス一覧のスタイル ****/
.main .more {
	margin-top: 30px;
	font-size: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-left: auto;
	justify-content: flex-end;
}
.main .more li{
	margin-left: 10px;
}
.main .more a{
	text-decoration: none;
	color: #fff;
	background-color: #197BBC;
	border-radius: 6px;
	padding: 11px 84px 11px 20px;
	position: relative;
	display: block;
	transition: .3s;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.main .more a::before{
	content: "";
	position: absolute;
	width: 16px;
	height: 12px;
	background: url("img/icon_arrow_wh.svg") no-repeat center / contain;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.main .more a:hover{
	background-color: #10659d;
	box-shadow: 0 0 1px rgba(0,0,0,.1);
}
.main .more .rss{
	margin-top: 12px;
	border-radius: 4px;
}
.main .more li.rss span {
  background: url(../images/rss_o.svg) no-repeat left center;
  background-size: 12px 12px;
  padding-left: 20px;
}
@media only screen and (max-width: 480px) {
  .main .more {
    max-width: 100%;
	margin-top: 20px;
  }
  .main .more li {
    width: calc(100% - 5px);
  }
  .main .more li a {
    padding: 10px;
  }
}
/**** ピックアップ1のスタイル ****/
.pickup {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.main .pickup_lower {
}
.main .pickup_lower .pickup_sub {
  margin-top: 20px;
}
.main .pickup_lower .pickup_sub:first-child {
  margin-top: 12px;
}
.main .pickup_lower .pickup_sub h3 {
  font-size: 110%;
  padding: 10px;
  border-radius: 4px;
  background-color: #D9F2FF;
}
.main .pickup_lower .pickup_sub p {
  font-size: 85%;
  margin-top: 12px;
}
/**** ピックアップ2のスタイル ****/
.pickup2 {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.main .pickup2_lower {
}
.main .pickup2_lower .pickup_sub {
  margin-top: 20px;
}
.main .pickup2_lower .pickup_sub:first-child {
  margin-top: 12px;
}
.main .pickup2_lower .pickup_sub h3 {
  font-size: 110%;
  padding: 10px;
  border-radius: 4px;
  background-color: #D9F2FF;
}
.main .pickup2_lower .pickup_sub p {
  font-size: 85%;
  margin-top: 12px;
}

/**** ピックアップ1・ピックアップ2のスタイル ****/
@media only screen and (max-width: 768px){
	.pickup, .pickup2{
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}
}

/**** ランキングのスタイル ****/
.ranking {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.main .ranking_lower {
}
.main .ranking_lower ol {
  margin-left: 24px;
}
.main .ranking_lower ol li {
  list-style-type: decimal;
  padding-left: 0;
}
.main .ranking_lower ol li:before {
  display: none;
}

@media only screen and (max-width: 768px){
	.ranking{
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}
}

/**** 人口・世帯数のスタイル ****/
.j_s {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.main .j_s_lower {
}
.main .j_s li {
  padding-left: 0;
}
.main .j_s li::before {
  display: none;
}
.main .j_s li strong {
  margin-right: 8px;
}
.main .j_s p {
  font-size: 85%;
}

@media only screen and (max-width: 768px){
	.j_s{
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}
}

/**** バナー広告のスタイル ****/
.bana {
  margin-top: 40px;
  clear: both;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.bana h2 {
}
.bana_lower {
  text-align: center;
}
.bana .bana_img {
  display: inline-block;
}
.main .bana ul {
  display: flex;
  flex-wrap: wrap;
}
.main .bana li {
  padding-left: 0;
  width: 154px;
  margin-right: 8px;
}
.main .bana li:nth-of-type(6n) {
  margin-right: 0;
}
.main .bana li::before {
  display: none;
}
.main .bana li .window {
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
	.bana{
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}
  .main .bana li {
    margin: 0 0 16px;
    padding: 0 4px;
    width: 33.333%;
  }
}
@media only screen and (max-width: 480px) {
  .main .bana li {
    width: 50%;
  }
}
/**** RSSのスタイル ****/
.rss {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.rss .rss_lower {
}
.main .rss li {
  padding-left: 0;
}
.main .rss li::before {
  display: none;
}

@media only screen and (max-width: 768px) {
	.rss{
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}
}

/**** RSSアイコンのスタイル ****/
a.rss_icon {
  background: #FF8F21;
  display: inline-block;
  color: #fff;
  font-size: 81.25%;
  text-decoration: none;
  text-shadow: 1px 1px 0 #B45C00, -1px 1px 0 #B45C00, 1px -1px 0 #B45C00, -1px -1px 0 #B45C00;
  vertical-align: middle;
  padding: 5px 5px 5px 7px;
  letter-spacing: -0.01px;
  line-height: 1.1;
  position: relative;
}
a.rss_icon img {
  margin-left: 4px;
  height: auto;
  width: 16px;
}
a.rss_icon2 {
  background: #FF8F21;
  display: inline-block;
  color: #fff;
  font-size: 68.75%;
  text-decoration: none;
  text-shadow: 1px 1px 0 #B45C00, -1px 1px 0 #B45C00, 1px -1px 0 #B45C00, -1px -1px 0 #B45C00;
  vertical-align: middle;
  padding: 3px 28px 1px 6px;
  letter-spacing: -0.01px;
  line-height: 1.1;
  position: relative;
}
a.rss_icon2 img {
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: 6px;
  height: auto;
  width: 16px;
}
/**** リンク・画像領域（画像）のスタイル ****/
.image {
  text-align: center;
  margin-top: 40px;
}
.main .image h2 {
  background: none;
  padding: 0;
  margin: 0;
}
.main .image h2::before{
	display: none;
}
.image .image_img {
  display: block;
}
/**** リンク・画像領域（テキスト）のスタイル ****/
.link {
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
	.image, .link{
	  margin-top: 24px;
	}
}
/**** RSS一覧のスタイル ****/
.rss_list {
  margin-top: 24px;
}
/**** オプションのスタイル ****/
.option {
  margin-top: 40px;
  border: 2px solid #197BBC;
  border-radius: 20px;
  padding: 20px 24px 24px;
}
.main .option_lower {
}

@media only screen and (max-width: 768px) {
	.option{
	  margin-top: 24px;
	  border-radius: 10px;
	  padding: 16px 16px 20px;
	}
}

/**** FAQ（よくある質問）のスタイル ****/
.faq {
  margin-top: 24px;
}
/**** 新着FAQ ****/
.faq_new {
  margin-top: 24px;
}
.main .faq_new_lower {
  border: 2px solid #0e0e88;
  border-top: none;
  padding: 4px 16px 16px;
}
.main .faq_new_lower p {
  font-size: 85%;
  margin-top: 4px;
}
/**** 見られているFAQのスタイル ****/
.popular {
  margin-top: 24px;
}
.main .popular_lower {
  border: 2px solid #0e0e88;
  border-top: none;
  padding: 4px 16px 16px;
}
.main .popular_lower p {
  font-size: 85%;
  margin-top: 4px;
}
/********************** 領域1個別のスタイル **********************/
.zone01_in {
  
}
/**** メインビジュアル ****/
.vis h2{
	padding: 0;
	margin: 0;
	height: 0;
	background: transparent;
}
.main .vis_bg ul li{
	margin: 0;
	padding: 0;
}
.main .vis_bg ul li::before{
	display: none;
}

/*
.vis .vis_slider, .vis .slick-list, .vis .slick-list *{
	height: 100%;
}
*/
.slick-list, .slick-list > *{
	line-height: 0;
}


/********************** 領域2個別のスタイル **********************/
.zone02_in {
  
}
/**** サブナビゲーションのスタイル ****/
.subNav{
	position: relative;
	margin-top: -66px;
}
.subNav .tab_index{
	max-width: 1224px;
	margin: 0 auto;
	padding: 0 12px;
	display: flex;
	align-items: flex-end;
	column-gap: 6px;
}
.subNav .tab_index .tab_change{
	flex: 1;
}
.subNav .tab_index .tab_change a{
	display: block;
	text-align: center;
	text-decoration: none;
	background-color: #D9F2FF;
	border-radius: 20px 20px 0 0;
	font-size: 113%;
	padding: 15px 10px 13px 10px;
}
.subNav .tab_index .tab_change.is-active a{
	background-color: #197BBC;
	color: #fff;
	padding-top: 21px;
	padding-bottom: 17px;
}
.subNav > ul{
	background-color: #F1FDD2;
	border-top: 6px solid #197BBC;
	padding: 40px 0;
}
.main .subNav li.tab_panel{
	max-width: 1224px;
	margin: 0 auto;
	padding: 0 12px;
	position: static;
}
.main .subNav li::before{
	display: none;
}
.subNav .new{
	margin: 0;
}

/* 地域から探す */
.imgArea_pc{
	background-color: #fff;
	width: 100%;
	display: flex;
	justify-content: center;
	border-radius: 20px;
	position: relative;
}
.imgArea_pc::before{
	content: "";
	position: absolute;
	background: url("img/img_area_illust.png") no-repeat center / contain;
	width: 155px;
	height: 176px;
	bottom: 25px;
	left: 30px;
}
.imgArea_sp{
	display: none;
}
.imgArea_sp .imgArea_spList{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}
.imgArea_sp .imgArea_spList li{
	width: calc(50% - 5px);
	padding: 0;
	margin: 0;
}
.imgArea_sp .imgArea_spList li a{
	display: flex;
	align-items: center;
	padding: 10px 10px 10px 30px; 
	text-decoration: none;
	letter-spacing: 0;
	line-height: 1.25;
	position: relative;
	border-radius: 6px;
	border: 2px solid #FECE30;
	background-color: #FFFED0;
	min-height: 64px;
}
.imgArea_sp .imgArea_spList li:nth-child(2) a{
	border-color: #197FFA;
	background-color: #EBF3FF;
}
.imgArea_sp .imgArea_spList li:nth-child(3) a{
	border-color: #F584B0;
	background-color: #FFE6EF;
}
.imgArea_sp .imgArea_spList li:nth-child(4) a{
	border-color: #75BC3F;
	background-color: #EDF8E1;
}
.imgArea_sp .imgArea_spList li:nth-child(5) a{
	border-color: #FC8854;
	background-color: #F8E0CF;
}
.imgArea_sp .imgArea_spList li a::before{
	content: "";
	position: absolute;
	width: 14px;
	height: 11px;
	background: url("img/icon_arrow_bl.svg") no-repeat center / contain;
	left: 9px;
	top: 50%;
	transform: translateY(-50%);
}

@media only screen and (max-width: 768px){
	.subNav{
		margin-top: 10px;
	}
	.subNav .tab_index .tab_change a{
		padding: 8px 10px 4px;
		border-radius: 10px 10px 0 0;
		font-size: 100%;
	}
	.subNav .tab_index .tab_change.is-active a{
		padding-top: 12px;
		padding-bottom: 8px;
	}
	.subNav .tab_index .tab_change a span{
		display: block;
		line-height: 1.25;
	}
	.subNav > ul{
		padding: 20px 0 30px;
		border-top-width: 4px;
	}
	.main .subNav li.tab_panel{
		top: 20px;
	}
	/* 地域から探す */
	.imgArea_pc{
		display: none;
	}
	.imgArea_sp{
		display: block;
	}
}
@media only screen and (max-width: 480px){
	.imgArea_sp .imgArea_spList li a{
		font-size: 88%;
	}
}

/********************** 領域3個別のスタイル **********************/
.zone03 {
	margin-top: 50px;
}
.zone03_in {
  
}
/**** お知らせのスタイル ****/
.zone03 .new{
	margin: 0;
	border: none;
	border-radius: 0;
	padding: 0;
}
.zone03 .new .h2{
	text-align: center;
	width: 100%;
	background: url("img/new_h2_border.svg") no-repeat bottom center / contain;
	padding-bottom: 17px;
	margin-bottom: 26px;
}
/*
.zone03 .new .h2 h2{
	font-size: 200%;
}
*/
.main .zone03 .new li{
	padding: 0 20px 16px 40px;
	border-bottom: 1px dotted #ccc;
}
.main .zone03 .new li::before{
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #C1DB81;
	top: 0.35em;
	left: 20px;
	border: none;
	transform: rotate(0);
}
.main .zone03 .new ul li .new_lst {
  display: flex;
  margin: 0;
}
.main .zone03 .new .more a{
	background-color: #D9F2FF;
	color: #2B3095;
}
.main .zone03 .new .more a::before{
	background-image: url("img/icon_arrow_bl.svg");
	transform: translateY(-50%);
}
.main .zone03 .new .more a:hover{
	background-color: #cbedff;
}

@media only screen and (max-width: 480px){
	.zone03 .new .h2{
		background-image: url("img/new_h2_border_sp.svg");
		padding-bottom: 22px;
		margin-bottom: 20px;
	}
	.zone03 .new .h2 h2{
		font-size: 150%;
	}
	.main .zone03 .new li{
		padding-left: 20px;
	}
	.main .zone03 .new li::before{
		left: 0;
	}
	.main .zone03 .new ul li .new_lst {
		display: block;
	}
}

/********************** 領域4個別のスタイル **********************/
.zone04_in{
	max-width: 1224px;
	padding: 0 12px;
	margin: 0 auto;
}

/********************** 中ページのスタイル **********************/
body.inbody {}

.inbody .h_main .h1{
	margin: 0;
	height: auto;
}
.inbody .h_main .h1 a{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.inbody .h_main .h1 img{
	margin-right: 10px;
}
.inbody .h_main .h1 a .home{
	display: inline-block;
	padding-left: 18px;
	position: relative;
	margin: 8px 0 0 0;
	font-size: 87%;
}
.inbody .h_main .h1 a .home::before{
	content: "";
	position: absolute;
	width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #C1DB81;
    top: 0.35em;
    left: 0;
}
.inbody .g_navi_in{
	flex-wrap: wrap;
	justify-content: flex-end;
}
.inbody .g_navi_in li{
	width: calc((100% - 18px) / 4);
}

@media only screen and (max-width: 768px){
	.inbody .g_navi_in > li{
		flex: auto;
	}
}

/**** パンくずリストのスタイル ****/
.pankuzu {
  margin: 24px auto 0;
  max-width: 1224px;
  font-size: 85%;
  padding: 0 12px;
}
.pankuzu li {
  margin: 0;
  padding: 0 28px 0 0;
  border: 0px;
  list-style-type: none;
  background: none;
  display: inline-block;
  height: auto;
  position: relative;
}
.pankuzu li::after {
  display: block;
  content: "";
  position: absolute;
  top: .3em;
  right: 2px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 8px solid #888;
}
.pankuzu li:last-child::after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pankuzu {
    margin: 16px 0 0;
    width: 100%;
  }
}
/**** 中ページメインのスタイル ****/
.main_naka_h1 {
  margin: 12px auto 24px;
  max-width: 1224px;
  padding: 0 12px;
}
.main_naka_h1_lower {
  background: #F1FDD2;
  border-radius: 10px;
  padding: 16px;
}
.main_naka {
  margin: 0 auto 24px;
  max-width: 1224px;
  overflow: hidden;
  padding: 0 12px;
}
.main_naka:after {
  content: "";
  display: block;
  clear: both;
}
.main_naka_h1 h1 {
  padding: 0;
  font-size: 180%;
}
.main_naka h2 {
  font-size: 136%;
  width: 100%;
  margin: 0;
  position: relative;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #D9F2FF;
}
/*
.main_naka h2 a{
	color: #fff;
}
*/
.main_naka h3 {
  margin: 16px 0 0;
  padding-left: 12px;
  border-left: 4px solid #0e0e88;
  font-size: 120%;
}
.main_naka h4 {
  margin: 16px 0 0;
  border-bottom: 2px solid #0e0e88;
  font-size: 110%;
}
.main_naka h5 {
  margin: 16px 0 0;
  padding: 4px 8px;
  background-color: #cbdbff;
}
.main_naka h6 {
  margin: 16px 0 0;
}
.main_naka li {
  position: relative;
  padding-left: 20px;
}
.main_naka li::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #C1DB81;
    top: 0.35em;
    left: 0;
}
.main_naka li p {
  margin-top: 4px;
  font-size: 85%;
}
@media only screen and (max-width: 768px) {
  .main_naka_h1 {
    width: 100%;
  }
  .main_naka {
    width: 100%;
  }
  .main_naka_h1_lower{
  	padding-top: 12px;
	padding-bottom: 12px;
  }
}
/* ページャーのスタイル */
.main_naka .page_head {
  margin-top: 24px;
  padding: 6px 16px 16px;
  background-color: #eee;
  font-size: 85%;
}
.main_naka .page_head .pager p {
  display: inline-block;
}
.main_naka .page_head .pager ul {
  display: inline-block;
}
.main_naka .page_head .pager ul li {
  border-left: 1px solid #757575;
  display: inline-block;
  margin: 0 8px 0 0;
  padding-left: 8px;
}
.main_naka .page_head .pager ul li:first-child {
  border: 0;
}
.main_naka .page_head .pager ul li::before {
  display: none;
}
/**** 各課のホームページ・カテゴリごとの緊急情報のスタイル ****/
.design .main_naka .emergency {
  margin-top: 24px;
}
.design .main_naka .emergency .h2 {
  background: #a90000;
  color: #fff;
}
.design .main_naka .emergency h2 {
  color: #fff;
  padding: 8px 16px 6px;
  margin: 0;
  border-bottom: none;
  width: auto;
  float: left;
}
.design .main_naka .emergency h2::after {
  display: none;
}
.design .main_naka .emergency .h2 a {
  float: right;
  margin: 10px 16px 10px 8px;
}
.design .main_naka .emergency .h2 img {
  vertical-align: middle;
}
.design .main_naka .emergency .emergency_lower {
  border: 2px solid #a90000;
  border-top: none;
  padding: 4px 16px 16px;
}
/**** 分類のスタイル ****/
.design .main_naka .category_p01 {
  margin-top: -12px;
}
.design .main_naka .page_left_box {
  float: left;
  width: 100%;
  margin: 24px -280px 16px 0;
}
.design .main_naka .page_left {
  margin: 0 280px 0 0;
}
.design .main_naka .page_left_box .cate_post01, .design .main_naka .page_left_box .cate_post02 {
  margin-top: 24px;
}
.design .main_naka .page_left_box .cate_post01:first-child, .design .main_naka .page_left_box .cate_post02:first-child {
  margin-top: 0;
}
.design .main_naka .page_left_box .cate_post01:first-child h2, .design .main_naka .page_left_box .cate_post02:first-child h2 {
  margin-top: 0;
}
.design .main_naka .page_left_box .page_left_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.design .main_naka .page_left_box .page_left_flex .cate_post01 {
  margin-top: 0;
  margin-bottom: 24px;
  width: 49%;
  border-radius: 20px;
}
.design .main_naka .page_left_box .page_left_flex .cate_post01 h2 {
  margin: 0;
  padding: 8px 12px;
  background-color: #D9F2FF;
  border-radius: 4px;
}
/*
.design .main_naka .page_left_box .page_left_flex .cate_post01 h2 a{
  color: #fff;
}
*/
.design .main_naka .page_left_box .page_left_flex .cate_post01 h2:after {
  display: none;
}
.design .main_naka .page_left_box .page_left_flex .category_p02 {
  padding: 0 4px 8px;
  margin-top: 16px;
}
.design .main_naka .page_left_box .page_left_flex .category01 {
  padding: 0 4px 16px;
}
.design .main_naka .page_right {
  float: right;
  width: 240px;
  margin-top: 24px;
}
.design .main_naka .page_right ul {
  padding: 4px 16px 16px;
  background-color: #D9F2FF;
  border-radius: 10px;
}
.design .main_naka .page_right ul:first-child {
  margin-top: 0;
}
.design .main_naka .category01 li {
  display: inline-block;
  margin-right: 8px;
}
.design .main_naka .page_right ul li::before{
	background-color: #197BBC;
}
.design .main_naka .category_p02 {
  font-size: 85%;
  overflow: hidden;
  margin: 16px 0 24px;
}
.design .main_naka .category_p02 p {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .design .main_naka .page_left {
    margin-right: 0;
  }
  .design .main_naka .page_left_box {
    float: none;
    width: 100%;
  }
  .design .main_naka .page_left_box .page_left_flex .cate_post01 {
    width: 100%;
  }
  .design .main_naka .page_left_box .page_left_flex .cate_post01:last-child {
    margin-bottom: 0;
  }
  .design .main_naka .page_right {
    float: none;
    width: 100%;
  }
}
/* アイキャッチあり */
.design .main_naka .category_p02 .cat_lst {
  margin-right: 112px;
}
.design .main_naka .category_p02 .cat_img {
  float: right;
  width: 96px;
  margin-top: 0;
}
/* 分類（先頭ページ以下）のスタイル */
.design .main_naka .cate_post02 li, .design .main_naka .category_end li {
  border-bottom: 1px dotted #ccc;
  margin-top: 16px;
  padding: 0 12px 16px 20px;
  overflow: hidden;
}
.design .main_naka .cate_post02 li::before, .design .main_naka .category_end li::before {
  	content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #C1DB81;
    top: 0.35em;
    left: 0;
}
.design .main_naka .category_end li:first-child {
  margin-top: 0;
}
.design .main_naka .category_end .cat_lst {
  margin-right: 112px;
}
.design .main_naka .category_end .catch_lst .cat_img {
  float: right;
  width: 96px;
  margin-top: 0;
}

@media only screen and (max-width: 450px){
	.design .main_naka .cate_post02 li, .design .main_naka .category_end li{
		padding-right: 0;
	}
}
/**** 新着情報のスタイル ****/
.design .main_naka .main_naka_new {
  border: 2px solid #197BBC;
  padding: 20px 24px 24px;
  margin-top: 24px;
  border-radius: 20px;
}
.design .main_naka .main_naka_new h2{
  margin-top: 0;
  padding: 0 4px 8px;
  position: relative;
  margin-bottom: 24px;
  border-radius: 0;
  background-color: transparent;
  color: #333;
}
.design .main_naka .main_naka_new h2::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	border-radius: 50px;
	background-color: #197BBC;
	left: 0;
	right: 0;
	bottom: 0;
}
.design .main_naka .main_naka_new_lower ul li{
	border-bottom: 1px dotted #ccc;
	padding: 0 20px 12px 40px;
}
.design .main_naka .main_naka_new_lower ul li::before{
	left: 20px;
}
.design .main_naka .main_naka_new .date {
  display: block;
  float: left;
  margin-top: 2px;
  margin-left: 0;
  width: 6em;
  font-size: 85%;
}
.design .main_naka .main_naka_new .list {
  padding-left: 82px;
}
@media only screen and (max-width: 768px) {
	.design .main_naka .main_naka_new{
		padding: 16px 16px 20px;
		border-radius: 10px;
	}
	.design .main_naka .main_naka_new_lower ul li{
		padding-left: 20px;
	}
	.design .main_naka .main_naka_new_lower ul li::before{
		top: 0.2em;
		left: 0;
	}
  .design .main_naka .main_naka_new .date {
    float: none;
    width: 100%;
  }
  .design .main_naka .main_naka_new .list {
    padding-left: 0;
    float: none;
    width: 100%;
  }
}
/* バナー広告 */
.design .main_naka .bana {
  margin-top: 24px;
  clear: both;
  padding: 20px 24px 24px;
  border-radius: 20px;
}
.design .main_naka .bana h2 {
  	margin-top: 0;
    padding: 0 4px 8px;
    position: relative;
    margin-bottom: 12px;
	background-color: transparent;
	color: #333;
	border-radius: 0;
}
.design .main_naka .bana h2::before{
	content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 50px;
    background-color: #197BBC;
    left: 0;
    right: 0;
    bottom: 0;
}
.design .main_naka .bana h2:after {
  display: none;
}
.design .main_naka .bana_lower {
  text-align: center;
}
.design .main_naka .bana .bana_img {
  display: inline-block;
}
.design .main_naka .bana ul {
  display: flex;
  flex-wrap: wrap;
}
.design .main_naka .bana li {
  width: 160px;
  margin-right: 8px;
  padding-left: 0;
}
.design .main_naka .bana li::before {
  display: none;
}
.design .main_naka .bana li:nth-of-type(6n) {
  margin-right: 0;
}
.design .main_naka .bana li .window {
  margin-top: 5px;
}

@media only screen and (max-width: 768px){
	.design .main_naka .bana{
		border-radius: 10px;
		padding: 16px 16px 20px;
	}
	.design .main_naka .bana h2{
		margin-bottom: 8px;
	}
}
/**** 新着情報のスタイル ****/
.innew .design .main_naka .new_post {
  margin-top: 24px;
}
.innew .design .main_naka .new_post:first-child {
  margin-top: 0;
}
.innew .design .main_naka .new_post li {
  border-bottom: 1px dotted #ccc;
  margin-top: 16px;
  padding: 0 0 16px;
  overflow: hidden;
}
.innew .design .main_naka .new_post li::before {
  display: none;
}
/* アイキャッチあり */
.innew .design .main_naka .catch_lst .new_lst {
  margin-right: 110px;
}
.innew .design .main_naka .catch_lst .new_img {
  float: right;
  width: 96px;
  margin-top: 0;
}
/********************** 記事ページのスタイル **********************/
.inkiji .main_naka_h1 {
  margin-bottom: 0;
}
.inkiji .main_naka {
  margin-bottom: 8px;
}
.waku {
  margin: 0 auto 24px;
  overflow: hidden;
}
.waku_top {
  clear: both;
  margin: 0 auto;
  max-width: 1224px;
  padding: 0 12px;
}
.main_naka_kiji {
  float: left;
  width: calc(100% - 280px);
  margin-right: 40px;
}
.waku .kiji_sub {
  float: right;
  width: 240px;
}
@media only screen and (max-width: 768px) {
  .waku_top {
    width: 100%;
  }
  .main_naka_kiji {
    float: none;
    overflow: hidden;
    width: 100%;
  }
  .waku .kiji_sub {
    float: none;
    width: 100%;
  }
}
/**** 詳細ページのスタイル ****/
.design .main_naka .syosai_hiduke {
  margin-top: 8px;
  font-size: 85%;
  float: left;
}
.design .main_naka .syosai_id {
  margin: 8px 0 0 12px;
  font-size: 85%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .design .main_naka .syosai_id {
    margin-bottom: 12px;
  }
}
/* SNSボタン */
.inbody .design .sns_box {
  margin-top: 4px;
  padding-left: 16px;
  vertical-align: middle;
  float: right;
}
.inbody .design .sns_box ul {
  display: inline;
}
.inbody .design .sns_box li::before {
  display: none;
}
.inbody .design .sns_btn {
  padding-left: 4px;
  display: inline;
  line-height: 0;
  vertical-align: middle;
}
.inbody .design .sns_btn img {
  vertical-align: middle;
}
.inbody .design p.sns_btn {
  padding: 3px;
  background-color: #fff;
  font-size: 85%;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .inbody .design .sns_box {
    background: #efefef;
    padding-left: 0;
    padding: 5px;
    margin: 0;
    float: none;
    line-height: 1.5;
    clear: both;
  }
  .inbody .design p.sns_btn {
    background: none;
    padding: 0;
    margin: 0;
  }
  .inbody .design .sns_box ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
}
/**** 記事ページ右メニューのスタイル ****/
/*アイキャッチ画像*/
.waku .kiji_sub .catch {
  margin-top: 16px;
}
.waku .kiji_sub .catch p {
  margin-top: 0;
  text-align: center;
}
.waku .kiji_sub .catch img {
  border: 1px solid #ccc;
  padding: 1px;
  vertical-align: bottom;
}
/*お問い合わせフォーム*/
.waku .kiji_sub .kiji_aside.syosai_sonota {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 85%;
  text-align: center;
  word-wrap: break-word;
}
.waku .kiji_sub .kiji_aside.syosai_sonota h2 {
  display: inline-block;
  padding: 6px 4px 4px;
  background: #197BBC;
  border-radius: 4px;
  border: 0;
  color: #fff;
  width: 100%;
}
.waku .kiji_sub .kiji_aside.syosai_sonota p {
  text-align: left;
}
.waku .kiji_sub .kiji_aside.syosai_sonota .for_img {
  text-align: center;
  background: #555;
  font-size: 85%;
  display: inline-block;
  border-radius: 4px;
  width: 100%;
}
.waku .kiji_sub .kiji_aside.syosai_sonota .for_img a {
  display: block;
  padding: 8px 5px 7px;
  color: #fff;
  text-decoration: none;
  width: 100%;
}
/*共通スタイル*/
.waku .kiji_sub .kiji_aside {
  margin-top: 16px;
}
.waku .kiji_sub .kiji_aside h2 {
  padding: 8px 8px 6px;
  border: 1px solid #ccc;
  border-bottom: 0;
  background: #D9F2FF;
  border-radius: 10px 10px 0 0;
}
.waku .kiji_sub .kiji_aside > ul {
  border: 1px solid #ccc;
  padding: 0 10px 12px;
  border-radius: 0 0 10px 10px;
}
.waku .kiji_sub .kiji_aside li {
  position: relative;
  padding-left: 20px;
}
.waku .kiji_sub .kiji_aside li::before {
	content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #C1DB81;
    top: 0.35em;
    left: 0;
}
.waku .kiji_sub .kiji_aside li li {
  font-size: 85%;
}
/*コンテンツページ_組織内ジャンル*/
.waku .kiji_sub .kiji_aside.kakuka {}
/*関連コンテンツ*/
.waku .kiji_sub .kiji_aside.kanren {}
/*この記事を見ている人*/
.waku .kiji_sub .kiji_aside.kanren2 {}
/**** コンテンツ評価のスタイル ****/
.design .main_naka .kiji_aside.syosai_qa {
  background: #fff;
}
.design .main_naka .kiji_aside.syosai_qa li {
  padding-left: 0;
}
.design .main_naka .kiji_aside.syosai_qa li::before {
  display: none;
}
.design .main_naka .kiji_aside.syosai_qa li p {
  padding: 5px 1%;
  border: 1px dotted #ccc;
}
.design .main_naka .kiji_aside.syosai_qa #opinion {
  width: calc(100% - 32px);
  margin: 16px;
}
.design .main_naka .kiji_aside.syosai_qa .comment {
  font-size: 85%;
}
.design .main_naka .kiji_aside.syosai_qa .qa_button {
  margin: 8px 0 16px 0;
  padding-top: 16px;
  border-top: 1px solid #ccc;
  text-align: center;
}
.design .main_naka .kiji_aside.syosai_qa .qa_button2 {
  margin-top: 8px;
  padding: 8px 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .design .main_naka .kiji_aside.syosai_qa form p span {
    display: block;
    line-height: 2;
  }
}
/**** 別ルートのスタイル ****/
.design .main_naka .route_box {
  margin-bottom: 24px;
}
.design .main_naka .route_box h2 {
  font-size: 125%;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 6px 4px;
  border-radius: 0;
  background: transparent;
}
.design .main_naka .route_box h2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #197BBC;
  border-radius: 50px;
  left: 0;
  right: 0;
  bottom: 0;
}
.design .route {
  margin-top: 8px;
}
.design .route li {
  font-size: 85%;
  margin: 0;
  padding: 0 28px 0 0;
  border: 0;
  list-style-type: none;
  background: none;
  display: inline-block;
  height: auto;
  position: relative;
}
.design .route li::before {
  display: none;
}
.design .route li::after {
  display: block;
  content: "";
  position: absolute;
  top: .3em;
  right: 2px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 8px solid #888;
}
.design .route li:last-child::after {
  display: none;
}
/**** 記事ページ下メニューのスタイル ****/
.inkiji .main_naka .kiji_aside {
  background: #fff;
  margin-bottom: 24px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}
.inkiji .main_naka .kiji_aside h2 {
  margin-top: 0;
  background: #D9F2FF;
  color: #333;
  border-bottom: none;
  border-radius: 0;
}
.inkiji .main_naka .kiji_aside ul {
  padding: 8px 16px 16px;
}
.inkiji .main_naka .kiji_aside ul >li > ul{
  padding: 4px;
}
.inkiji .main_naka .kiji_aside li li {
  font-size: 85%;
}
/*組織内ジャンル*/
.inkiji .main_naka .kiji_aside.kakuka {}
/*関連コンテンツ*/
.inkiji .main_naka .kiji_aside.kanren {}
/*関連している可能性のある記事*/
.inkiji .main_naka .kiji_aside.kanren2 {}
/*お問い合わせフォーム*/
.main_naka .kiji_aside.syosai_sonota {
  padding: 16px 14px;
}
.main_naka .kiji_aside.syosai_sonota h2 {
  background: #197BBC;
  color: #fff;
  border-radius: 4px;
}
.main_naka .kiji_aside.syosai_sonota p.for_txt {
  padding: 0 16px 8px 16px;
  border-bottom: 1px solid #ccc;
  font-size: 85%;
}
.syosai_qa2 p {
  padding: 0 16px;
}
#opinion {
  padding: 0 16px;
}
/**** 記事ページ緊急情報のスタイル ****/
.kiji_emergency .main_naka_h1 h1 {
  border-left: none;
  background: #a90000;
  color: #fff;
  padding: 6px 8px 4px;
}
/**** 下層ページのスタイル ****/
.design .main .category_p01 {
  margin: 0px auto;
  padding: 5px 12px;
  border: 0px;
  max-width: 1224px;
}
/* ▼▼▼▼▼▼ 伝えるWEB ▼▼▼▼▼▼ */
/* .tsutaeru01-menu */
.tsutaeru01-menu {
    display: none;
}

/*
#tsutaeru-info {
    background-color: #ebf5f5 !important;
    border-bottom: 1px solid #DBDBDB;
}
*/

.tsutaeru01-menu ul {
    margin: 0px;
    padding: 0px;
    text-align: right;
}

.design #head_lang02 li a {
    width: 118px;
    height: 28px;
    display: inline-block;
}

.design #head_lang02 li.tsutaeru01-button-easy {
    padding: 10px 16px 10px 0;
}

.design li.tsutaeru01-button-easy #tsutaeru01-li-easy {
    background-image: none;
}

.design #head_lang02 li.tsutaeru01-button-easy-off,
.design #head_lang02 li.tsutaeru01-button-ruby,
.design #head_lang02 li.tsutaeru01-button-ruby-off {
    padding: 0;
}

/* .tsutaeru01-speech */
.tsutaeru01-speech {
    padding: 0;
    margin: 0;
    position: relative;
}

.tsutaeru01-speech * {
    vertical-align: middle;
}

#body button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body button.tsutaeru01-button.tsutaeru01-button-speech-control,
#body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    display: block;
    padding: 10px 16px 10px 0;
    font-size: 100%;
    color: #2b3095;
    text-decoration: underline;
    background: #fff;
    border: none;
}

#body button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    padding: 3px 4px 0;
    font-size: 117%;
}

#body.category_futami button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body.category_history button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body.category_futami button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config,
#body.category_history button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    background: transparent;
}

#body button.tsutaeru01-button.tsutaeru01-button-speech-start:hover,
#body button.tsutaeru01-button.tsutaeru01-button-speech-control:hover,
#body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config:hover {
    text-decoration: none;
    color: #9f0000;
}

#body button.tsutaeru01-button.tsutaeru01-button-speech-start:visited,
#body button.tsutaeru01-button.tsutaeru01-button-speech-control:visited,
#body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config:visited {
    color: #791d78;
}

#body #sidr button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body #sidr button.tsutaeru01-button.tsutaeru01-button-speech-control,
#body #sidr button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    background-image: none;
    margin-right: 0 !important;
    border-radius: 0;
    border: none;
}

#body #sidr button.tsutaeru01-button.tsutaeru01-button-speech-start,
#body #sidr button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
    position: relative;
}

#body #sidr button.tsutaeru01-button.tsutaeru01-button-speech-start::after,
#body #sidr button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config::after {
    position: absolute;
    top: 50%;
    right: 12px;
    content: '';
    margin-top: -4px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
}


.tsutaeru01-speech .tsutaeru01-button:disabled {
    opacity: 0.8;
}

.tsutaeru01-speech-buttons {
    display: flex;
    padding: 0;
}

.tsutaeru01-speech-audio-container {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 0px;
    position: relative;
    /*position: absolute;*/
    top: 26px;
    left: 0;
}


@media (max-width:1024px) {
    .tsutaeru01-speech-audio-container {
        margin-top: 10px;
        position: inherit;
    }
}

.tsutaeru01-speech-audio {
    border-radius: 3px;
    max-width: 220px;
    height: 32px;
}

.tsutaeru01-speech-error {
    color: #C00;
}

/* .tsutaeru01-config */
.tsutaeru01-config {
    font-size: 90%;
    position: fixed;
    z-index: 99999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.75);
    border-radius: 5px;
    max-width: 90%;
    width: 600px;
    text-align: left;
    outline: none !important;
}

.tsutaeru01-config-header {
    padding: 1em;
    color: #fff;
    background: #4E7D15;
    text-align: center;
    font-weight: bold;
    position: relative;
    border-radius: 5px 5px 0px 0px;
    border: 1px solid #FFF;
}

#body.category_futami .tsutaeru01-config-header,
#body.category_history .tsutaeru01-config-header {
    color: #000;
    background: #D6C6AF;
}

.tsutaeru01-config-body {
    color: #000;
    background: #FFF;
    padding: 1.5em;
    max-height: 50vh;
    overflow: auto;
}

.tsutaeru01-config-body dl,
.tsutaeru01-config-body dl dt,
.tsutaeru01-config-body dl dd {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
}

.tsutaeru01-config-body dl {
    overflow: hidden;
}

.tsutaeru01-config-body dl dt {
    font-weight: bold;
    float: left;
    clear: left;
    width: 6.8em;
    text-align: right;
}

.tsutaeru01-config-body dl dd {
    margin: 0px 0px 1em 1.2em;
    white-space: nowrap;
}

.tsutaeru01-config-body dl dd:last-child {
    margin-bottom: 0px;
}

.tsutaeru01-config-body dl dd label {
    margin: 0px 1em 0.8em 0px;
    padding: 0px;
    font-size: 100%;
    white-space: nowrap;
    display: inline-block;
}

.tsutaeru01-config-body dl dd label input {
    margin: 0px 0.3em 0px 0px;
}

.tsutaeru01-config-footer {
    color: #000;
    background: #FFF;
    border-top: 1px solid #CCC;
    text-align: right;
    padding: 0.5em;
    border-radius: 0px 0px 5px 5px;
}

#body .tsutaeru01-config .tsutaeru01-config-footer .tsutaeru01-config-button-close {
    font-size: 100%;
    border: none;
    color: #fff;
    background: #4E7D15;
    font-weight: normal;
    padding: 0.5em 1em;
    border-radius: 3px;
    cursor: pointer;
}

#body.category_futami .tsutaeru01-config .tsutaeru01-config-footer .tsutaeru01-config-button-close,
#body.category_history .tsutaeru01-config .tsutaeru01-config-footer .tsutaeru01-config-button-close {
    color: #2b3095;
    background: #F6F5EA;
    border: 1px solid #7D7C6D;
}

#body.category_futami .tsutaeru01-config .tsutaeru01-config-footer .tsutaeru01-config-button-close:hover,
#body.category_history .tsutaeru01-config .tsutaeru01-config-footer .tsutaeru01-config-button-close:hover {
    color: #860000;
}

.tsutaeru01-config-overlay {
    position: fixed;
    z-index: 99998;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #000;
    opacity: 0.75;
}

#body .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close {
    font-size: 100%;
    display: block;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    overflow: hidden;
    text-indent: -1000px;
    background: none;
    padding: 0px;
    border: none;
    cursor: pointer;
}



#body .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:before,
#body .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background: #fff;
}

#body.category_futami .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:before,
#body.category_futami .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:after,
#body.category_history .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:before,
#body.category_history .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:after {
    background: #000;
}

#body .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:before {
    transform: rotate(45deg);
}

#body .tsutaeru01-config .tsutaeru01-config-header .tsutaeru01-config-close:after {
    transform: rotate(-45deg);
}

/* .tsutaeru01-text */
.tsutaeru01-text {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #000;
    color: #FFF;
    text-align: left;
    font-size: 100%;
    padding: 20px;
    z-index: 99000;
}

.tsutaeru01-text-inner {
    line-height: 1.5;
    max-height: 10em;
    overflow: auto;
    padding: 5px;
}

.tsutaeru01-text-inner rt,
.tsutaeru01-text-inner rp {
    font-size: 50%;
}

#body .tsutaeru01-text .tsutaeru01-text-close {
    font-size: 100%;
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 1em;
    height: 1em;
    overflow: hidden;
    text-indent: -1000px;
    background: none;
    padding: 0px;
    border: none;
    cursor: pointer;
}

#body .tsutaeru01-text .tsutaeru01-text-close:before,
#body .tsutaeru01-text .tsutaeru01-text-close:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background: #FFF;
}

#body .tsutaeru01-text .tsutaeru01-text-close:before {
    transform: rotate(45deg);
}

#body .tsutaeru01-text .tsutaeru01-text-close:after {
    transform: rotate(-45deg);
}

@media (max-width:1024px) {

    .head_in .h_top > div {
        display: none;
    }

    .tsutaeru01-menu {
        overflow: auto;
    }

    .tsutaeru01-menu ul {
        /*text-align:center;
font-size:12px;
white-space:nowrap;*/
    }

    .tsutaeru01-menu ul li {
        margin: 0px 0.1em;
    }

    .tsutaeru01-menu ul li .tsutaeru01-button {
        border: none;
    }

    .tsutaeru01-speech {
        position: static;
        width: 100%;
        font-size: 100%;
    }

    .sidr_navi03 .sidr_navi03_sub {
        border-bottom: 3px solid #a52e5a;
    }

    #body button.tsutaeru01-button.tsutaeru01-button-speech-start,
    #body button.tsutaeru01-button.tsutaeru01-button-speech-control,
    #body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
        width: 50%;
        padding: 12px 20px 12px 10px;
        text-align: left;
        text-decoration: none;
        position: relative;
    }

    @media only screen and (max-width: 1024px) {

        #body button.tsutaeru01-button.tsutaeru01-button-speech-start,
        #body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {
            font-size: 100%;
        }

        #body button.tsutaeru01-button.tsutaeru01-button-speech-start,
        button.tsutaeru01-button.tsutaeru01-button-speech-control {
            border-right: 1px solid #4E7D15 !important;
        }
    }

    @media only screen and (max-width: 480px) {

        /*
        #body button.tsutaeru01-button.tsutaeru01-button-speech-start,
        #body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config {

            display: block !important;
        }

        #body button.tsutaeru01-button.tsutaeru01-button-speech-control {
            display: none !important;
        }
*/
    }

    #body button.tsutaeru01-button.tsutaeru01-button-speech-start::before,
    #body button.tsutaeru01-button.tsutaeru01-button-speech-control::before,
    #body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config::before {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        margin-top: -4px;
        width: 6px;
        height: 6px;
        border-top: 1px solid #999;
        border-right: 1px solid #999;
        transform: rotate(45deg);
    }

    @media only screen and (max-width: 1024px) {

        #body button.tsutaeru01-button.tsutaeru01-button-speech-start::before,
        #body button.tsutaeru01-button.tsutaeru01-button-speech-control::before,
        #body button.tsutaeru01-button.tsutaeru01-button-config.tsutaeru01-button-speech-config::before {
            display: none;
        }
    }

    /*
    .tsutaeru01-speech-buttons {
        white-space: nowrap;
    }
    
    @media only screen and (max-width: 1024px) {
        .tsutaeru01-speech-buttons {
            white-space: normal;
        }
    }
*/

    .tsutaeru01-speech-audio {
        margin-left: 8px;
    }

    .tsutaeru01-config-body dl dt {
        font-weight: bold;
        float: none;
        width: auto;
        margin: 0px 0px 0.5em 0px;
        text-align: left;
    }

    .tsutaeru01-config-body dl dd {
        margin: 0px 0px 1em 0px;
        white-space: normal;
    }

    .tsutaeru01-text {
        font-size: 86%;
    }
}

/* .tsutaeru01-form */
.tsutaeru01-search-form {
    margin: 0px 0px 20px 0px;
}

.tsutaeru01-search-form-query {
    margin: 0.3em 0px;
    display: inline-block;
    max-width: 100%;
}

.tsutaeru01-search-form-query input {
    width: 15em;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.5em;
    line-height: 1;
}

.tsutaeru01-search-form-and_or {
    margin: 0.3em 0.3em;
    white-space: nowrap;
    display: inline-block;
}

.tsutaeru01-search-form-submit {
    margin: 0.3em 0.3em;
    display: inline-block;
}

/*.tsutaeru01-search-form-submit input{
font-size:100%;
line-height:1;
display:inline-block;
padding:0.5em 1em;
border:1px solid #05203a;
border-radius:3px;
text-decoration:none;
background:#05203a;
color:#FFF;
cursor:pointer;
}*/
.tsutaeru01-search-list {
    font-size: 100%;
    margin: 0px 0px 30px 0px;
    padding: 0px 20px;
    list-style: none;
}

.tsutaeru01-search-list li {
    font-size: 100%;
    margin: 0px 0px 15px 0px;
    padding: 0px;
}

.tsutaeru01-search-list-header {
    margin: 0px 0px 5px 0px;
}

.tsutaeru01-search-list-body {
    font-size: 90%;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 20px;
}

.tsutaeru01-search-pager {
    margin: 20px 0px 20px 0px;
    padding: 0px;
    text-align: center;
}

.tsutaeru01-search-pager li {
    display: inline-block;
    margin: 0px 0.25em;
    padding: 0px;
}

.tsutaeru01-search-pager li a,
.tsutaeru01-search-pager li span,
.tsutaeru01-search-pager li em {
    display: inline-block;
    border: 1px solid #05203a;
    line-height: 1.0;
    padding: 0.5em;
    border-radius: 3px;
    text-decoration: none;
    background: #FFF;
    min-width: 1em;
}

.tsutaeru01-search-pager li em {
    font-style: normal;
}

/*.tsutaeru01-search-pager li a{
cursor:pointer;
background-color:#05203a;
color:#FFF;
}*/
/*.tsutaeru01-search-pager li span{
background-color:#05203a;
color:#FFF;
opacity:0.5;
}*/

.tsutaeru01-speech-audio-container {
    position: fixed;
    top: 250px;
    left: 10px;
    z-index: 100;
}

@media only screen and (max-width: 1024px) {
    .tsutaeru01-speech-audio-container {
        position: relative;
        top: 0;
        left: 0;
    }

}

/* ▲▲▲▲▲▲ 伝えるWEB ▲▲▲▲▲▲ */