/* ===========================================================
   # BASE
=========================================================== */
/* = LAYOUT
----------------------------------------------------------- */
/* HEAD */
.pageTtl {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 -1rem 2rem;
  padding: 8rem 0;
  text-shadow: 0 0 1rem black;
}

.breadCrumbs {
  border-bottom: 1px solid #ebebeb;
  font-size: 1.2rem;
  line-height: 3rem;
}

/* MAIN */
.contBody {
  padding-bottom: 3rem;
}

/* SIDE */
@media (min-width: 768px) {
  /* HEAD */
  .pageTtl {
    font-size: 5rem;
    font-weight: 300;
    padding: 16rem 0;
  }
  /* MAIN */
  .contBody {
    padding: 0 3rem 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  /* HEAD */
  .pageTtl {
    margin: 3rem 6rem;
  }
  /* MAIN */
  .contBody {
    padding: 0 6rem 10rem 6rem;
  }
}

/* ===========================================================
   # PAGINATION
=========================================================== */
.pagination {
  border-top: 1px dotted #ccc;
  padding: 1em 0 2em;
}

.pagination .alignleft, .pagination .alignright {
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 49%;
}

.pagination a, .pagination span {
  color: #999;
  padding: 0 8px;
  text-decoration: none;
}

.pagination a:hover {
  text-decoration: underline;
}

.pagination span.current {
  font-weight: bold;
  padding: 0 8px;
}

/* ===========================================================
   # CONTENT
=========================================================== */
.entryBody {
  line-height: 2em;
  padding-bottom: 3em;
}

.entryTtl {
  background: #1e6432;
  color: #fff;
  font-size: 1.1em;
  line-height: 1.2;
  padding: 0.5rem 1rem;
}

/* = HREF
----------------------------------------------------------- */
a.linkArrow {
  border: 1px solid #1d6431;
  color: #1d6431;
  display: block;
  line-height: 1.4;
  margin: auto;
  padding: 2rem 1rem;
  position: relative;
  max-width: 50rem;
  text-decoration: none;
  transition: all 300ms 0s ease;
}

a.linkArrow::after {
  border-right: 1px solid #1d6431;
  border-top: 1px solid #1d6431;
  content: "";
  margin: auto;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 1px;
  bottom: 0;
  transform: rotate(45deg);
  transition: all 300ms 0s ease;
}

a.linkArrow:hover {
  background: #1d6431;
  color: #fff;
}

a.linkArrow:hover::after {
  border-color: #fff;
}

/* PDF */
a.linkArrow.linkPdf {
  border-left: 7rem solid #1d6431;
  padding-left: 2rem;
  padding-right: 4rem;
}

a.linkArrow.linkPdf.two {
  padding-top: .9rem;
  padding-bottom: .9rem;
}

a.linkArrow.linkPdf:before {
  color: #fff;
  content: '\f1c1';
  font-family: "Font Awesome 5 Free";
  font-size: 2.6rem;
  line-height: 1;
  margin: auto;
  height: 2.6rem;
  position: absolute;
  left: -4.5rem;
  top: 0;
  bottom: 0;
}

/* DOC */
a.linkArrow.linkDoc {
  border-left: 7rem solid #1d6431;
  padding-left: 2rem;
  padding-right: 4rem;
}

a.linkArrow.linkDoc.two {
  padding-top: .9rem;
  padding-bottom: .9rem;
}

a.linkArrow.linkDoc:before {
  color: #fff;
  content: '\f1c2';
  font-family: "Font Awesome 5 Free";
  font-size: 2.6rem;
  line-height: 1;
  margin: auto;
  height: 2.6rem;
  position: absolute;
  left: -4.5rem;
  top: 0;
  bottom: 0;
}

a.linkArrow:hover span {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* = FLEX
----------------------------------------------------------- */
.entryBody ul.flex li {
  line-height: inherit;
  padding: 0;
}

.entryBody ul.flex.imgList {
  margin-bottom: 0;
}

.entryBody ul.flex.imgList li {
  line-height: 1.6;
  padding: 1rem;
}

.entryBody ul.flex.imgList img {
  display: inline-block;
}

/* = IMG
----------------------------------------------------------- */
.entryBody img {
  display: block;
  margin: 0 auto 10px;
}

.wp-caption {
  clear: both;
  margin: auto;
  max-width: 100%;
  /*text-align: center;*/
}

p.wp-caption-text {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .wp-caption.alignleft {
    margin-right: 3rem;
  }
  .wp-caption.alignright {
    margin-left: 3rem;
  }
}

/* = TABLE
----------------------------------------------------------- */
.tblWrap {
  overflow: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.tblWrap::-webkit-scrollbar {
  height: 5px;
}

.tblWrap::-webkit-scrollbar-track {
  background: #F1F1F1;
}

.tblWrap::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}

.tblWrap th, .tblWrap td {
  border: 1px solid #ccc;
  font-size: 1.4rem;
  padding: 1rem;
  vertical-align: top;
}

.tblWrap th {
  background: #eee;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

/* = ETC
----------------------------------------------------------- */
p.small {
  line-height: 1.6;
}

/* HR */
.entryBody hr {
  border-top: 1px solid #ccc;
  clear: both;
}

.entryBody hr.clear {
  border: none;
  margin: 0;
}

/* BOX */
.box01 {
  background: #fcfcfc;
  border: 1px solid #ddd;
  margin: 1em 0;
  padding: 1rem;
}

div.box01 p {
  margin: 0;
}

/* ETC */
a.moretext {
  background: #165292;
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  float: right;
  font-size: 11px;
  font-weight: 700;
  margin: 7px 0 0;
  padding: 0 12px;
  text-decoration: none;
  vertical-align: 1px;
}

@media (min-width: 768px) {
  .entryTtl {
    font-size: 1.3em;
    line-height: 1.4;
    padding: 1rem 1.5rem;
  }
  /* IMG */
  .entryBody img.alignleft,
  .entryBody img.alignright {
    float: none;
  }
  /* BOX */
  .box01 {
    border-width: 3px;
    margin: 2em 0;
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  /* IMG */
  .entryBody img {
    display: inline;
  }
  img.aligncenter {
    display: block;
    margin: 0 auto 1rem;
  }
  .entryBody img.alignleft {
    float: left;
    margin: 0 2rem 1rem 0;
  }
  .entryBody img.alignright {
    float: right;
    margin: 0 0 1rem 2rem;
  }
}

/* ===========================================================
   # NEWS
=========================================================== */
.newsList {
  justify-content: space-between;
  margin-bottom: 2rem;
}

.newsList li {
  /*padding: 0 0.6rem;*/
}

.newsList li a {
  background: #fff;
  border: 1px solid #dcdcdc;
  flex-direction: column;
  font-size: 1.2rem;
  line-height: 1.5;
  padding-bottom: 2.5rem;
}

.newsList li a img {
  width: 100%;
}

.newsList li a p {
  background: #a48c81;
  color: #fff;
  font-size: 1.1rem;
  padding: 4px 5px 5px;
}

.newsList li a h3 {
  margin: 1rem 1.5rem 2rem;
  height: 7rem;
}

.newsList li a h3 span {
  display: block;
  padding-bottom: 1em;
}

.newsList li a svg {
  fill: #7d5b4c;
  width: 2rem;
}

@media (min-width: 768px) {
  .newsList {
    margin: 0 6rem 6rem;
  }
  .newsList li {
    margin-bottom: 2rem;
    width: 32%;
  }
}

/* ===========================================================
   # THUMB LIST
=========================================================== */
.thumbList {
  justify-content: space-between;
  margin-bottom: 2rem;
}

.thumbList li {
  margin-bottom: 1rem;
  width: 49%;
}

.thumbList li a {
  background: #fff;
  border: 1px solid #dcdcdc;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.4rem;
  line-height: 1.4;
  padding-bottom: 1rem;
  height: 100%;
}

.thumbList li a img {
  width: 100%;
}

.thumbList li a .thumbList_head {
  color: #888;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.5rem 0.5rem 0;
}

.thumbList li a .thumbList_headCat {
  background: #1e6432;
  border-radius: 3px;
  color: #fff;
  font-size: 1.4rem;
  padding: 0 0.5em 2px;
}

.thumbList li a h3 {
  padding: .5rem;
}

.thumbList li a svg {
  fill: #7d5b4c;
  width: 2rem;
}

@media (min-width: 768px) {
  .thumbList li {
    width: 32%;
  }
}

@media (min-width: 1024px) {
  .thumbList {
    margin: 0 6rem 6rem;
  }
  .thumbList li {
    margin-bottom: 2rem;
  }
  .thumbList li a {
    font-size: 1.6rem;
    padding-bottom: 1.5rem;
  }
  .thumbList li a .thumbList_head {
    padding: 1.5rem 1.5rem 0;
  }
  .thumbList li a h3 {
    padding: 1rem 1.5rem;
  }
}

.thumbList.single {
  margin-top: -3rem;
}

.thumbList.single li a {
  font-size: 1.2rem;
  font-weight: 400;
}

.thumbList.single li a h3 {
  font-weight: 500;
}

@media (min-width: 768px) {
  .thumbList.single li:nth-child(4) {
    display: none;
  }
}

@media (min-width: 1024px) {
  .thumbList.single {
    margin: 0;
  }
}

/* ===========================================================
   # TOUCH
=========================================================== */
/* = EVENT LIST
----------------------------------------------------------- */
.eventList {
  justify-content: space-between;
  margin-bottom: 3rem;
}

.eventList_item {
  margin-bottom: 2rem;
  width: 100%;
}

.eventList_item.align_c {
  color: #888;
  padding: 3rem 0;
  width: 100%;
}

.eventList_item a {
  border: 1px solid #ccc;
  display: block;
  padding-bottom: 1.5rem;
  height: 100%;
}

.eventList_status {
  background: #b40701;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: .8em;
  margin-left: 1rem;
  padding: 3px 1rem;
}

.eventList_ttl {
  color: #1e6432;
  font-size: 1.2em;
  font-weight: 500;
  padding: 1rem;
}

.eventList_date {
  font-size: .9em;
  padding: 0 1rem;
}

.eventList_item img {
  margin-bottom: 1rem;
  width: 100%;
}

/* = AWARD
----------------------------------------------------------- */
.entryBody .awardTbl {
  min-width: 68.8rem;
}

.entryBody .awardTbl th,
.entryBody .awardTbl td {
  font-size: 1.4rem;
  line-height: 1.4;
  padding: .5rem;
  white-space: nowrap;
}

.entryBody .awardTbl td:nth-child(1) {
  width: 17rem;
}

.entryBody .awardTbl td:nth-child(2) {
  width: 11rem;
}

.entryBody .awardTbl td:nth-child(4) {
  white-space: normal;
  width: 40rem;
}

/* = @media width 768px -->
----------------------------------------------------------- */
@media (min-width: 768px) {
  .eventList {
    margin-bottom: 6rem;
  }
  .eventList_item {
    width: 31%;
  }
  .eventList_item.align_c {
    padding: 10rem 0;
  }
}

/* ===========================================================
   # SUPPORT
=========================================================== */
/* = @media width 768px -->
----------------------------------------------------------- */
@media (min-width: 768px) {
  .gifts {
    display: inline-flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .gifts ol {
    padding-right: 2rem;
  }
}

/* = DONATION
----------------------------------------------------------- */
/* LIST */
.donationList {
  margin-bottom: 3rem;
}

.donationList .entryBody {
  padding-top: 2rem;
}

.donationList ul li {
  border-top: 1px solid #ccc;
  padding: 3rem 0;
}

.donationList ul li .body {
  padding-top: 1rem;
}

.donationList ul li .body .ttl {
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.4;
}

.donationList ul li .body .price {
  font-weight: 500;
  color: #d83f4a;
  font-size: 1.1em;
  padding: 1em 0;
}

.donationList ul li .body .overview {
  line-height: 1.6;
}

.donationList ul li .link {
  justify-content: space-between;
  padding-top: 2rem;
}

.donationList ul li .link a {
  background: #336337;
  color: #fff;
  font-weight: 500;
  line-height: 5rem;
  width: 48%;
}

@media (min-width: 768px) {
  .donationList ul li .thumb {
    width: 40%;
  }
  .donationList ul li .body {
    padding: 0 0 0 2rem;
    width: 60%;
  }
  .donationList ul li .link {
    padding-top: 3rem;
  }
  .donationList ul li .link a {
    font-size: 1.1em;
    line-height: 6rem;
  }
}

@media (min-width: 1024px) {
  .donationList .entryBody {
    padding-top: 6rem;
  }
}

@media (min-width: 1366px) {
  .donationList ul li .link a {
    line-height: 8rem;
  }
}

/* SINGLE */
.single-donation .contBody {
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .single-donation .contBody {
    padding-top: 6rem;
  }
}

/* ===========================================================
   # STUDY
=========================================================== */
/* = DOOR
----------------------------------------------------------- */
.learnDoor_list {
  text-align: center;
}

.learnDoor_list li a {
  border: 2px solid #1e6432;
  color: #1e6432;
  display: block;
  font-weight: 500;
  line-height: 5rem;
  text-decoration: none;
  transition: all 300ms 0s ease;
}

.learnDoor_list li a:hover {
  background: #1e6432;
  color: #fff;
}

@media (min-width: 768px) {
  .learnDoor_list li a {
    line-height: 10rem;
  }
}

/* = SINGLE
----------------------------------------------------------- */
.learnCont .entryBody {
  font-size: 1.8rem;
  font-weight: 300;
}

.learnCont .entryBody .entryTtl {
  font-size: 1.6em;
}

.learnCont .entryBody .learnWriter {
  font-size: 0.9em;
  line-height: 1.3;
  margin-bottom: 1em;
}

.learnCont .entryBody .learnSns {
  align-items: end;
  justify-content: flex-end;
  margin-bottom: 3rem;
}

.learnCont .entryBody .learnSns > * {
  margin: 0 0 0 1rem;
}

.learnCont .entryBody .wp-caption-text {
  text-align: right;
}

.learnCont .entryBody rt {
  font-weight: 400;
}

/* TAG */
.entryBody ul.tagList {
  align-items: center;
  justify-content: right;
  margin: 0;
}

.entryBody ul.tagList + * {
  margin-top: 0;
}

.entryBody ul.tagList li {
  margin: 0;
  width: auto;
}

.entryBody ul.tagList li:not(:last-child) {
  padding-right: .5rem;
}

.entryBody ul.tagList li.tagList_ico i {
  color: #7e5d4c;
  font-size: 1.8rem;
  margin-right: .5rem;
  transform: translateY(-0.6rem);
}

.entryBody ul.tagList li a {
  background: #eee;
  padding: 0 1rem;
  text-decoration: none;
}

/* ===========================================================
   # MEMBER
=========================================================== */
/* = DOOR
----------------------------------------------------------- */
.medal {
  vertical-align: top !important;
}

.medal i {
  font-size: 4rem;
  margin: 1rem 0;
}

.medal01 i {
  color: #C08D5E;
}

.medal02 i {
  color: #C9CACA;
}

.medal03 i {
  color: #DBB400;
}

/* = NEWSLETTER
----------------------------------------------------------- */
ul.newsletterList.flex {
  justify-content: space-between;
  padding: 0 1rem;
}

ul.newsletterList.flex li {
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  width: 48%;
}

ul.newsletterList.flex a {
  color: #111;
  display: block;
  text-decoration: none;
}

ul.newsletterList.flex p,
ul.newsletterList.flex img {
  margin: 0;
}

.newsletterList_itemNum {
  align-items: flex-end;
  justify-content: space-between;
  padding: 5px 0 2px;
}

.newsletterList_itemDate {
  font-size: .9em;
}

.newsletterList_itemThumb .icoPdf {
  fill: #fff;
  width: 2.4rem;
  right: 5px;
  bottom: 5px;
}

/* = EVENT
----------------------------------------------------------- */
.eventNum {
  display: block;
  font-size: .9em;
  padding: 0 0.5em 0.3rem 0;
}

/* = @media width 768px -->
----------------------------------------------------------- */
@media (min-width: 768px) {
  /* DOOR */
  .medal i {
    font-size: 5rem;
  }
  /* NEWSLETTER */
  ul.newsletterList.flex li {
    font-size: 1.4rem;
    width: 23%;
  }
  .newsletterList_itemDate {
    font-size: .8em;
  }
  /* EVENT */
  .eventNum {
    display: inline;
  }
}

/* = @media width 1024px -->
----------------------------------------------------------- */
@media (min-width: 1024px) {
  /* NEWSLETTER */
  ul.newsletterList.flex li {
    width: 17%;
  }
}

/* ===========================================================
   # ETC
=========================================================== */
/* = SINPLE LIST
----------------------------------------------------------- */
.sinpleList li {
  border-bottom: 1px dashed #ccc;
  line-height: 1.2;
  padding: 1.5rem 0;
}

/* = SINPLE TABLE
----------------------------------------------------------- */
.simpleTbl dt {
  width: 8rem;
}

.simpleTbl dd {
  width: calc(100% - 8rem);
}

/* = SITEMAP
----------------------------------------------------------- */
ul.sitemap.flex {
  line-height: 1.2;
}

ul.sitemap.flex ul {
  margin-bottom: 2rem;
}

ul.sitemap.flex ul li {
  font-size: .9em;
  margin: 0;
  padding: 0 1rem;
}

ul.sitemap.flex a {
  display: block;
  padding: .5rem 0;
  text-decoration: none;
}

ul.sitemap.flex > li > a {
  background: #1e6432;
  color: #fff;
  padding: 0.5rem 1rem;
}

ul.sitemap.flex ul li a {
  border-bottom: 1px dashed #ccc;
  color: #333;
}

/* = MAP
----------------------------------------------------------- */
.gMap {
  padding-bottom: 75%;
  width: 100%;
  height: 0;
}

.gMap iframe {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* EVENT */
.event iframe {
  width: 100%;
  height: 30rem;
}

/* = @media width 768px -->
----------------------------------------------------------- */
@media (min-width: 768px) {
  /* SITEMAP */
  ul.sitemap.flex ul {
    margin-bottom: 6rem;
  }
  ul.sitemap.flex a {
    padding: .8rem 0;
  }
  /* MAP */
  .gMap {
    padding-bottom: 56.25%;
  }
  /* EVENT */
  .event iframe {
    height: 50rem;
  }
}

/* ===========================================================
   # PROTECT
=========================================================== */
.protectTbl {
  width: 70rem;
}

.protectTbl td:first-child {
  width: 19rem;
}

/* = PROJECT
----------------------------------------------------------- */
.projectTbl {
  min-width: 88.4rem;
}

.projectTbl th,
.projectTbl td {
  font-size: .9em !important;
  padding: .5rem !important;
}

.projectTbl th {
  text-align: center;
  white-space: nowrap;
}

.projectTbl td:nth-child(1) {
  width: 26rem;
}

.projectTbl td:nth-child(2) {
  width: 24rem;
}

.projectTbl td:nth-child(3) {
  text-align: right;
  width: 10rem;
}
.projectTbl td:nth-child(4) {
  text-align: right;
  width: 10rem;
}
/* = @media width 1024px -->
----------------------------------------------------------- */
@media (min-width: 1024px) {
  .protectTbl {
    width: auto;
  }
}

/* ===========================================================
   # INQ
=========================================================== */
.inqTbl {
  margin-bottom: 3rem;
}

.inqTbl dt, .inqTbl dd {
  width: 100%;
}

.inqTbl dt {
  font-weight: 500;
}

.inqTbl dd {
  padding-bottom: 2rem;
}

.inqTbl dt span {
  color: #c00;
  font-size: 1.2rem;
  vertical-align: baseline;
}

/* = INPUT, TEXTAREA
----------------------------------------------------------- */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
textarea {
  border: 1px solid #d2d2d2;
  padding: 0 5px;
  -webkit-appearance: none;
  width: 100%;
  max-width: 100%;
}

input.sizeS {
  width: 140px;
}

input.sizeSs {
  width: 80px;
}

textarea {
  height: 200px;
}

input[readonly=readonly] {
  border: none;
  padding: 0;
  width: auto;
  width: 100%;
}

input[name=item-num] {
  width: 6rem;
}

::placeholder {
  color: #888;
  font-size: 1.4rem;
}

/* = RADIO, CHECKBOX
----------------------------------------------------------- */
.wpcf7-list-item {
  /* line-height: 1; */
  /* padding-top: 1.3rem; */
  /* padding-bottom: 0.5em; */
}

.wpcf7-list-item.first {
  margin-left: 0;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
  padding-left: 20px;
  position: relative;
}

input[type="radio"] + span::before,
input[type="radio"]:checked + span::after,
input[type="checkbox"] + span::before,
input[type="checkbox"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
}

input[type="radio"] + span::before,
input[type="checkbox"] + span::before {
  background: transparent;
  border: 1px solid #999;
  width: 14px;
  height: 14px;
  left: 0;
  top: 6px;
}

/* RADIO */
input[type="radio"] + span::before {
  border-radius: 50%;
}

input[type="radio"]:checked + span::after {
  background: #111;
  border-radius: 50%;
  left: 3px;
  top: 9px;
  width: 8px;
  height: 8px;
}

/* CHECKBOX */
input[type="checkbox"] + span::before {
  border-radius: 4px;
}

input[type="checkbox"]:checked + span::after {
  border-bottom: 3px solid #111;
  border-right: 3px solid #111;
  width: 7px;
  height: 14px;
  left: 5px;
  top: 3px;
  transform: rotate(40deg);
}

span.wpcf7-list-item {
    display: inline-block;
    margin: 0 1em 0 0em !important;
}

/* = SELECT
----------------------------------------------------------- */
span.your-select {
  border: 1px solid #d2d2d2;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  padding-right: 2rem;
}

span.your-select:after {
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 1.1rem;
  transform: rotate(45deg);
  z-index: 1;
}

.wpcf7-form select {
  border-radius: 0;
  cursor: pointer;
  margin: -1px;
  padding: 0 10px;
  width: calc(100% + 2.2rem);
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #333;
}

/* = FILE
----------------------------------------------------------- */
.inqFile {
  font-size: 1.4rem;
}

/* = SEND
----------------------------------------------------------- */
p.inqSend {
  padding-left: 1.6rem;
}

p.inqSend input[type=submit] {
  background: #1e6432;
  color: #fff;
  display: inline-block;
  font-size: 1.6em;
  line-height: 6rem;
  outline: none;
  width: 40rem;
  max-width: 90%;
}

p.inqSend input[type=submit]:hover {
  background: rgba(30, 100, 50, 0.9);
}

p.inqSend input[type=submit]:disabled {
  background: #ccc;
}

/* = TXT
----------------------------------------------------------- */
.inqTxt {
  font-size: 2rem;
  font-weight: 300;
  padding-right: .5rem;
}

.inqSub {
  color: #888;
  font-size: .8em;
}

.inqBlock {
  display: inline-block;
  margin-top: 1rem;
}

.wpcf7-not-valid {
  background: rgba(255, 246, 246, 0.5);
  border: 1px solid #c99 !important;
  display: inline-block;
}

span.wpcf7-not-valid-tip {
  display: none !important;
}

/* = @media width 768px -->
----------------------------------------------------------- */
@media (min-width: 768px) {
  .wpcf7-form dl {
    border-bottom: 1px dotted #ccc;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  .wpcf7-form dt, .wpcf7-form dd {
    border-top: 1px dotted #ccc;
    padding: 1.5rem 0;
    width: 25rem;
  }
  .wpcf7-form dt {
	  padding-right:1em;	
	}
  .wpcf7-form dd {
    width: calc(100% - 25rem);

  }
  .wpcf7-form input.sizeM {
    width: 26rem;
  }
  .wpcf7-form input.sizeL {
    width: 56rem;
  }
}


/* = PASSWORD
----------------------------------------------------------- */
.postPass {
  border: 1px solid #ccc;
  line-height: 3rem;
  padding: 5rem 1rem;
}

.postPass input[type=password] {
  line-height: 3rem;
  width: 16rem;
}

.postPass input[type=submit] {
  background: #d2d2d2;
  border: 1px solid #ccc;
  line-height: 3rem;
  padding: 0 1em;
}

/*# sourceMappingURL=content.map */

/* = SUPPORT 追記 230807
----------------------------------------------------------- */
.sasaeru_jigyou {
	margin-bottom: 30px;
}
.sasaeru_jigyou img {
	width: 100%;
	margin-right: 3em !important;
}
.sasaeru_jigyou ul {
	width: 100%;
}
.sasaeru_jigyou div {
	width: 100%;
}
/* = @media width 768px -->
----------------------------------------------------------- */
@media (min-width: 768px) {

.sasaeru_jigyou img {
	width: 40%;
	margin-right: 3em !important;
}
.sasaeru_jigyou ul {
	width: 50%;
}
.sasaeru_jigyou div {
	width: 50%;
}
}


/* ===========================================================
   # 55TH ANNIV.
=========================================================== */
/* TITLE */
.gatheringCont .ttl {
  border: 3px solid;
  color: #326237;
  font-weight: 500;
  line-height: 1.4;
  width: fit-content;
  margin: 3rem auto;
  padding: 1em 1em;
  text-align: center;
}
.gatheringCont .ttl strong {
  font-size: min(7.8vw, 2em);
  vertical-align: 0;
}

/* SCHE */
.gatheringCont dl.sche {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  line-height: 1.6;
  margin: 1rem 0;
}
.gatheringCont dl.sche dt strong {
  background: #326237;
  color: #fff;
  font-weight: 400;
  padding: 0 1em 1px;
}
.gatheringCont dl.sche dd {
  padding-bottom: 1em;
}

/* GROUP */
.gatheringCont .group {
  margin: 2rem 0;
}
.gatheringCont .group dl {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}
.gatheringCont .group dl dt img {
  width: 100%;
}
.gatheringCont .group dl dt .wp-caption {
  position: relative;
}
.gatheringCont .group dl dt .wp-caption .wp-caption-text {
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: .5em;
  text-align: right;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.gatheringCont .group dl dd strong {
  color: #326237;
  display: inline-block;
  font-size: 1.4em;
  margin: 0 0 .1em -.1em;;
}

@media (min-width: 768px) {

/* TITLE */
.gatheringCont .ttl {
  border-width: 5px;
  margin: 6rem auto;
  padding: 1em 5em;
}
.gatheringCont .ttl strong {
  padding-right: .1em;
}

/* SCHE */
.gatheringCont dl.sche {
  flex-direction: row;
  margin: 3rem 0;
}
.gatheringCont dl.sche dt, .gatheringCont dl.sche dd {
  padding: 1em 0;
}
.gatheringCont dl.sche dt {
  width: 10em;
}
.gatheringCont dl.sche dt strong {
  display: block;
  text-align: center;
}
.gatheringCont dl.sche dd {
  padding-left: 1em;
  width: calc(100% - 10em);
}

}
@media (min-width: 1024px) {

/* GROUP */
.gatheringCont .group {
  margin: 3rem 0;
}
.gatheringCont .group dl {
  flex-direction: row;
  gap: 4rem;
  padding: 0 0 1em;
}
.gatheringCont .group dl dt {
  width: 40%;
}
.gatheringCont .group dl dt .wp-caption .wp-caption-text {
  bottom: 1rem;
}
.gatheringCont .group dl dd {
  width: 60%;
}

}

/* ===========================================================
   # KYODO GEINOU NO TSUDOI
=========================================================== */
/* TITLE */
.gathering02Cont .ttl {
  border: 3px solid;
  color: #326237;
  font-weight: 500;
  line-height: 1.4;
  width: fit-content;
  margin: 3rem auto;
  padding: 1em 1em;
  text-align: center;
}
.gathering02Cont .ttl strong {
  font-size: min(7.8vw, 2em);
  vertical-align: 0;
}

/* SCHE */
.gathering02Cont dl.sche {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  line-height: 1.6;
  margin: 1rem 0;
}
.gathering02Cont dl.sche dt strong {
  background: #326237;
  color: #fff;
  font-weight: 400;
  padding: 0 1em 1px;
}
.gathering02Cont dl.sche dd {
  padding-bottom: 1em;
}

/* GROUP */
.gathering02Cont .group {
  margin: 2rem 0;
}
.gathering02Cont .group dl {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}
.gathering02Cont .group dl dt img {
  width: 100%;
}
.gathering02Cont .group dl dt .wp-caption {
  position: relative;
}
.gathering02Cont .group dl dt .wp-caption .wp-caption-text {
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: .5em;
  text-align: right;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.gathering02Cont .group dl dd strong {
  color: #326237;
  display: inline-block;
  font-size: 1.4em;
  margin: 0 0 .1em -.1em;;
}

.marukakomi {
  display: block;
  justify-content: center; /* 水平方向にセンターに配置 */
  align-items: center;
  margin:0 auto 5%;
}
.marukakomi img{
  width: 200px;
  height: 200px;
  object-fit: fill;
  border-radius:50%;
}
.waku {
	border: 1px solid #cccccc;
	padding: 10px 15px;
	margin-bottom:1em;
}
.tsudoiTbl {
	border: 1px solid #cccccc;
	font-size: 88%;
	margin-bottom:1em;
}
.tsudoiTbl th {
	border: 1px solid #cccccc;
	vertical-align: middle;
	background-color: #999999;
	font-weight: bold;
	text-align: center;
	color: #ffffff;
	padding: 5px 10px;
}
.tsudoiTbl td {
	border: 1px solid #cccccc;
	vertical-align: middle;
	padding: 5px 10px;
}
.tyuiTbl td {
	vertical-align: top;
	font-size: 90%;
	padding-bottom: 1.5em;
}

@media (min-width: 768px) {

/* TITLE */
.gathering02Cont .ttl {
  border-width: 5px;
  margin: 6rem auto;
  padding: 1em 5em;
}
.gathering02Cont .ttl strong {
  padding-right: .1em;
}

/* SCHE */
.gathering02Cont dl.sche {
  flex-direction: row;
  margin: 3rem 0;
}
.gathering02Cont dl.sche dt, .gathering02Cont dl.sche dd {
  padding: 1em 0;
}
.gathering02Cont dl.sche dt {
  width: 10em;
}
.gathering02Cont dl.sche dt strong {
  display: block;
  text-align: center;
}
.gathering02Cont dl.sche dd {
  padding-left: 1em;
  width: calc(100% - 10em);
}

}
@media (min-width: 1024px) {

/* GROUP */
.gathering02Cont .group {
  margin: 3rem 0;
}
.gathering02Cont .group dl {
  flex-direction: row;
  gap: 4rem;
  padding: 0 0 1em;
}
.gathering02Cont .group dl dt {
  width: 40%;
}
.gathering02Cont .group dl dt .wp-caption .wp-caption-text {
  bottom: 1rem;
}
.gathering02Cont .group dl dd {
  width: 60%;
}

}
/* NEW ICON */
.newIco {
	text-align: left;
    color: #b40701;
    font-weight: bold;
}
@media (min-width: 768px) {
.newIco {
	text-align: left;
    color: #b40701;
    font-weight: bold;
    padding-left: 200px;
}
}

