/******************************************************************
Theme Name: keieikyo
******************************************************************/ 
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
/*	reset
--------------------------------------------*/
body, div, p, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  border: 0;
}
address, caption, cite, code, dfn, em, strong, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
img {
  border: 0;
  vertical-align: bottom;
}
a img {
  border: none;
}
a {
  color: #333;
  text-decoration: none;
  outline: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a.txtlink:link, a.txtlink:visited {
  text-decoration: underline;
}
a:hover, a:hover img {
  opacity: 0.7;
  transition: opacity .20s ease-in-out;
}
a:focus {
  outline: none;
}
dt {
  font-weight: bold;
}
/*	general
--------------------------------------------*/ :root {
  --cl-g: #1DA2A7;
  --cl-g-rgb: 29 162 167;
  --cl-gr: #f8f8f8;
  --font-med: 500;
  --font-bold: 700;
  --font-heavy: 900;
  --line-01: #ddd;
  --line-02: #f3f3f3;
  --pd-01: 1.875em;
}
body {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuPro-W3", "メイリオ", Meiryo, "MS PGothic", Osaka, sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  background: #FFF;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
.outer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#footer {
  margin-top: auto;
}
/* header
----------------------------------------------------------- */
#header {
  position: relative;
  width: 100%;
}
.header-inner {
  display: flex;
  gap: 0 5%;
  align-items: center;
  justify-content: space-between;
}
.logo-sect {
  width: 350px;
  flex-shrink: 0;
}
.logo {
  font-size: 1.25em;
  line-height: 1;
  font-weight: var(--font-bold);
}
.logo a {
  display: inline-block;
  padding: 1em 0 1em 60px;
  background-image: url("images/mark.png");
  background-position: 0 center;
  background-repeat: no-repeat;
}
.logo a span {
  font-size: 0.875em;
}
.nav-sect {
  width: 70%;
  background: #fff;
}
#gnav {
  display: flex;
  flex-direction: column-reverse;
  font-weight: var(--font-bold);
  padding-top: .8em;
}
#gnav .navi, #gnav .sub-navi {
  display: flex;
  justify-content: flex-end;
}
#gnav .navi li a {
  display: block;
  padding: .8em 1em;
  line-height: 1.4;
}
#gnav .sub-navi {
  margin-bottom: .5em;
}
#gnav .sub-navi a {
  display: block;
  color: #fff;
  padding: .3em 1em;
  background: #003D67;
  border-radius: .5em;
}
#gnav .sub-navi a span {
  position: relative;
  display: flex;
  gap: 0 5px;
  justify-content: center;
}
#gnav .sub-navi a span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 18px;
  background: url("images/header_user.png") no-repeat left top;
  border-radius: .5em;
}
.sp-btnbox {
  display: none;
}
@media (max-width: 1000px) {
  .logo span {
    display: block;
  }
  .logo-sect {
    width: 30%;
  }
}
@media (max-width: 980px) {
  .logo-sect {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    width: auto;
    font-size: 1.071rem;
  }
  .logo span {
    display: block;
    width: auto;
    font-size: 0.929rem;
  }
  .sp-btnbox {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 120px;
    height: 70px;
    cursor: pointer;
    z-index: 999;
    border: none;
    background: none;
  }
  .sp-btnbox:hover {
    opacity: 1;
  }
  .sp-btnbox div {
    position: relative;
    width: 70px;
    height: 70px;
  }
  .sp-btnbox .spbtn, .sp-btnbox .spbtn::before, .sp-btnbox .spbtn::after {
    display: block;
    position: absolute;
    height: 1px;
    background: #030303;
  }
  .sp-btnbox .spbtn {
    top: 50%;
    left: 10%;
    width: 30px;
    transition: .2s;
  }
  .sp-btnbox .spbtn::before, .sp-btnbox .spbtn::after {
    content: "";
    top: 50%;
    left: 0;
    transition: .3s;
  }
  .sp-btnbox .spbtn:before {
    margin-top: -10px;
    width: 30px;
  }
  .sp-btnbox .spbtn:after {
    margin-top: 8px;
    width: 30px;
  }
  .sp-btnbox.open .spbtn {
    background: transparent;
  }
  .sp-btnbox.open .spbtn::before, .sp-btnbox.open .spbtn::after {
    margin-top: -2px;
    background: #fff;
  }
  .sp-btnbox.open .spbtn:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 35px;
  }
  .sp-btnbox.open .spbtn:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    width: 35px;
  }
  .sp-btnbox .spbtntxt {
    margin-right: 10px;
  }
  .sp-btnbox .spbtntxt::before {
    font-size: 0.929em;
    letter-spacing: 0.15em;
    content: 'MENU';
    transition: 0.4s;
  }
  .sp-btnbox.open .spbtntxt::before {
    content: 'CLOSE';
    color: #fff;
  }
  .nav-sect {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: rgb(43, 162, 167, 0.95);
    z-index: 990;
  }
  #gnav {
    margin-top: 80px;
    flex-direction: column;
    padding: 5%;
  }
  #gnav .navi, #gnav .sub-navi {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  #gnav .sub-navi {
    margin-top: 2em;
    margin-bottom: 0;
  }
  #gnav .navi li, #gnav .sub-navi li {
    margin-bottom: 1em;
  }
  #gnav .navi a {
    background: #fff;
    border-radius: 1em;
  }
  #gnav .sub-navi a {
    padding: .8em 1em;
    line-height: 1.4;
    border-radius: 1em;
  }
  #gnav .sub-navi a span {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .nav-sect {
    width: 100%;
  }
}
@media screen and (min-width: 981px) {
  .nav-sect {
    display: block !important;
  }
}
/*  footer
--------------------------------------------*/
.ftr-disaster {
  margin-top: 4.625rem;
  padding: 1.5em 0;
  text-align: center;
  background: #F2F6F6;
}
.ftr-contents .inner {
  display: flex;
  gap: 30px 4%;
  align-items: center;
  padding: 2em 0;
}
.ftr-logo {
  margin-bottom: 1em;
}
.ftr-contents .ftr-info {
  width: max(300px, 30%);
}
.ftr-contents .ftr-navibox {
  flex: 1;
}
.ftr-snavi li {
  font-size: 0.875rem;
}
.ftr-note, .copy {
  font-size: 0.75em;
}
.ftr-nm {
  font-weight: var(--font-bold);
}
.ftr-navi ul, .ftr-snavi ul {
  display: flex;
  flex-wrap: wrap;
}
.ftr-navi ul {
  gap: 1em 2em;
}
.ftr-navi ul li {
  font-weight: var(--font-bold);
}
.ftr-navi ul li a {
  position: relative;
  display: flex;
  gap: .8em;
  align-items: center;
}
.ftr-navi ul li a::before {
  content: "";
  display: block;
  width: 14px;
  height: 6px;
  background: var(--cl-g);
  border-radius: 1em;
}
.ftr-snavi {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #ddd;
}
.ftr-snavi li a {
  padding: 0.5em 1em;
}
.ftr-snavi li + li {
  border-left: 1px solid#ddd;
}
@media (max-width: 768px) {
  .ftr-contents .inner {
    flex-direction: column-reverse;
  }
  .ftr-contents .ftr-info {
    width: 100%;
    text-align: center;
  }
}
/* common
----------------------------------------------------------- */
.wrapper {
  width: 100%;
  background: url("images/cmn_bg.png") no-repeat top center;
  background-size: 100% auto;
}
.breadcrum {
  padding: .5em 0;
  font-size: 0.929em;
  background: #f8f8f8;
}
.breadcrum ul li a {
  color: #666;
  text-decoration: underline;
}
.breadcrum ul li {
  display: inline;
}
.breadcrum ul li:nth-child(n+2):before {
  content: ">";
  margin: 0 0.8em;
  opacity: .5;
}
.cmain-titlebox {
  margin: auto;
  padding: 3em 0;
  text-align: center;
}
.cmain-title {
  font-size: clamp(1.375rem, 0.958rem + 1.39vw, 2rem);
  font-weight: var(--font-bold);
}
.cmain-title span {
  display: block;
  font-size: .5em;
}
.contents-wrapper {
  width: min(94%, 1200px);
  margin: auto;
  padding: min(8vw, 40px) min(6vw, 40px);
  background: #fff;
  border-radius: 3.125em;
  box-shadow: 0 0 10px #eee;
}
.inner {
  width: min(96%, 980px);
  margin: auto;
}
.cbox, .sec {
  margin-top: 5em;
}
.csbox {
  margin-top: 2em;
}
.c-title {
  position: relative;
  display: flex;
  gap: 10px;
  margin-bottom: 1em;
  padding-bottom: .5em;
  font-size: clamp(1.25rem, 1.083rem + 0.56vw, 1.5rem);
  font-weight: var(--font-bold);
  border-bottom: 1px solid #ddd;
}
.c-title::before {
  content: "";
  display: block;
  background: var(--cl-g);
  width: 8px;
  height: 1.5em;
  border-radius: .5em;
  flex-shrink: 0;
}
.c-mdtitle {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 0.813em;
  margin-bottom: .6em;
  color: var(--cl-g);
  font-weight: var(--font-bold);
  font-size: clamp(1.125rem, 1.042rem + 0.28vw, 1.25rem);
}
.c-mdtitle::before {
  content: "";
  display: block;
  background: var(--cl-g);
  width: 15px;
  height: 5px;
  border-radius: .5em;
  flex-shrink: 0;
}
.c-stitle {
  margin-bottom: 1em;
  color: var(--cl-g);
  font-weight: var(--font-bold);
  font-size: clamp(1.125rem, 1.042rem + 0.28vw, 1.25rem);
}
.flx {
  display: flex;
  gap: 1.25em 4%;
}
.c-img {
  width: 35%;
}
.c-txt {
  flex: 1;
}
.c-txt p + p {
  margin-top: 1em;
}
.al-c {
  text-align: center;
}
.al-r {
  text-align: right;
}
.txt-b {
  font-weight: var(--font-bold);
}
figcaption {
  text-align: center;
}
.note {
  padding: var(--pd-01);
  background: rgb(var(--cl-g-rgb) / .1);
  border-radius: 0.938em;
}
.brd-box {
  margin-top: var(--pd-01);
  padding: var(--pd-01);
  border: 5px solid var(--line-02);
  border-radius: 0.938em;
}
.cont-subnavi {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 1em;
}
.cont-subnavi li a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  min-width: 120px;
  justify-content: space-between;
  padding: 0.5em .5em 0.5em 1em;
  background: #f5f5f5;
  border-radius: .5em;
}
.cont-subnavi li a:after {
  content: "";
  display: block;
  margin: auto 5px;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid var(--cl-g);
  border-left: 2px solid var(--cl-g);
  transform: rotate(-45deg);
}
.post-cont .cont-subnavi li a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  min-width: 120px;
  justify-content: space-between;
  padding: 0.5em .5em 0.5em 1em;
  background: #f5f5f5;
  border-radius: .5em;
}
.post-cont .cont-subnavi li a:after {
  content: "";
  display: block;
  margin: auto 5px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--cl-g);
  border-bottom: 2px solid var(--cl-g);
  border-left: none;
  transform: rotate(-45deg);
}
.cbtn, .cbtn-bgw {
  margin-top: 1.25em;
}
.cbtn a {
  display: inline-flex;
  min-width: 12.5em;
  gap: 0 .625em;
  padding: .8em 1em .8em 1.5em;
  flex-flow: row nowrap;
  flex: 1 0;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: var(--font-bold);
  background: var(--cl-g);
  border-radius: .8em;
}
.cbtn a::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 100vmax;
  background: url("images/arrow-g.png") no-repeat center #fff;
}
.cbtn.cbtn-w a {
  color: #333;
  background: #fff;
  border-radius: 1em;
}
.cbtn.cbtn-w a::after {
  background: url("images/arrow-w.png") no-repeat center var(--cl-g);
}
.cbtn-bgw a {
  padding: .8em 1em .8em 1.5em;
  background: #fff;
  border-radius: 100vmax;
}
.cmn-list01 li {
  padding: .5em;
}
.cmn-list01 li + li {
  border-top: 1px solid var(--line-01);
}
.cmn-list01 li a {
  display: block;
  padding: .5em .8em;
  text-indent: -1em;
  margin-left: 1em;
}
.cmn-list01 li p {
  margin-top: .5em;
}
.mv iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
@media (max-width: 768px) {
  .flx {
    flex-direction: column;
  }
  .c-img {
    width: 100%;
    text-align: center;
  }
}
/*	top main
--------------------------------------------*/
.tmain {
  position: relative;
  width: min(94%, 980px);
  margin: auto;
  padding-top: 50px;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper1 .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-button-next,
.swiper-button-prev{
	color: #fff;

}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  height: 50px;
  width: 50px;
  margin: auto;
	background:rgb(0,0,0, .6);
	border-radius: 100vmax;
	z-index: -1;
}
.swiper-button-next svg, 
.swiper-button-prev svg{
	width:25px;
	height: 25px;
}




