@charset "utf-8";
/* CSS Document */
/*----------------------------------------------------------- 共通パーツ */
#S00 {
    padding: 3em 0 3em;
}
#S00 p {
  font-size: 1.1em;
  text-align: center;
  line-height: 2em;
}
#S01, #S02, #S03, #S04, #S05 {
  padding: 5em 0;
}
.pageMenu {
  padding: 2em 0;
}
.pageMenu ul {
  display: flex;
  justify-content: center;
  gap: 3px;
  max-width: 1200px;
  margin: auto;
}
.pageMenu ul li {
  flex: 1;
}
.pageMenu ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5em;
  width: 100%;
  height: 100%;
  background: #666;
  color: #fff;
}
/*----------------------------------------------------------- btnパーツ */
.btnBox {
  display: flex;
  justify-content: center;
  padding: 1em 0;
}
.btn {
  padding: 5px;
  width: 300px;
  background: #69492a;
}
.btn a {
  display: block;
  padding: 15px;
  border: #a19999 1px solid;
  letter-spacing: 2px;
  color: #fff;
}
.btn a span {
  color: #fff;
  display: flex;
  justify-content: center;
}
.btn a span::after {
  font-family: 'Material Symbols Outlined';
  content: '\e315';
  display: inline-block;
  font-size: 130%;
  padding: 2px 0 0;
}
.btn a:hover {
  opacity: 0.8;
}
/*----------------------------------------------------------- pMenu */
.pMenu {
  max-width: 1200px;
  margin: auto;
  padding: 5% 0 5%;
}
.pMenu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pMenu ul li {
  width: calc(100% / 3);
  padding: 5px 10px;
}
.pMenu ul li a {
  padding: 15px;
  background: #d5eef1;
  display: flex;
  width: 100%;
  height: 100%;
  line-height: 1.4em;
  justify-content: center;
  align-items: center;
}
.pMenu ul li.current a {
  background: #368d97;
  color: #fff;
}
/*----------------------------------------------------------- fade */
.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(.25, .8, .25, 1);
}
.fadeUp.active {
  opacity: 1;
  transform: translateY(0);
}
/*----------------------------------------------------------- 動画 */
video {
  width: 100%;
}
.video-wrap {
  position: relative;
}
/*----------------------------------------------------------- photoName */
.phCap {
  position: relative;
  width: fit-content;
  margin: auto;
}
.phCap .name {
  position: absolute;
  /* background: #222; */
  /* background: linear-gradient(0deg, rgba(34,34,34,1) 0%, rgba(34,34,34,0) 100%); */
  color: #fff;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
  text-align: right;
  font-size: 70%;
  text-shadow: 1px 1px 2px #666;
}
.phCap .nameBK {
  position: absolute;
  color: #222;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
  text-align: right;
  font-size: 70%;
}
.phCap .nameW {
  position: absolute;
  color: #fff;
  /* color: #222; */
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
  text-align: right;
  font-size: 70%;
}
.phCap .nameEN {
  position: absolute;
  color: #222;
  padding: 10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-sizing: border-box;
  top: -5px;
  right: -3px;
  text-align: center;
  font-size: 100%;
  line-height: 1.4em;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 5px 15px -5px #777777;
}
/*----------------------------------------------------------- captionBox */
.captionBox {
  padding: 10px;
}
.captionBox p {
  font-size: 80%;
  text-align: left;
  padding: 0;
}
.cap {
  font-size: 80%;
  padding: 0;
}
/*----------------------------------------------------------- 枠線 */
.map img {
  border: 1px solid #333;
}
/*----------------------------------------------------------- lineBox */
.lineBox {
  padding: 50px 0;
}
/*----------------------------------------------------------- attentionBox */
.attentionBox {
  max-width: 1280px;
  margin: auto;
  padding: 10px 0;
  display: flex;
  justify-content: flex-start;
  border-top: 1px solid #d1cfcf;
}
.attentionBox p {
  font-size: 0.75em;
  color: #666;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .attentionBox p {
    font-size: 70%;
    color: #999;
    text-align: left;
  }
}
/*----------------------------------------------------------- pageTop */
.pTop {
  display: none;
  position: fixed;
  bottom: 55px;
  right: 16px;
}
.pTop a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: solid 2px #FFF;
  background: rgba(0, 0, 0, 0.55);
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.45);
  transition: all 0.5s;
}
.pTop a:hover {
  background: rgba(0, 0, 0, 0.2);
}
.pTop a::after {
  content: "";
  background-color: #ffffff;
  position: absolute;
  top: 18px;
  left: 8px;
  width: 15px;
  height: 2px;
  transform: rotate(-45deg);
}
.pTop a::before {
  content: "";
  background-color: #ffffff;
  position: absolute;
  top: 18px;
  right: 8px;
  width: 15px;
  height: 2px;
  transform: rotate(45deg);
}
/*----------------------------------------------------------- sectionmain */
main img {
  max-width: 100%;
  height: auto;
}
main h2 {
  padding: 10px 15px;
  font-weight: 600;
  line-height: 1.6em;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  margin-bottom: 1.2em;
  color: #5d4037;
}
main h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #afe4e4;
}
main h2 small {
  display: block;
  font-size: 50%;
  font-weight: 400;
  padding: 10px;
  line-height: 1.4em;
}
main h3 {
  font-weight: 600;
  padding: 1.5em;
}
main h4 {
  font-weight: 500;
  padding: 0 0 0 0.5em;
  border-left: 5px solid #674938;
  margin: 0 0 1em;
  text-align: left;
}
main h5 {
  font-weight: 500;
  padding: 0 0 0.25em;
  line-height: 1.6em;
  margin: 0;
  text-align: left;
  border-bottom: 1px solid #999;
  color: #572a08;
  display: flex;
}
main h3 small, main h4 small, main h5 small, main h6 small {
  font-size: 80%;
  line-height: 1.6em;
}
main .flexBox2 > ul, main .flexBox3 > ul, main .flexBox4 > ul {
  display: flex;
}
main .flexBox2 > ul > li, main .flexBox3 > ul > li, main .flexBox4 > ul > li {
  list-style-type: none;
  text-align: center;
}
.detailBox {
  display: flex;
  padding: 0 0 40px;
  justify-content: center;
}
.detailBox .detail {
  padding: 30px;
}
/* tableなどの横スクロールボックス */
.scrollBox table {
  width: 100%;
}
.scrollBox {
  overflow: auto;
  white-space: nowrap;
}
.scrollBox::-webkit-scrollbar {
  height: 5px;
}
.scrollBox::-webkit-scrollbar-track {
  background: #F1F1F1;
}
.scrollBox::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
.contentsTop {
  padding: 30px 0;
}
.contentsTop p {
  font-size: 18px;
  padding: 20px;
  text-align: center;
}
.attention {
  font-size: 70%;
  color: #666666;
}
.attention_info {
  font-size: 85%;
  /*  color: #ffffff;*/
  line-height: 1.6em;
  padding-bottom: 2em;
}
.imgBox {
    padding: 2em 0 5em;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.imgBox .cap {padding: 5px 0 0;}
.imgBox img {
  max-width: 100%;
}
main .bnrBox ul {
  margin: auto;
}
main .bnrBox ul li {
  list-style-type: none;
  text-align: center;
  background: #265280;
  padding: 0;
}
main .flexBox3 ul li p, main .flexBox4 ul li p {
  line-height: 1.4em;
}
main dl {
  display: flex;
  padding: 0 10px;
  flex-wrap: nowrap;
}
main dl dt, main dl dd {
  text-align: left;
  padding: 15px;
  margin: 0 0 3px;
  line-height: 1.6em;
}
main dl dt {
  width: 35%;
  color: inherit;
  background: #e3e3e3;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
main dl dd {
  width: 74.5%;
  background: #f7f8f9;
  color: #333;
}

main em {
  font-style: normal;
}
.contents main ol {
  text-align: left;
}
.contents ol li {
  list-style-type: none;
}
.contents ul li {
  padding: 0 0 1em;
}
.contents ol {
  counter-reset: countnum;
  padding: 2em 2em 1em;
  background: #fff;
  border: 1px solid #ccc;
  margin: 0 0 2em;
}
.contents ol li h5::before {
  counter-increment: countnum 1;
  content: counter(countnum) ".";
  display: inline-block;
  padding: 0 10px 0 0;
}
.contents ol li p {
  padding: 1em 0 3em 1.75em;
  text-align: left;
}
.contents ul li h5::before {
  display: inline-block;
  font-family: 'Material Symbols Outlined';
  content: '\e5df';
}
main .centerImage {
  margin: auto;
  text-align: center;
}
main a, main a:link, main a:visited {
  text-decoration: none;
  font-weight: 400;
  word-break: break-all;
}
main table, main tr, main td, main th {
  border-collapse: collapse;
}
main td, main th {
  border: 1px solid #999;
}
main table {
  width: 100%;
}
main table th, main table td {
  padding: 0.75em;
  text-align: center;
  line-height: 1.6em;
}
main table th {
  background: #674938;
  color: #fff;
  vertical-align: middle;
  font-size: 0.9em;
}
main table td {
  background: #fff;
  vertical-align: middle;
  font-size: 0.9em;
}

/*----------------------------------------------------------- ページナビ */
.pageNavi {
  padding: 0 0 3vmin;
  text-align: center;
}
.pageNavi ul {
  display: flex;
  justify-content: space-between;
  border-top: 2px dotted #a9998e;
}
.pageNavi ul li {
  list-style-type: none;
  width: 50%;
}
.pageNavi ul li:first-child {
  text-align: left;
}
.pageNavi ul li:last-child {
  text-align: right;
}
.pageNavi ul li:first-child a::before {
  content: "< ";
}
.pageNavi ul li:last-child a::after {
  content: " >";
}
.entry-content {
  padding: 0;
}
/*----------------------------------------------------------- ページナビ */
.wp-pagenavi { /* 全体 */
  margin: 20px 0;
  font-size: 12px;
}
.wp-pagenavi a { /* フォント色 */
  color: #4a4a4a;
}
.pages { /* 左の表記 */
  margin-right: 20px;
}
.wp-pagenavi .current, .wp-pagenavi amain {
  margin: 0 6px 6px 0;
  display: inline-block;
  border: solid 1px #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  background: #fff;
}
.wp-pagenavi .current {
  border: none;
  background: #265280;
  color: #fff;
}
.wp-pagenavi a.page:hover { /* マウスオーバー */
  background: #87e6e9;
  color: #fff;
}
.wp-pagenavi .first, .wp-pagenavi .extend { /* ... */
  margin-right: 10px;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink { /* 記号の削除 */
  display: none;
}
/*----------------------------------------------------------- 1280px */
@media all and (max-width:1280px) {
  main .contentsDetail {
    box-sizing: border-box;
  }
  main ul li {
    line-height: 2em;
  }
  .attentionBox {
    padding: 10px;
  }

  main h3 small, main h4 small, main h5 small, main h6 small {
    font-size: 0.8em;
    line-height: 1.6em;
  }
  #S01, #S02, #S03, #S04, #S05 {
    padding: 2em 0;
  }
  #S00 p {
    font-size: 1em;
    line-height: 1.6em;
  }
  main table th {
    font-size: 0.8em;
  }
  main table td {
    font-size: 0.8em;
  }
}
/*----------------------------------------------------------- 1024px */
@media screen and (max-width: 1024px) {
  main dl dt, main dl dd {
    padding: 10px;
    font-size: 0.9em;
  }
  #pageTitle {
    background-size: cover;
  }
  .pageMenu ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .pageMenu ul li {
    flex: initial;
    width: calc(100% / 2 - 10px);
  }
}
/*----------------------------------------------------------- 840px */
@media screen and (max-width: 840px) {
  main .flexBox3 > ul > li {
    width: calc(100% / 2 - 10px);
  }
  .pMenu ul li {
    width: calc(100% / 2);
    padding: 5px 3px;
  }
}
/*----------------------------------------------------------- 768x */
@media screen and (max-width: 768px) {

  main h4 {
    padding: 10px;
  }
  #S00 p {
    text-align: left;
  }
  .pageMenu ul li {
    flex: initial;
    width: 100%;
  }
  .tableBox {
    width: 100%; /* 親要素の幅を100%に固定 */
    overflow-x: auto; /* 横方向に溢れたらスクロールを表示 */
    -webkit-overflow-scrolling: touch; /* iOS（Safari）でのスクロールを滑らかにする */
  }
  .tableBox table {
    min-width: 600px; /* 重要：スクロールさせるために最小幅を確保 */
    width: 100%;
    border-collapse: collapse;
  }
