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-style: normal;
  font-weight: normal;
  font-size: 106%;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html{
  scroll-behavior: smooth;
}
body{
  font-family:'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height:1.5;
}
/*------------------------------------
ヘッダー
------------------------------------*/
header {
  border-top: 5px solid #90ee90;
}
header .inner {
  padding-top: 5px;
  padding-bottom: 8px;
}
header p {
  padding-bottom: 10px;
}
header a {
  text-decoration: none;
}
header .logo-area {
  float: left;
}
header .logo-area p {
  font-size: 85%;
}
header .pc-right-area {
  float: right;
  width: 320px;
}
header .pc-right-area a {
  color: #6B463E;
}
header .pc-right-area a:hover {
  text-decoration: underline;
}
header .pc-right-area ul {
  overflow: hidden;
  margin-top: 8px;
}
header .pc-right-area ul li {
  float: left;
  margin-top: 5px;
}
header .pc-right-area ul li span {
  vertical-align: top;
}
header .sp-right-area, header .menuBox {
  display: none;
}
ol, ul {
  list-style: none;
}
a:focus {
  outline: none;
}
img{
  vertical-align: bottom;
}
/*------------------------------------
header
------------------------------------*/
body {
  font: 13px/1.231 arial, helvetica, clean, sans-serif;
  color: #6B463E;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}
a {
  color: #7a48d5;
}
img {
  border: none;
  vertical-align: bottom;
}
/*------------------------------------
レイアウト
------------------------------------*/
#contents {
  margin-top: 40px;
  overflow: hidden;
}
.inner {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 960px) {
  .inner {
    padding: 0 10px;
    box-sizing: border-box;
  }
}
@media (max-width: 750px) {
  #contents {
    margin-top: 10px;
  }
}
@media (max-width: 750px) {
  header {
    border-bottom: 1px #3cb371 solid;
    /*隠れているメニュー*/
  }
  header .inner {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  header .logo-area {
    width: 80%;
    max-width: 300px;
    float: left;
    box-sizing: border-box;
    padding-top: 10px;
  }
  header .logo-area p {
    display: none;
  }
  header .sp-right-area {
    display: block;
    width: 18%;
    max-width: 120px;
    float: right;
    position: relative;
  }
  header .sp-right-area li {
    float: left;
    text-align: center;
    box-sizing: border-box;
    font-size: 70%;
  }
  header .sp-right-area li img {
    width: 32px;
    height: auto;
  }
  header .sp-right-area li span {
    display: block;
    margin-top: 4px;
  }
  header .sp-right-area li a {
    color: #6B463E;
  }
  header .menuBox {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000080;
    z-index: 100;
    opacity: 0;
    transition: .5s;
  }
  header .menuBox li {
    border-bottom: 2px dotted #fff;
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding: 20px 3px;
  }
  header .menuBox li:nth-child(2n+1) {
    border-right: 2px dotted #fff;
  }
  header .menuBox li a {
    text-decoration: none;
    color: #fff;
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    vertical-align: middle;
    font-size: 12px;
  }
  header .menuBox li a:before {
    vertical-align: middle;
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    vertical-align: middle;
  }
  header .menuBox .btn {
    text-align: center;
    padding: 15px 10px;
  }
  header .menuBox .btn span {
    display: block;
    max-width: 90px;
    color: #fff;
    margin: 180px auto 0;
    border: 1px #fff solid;
    border-radius: 4px;
    padding: 10px;
  }
  .pc-right-area {
    display: none;
  }
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .drawer_hidden{
    display: none;;
  }
  .drawer_open{
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    cursor: pointer;
  }
  .drawer_open span,.drawer_open span:before,.drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  .drawer_open span:before {
    bottom: 8px;
  }
  .drawer_open span:after {
    top: 8px;
  }
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #drawer_input:checked ~ .menuBox {
    display: block;
    animation-name:fadeInAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
  }
}
/*----------------------------------
グローバルナビ
----------------------------------*/
.nav-global {
  background-color: #000080;
  border-bottom: 4px solid #3cb371;
}
.nav-global ul {
  margin: 0 auto;
  padding: 3px 0;
  max-width: 960px;
  list-style: none;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.nav-global ul li {
  border-right: 2px dotted #E5E5E5;
  color: #FFFFFF;
  text-align: center;
  width: 15%;
  box-sizing: border-box;
  font-size: 94%;
}
.nav-global ul li:last-child {
  border-right: none;
}
.nav-global ul li:first-child {
  width: 50px;
}
.nav-global ul li:first-child a:hover, .nav-global ul li:first-child a.beige {
  background: none;
  opacity: .5;
}
.nav-global ul li a {
  font-size: 116%;
  font-weight: bold;
  color: #FFFFFF;
  display: block;
  padding: 10px 0;
  margin: 2px;
  text-decoration: none;
}
.nav-global ul li a:hover {
  background: #fdf6f6;
  color: #6B463E;
}
.nav-global ul li a.beige {
  display: inline-block;
}
.nav-global ul li a span {
  font-weight: bold;
}
@media (max-width: 960px) {
  .nav-global ul li:first-child {
    border-left: none;
  }
  .nav-global ul li:last-child {
    border-right: none;
  }
  .nav-global ul li a span {
    display: none;
  }
}
@media (max-width: 750px) {
  .nav-global {
    display: none;
  }
}
@media (min-width: 751px) {
  .menuBox {
    display: none !important;
  }
}
/*------------------------------------
フッター
------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  text-decoration: none;
  background-color: #000080;
  display: block;
  text-align: center;
  border-radius: 24px;
}
.pagetop::before {
  content: '\f062';
  font-family: 'Font Awesome 6 Free';
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 48px;
}
.foot-up {
  background-color: #e0ffff;
  border-top: 4px solid #000080;
  padding: 30px 0;
}
.foot-up a {
  color: #6B463E;
  text-decoration: none;
}
.foot-up nav {
  border-right: 1px solid #e0dedf;
  border-left: 1px solid #fff;
  overflow: hidden;
  box-sizing: border-box;
}
.foot-up .box {
  float: left;
  min-height: 220px;
  width: 23%;
  border-left: 1px solid #e0dedf;
  border-right: 1px solid #fff;
  font-size: 93%;
  box-sizing: border-box;
  padding: 0 0 0 1.5%;
}
.foot-up ul li {
  list-style: inside disclosure-closed;
  background-size: 14px auto;
  padding: 0 0 15px 0;
}
.foot-up .boxforth {
  width: 77%;
  font-size: 100%;
  padding-right: 1.5%;
}
.foot-up .boxforth dl dt {
  font-weight: bold;
  margin: 0 0 5px;
  font-size: 108%;
}
.foot-up .boxforth dl dd {
  margin-bottom: 5px;
  line-height: 1.5;
}
.foot-bottom {
  background-color: #000080;
  color: #fff;
  padding: 25px 0;
  overflow: hidden;
}
.foot-bottom .copyright {
  float: left;
  font-size: 85%;
}
@media (max-width: 750px) {
  footer {
    padding-top: 50px;
  }
  .pagetop {
    position: fixed;
    right: 10px;
  }
  .foot-up .box {
    display: none;
  }
  .foot-up .boxfirst {
    display: block;
    width: 40%;
  }
  .foot-up .boxfirst ul li {
    padding-bottom: 20px;
  }
  .foot-up .boxforth {
    display: block;
    width: 60%;
  }
}
@media (max-width: 560px) {
  .foot-up {
    padding: 20px 0;
  }
  .foot-up nav {
    border: none;
  }
  .foot-up .boxfirst, .foot-up .boxforth {
    width: 100%;
    float: none;
    border: none;
    padding-left: 0;
    padding-right: 0;
    min-height: 0;
    clear: both;
  }
  .foot-up .boxfirst {
    border-bottom: 1px solid #e0dedf;
  }
  .foot-up .boxfirst ul {
    overflow: hidden;
  }
  .foot-up .boxfirst ul li {
    width: 50%;
    float: left;
    box-sizing: border-box;
  }
  .foot-up .boxforth {
    border-top: 1px solid #fff;
    padding-top: 20px;
  }
  .foot-bottom {
    padding: 10px 0;
  }
  .foot-bottom .copyright {
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }
  .foot-bottom .copyright span {
    display: none;
  }
}
/*------------------------------------
下層ページ共通
------------------------------------*/
/*ページタイトル*/
h2.page-tit {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  text-shadow: 5px 5px 10px #fff, -5px -5px 10px #fff, 5px 5px 5px #fff, -5px -5px 10px #fff, 5px 5px  20px #fff, 5px 5px 10px #fff, -5px -5px 10px #fff, 5px 5px 5px #fff;
  color: #6B463E;
  background: #fff;
  background: url(https://tokyosasebo.com/wp-content/themes/tokyosasebo/header.jpeg) no-repeat center;
  background-size: cover;
  padding: 80px 0;
}
h2.page-tit::after {
  content: "🄫SASEBO";
  position: absolute;
  top: 317px;
  right: 0;
  color: #000;
  font-size: 10px;
}
@media (max-width: 750px) {
  h2.page-tit {
    font-size: 18px;
    padding: 40px 0;
  }
  h2.page-tit::after {
    content: "🄫SASEBO";
    position: absolute;
    top: 161px;
    right: 0;
    color: #000;
    font-size: 10px;
  }
}
/*レイアウト*/
.inpage-main {
  float: left;
  width: 75%;
  box-sizing: border-box;
  padding-right: 30px;
}
/*サイドメニュー*/
.inpage-sub {
  width: 25%;
  float: right;
}
.inpage-sub .webjet h2 {
  border-bottom: 1px #ccc solid;
  padding-bottom: 5px;
  margin-bottom: 5px;
  position: relative;
  font-weight: bold;
}
.inpage-sub .webjet h2:before {
  content: "";
  height: 20px;
  width: 6px;
  background: #6B463E;
  margin-right: 5px;
  padding-right: 6px;
}
.inpage-sub .webjet > li {
  margin-bottom: 40px;
}
.inpage-sub .webjet > li:last-child {
  margin-bottom: 0;
}
.inpage-sub .webjet #recent-posts-3 li, .inpage-sub .webjet #archives-3 li, .inpage-sub .webjet #categories-3 li {
  border-bottom: 1px #ccc dashed;
  padding: 5px 0px;
}
.inpage-sub .webjet #recent-posts-3 li a, .inpage-sub .webjet #archives-3 li a, .inpage-sub .webjet #categories-3 li a {
  padding-left: 15px;
  color: #6B463E;
  text-decoration: none;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.inpage-sub .webjet #recent-posts-3 li a::before, .inpage-sub .webjet #archives-3 li a::before, .inpage-sub .webjet #categories-3 li a::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 8px;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #D55548;
  border-right: 1px solid #D55548;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.inpage-sub .webjet #recent-posts-3 li a:hover, .inpage-sub .webjet #archives-3 li a:hover, .inpage-sub .webjet #categories-3 li a:hover {
  color: #D55548;
  text-decoration: underline;
}
@media (max-width: 750px) {
  .inpage-main {
    float: none;
    width: 100%;
    padding-right: 0px;
    margin-bottom: 30px;
  }
  .inpage-sub {
    clear: both;
    float: none;
    width: 100%;
  }
  .inpage-sub .webjet {
    border-top: 2px #ccc solid;
    padding-top: 20px;
  }
}
/*サイドメニュー（事務局便り）*/
/*タイトル*/
.inpage-main h3, .inpage-full h3 {
  margin-bottom: 20px;
  border-bottom: 4px solid #d2d2d2;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 138.5%;
}
.inpage-main h3:before, .inpage-full h3:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: #F19929;
  vertical-align: middle;
  margin-right: 0.5em;
  border: 2px solid #FDE88F;
  border-radius: 100%;
}
@media (max-width: 750px) {
  .inpage-main h3, .inpage-full h3 {
    font-size: 108%;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
/*記事*/
.article {
  padding: 0px 0px 0;
  color: #333;
  font-size: 105%;
  line-height: 1.7;
}
.article div {
  margin-bottom: 10px;
}
.article p {
  margin-bottom: 10px;
  display: block;
}
.article strong {
  font-weight: bold;
}
.article ul {
  list-style: disc;
  padding: 0 0 10px 20px;
}
.article ol {
  list-style: decimal;
  padding: 0 0 10px 20px;
}
/*.article h1,.article h2,.article h3,.article h4,.article h5,.article h6{
  font-weight:bold;
  clear: both;
}
.article h1{ font-size:130%;}
.article h2{ font-size:123%;}
.article h3{ font-size:116%;}
.article h4{ font-size:110%;}
.article h5{ font-size:105%;}
.article h6{ font-weight:normal;}*/
.article h1 {
  clear: both;
  font-size: 16px;
  background: #FDD5D1;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-weight: bold;
}
.article h2 {
  clear: both;
  font-size: 16px;
  font-weight: bold;
  border-left: 10px #C14C46 solid;
  margin-bottom: 20px;
  padding-left: 10px;
}
.article h3 {
  clear: both;
  font-size: 14px;
  border-left: 2px solid #C14C46;
  padding-left: 5px;
  margin: 0 0 15px 3px;
  font-weight: bold;
  border-bottom: none;
  padding-bottom: 0;
}
.article h3::before {
  display: none;
}
.article h4 {
  clear: both;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.article h5 {
  clear: both;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}
.article h6 {
  clear: both;
  font-weight: normal;
}
.article .wp-caption img {
  margin-bottom: 2px;
}
.article table {
  border: 1px #ccc solid;
  margin-bottom: 15px;
}
.article table td, .article table th {
  border: 1px #ccc solid;
  padding: 5px;
  text-align: left;
  vertical-align: top;
}
.article table th {
  text-align: center;
  vertical-align: middle;
}
.article blockquote {
  background: #ebebeb;
  border-radius: 5px;
  padding: 10px 10px 0;
  position: relative;
  margin-bottom: 10px;
}
.article blockquote::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 0;
  color: #999;
  font-size: 32px;
}
.article sup, .article sub {
  font-size: 74%;
}
.article sup {
  vertical-align: top;
}
.article sub {
  vertical-align: bottom;
}
.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}
.article img {
  max-width: 100%;
  height: auto;
}
img.alignleft, img.alignright {
  display: inline;
}
.aligncenter {
  text-align: center;
  margin: 0 auto;
  display: block;
}
.article input {
  padding: 4px;
  display: block;
}
.article pre {
  border: 1px #CCC solid;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.article em {
  font-style: italic;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝  ", "ＭＳ 明朝", serif;
}
.article .days {
  position: relative;
  display: inline-block;
  margin: 0 0 15px;
  padding: 5px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  background: #F19929;
  border-radius: 2px;
}
.article .days:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border: 8px solid transparent;
  border-top: 10px solid #F19929;
}
.article table {
  border: 1px #ccc solid;
}
.article table th, .article table td {
  border: 1px #ccc solid;
  padding: 5px;
}
#pager {
  padding-top: 20px;
}
#pager #pagePrev {
  float: left;
  width: 50%;
}
#pager #pageNext {
  float: right;
  text-align: right;
  width: 50%;
}
.wp-block-image.is-style-default {
  width: 100%;
}
/*------------------------------------
TOPページ
------------------------------------*/
.mainvisual-inner.container {
  width: 100%;
  max-width: 970px;
  height: auto;
  margin: 0 auto;
}
/*TOP 活動報告*/
.top-main {
  float: left;
  width: 70%;
}
.top-main h2 {
  margin-bottom: 20px;
  padding: 10px 0;
  border-top: 2px solid #D2D2D2;
  border-bottom: 2px solid #e7e7e7;
  font-size: 116%;
  font-weight: bold;
  position: relative;
}
.top-main h2:before {
  content: "";
  display: inline-block;
  width: 1.0em;
  height: 1.0em;
  background: #000080;
  vertical-align: middle;
  margin-right: 0.5em;
}
.top-main h2 a {
  font-size: 90%;
  position: absolute;
  right: 0;
  top: 10px;
  color: #6B463E;
  text-decoration: none;
  padding-left: 20px;
}
.top-main h2 a::before {
  position: absolute;
  content: "";
  left: 5px;
  top: 50%;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #4169e1;
  border-right: 1px solid #4169e1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.top-main h2 a:hover {
  text-decoration: underline;
}
.top-main a {
  color: #6B463E;
  text-decoration: none;
}
.top-main a:hover {
  text-decoration: underline;
}
.top-main .days {
  font-size: 77%;
  color: #91766E;
  margin-right: 10px;
}
.top-main .go-list {
  text-align: right;
  margin-top: 15px;
}
.top-main .go-list a {
  color: #6B463E;
  text-decoration: none;
  background: no-repeat left center;
  background-size: 16px auto;
  padding-left: 22px;
  display: inline-block;
  margin-left: 20px;
}
.top-main .information {
  margin-bottom: 30px;
}
.top-main .information dl {
  border-bottom: 2px dotted #D2D2D2;
}
.top-main .information dl dt {
  border-top: 2px dotted #D2D2D2;
  padding-top: 15px;
}
.top-main .information dl dt .info-cat {
  font-size: 77%;
  display: inline-block;
  padding: 4px 0;
  min-width: 8em;
  text-align: center;
  color: #fff;
}
.top-main .information dl dt .info-cat.other {
  background-color: #aaa;
}
.top-main .information dl dt .info-cat.news {
  background-color: #B0C47A;
}
.top-main .information dl dt .info-cat.report {
  background-color: #99f;
}
.top-main .information dl dt:first-child {
  border-top: none;
  padding-top: 0;
}
.top-main .information dl dt .days {
  display: inline-block;
  width: 107px;
  margin-right: 0;
}
.top-main .information dl dd {
  margin: -1.7em 0 15px 13.5em;
}
.top-main .active-report h3 {
  font-size: 108%;
  font-weight: bold;
  margin-bottom: 10px;
  clear: both;
}
.top-main .active-report .box {
  overflow: hidden;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px dotted #D2D2D2;
}
.top-main .active-report .box .img {
  float: left;
  width: 35%;
}
.top-main .active-report .box .img img {
  width: 100%;
  height: auto;
}
.top-main .active-report .box dl {
  float: right;
  width: 65%;
  box-sizing: border-box;
  padding-left: 20px;
}
.top-main .active-report .box dl dt {
  margin-bottom: 10px;
}
.top-main .active-report .box dl dd a {
  font-weight: bold;
}
.top-main .active-report .box dl dd p {
  margin-top: 10px;
}
@media (max-width: 750px) {
  .top-main .information dl dd {
    margin: 5px 0 10px 0;
  }
}
/*TOP バナー*/
.top-sub {
  width: 25%;
  float: right;
}
.top-sub li {
  margin-bottom: 15px;
}
.top-sub li p {
  margin-bottom: 3px;
}
.top-sub li a {
  color: #6B463E;
  text-decoration: none;
}
.top-sub li a:hover {
  opacity: 0.7;
}
.top-sub li img {
  width: 100%;
  height: auto;
}
@media (max-width: 650px) {
  .top-main, .top-sub {
    width: 100%;
    float: none;
  }
  .top-main {
    margin-bottom: 30px;
  }
  .top-sub li {
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding-left: 8px;
  }
  .top-sub li:nth-child(2n+1) {
    clear: both;
    padding: 0 8px 0 0;
  }
}
@media (max-width: 500px) {
  .top-main .active-report .box dl dd p {
    display: none;
    margin-top: 5px;
  }
  .top-sub li p {
    font-size: 77%;
  }
}
@media (max-width: 400px) {
  .top-sub li {
    width: 100%;
    float: none;
    padding: 0;
  }
  .top-sub li:nth-child(2n+1) {
    padding: 0;
  }
}
/*------------------------------------
東京佐世保会とは
------------------------------------*/
.about-top {
  background-color: #FEFEF2;
}
.about-top .meeting {
  padding: 100px 30px;
	padding-left: 20px;
}
.about-top .meeting h3 {
  color: #4169e1;
  font-size: 197%;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
.about-top .meeting h3:before {
  content: "";
  display: block;
  border-top: solid 1px #4169e1;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.about-top .meeting h3 span {
  background: #FEFEF2;
  padding: 0 20px;
  position: relative;
  z-index: 5;
  display: inline-block;
}
.about-top .meeting h3 br {
  display: none;
}
.about-top .meeting p {
  line-height: 2;
}
.about-top .meet-img {
  padding: 30px 0 50px;
}
.paddings{
	margin: 20px;
}
/*------------------------------------
活動報告
------------------------------------*/
.report .box {
  overflow: hidden;
  margin-bottom: 20px;
}
.report .box .img {
  float: left;
  width: 35%;
}
.report .box .img img {
  width: 100%;
  height: auto;
}
.report .box dl {
  float: right;
  width: 65%;
  box-sizing: border-box;
  padding-left: 20px;
}
.report .box dl dt {
  margin-bottom: 10px;
}
.report .box dl dd a {
  font-weight: bold;
}
.report .box dl dd p {
  margin-top: 10px;
}
.report .past {
  clear: both;
  background-color: #ededed;
  padding: 10px 10px 5px;
  margin-bottom: 40px;
}
.report .past p {
  font-weight: bold;
  font-size: 108%;
  margin-bottom: 10px;
}
.report .past li {
  margin-bottom: 5px;
}
.report .past li a {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  padding: 0 0 0 20px;
}
.report .past li a::before {
  position: absolute;
  content: "";
  left: 5px;
  top: 50%;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #4169e1;
  border-right: 1px solid #4169e1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 600px) {
  .report .box {
    margin-bottom: 10px;
  }
  .report .box .img {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .report .box dl {
    padding-left: 0;
    float: none;
    width: 100%;
  }
  .report .box dl dt {
    margin-bottom: 0;
  }
  .report .past {
    margin-bottom: 30px;
  }
}
/*------------------------------------
リンク
------------------------------------*/
.link ul {
  padding-bottom: 10px;
}
.link ul li a {
  padding: 0px 0px 5px 20px;
  color: #6B463E;
  position: relative;
  vertical-align: middle;
  display: inline-block;
}
.link ul li a::before {
  position: absolute;
  content: "";
  left: 5px;
  top: 50%;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #4169e1;
  border-right: 1px solid #4169e1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.link ul li a.active, .link ul li a:hover {
  text-decoration: underline;
  color: #4169e1;
}
/*------------------------------------
新着情報
------------------------------------*/
.information-list {
  margin-bottom: 30px;
}
.information-list dl {
  border-bottom: 2px dotted #D2D2D2;
}
.information-list dl dt {
  border-top: 2px dotted #D2D2D2;
  padding-top: 15px;
}
.information-list dl dt .info-cat {
  font-size: 70%;
  display: inline-block;
  padding: 4px 0;
  min-width: 8em;
  text-align: center;
  color: #fff;
}
.information-list dl dt .info-cat.other {
  background-color: #aaa;
}
.information-list dl dt .info-cat.news {
  background-color: #B0C47A;
}
.information-list dl dt .info-cat.report {
  background-color: #99f;
}
.information-list dl dt:first-child {
  border-top: none;
  padding-top: 0;
}
.information-list dl dt .days {
  font-size: 77%;
  color: #91766E;
  width: 100px;
  display: inline-block;
}
.information-list dl dd {
  margin: -1.5em 0 15px 15em;
}
.information-list dl dd a {
  color: #6B463E;
  text-decoration: none;
}
.information-list dl dd a:hover {
  text-decoration: underline;
}

@media (max-width: 750px) {
  .information-list dl dd {
    margin: 5px 0 10px 0;
  }
}
/*------------------------------------
協力企業
------------------------------------*/
.support .com-list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.support .com-list > li {
  width: calc(100% / 3);
  padding: 0 10px 20px;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
}
.support .com-list > li .li-in {
  border: 1px #ccc solid;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
}
.support .com-list > li .li-in .tit {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 5px;
}
.support .com-list > li .li-in .pref {
  margin-bottom: 5px;
  font-size: 80%;
}
.support .com-list > li .li-in .img {
  margin-bottom: 10px;
}
.support .com-list > li .li-in .img img {
  width: 100%;
}
.pp-hidden {
  display: none;
}
.pp-hidden .pp-hidden-in {
  background: #fff;
  width: 620px;
}
.pp-hidden .up {
  overflow: hidden;
}
.pp-hidden .up .txt {
  float: left;
  width: calc(100% - 270px);
}
.pp-hidden .up .txt h5 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}
.pp-hidden .up .txt .ganbare {
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.pp-hidden .up .txt p {
  margin-bottom: 5px;
  font-size: 80%;
}
.pp-hidden .up .txt p:last-of-type {
  margin-bottom: 0;
}
.pp-hidden .up .img {
  float: right;
  width: 270px;
}
.pp-hidden .up .img img {
  max-width: 100%;
  height: auto;
}
.pp-hidden .bt {
  clear: both;
}
@media (max-width: 720px) {
  .support .com-list > li {
    width: calc(100% / 2);
  }

  .pp-hidden .pp-hidden-in {
    width: 100%;
  }
  .pp-hidden .up .txt {
    width: 60%;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .pp-hidden .up .img {
    width: 40%;
  }
}
@media (max-width: 440px) {
  .support .com-list {
    display: block;
  }
  .support .com-list > li {
    display: block;
    width: 100%;
  }
  .pp-hidden .up .txt {
    width: 65%;
  }
  .pp-hidden .up .img {
    width: 35%;
  }
}
/*------------------------------------
404
------------------------------------*/
.notFound h4 {
  font-size: 116%;
  font-weight: bold;
  margin-bottom: 20px;
}
.notFound p {
  margin-bottom: 10px;
}
.notFound ul {
  margin-bottom: 10px;
}
.notFound ul li {
  margin-bottom: 5px;
}
.anothContact {
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  background: #ebebeb;
}
.anothContact p {
  margin-bottom: 5px;
}
.anothContact dl {
  border: 1px #6B463E solid;
  background: #fff;
  padding: 20px;
  display: inline-block;
  margin-right: 20px;
}
.anothContact dl dt {
  font-size: 108%;
  margin-bottom: 10px;
  font-weight: bold;
}
.anothContact dl dd a {
  font-size: 167%;
  font-weight: bold;
  color: #6B463E; 
}

@media (max-width: 750px) {
  .anothContact dl {
    display: block;
    margin-right: 0;
    padding: 10px;
  }
  .anothContact dl:first-child {
    border-bottom: none;
  }
  .anothContact dl dt {
    font-size: 100%;
  }
  .anothContact dl dd a {
    font-size: 116%;
  }
}