/*  top contents
--------------------------------------------*/
.top .sect {
  margin-top: 80px;
}
.tsect-hd {
  text-align: center;
}
.t-title {
  font-size: 2em;
  font-weight: var(--font-bold);
  margin-bottom: 1em;
}
.tnews-sect.flx section{
	flex:1;
	  background: #FEFAF2;
}
.tnews-btn a{
	display: flex;
	align-items: center;
	gap:.5em;
}
.tnews-btn a::before{
	content:"";
	display: block;
	width:18px;
	height: 18px;
	background:url("images/g_arrow.png") no-repeat left center;
	background-size: cover;
}
.t-title span {
  display: block;
  font-size: 0.6em;
}
.top .lead {
  font-weight: var(--font-med);
}
.top .c-stitle {
  font-size: 1.5em;
}
.toutline-sect .t-title, .tguide-sect .t-title, .tmemblist-sect .t-title {
  color: var(--cl-g);
}
.tabout-sect .t-title {
  color: #fff;
}
.tnews-hd {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: rgb(var(--cl-g-rgb)/ .14);
  border-radius: .5em .5em 0 0;
}
.tnews-list-box {
  padding: 1.5em;
  background: #FEFAF2;
}
.post-list li + li {
  margin-top: 1em;
}
/*  top bnr
--------------------------------------------*/
.tbnr-sect {
  background: #EFFAF8;
  border-radius: 3em 3em 0 0;
}
.tbnr-sect .tsect-hd {
  padding: 3em 3em 0;
}
.tbnr {
  position: relative;
  width: min(94%, 980px);
  margin: auto;
  padding: 3.125em 0;
}
.tbnr-title {
	display: flex;
	align-items: center;
	gap:.5em;
	margin-top:1em;
	font-size:1.25em;
  font-weight: var(--font-bold);
}