.tableBox th, .tableBox td {
    white-space: nowrap;
    padding: 10px 5px;
}
}
/*----------------------------------------------------------- 640px */
@media screen and (max-width: 640px) {
  #S00 p {
    font-size: 0.9em;
    text-align: left;
  }
}
/*----------------------------------------------------------- 480px */
@media screen and (max-width: 480px) {
  main p {
    text-align: left;
  }
  main ul li {
    line-height: 1.6em;
    font-size: 0.9em;
    /* list-style-type: disc; */
  }
  main .contentsDetail > ul li {
    padding-left: 1.25em;
    text-indent: -1.25em;
  }
  main dl dt, main dl dd {
    padding: 8px;
    font-size: 13px;
  }
  main dl dt {
    width: auto;
  }
  main dl dd {
    width: auto;
  }
  .pageNavi ul li {
    padding: 0;
    list-style-type: none;
  }
  .pageNavi ul li a {
    font-size: 14px;
    line-height: 2em;
  }
  main .flexBox1 ul, main .flexBox2 ul, main .flexBox3 ul, main .flexBox4 ul {
    flex-flow: column;
  }
  main .flexBox2 ul li, main .flexBox3 ul li, main .flexBox4 ul li {
    width: auto;
    font-size: 16px;
    padding: 10px;
    line-height: 1.6em;
    text-indent: initial;
  }
  .detailBox {
    display: flex;
    flex-flow: column;
  }
  .contentsTop {
    padding: 0px;
  }
  .imgBox {
    padding: 0 0 1em;
  }
  main dl {
    flex-flow: column;
  }
}