.tbnr-title::before{
	content:"";
	display: block;
	width:24px;
	height: 24px;
	background:url("images/g_arrow.png") no-repeat left center;
	background-size: cover;
}

.tbnr-txt{
	margin-left:2em;
}

.swiper2 {
  width: 100%;
  height: 100%;
}
.swiper2 .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: .7s;

}
.swiper2 .swiper-slide a{
		text-align: left;
}
.swiper2 .swiper-slide img {
  width: min(96%, 600px);
}
.tmemblist-sect {
  padding: 80px 0;
  background: url("images/tmemblist_bg.png") no-repeat left top;
  background-size: cover;
}
.tmemblist-sect .flx {
  align-items: center;
}
.tmemblist-sect .c-img {
  width: 50%;
}
.tabout-sect .c-img.mv {
  width: 50%;
}
.tabout-sect {
  padding: 3em 0;
  background: url("images/top_about_bg.png"), linear-gradient(-45deg, #28b7bc, #8cc7c9);
  background-size: cover;
}
.tabout-sect .tsect-hd {
  font-weight: var(--font-med);
  color: #fff;
}
.tabout-inner {
  margin-top: 2em;
  padding: min(4%, 40px);
  background: #fff;
  border-radius: 1em
}
.tabout-cont.flx {
  margin-top: 3em;
  gap: 0;
}
.tabout-cont.flx section {
  padding: 0 2em;
  flex: 1;
}
.tabout-cont.flx section + section {
  border-left: 1px solid #ddd;
}
.tabout-cont a::after {
  color: var(--cl-g);
}
.tabout-cont a, .top-contbtn a {
  display: flex;
  min-width: 12.5em;
  gap: 0 .625em;
  padding: .8em 0;
  flex-flow: row nowrap;
  flex: 1 0;
  color: var(--cl-g);
  align-items: center;
  justify-content: space-between;
  font-weight: var(--font-bold);
  border-bottom: 1px solid #ddd;
}
.tabout-cont a::after, .top-contbtn a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 100vmax;
  background: url("images/arrow-w.png") no-repeat center var(--cl-g);
}
.tabout-cont.flx section:first-child ul {
  margin-top: 1em;
  flex-wrap: wrap;
}
.tabout-cont.flx section:first-child ul li {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5em;
  font-size: 0.875em;
  background: rgb(var(--cl-g-rgb)/.14);
  border-radius: 0.5em;
}
.tabout-cont.flx section:last-child ul {
  margin-top: 1em;
  padding: 0.5em;
  background: #f8f8f8;
  border-radius: 0.5em;
}
.tbacknumber {
  padding: 1em;
  background: #FFFEDE;
}
.tbacknumber .c-stitle span {
  font-size: 0.75em;
}
.tcase {
  padding: 1em;
  background: #FEFAF2;
}
.toutline-sect .c-txt {
  text-align: left;
}
.toutline-g-sect {
  padding: 3em;
  background: url("images/top_outline_bg.png") no-repeat left top, linear-gradient(-45deg, #28b7bc, #8cc7c9);
  background-size: cover;
  border-radius: 3em;
}
.toutline-g-sect .t-title {
  text-align: center;
  color: #fff;
}
.toutline-g-sect .t-title + p {
  color: #fff;
}
.toutline-g-sect .flx li {
  padding: 1em;
  background: #fff;
  border-radius: 1em;
}
.toutline-g-sect .al-c {
  width: 100%;
}
.toutline-sect .tsect-hd .c-img {
  width: 50%;
}
.tguide-sect {
  font-weight: var(--font-bold);
}
.tguide-sect ul.flx {
  gap: 20px 5%;
  margin-top: 3em;
}
.tguide-sect ul li {
  width: 30%;
  border-radius: 1em;
}
.tguide-sect ul li a {
  display: flex;
  padding: 2em 1em;
}
@media (max-width: 860px) {
  .top .flx {
    flex-direction: column;
  }
  .c-img {
    width: 100%;
    text-align: center;
  }
  .tmemblist-sect .c-img, .tabout-sect .c-img.mv, .toutline-sect .tsect-hd .c-img {
    width: 100%;
  }
  .tguide-sect ul li {
    width: 30%;
    width: 100%;
  }
  .tabout-cont.flx section + section {
    border-left: none;
  }
  .tabout-cont.flx section:first-child ul li {
    width: 48%;
  }
  .tabout-cont.flx section:first-child ul.flx {
    flex-direction: row;
  }
	.tmemblist-sect .c-img {
  width: min(70%,370px);
}
}
/*	emergency-info
--------------------------------------------*/
.emergency-info {
  padding: 1.875em 0;
  background: #FEFAF2;
}
/* indexpage
----------------------------------------------------------- */
.indx-menu {
  display: flex;
  align-items: stretch;
  gap: 1em 4%;
  flex-wrap: wrap;
}
.indx-menu li {
  width: calc(100%/3 - 4%);
}
.indx-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3em;
  height: 100%;
  font-weight: var(--font-bold);
  background: rgb(var(--cl-g-rgb) / .2);
  border-radius: 1em;
}
/*social_welfare_corporation
----------------------------------------------------------- */
.onep-field .flx {
  padding: 2em;
  align-items: center;
  background: rgb(var(--cl-g-rgb)/ .08);
  border-radius: 1em;
}
.onep-field .c-stitle {
  font-size: 1.5em;
}
.onep-faq details summary {
  position: relative;
  display: block;
  margin-top: 1rem;
  padding: 1.5em calc(18px + 3em) 1.5em 1.5em;
  font-family: var(--font-bold);
  background: rgb(var(--cl-g-rgb)/ .14);
  cursor: pointer;
  border-radius: 1em
}
.onep-faq details summary::-webkit-details-marker {
  display: none;
}
.onep-faq details summary .icn {
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 14px;
  height: 14px;
  margin: auto;
  border: solid var(--cl-g);
  border-width: 2px 2px 0 0;
  transform: rotate(135deg);
}
.onep-faq details[open] summary .icn {
  transform: rotate(-45deg);
}
.onep-faq details .faq_a {
  padding: 3em;
  background: #FEFAF2;
  border-radius: 1em
}
.onep-faq dl + dl {
  margin-top: 1em;
}

@media (max-width: 860px) {
	.onep-field .flx{
		flex-direction: column;
	}
.onep-field .flx .c-txt{
    width: 100%;
  }
}

/* outline
----------------------------------------------------------- */
.outline-list dl {
  display: flex;
  gap: 20px 5%;
  padding: .8em 0;
  border-bottom: 1px solid var(--line-01);
}
.outline-list dl dt {
  width: 6em;
}
.outline-list dl dd {
  flex: 1;
}
.officer-list dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px #eee solid;
}
.officer-list dl + dl {
  margin-top: 1.5em;
}
.officer-list dl dt {
  width: 30%;
  padding: .5em;
  background: #f8f8f8;
  border-bottom: 1px #eee solid;
}
.officer-list dl dd {
  width: 70%;
  padding: .5em;
  border-bottom: 1px #eee solid;
}
.keiei-case-study .flx {
  padding: 1.875em 3.125em;
  background: #f8f8f8;
  border-radius: 1.875em;
}
.keiei-case-study .c-img{
	width:160px;
}
.keiei-case-study .c-img img{
  max-width: 160px;
}
.keiei-case-study .c-stitle span {
  font-size: clamp(1.125rem, 0.875rem + 0.83vw, 1.5rem);
  display: block;
}
.keiei-case-study .c-link {
  padding-top: 1.25em;
  border-top: 1px solid var(--line-01);
}
.activity .c-img {
  width: 50%;
  text-align: center;
}
.activity .c-txt {
  flex: 1;
}
.report .note {
  padding: 1em;
  background: var(--cl-gr);
}
.report .note ul li {
  border: none;
  padding: 0;
}
.shisei {
  margin-top: 1em;
  padding: 1.25em;
  background: rgb(var(--cl-g-rgb) /.08);
}
.haifu {
  border-top: 1px solid #ddd;
}
.haifu dt {
  padding-top: 1em;
}
.haifu dd {
  padding: 1em 0;
  border-bottom: 1px solid #ddd;
}
.shishin dd {
  margin-bottom: 1em;
}
.logomark-box {
  padding: 1.25em;
  background: rgb(var(--cl-g-rgb) /.08);
}
.logomark-box .c-img {
  padding: 1.25em;
  text-align: center;
  background: #fff;
  border-radius: 1em;
}
.logomark-sales dt {
  color: var(--cl-g);
}
.logomark-sales dd {
  margin-bottom: 1em;
}
.seinenkai-message p + p {
  margin-top: 1em;
}
.case-example .flx {
  flex-wrap: wrap;
  gap: 20px;
}
.case-example .flx section {
  padding: 1em;
  width: calc((100% - 40px) / 3);
  text-align: center;
  background: #f5f5f5;
}
.case-example .c-stitle span {
  display: block;
  color: #333;
  font-size: 0.875em;
}
.case-pickup ul {
  border-top: 1px solid var(--line-01);
}

@media (max-width: 860px) {
	.keiei-case-study .flx{
		flex-direction: column;
	}
.keiei-case-study .c-img {
    width: 100%;
	text-align: center;
	align-items: center;

}
}


@media (max-width: 768px) {
  .activity .c-img {
    width: 100%;
  }
}
/*	privacy / network / policy
----------------------------------------------------------- */
.privacy .sec h3 {
  font-weight: var(--font-bold);
  margin-top: var(--pd-01);
}
.network-list a {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.625em;
  padding: .5em 0;
}
.network-list a::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 18 / 19;
  width: 0.875em;
  height: auto;
  background-image: url(images/icon_subwin.png);
}
.policy h3 {
  margin-top: var(--pd-01);
}
.policy h4 {
  font-weight: var(--font-bold);
}
.policy ol {
  list-style: decimal;
  padding-left: 1em;
  margin-bottom: 1em;
}
.policy ol li {
  margin-top: 0.5em;
}
.policy ol li ol {
  padding-left: 0;
}
.policy ol li ol li {
  position: relative;
  list-style: none;
  counter-increment: number;
}
.policy ol li ol li::before {
  content: "("counter(number) ") ";
  display: inline-block;
  width: 1em;
  margin-right: .3em;
}
.policy ol li ol li.reset {
  counter-reset: num1;
}
/*	guide
----------------------------------------------------------- */
.guidetbl {
  border-top: 1px #eee solid;
  border-left: 1px #eee solid;
  margin-top: 20px;
  margin-bottom: 50px;
}
.guidetbl dl {
  display: table;
  width: 100%;
}
.guidetbl dt, .guidetbl dd {
  display: table-cell;
  padding: 20px;
  border-right: 1px #eee solid;
  border-bottom: 1px #eee solid;
}
.guidetbl dt {
  width: 20%;
  background: #f8f8f8;
}
.guidetbl dd:nth-child(2) {
  width: 30%;
}
.guidetbl dd:nth-child(3) {
  width: 50%;
}
.guidetbl dd li {
  text-indent: -1em;
  padding-left: 1em;
}
.guidetbl dd li:before {
  content: "・";
}
.guidetbl .tblhead dt, .guidetbl .tblhead dd {
  font-weight: bold;
  text-align: center;
  background: rgb(var(--cl-g-rgb) /.1);
}
.admissionflow {
  counter-reset: num;
  margin-top: 30px;
}
.admissionflow li {
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  padding: 1.5em 1em;
  gap: 1.25em;
  margin-bottom: 70px;
  background: rgb(var(--cl-g-rgb) /.08);
  border-radius: 1em;
}
.admissionflow li:last-child {
  margin-bottom: 50px;
}
.admissionflow li:before {
  content: counter(num);
  counter-increment: num;
  display: block;
  font-size: 1.25em;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 10px 16px;
  background: var(--cl-g);
  border-radius: 100vmax;
}
.admissionflow li:after {
  content: '';
  width: 20px;
  height: 20px;
  border: 0px;
  border-top: solid 4px var(--cl-g);
  border-right: solid 4px var(--cl-g);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  bottom: -50px;
  left: 50%;
  margin-left: -10px;
}
.admissionflow li:last-child:after {
  content: none;
}
.admissionflow li .cmnbtn02 {
  margin-top: 1em;
}
.officelist dl {
  display: table;
  width: 100%;
  border-bottom: 1px #eee solid;
}
.officelist h2 + dl { /*
  border-top:1px #eee solid;*/
}
.officelist dt, .officelist dd {
  display: table-cell;
  padding: 20px 1.5em;
}
.officelist dt {
  width: 35%;
  font-weight: bold;
}
.officelist dt.jimukyoku {
  text-indent: -1.5em;
}
.officelist dt.jimukyoku:before {
  content: "○";
  margin-right: 0.5em;
}
.officelist dd span {
  display: inline-block;
  margin: 0 1em;
}
.officelist dd .subwin {
  display: inline-block;
  margin-top: .5em;
  padding: .2em .8em;
  background: #eee;
  font-size: 0.875em;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .officelist dt, .officelist dd {
    display: block;
    width: auto;
  }
  .officelist dt {
    padding: 20px 1.5em 0;
  }
  .officelist dd {
    padding: 10px 1.5em 20px;
  }
}
@media (max-width: 480px) {
  .officelist dd span {
    display: block;
    margin: 0;
  }
}
.post-list li a {
  display: block;
  padding: 1em .5em;
}
.post-list li + li {
  border-top: 1px solid #eee;
}
.post-hd .c-title {
  font-size: 1.5rem;
  border: none;
}
.post-hd .c-title::before {
  content: none;
}
.post-btm {
  border-top: 1px solid #ddd;
  margin-top: 3em;
  text-align: center;
}
.seminar .post-txtbox dl {
  display: flex;
  width: 100%;
}
.seminar .post-txtbox dl:first-child {
  border-top: 1px solid #eee;
}
.seminar .post-txtbox dt, .seminar .post-txtbox dd {
  padding: 1.25em;
  border-bottom: 1px solid #eee;
}
.seminar .post-txtbox dt {
  width: 30%;
  background: #f8f8f8;
}
.seminar .post-txtbox dd {
  flex: 1;
}
.post-linkbox, .post-filebox, .post-imgbox {
  margin-top: 2em;
}
.post-linkbox li + li, .post-filebox li + li, .post-imgbox li + li {
  margin-top: .5em;
}
.backnumber .post-list a {
  display: flex;
}
.backnumber .post-date {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .seminar .post-txtbox dl {
    flex-direction: column;
  }
  .seminar .post-txtbox dt {
    width: 100%;
  }
  .seminar .post-txtbox dt {
    padding: 0.625em;
  }
  .seminar .post-txtbox dd {
    padding: 0.625em 0.625em 1.25em;
  }
}
.disaster.indx .post-list li {
  border-top: none;
}
.disaster.indx .post-list li + li {
  margin-top: 0.5em;
}
.disaster.indx .post-list li a {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
  background: rgb(var(--cl-g-rgb)/ .08);
  border-radius: 0.5em;
}
.disaster.indx .post-list li a::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 100vmax;
  background: url("images/arrow-w.png") no-repeat center var(--cl-g);
}
.disaster-hd .hd-title {
  text-align: center;
  font-weight: var(--font-bold);
  font-size: 1.5em;
  margin-bottom: 1em;
}
.disaster-article .post-list li {
  display: flex;
}
.disaster-article .post-list li .post-date {
  padding: 1em .5em;
}
/*


.kumamotolist dd p.mds01:first-child{
  font-weight:bold;
  margin:0 0 1em;
}
.kumamotolist dd p.mds02{
  color:#EE786B;
}
.kumamotolist dd p.mds03{
  font-weight:bold;
}

@media (max-width: 650px) {
.kumamotolist dt{
  float:none;
  width:auto;
  background:#f8f8f8;
}

.kumamotolist dd{
  padding:15px 15px 15px 15px;
}
}*/
/* icon
----------------------------------------------------------- */
.contents a[href$=".doc"]::before, .contents a[href$=".docx"]::before {
  display: inline-block;
  content: url(images/icon_word.png);
  margin-right: 7px;
  line-height: 1;
  vertical-align: middle;
}
.contents a[href$=".pdf"]::before {
  display: inline-block;
  content: url(images/icon_pdf.png);
  margin-right: 0.813em;
  line-height: 1;
  vertical-align: middle;
}
.subwin::after {
  display: inline-block;
  content: url(images/icon_subwin.png);
  margin-left: 7px;
  transform: scale(0.8);
  vertical-align: middle;
  /*
  content:url(images/icon_subwin.png);
  margin-left:7px;
	  transform: scale(0.1);*/
}
.post-list .subwin::after {
  content: none;
}
.post-list .subwin::before {
  display: inline-block;
  content: url(images/icon_subwin.png);
  margin-right: 0.813em;
  transform: scale(0.8);
  vertical-align: middle;
}
.contents a[href$=".doc"]::before, .contents a[href$=".docx"]::before {
  display: inline-block;
  content: url(images/icon_word.png);
  margin-right: 0.813em;
  line-height: 1;
  vertical-align: middle;
}
.contents a[href$=".xls"]::before, .contents a[href$=".xlsx"]::before {
  display: inline-block;
  content: url(images/icon_excel.png);
  margin-right: 0.813em;
  line-height: 1;
  vertical-align: middle;
}
/*
.excel::after,
.contents a[href$=".xls"]::after,
.contents a[href$=".xlsx"]::after,
.topnewsinner a[href$=".xls"]::after,
.topnewsinner a[href$=".xlsx"]::after{
  display:inline-block;
  content:url(images/icon_excel.png);
  margin-left:7px;
  line-height:1;
  vertical-align:middle;
}









.pdf::after,
.topnewsinner a[href$=".pdf"]::after{
  display:inline-block;
  content:url(images/icon_pdf.png);
  margin-left:7px;
  line-height:1;
  vertical-align:middle;
}


.word::after,
.topnewsinner a[href$=".doc"]::after,
.topnewsinner a[href$=".docx"]::after{
  display:inline-block;
  content:url(images/icon_word.png);
  margin-left:7px;
  line-height:1;
  vertical-align:middle;
}
.excel::after,
.contents a[href$=".xls"]::after,
.contents a[href$=".xlsx"]::after,
.topnewsinner a[href$=".xls"]::after,
.topnewsinner a[href$=".xlsx"]::after{
  display:inline-block;
  content:url(images/icon_excel.png);
  margin-left:7px;
  line-height:1;
  vertical-align:middle;
}

.zip::after,
.contents a[href$=".zip"]::after,
.topnewsinner a[href$=".zip"]::after{
  display:inline-block;
  content:url(images/icon_zip.png);
  margin-left:7px;
  line-height:1;
  vertical-align:middle;
}


.subwinw::after{
  content:url(images/icon_subwinwhite.png);
  margin-left:7px;
}
*/