@charset "UTF-8";
body {
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.8;
  font-size: 1rem;
  color: #333333;
  background-color: #fff;
  position: relative;
}
body.noscroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  margin-block: 0;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #333333;
}

p {
  margin-bottom: 20px;
}

a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #228469;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contents {
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 992px) {
  .contents {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1200px) {
  .pc {
    display: block !important;
  }
}
@media screen and (max-width: 992px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  .pc {
    display: none !important;
  }
}

@media screen and (max-width: 1200px) {
  .tablet {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .tablet {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .tablet {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .sm {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .sm {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .sm {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .pc-tab {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .pc-tab {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .pc-tab {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .sm-tab {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .sm-tab {
    display: block !important;
  }
}
@media screen and (max-width: 576px) {
  .sm-tab {
    display: block !important;
  }
}

.logoBr {
  display: none;
}
@media screen and (max-width: 1076px) {
  .logoBr {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .logoBr {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .logoBr {
    display: block;
  }
}

/*** Header ***/
header {
  width: 100vw;
}
header .btn {
  display: none;
}
header .headerInner {
  height: 150px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
header .headerInner .headerBox {
  width: calc(100% - 160px);
  height: 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
}
header .headerInner .logo {
  max-width: 140px;
  height: 100%;
  display: flex;
  align-items: center;
}
header .headerInner a {
  text-decoration: none;
}
header .headerInner .translation-wrapper {
  position: relative;
  display: inline-block;
}
header .headerInner .translation-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: white;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  overflow: hidden;
}
header .headerInner .translation-wrapper.is-open .translation-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .headerInner .language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
header .headerInner .language-option:hover {
  background: #f5f5f5;
}
header .headerInner .language-option.selected {
  background: #e8f0fe;
}
header .headerInner .language-option .flag {
  width: 24px;
  height: 18px;
}
header .headerInner .language-option .code {
  font-size: 14px;
  font-weight: 600;
}
header .headerInner .language-option .name {
  font-size: 14px;
  color: #666;
  margin-left: 0.5rem;
}
header .headerInner .translation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 10px;
  border: 1px solid #D9D9D9;
  border-radius: 50px;
  height: 30px;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.2s ease;
}
header .headerInner .translation:hover {
  border-color: #aaa;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
header .headerInner .translation:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 0;
  border-left: 1.5px solid #C0C0C0;
  border-right: 0;
  border-bottom: 1.5px solid #C0C0C0;
  transform: rotate(-45deg);
  transition: transform 0.2s;
  margin-left: 4px;
}
header .headerInner .translation.is-open:after {
  transform: rotate(45deg) scaleY(-1);
}
header .headerInner .translation .code {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  line-height: 1;
}
header .headerInner .translation .icon {
  width: 10px;
  height: 10px;
  margin-left: 4px;
  color: #777;
  fill: currentColor;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}
header .mainNav .nav {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}
header .mainNav .nav li {
  margin-left: 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
header .mainNav .nav li a {
  display: block;
  padding-left: 1rem;
  position: relative;
  transition: color 0.3s ease;
}
header .mainNav .nav li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1876D0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
header .mainNav .nav li:first-child {
  margin-left: 0;
}
header .mainNav .nav li.btnBox a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border-radius: 4px;
  width: 180px;
  height: 100%;
  padding-left: 0;
}
header .mainNav .nav li.btnBox a::before {
  content: "";
  position: relative;
  top: 1px;
  left: -5px;
  transform: inherit;
  border: none;
}
header .mainNav .nav li.join a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 180px;
  height: 60px;
  color: #1876D0;
  border: 1px solid #1876D0;
  border-radius: 4px;
  padding-left: 0;
}
header .mainNav .nav li.join a:before {
  content: none;
}
header .mainNav .nav li.join a img {
  margin-right: 10px;
}
header .mainNav .nav li.contact {
  margin-left: 0.5rem;
}
header .mainNav .nav li.contact a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #fff;
  width: 180px;
  height: 60px;
  background-color: #F2CE00;
  border-radius: 4px;
  padding-left: 0;
}
header .mainNav .nav li.contact a:before {
  content: none;
}
header .mainNav .nav li.contact a img {
  margin-right: 10px;
}
header .mainNav .nav li:hover {
  z-index: 1001;
}
header .mainNav .nav li:hover > a:after {
  transform: translateY(-50%) rotate(180deg);
}
header .slideMenu {
  position: fixed;
  z-index: 5;
  top: 0px;
  left: 0;
  display: none;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
@media (max-width: 1100px) {
  header .headerInner .headerBox {
    width: calc(100% - 110px);
  }
  header .headerInner .logo {
    max-width: 100px;
  }
  header .mainNav .nav li {
    margin-left: 1rem;
  }
}
@media (max-width: 1010px) {
  header .btn {
    display: block;
  }
  header .headerInner {
    height: 80px;
    width: 100%;
  }
  header .headerInner .headerBox {
    width: calc(100% - 100px);
    height: 80px;
  }
  header .headerInner .logo {
    max-width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  header .headerInner a {
    text-decoration: none;
  }
  header .headerInner .translation {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  header .mainNav,
  header .subNav {
    display: none;
  }
  header .slideMenu {
    width: 100%;
    height: 100vh;
    margin-top: 80px;
    border-top: 1px solid #E2E2E2;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  header .slideMenu.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
  }
  header .slideMenu ul.slideMain {
    padding: 2rem 1rem 1rem;
    max-width: 240px;
    text-align: center;
  }
  header .slideMenu ul.slideMain li {
    margin-bottom: 2rem;
  }
  header .slideMenu ul.slideMain li a {
    display: block;
    position: relative;
    transition: color 0.3s ease;
  }
  header .slideMenu ul.slideMain li a:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 1px;
    left: -5px;
    background-color: #1876D0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  header .slideMenu ul.slideMain li.btnBox {
    margin-bottom: 1rem;
    height: 50px;
  }
  header .slideMenu ul.slideMain li.btnBox a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border-radius: 4px;
    width: 180px;
    height: 100%;
    padding-left: 0;
  }
  header .slideMenu ul.slideMain li.btnBox a::before {
    content: "";
    position: relative;
    top: 1px;
    left: -5px;
    transform: inherit;
    border: none;
  }
  header .slideMenu ul.slideMain li.join a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 180px;
    height: 60px;
    color: #1876D0;
    border: 1px solid #1876D0;
    border-radius: 4px;
    padding-left: 0;
  }
  header .slideMenu ul.slideMain li.join a:before {
    content: none;
  }
  header .slideMenu ul.slideMain li.join a img {
    margin-right: 10px;
  }
  header .slideMenu ul.slideMain li.contact a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    color: #fff;
    width: 180px;
    height: 60px;
    background-color: #F2CE00;
    border-radius: 4px;
    padding-left: 0;
  }
  header .slideMenu ul.slideMain li.contact a:before {
    content: none;
  }
  header .slideMenu ul.slideMain li.contact a img {
    margin-right: 10px;
  }
  header .btn,
  header .btn span {
    transition: all 0.4s;
    box-sizing: border-box;
  }
  header .btn {
    position: relative;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 6;
    background-color: #228469;
  }
  header .btn span {
    position: absolute;
    right: 8px;
    margin: auto;
    width: 24px;
    height: 2px;
    border-radius: 4px;
    background-color: #fff;
    z-index: 10;
  }
  header .btn span:nth-of-type(1) {
    top: 40%;
  }
  header .btn span:nth-of-type(2) {
    top: 60%;
  }
  header .btn.on span:nth-of-type(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  header .btn.on span:nth-of-type(2) {
    top: 50%;
    transform: rotate(-45deg);
  }
}

/*** Footer ***/
footer {
  width: 100%;
}
footer article {
  background-color: #F8F8F8;
  padding: 100px 20px;
  box-sizing: border-box;
}
footer article .footerBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 20px;
}
footer article .footerBox .logo {
  max-width: 140px;
  height: 100%;
  display: flex;
  align-items: center;
}
footer article .footerBox .footerNav {
  width: calc(100% - 160px);
}
footer article .footerBox .footerNav .nav {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}
footer article .footerBox .footerNav .nav li {
  margin-left: 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
footer article .footerBox .footerNav .nav li a {
  display: block;
  padding-left: 1rem;
  position: relative;
  transition: color 0.3s ease;
}
footer article .footerBox .footerNav .nav li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1876D0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
footer article .footerBox .footerNav .nav li:first-child {
  margin-left: 0;
}
footer article .footerBox .footerNav .nav li.btnBox a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border-radius: 4px;
  width: 180px;
  height: 100%;
  padding-left: 0;
}
footer article .footerBox .footerNav .nav li.btnBox a::before {
  content: "";
  position: relative;
  top: 1px;
  left: -5px;
  transform: inherit;
  border: none;
}
footer article .footerBox .footerNav .nav li.join a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 180px;
  height: 60px;
  color: #1876D0;
  border: 1px solid #1876D0;
  border-radius: 4px;
  padding-left: 0;
}
footer article .footerBox .footerNav .nav li.join a:before {
  content: none;
}
footer article .footerBox .footerNav .nav li.join a img {
  margin-right: 10px;
}
footer article .footerBox .footerNav .nav li.contact {
  margin-left: 0.5rem;
}
footer article .footerBox .footerNav .nav li.contact a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #fff;
  width: 180px;
  height: 60px;
  background-color: #F2CE00;
  border-radius: 4px;
  padding-left: 0;
}
footer article .footerBox .footerNav .nav li.contact a:before {
  content: none;
}
footer article .footerBox .footerNav .nav li.contact a img {
  margin-right: 10px;
}
footer article .footerBox .footerNav .nav li.nofooter {
  display: none;
}
footer article .footerBox .footerNav .nav li:hover {
  z-index: 1001;
}
footer article .footerBox .footerNav .nav li:hover > a:after {
  transform: translateY(-50%) rotate(180deg);
}
footer .footerBg {
  background-color: #228469;
  width: 100%;
  height: 60px;
}
footer .footerBg ul {
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
footer .footerBg ul li {
  color: #fff;
  font-size: clamp(0.75rem, 0.6346153846rem + 0.3205128205vw, 0.875rem);
  font-weight: 700;
}
footer .footerBg ul li a {
  color: #fff;
}
footer .footerBg ul li.copy {
  font-size: clamp(0.625rem, 0.5096153846rem + 0.3205128205vw, 0.75rem);
  font-weight: 400;
}
@media (max-width: 1100px) {
  footer article {
    padding: 50px 0;
  }
  footer article .footerBox {
    flex-direction: column;
    gap: 20px 0;
  }
  footer article .footerBox .footerNav {
    width: 100%;
  }
  footer article .footerBox .footerNav .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer article .footerBox .footerNav .nav li {
    margin-bottom: 0.5rem;
    height: auto;
  }
  footer article .footerBox .footerNav .nav li.btn {
    height: 45px;
  }
}
@media screen and (max-width: 576px) {
  footer article .footerBox .footerNav .nav {
    flex-direction: column;
  }
  footer article .footerBox .footerNav .nav li {
    margin-left: 0;
  }
  footer article .footerBox .footerNav .nav li.contact {
    margin-left: 0;
  }
  footer .footerBg {
    background-color: #228469;
    width: 100%;
    height: auto;
    padding: 1rem;
    padding-bottom: 1rem;
  }
  footer .footerBg ul {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

#pagetop {
  background-color: #F2CE00;
  width: 100px;
  height: 100px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  visibility: hidden;
}
#pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
#pagetop.is-absolute {
  position: absolute;
}
@media screen and (max-width: 576px) {
  #pagetop {
    width: 70px;
    height: 70px;
  }
  #pagetop img {
    width: 19px;
    height: 15px;
  }
}

/*** 共通 ***/
.center {
  text-align: center;
  margin: 2em auto;
}
.center p {
  line-height: 1;
}

.txtRight {
  text-align: right;
  margin: 1em 0;
}

.txts {
  font-weight: normal;
  font-size: clamp(0.875rem, 0.6442307692rem + 0.641025641vw, 1.125rem);
  margin-top: 10px;
  color: #888;
}

h1 {
  margin: 0 0 0.5em;
  font-size: clamp(1.5rem, 0.8076923077rem + 1.9230769231vw, 2.25rem);
  line-height: 1.4;
}

h2 {
  margin: 0 0 1em;
  font-size: clamp(1.25rem, 0.6730769231rem + 1.6025641026vw, 1.875rem);
  line-height: 1.4;
}

h3 {
  margin: 0 0 2em;
  font-size: clamp(1.125rem, 0.5480769231rem + 1.6025641026vw, 1.75rem);
  line-height: 1.4;
}

p {
  line-height: 1.8;
}

.btnMore {
  text-align: center;
  margin-bottom: 10px;
  width: auto;
}
.btnMore a {
  display: inline-block;
  min-width: 220px;
  font-size: clamp(0.875rem, 0.6442307692rem + 0.641025641vw, 1.125rem);
  color: #fff;
  padding: 1rem 1.5rem;
  padding-right: 2.5rem;
  line-height: 1;
  box-sizing: border-box;
  background-color: #228469;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  outline: none;
  position: relative;
  transition: 0.3s ease;
}
.btnMore a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background-image: url(../img/icon_arrow_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  height: 12px;
  transition: 0.3s ease;
}
.btnMore a:hover {
  color: #fff;
  opacity: 1;
  background-color: #F2CE00;
}
.btnMore a:hover:after {
  right: 0.8em;
}
.btnMore a[href$=".pdf"]:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background-image: url(../img/icon_pdf_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  transition: 0.3s ease;
}
.btnMore a[target=_blank]:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background-image: url(../img/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  transition: 0.3s ease;
}
.btnMore a[href$=".pdf"][target=_blank]:after {
  background-image: url(../img/icon_pdf_w.svg);
}
.btnMore.gray {
  margin-top: 3rem;
}
.btnMore.gray a {
  background-color: #687587;
}
.btnMore.back {
  margin-top: 3rem;
}
.btnMore.back a {
  background-color: #687587;
  padding-right: 1.5rem;
  padding-left: 2.5rem;
}
.btnMore.back a:after {
  right: inherit;
  left: 1em;
  transform: translateY(-50%) rotate(180deg);
}

/*** Top ***/
.index h2 {
  text-align: center;
  font-size: clamp(1.5rem, 0.5769230769rem + 2.5641025641vw, 2.5rem);
  line-height: 1.4;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  position: relative;
}
.index h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #F2CE00 0%, #F2CE00 50%, #1876D0 50%, #1876D0 100%);
}
.index .topBg {
  background-image: url(../img/top_pickup_back.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
@media screen and (max-width: 576px) {
  .index h2 {
    margin-bottom: 1.5rem;
  }
}

.topMainimg {
  width: 100%;
  height: auto;
  position: relative;
}
.topMainimg img {
  width: 100%;
  height: auto;
}
.topMainimg .txt {
  padding: 2.5rem;
  position: absolute;
  left: 0;
  bottom: 4rem;
  background-color: rgba(255, 255, 255, 0.9);
}
.topMainimg .txt h1 {
  font-size: clamp(1.5rem, -0.5769230769rem + 5.7692307692vw, 3.75rem);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.topMainimg .txt h1 span {
  color: #228469;
}
.topMainimg .txt div {
  position: relative;
  padding-left: 1rem;
  line-height: 1.6;
  font-size: clamp(0.75rem, 0.0576923077rem + 1.9230769231vw, 1.5rem);
}
.topMainimg .txt div:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #228469;
}
@media screen and (max-width: 992px) {
  .topMainimg .txt {
    padding: 1rem;
    bottom: 1rem;
  }
}

.topNews {
  padding-top: 100px;
}
.topNews .contents {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.topNews .titleBox {
  width: 250px;
}
.topNews .titleBox h2:before {
  left: 5px;
  transform: inherit;
}
.topNews .titleBox .btnMore {
  margin-top: 3rem;
}
.topNews .innerBox {
  width: 800px;
  position: relative;
}
.topNews .innerBox a {
  text-decoration: none;
}
.topNews .innerBox ul {
  width: 100%;
}
.topNews .innerBox ul li {
  box-sizing: border-box;
  border-bottom: 1px solid #C7C7C7;
  padding: 1rem 0;
  position: relative;
}
.topNews .innerBox ul li p {
  margin: 0;
  padding: 0;
}
.topNews .innerBox ul li span {
  display: inline-block;
  width: 80px;
  line-height: 1.5;
  border: 1px solid #D9D9D9;
  border-radius: 30px;
  padding: 3px;
  margin-bottom: 5px;
  text-align: center;
  font-size: clamp(0.625rem, 0.5096153846rem + 0.3205128205vw, 0.75rem);
}
.topNews .innerBox ul .new {
  background-color: #F2CE00;
  padding: 0.2em 1em;
  border-radius: 5px;
  margin-left: 1em;
  color: #fff;
  font-size: clamp(0.625rem, 0.5096153846rem + 0.3205128205vw, 0.75rem);
}
.topNews .btnMore.sp {
  display: none;
}
@media screen and (max-width: 992px) {
  .topNews {
    padding-top: 50px;
  }
  .topNews .contents {
    flex-direction: column;
    justify-content: center;
  }
  .topNews .titleBox {
    width: 100%;
  }
  .topNews .titleBox h2 {
    margin-bottom: 0;
  }
  .topNews .titleBox h2:before {
    left: 50%;
    transform: translateX(-50%);
  }
  .topNews .titleBox .btnMore {
    display: none;
  }
  .topNews .innerBox {
    width: 100%;
    margin-bottom: 2rem;
  }
  .topNews .btnMore.sp {
    display: block;
  }
}

.topEvents {
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(../img/top_event_bg.png) no-repeat;
  background-size: cover;
}
.topEvents h2 {
  color: #fff;
}
.topEvents h2::before {
  background: linear-gradient(to right, #fff 0%, #fff 50%, #fff 50%, #fff 100%);
}
.topEvents .listBox li {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 20px;
  text-decoration: none;
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: 0.3s ease;
}
.topEvents .listBox li dl dt {
  font-size: clamp(1.125rem, 0.7788461538rem + 0.9615384615vw, 1.5rem);
  box-sizing: border-box;
  margin-bottom: 10px;
}
.topEvents .listBox li dl dt span {
  display: inline-block;
  background-color: #F2F9F3;
  padding: 5px 0.7rem;
  border-radius: 30px;
  color: #228469;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.5865384615rem + 0.8012820513vw, 1.1875rem);
  margin-bottom: 10px;
}
.topEvents .listBox li dl dt span:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  background-image: url(../img/icon_carender.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 20px;
  margin-right: 5px;
}
.topEvents .listBox li dl dd {
  font-size: clamp(0.75rem, 0.6346153846rem + 0.3205128205vw, 0.875rem);
}
@media screen and (max-width: 992px) {
  .topEvents {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 760px) {
  .topEvents .listBox li {
    flex-direction: column;
    padding: 1rem;
  }
  .topEvents .listBox li .btnMore {
    margin: 1rem auto 0;
  }
}

.topUpdate {
  width: calc(100% - 100px);
  margin: 100px auto;
  padding-bottom: 50px;
  background: linear-gradient(to bottom, #ffffff 50%, #EFF5FF 50%);
  background-repeat: no-repeat;
  background-position: center top;
}
.topUpdate ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
}
.topUpdate ul li {
  width: calc(25% - 20px);
}
.topUpdate ul li .img {
  width: 100%;
  height: 190px;
  margin-bottom: 10px;
  overflow: hidden;
}
.topUpdate ul li .img img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.topUpdate ul li h3 {
  font-size: clamp(0.875rem, 0.7596153846rem + 0.3205128205vw, 1rem);
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #D9D9D9;
}
.topUpdate ul li p {
  font-size: clamp(0.75rem, 0.6346153846rem + 0.3205128205vw, 0.875rem);
}
.topUpdate ul li a {
  text-decoration: none;
  color: #333333;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .topUpdate {
    width: calc(100% - 30px);
    margin-top: 40px;
    margin-bottom: 40px;
    background: linear-gradient(to bottom, #ffffff 25%, #EFF5FF 75%);
  }
  .topUpdate ul {
    flex-wrap: wrap;
  }
  .topUpdate ul li {
    width: calc(50% - 20px);
  }
  .topUpdate ul li .img img {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .topUpdate ul {
    flex-direction: column;
  }
  .topUpdate ul li {
    width: 100%;
  }
}

/*** 下層 ***/
main.under {
  background-color: #fff;
  padding: 0 0 5rem;
}
@media screen and (max-width: 992px) {
  main.under {
    padding-bottom: 2rem;
  }
}

.pageTitle {
  position: relative;
  display: flex;
}
.pageTitle img {
  width: 100%;
  height: auto;
  display: block;
}
.pageTitle h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.5rem, 0.1153846154rem + 3.8461538462vw, 3rem);
  text-align: center;
  width: 95%;
  margin: 0;
}

.breadcrumbs {
  margin-bottom: 4em;
  margin-top: 1rem;
  font-size: clamp(0.625rem, 0.5096153846rem + 0.3205128205vw, 0.75rem);
}

.pageinner h1 {
  line-height: 1;
  margin-bottom: 80px;
  font-size: clamp(1.875rem, 0.8365384615rem + 2.8846153846vw, 3rem);
  font-weight: 700;
}
.pageinner h2 {
  margin-top: 3em;
  margin-bottom: 1em;
  font-size: clamp(1.125rem, 0.7788461538rem + 0.9615384615vw, 1.5rem);
  background-color: #EFF5FF;
  border-left: 6px solid #1876D0;
  padding: 5px 10px;
  color: #333333;
  line-height: 1.5;
  position: relative;
}
.pageinner h2:first-of-type {
  margin-top: 0;
}
.pageinner h3 {
  margin-top: 2em;
  margin-bottom: 1em;
  padding-bottom: 1rem;
  border-bottom: 1px solid #D9D9D9;
  font-size: clamp(1.125rem, 1.0096153846rem + 0.3205128205vw, 1.25rem);
  color: #333333;
  line-height: 1.5;
}
.pageinner h4 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: clamp(1rem, 0.7692307692rem + 0.641025641vw, 1.25rem);
  color: #333333;
  line-height: 1.5;
}
.pageinner h4:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  background-color: #F2CE00;
  width: 5px;
  height: 1em;
  margin-right: 0.5em;
}
.pageinner a {
  color: #1876D0;
  text-decoration: underline;
  padding-left: 5px;
  padding-right: 5px;
}
.pageinner p {
  margin-bottom: 1rem;
}
.pageinner p strong {
  color: #1876D0;
}
.pageinner .btnMore a {
  text-decoration: none;
  color: #fff;
}
.pageinner .flexBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.pageinner .flexBox.txtcenter {
  align-items: center;
}
.pageinner .flexBox .img {
  width: 250px;
}
.pageinner .flexBox .img img {
  width: auto;
}
.pageinner .flexBox .txt {
  width: calc(100% - 270px);
}
.pageinner .flexBox .txt .strong {
  font-size: clamp(1rem, 0.7692307692rem + 0.641025641vw, 1.25rem);
  font-weight: 700;
}
.pageinner .flexBox .half {
  width: calc(50% - 10px);
}
.pageinner .update {
  text-align: right;
  padding-bottom: 0.2em;
  font-size: clamp(0.625rem, 0.3942307692rem + 0.641025641vw, 0.875rem);
  color: #555;
}
.pageinner .txtCenter {
  margin: 0 auto;
  text-align: center;
}
.pageinner .txtCenter img {
  margin: 0 auto;
}
.pageinner .txtRight {
  text-align: right;
}
.pageinner .marginbottom {
  margin-bottom: 2rem;
}
.pageinner a[href$=".pdf"],
.pageinner a[href$=".doc"],
.pageinner a[href$=".docx"] {
  display: inline-block;
  white-space: nowrap;
}
.pageinner a[href$=".pdf"]:before,
.pageinner a[href$=".doc"]:before,
.pageinner a[href$=".docx"]:before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  vertical-align: -8px;
}
.pageinner a[href$=".pdf"]:before {
  background-image: url(../img/icon_pdf.svg);
  filter: brightness(0) saturate(100%) invert(32%) sepia(93%) saturate(1352%) hue-rotate(196deg) brightness(91%) contrast(101%);
}
.pageinner .btnMore a[href$=".pdf"]:before {
  background-image: url(../img/icon_pdf.svg);
  filter: none;
}
.pageinner a[href$=".doc"]:before,
.pageinner a[href$=".docx"]:before {
  background-image: url(../img/icon_word.svg);
  filter: brightness(0) saturate(100%) invert(32%) sepia(93%) saturate(1352%) hue-rotate(196deg) brightness(91%) contrast(101%);
}
.pageinner .btnMore a[href$=".doc"]:before,
.pageinner .btnMore a[href$=".docx"]:before {
  background-image: url(../img/icon_word.svg);
  filter: none;
}
.pageinner a[href$=".pdf"]:after,
.pageinner a[href$=".doc"]:after,
.pageinner a[href$=".docx"]:after {
  content: none;
}
@media screen and (max-width: 992px) {
  .pageinner h1 {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 576px) {
  .pageinner {
    flex-wrap: wrap;
  }
  .pageinner .flexBox {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .pageinner .flexBox .img {
    width: auto;
  }
  .pageinner .flexBox .img img {
    width: auto;
  }
  .pageinner .flexBox .txt {
    width: 100%;
  }
  .pageinner .flexBox .half {
    width: 100%;
  }
}

.conteStyle {
  word-break: keep-all;
  overflow-wrap: break-word;
}
.conteStyle ul {
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.conteStyle ul > li {
  position: relative;
  padding-left: 1rem;
}
.conteStyle ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  display: inline-block;
  background-color: #333333;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.conteStyle ul > li p {
  margin-bottom: 0;
}
.conteStyle #ez-toc-container {
  padding: 1rem 1rem 0.5rem;
}
.conteStyle #ez-toc-container ul.ez-toc-list {
  margin-top: 1rem;
}
.conteStyle #ez-toc-container ul.ez-toc-list > li {
  padding-left: 0;
  margin-bottom: 10px;
}
.conteStyle #ez-toc-container ul.ez-toc-list > li:before {
  display: none;
}
.conteStyle ol {
  counter-reset: section;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.conteStyle ol > li {
  position: relative;
  padding-left: 1.5rem;
}
.conteStyle ol > li:before {
  position: absolute;
  left: 0;
  counter-increment: section;
  content: counter(section) ".";
  color: #212121;
}
.conteStyle ol > li p {
  margin-bottom: 0;
}
.conteStyle ol > li span {
  position: relative;
}
.conteStyle ol > li span:before {
  content: "-----";
  color: #1876D0;
  padding-right: 10px;
}
.conteStyle ol > li ul {
  counter-reset: section;
}
.conteStyle ol.enCounter {
  counter-reset: enSection;
}
.conteStyle ol.enCounter > li:before {
  counter-increment: enSection;
  content: counter(enSection, lower-alpha) " )";
}
.conteStyle dl {
  margin-bottom: 2rem;
}
.conteStyle dl dt {
  font-weight: 700;
}
.conteStyle dl dd {
  padding-left: 1rem;
}
.conteStyle dl dd p {
  margin-bottom: 0;
}
.conteStyle table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
}
.conteStyle table th,
.conteStyle table td {
  padding: 1rem;
}
.conteStyle table th {
  background-color: #1876D0;
  text-align: center;
  color: #fff;
  vertical-align: middle;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.conteStyle table th:last-child {
  border-right: none;
}
.conteStyle table td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.conteStyle table td:last-child {
  border-right: none;
}
.conteStyle table tbody > tr:last-of-type th, .conteStyle table tbody > tr:last-of-type td {
  border-bottom: none;
}
.conteStyle table .bluecolor {
  color: #2E558E;
  font-weight: bold;
}
.conteStyle table .redcolor {
  color: #D06D61;
  font-weight: bold;
}
.conteStyle table .redcolor b {
  font-size: 130%;
}
.conteStyle dl.normal {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
}
.conteStyle dl.normal dt {
  width: 80px;
}
.conteStyle dl.normal dd {
  width: calc(100% - 80px);
}
.conteStyle dl.faqBox {
  background-color: #fff;
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5em;
  display: block;
}
.conteStyle dl.faqBox dt {
  border-bottom: 1px solid #1876D0;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  font-weight: 700;
  font-size: clamp(1rem, 0.8846153846rem + 0.3205128205vw, 1.125rem);
  position: relative;
}
.conteStyle dl.faqBox dt:before {
  display: inline-block;
  content: "Q.";
  font-family: montserrat, sans-serif;
  color: #1876D0;
  position: absolute;
  top: 0;
  left: 0;
}
.conteStyle dl.faqBox dd {
  position: relative;
  padding-left: 40px;
}
.conteStyle dl.faqBox dd:before {
  display: inline-block;
  color: #F2CE00;
  content: "A.";
  font-weight: 700;
  font-family: montserrat, sans-serif;
  font-size: clamp(1rem, 0.8846153846rem + 0.3205128205vw, 1.125rem);
  position: absolute;
  top: 0;
  left: 0;
}
.conteStyle .counterList p {
  margin: 0;
  font-size: clamp(1rem, 0.8846153846rem + 0.3205128205vw, 1.125rem);
}
.conteStyle .counterList dl {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  margin-left: 1rem;
}
.conteStyle .counterList dl dt {
  width: 80px;
}
.conteStyle .counterList dl dd {
  width: calc(100% - 110px);
}
.conteStyle .flontTxt {
  margin: 1rem auto;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1rem, 0.7692307692rem + 0.641025641vw, 1.25rem);
}

.pageLinkbox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 4rem;
}
.pageLinkbox li {
  width: calc(33.3333333333% - 20px);
}
.pageLinkbox li a {
  display: block;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  padding: 1.5rem 1rem;
  padding-right: 4rem;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.3s ease;
}
.pageLinkbox li a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 11px;
  transition: 0.3s ease;
}
.pageLinkbox li a:hover {
  background-color: #1876D0;
  color: #fff;
}
.pageLinkbox li a:hover:after {
  right: 0.3rem;
  background-image: url(../img/icon_arrow_w.svg);
}
.pageLinkbox li a:hover h2 {
  color: #fff;
}
.pageLinkbox li a h2 {
  font-size: clamp(1rem, 0.8846153846rem + 0.3205128205vw, 1.125rem);
  font-weight: 500;
  margin: 0;
  padding: 0;
  background-color: inherit;
  border: none;
  transition: 0.3s ease;
}
@media screen and (max-width: 576px) {
  .pageLinkbox {
    gap: 10px 0;
    margin-bottom: 2rem;
  }
  .pageLinkbox li {
    width: 100%;
  }
}

.eventsListBox li {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 20px;
  text-decoration: none;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: 0.3s ease;
}
.eventsListBox li dl dt {
  font-size: clamp(1.125rem, 0.7788461538rem + 0.9615384615vw, 1.5rem);
  box-sizing: border-box;
  margin-bottom: 10px;
}
.eventsListBox li dl dt span {
  display: inline-block;
  background-color: #F2F9F3;
  padding: 5px 0.7rem;
  border-radius: 30px;
  color: #228469;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.5865384615rem + 0.8012820513vw, 1.1875rem);
  margin-bottom: 10px;
}
.eventsListBox li dl dt span:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  background-image: url(../img/icon_carender.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 20px;
  margin-right: 5px;
}
.eventsListBox li dl dd {
  font-size: clamp(0.75rem, 0.6346153846rem + 0.3205128205vw, 0.875rem);
}
@media screen and (max-width: 760px) {
  .eventsListBox li {
    flex-direction: column;
    padding: 1rem;
  }
  .eventsListBox li .btnMore {
    margin: 1rem auto 0;
  }
}

.pastEventBox li {
  width: 100%;
  text-decoration: none;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 1rem 0;
  position: relative;
  transition: 0.3s ease;
}
.pastEventBox li h2 {
  background-color: #fff;
  border: none;
  font-size: clamp(1.125rem, 0.7788461538rem + 0.9615384615vw, 1.5rem);
  box-sizing: border-box;
  padding: 0;
  margin-bottom: 10px;
}
.pastEventBox li h2 span {
  display: inline-block;
  background-color: #F8F8F8;
  padding: 5px 0.7rem;
  border-radius: 30px;
  color: #333333;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.5865384615rem + 0.8012820513vw, 1.1875rem);
  margin-bottom: 10px;
}
.pastEventBox li h2 span:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  background-image: url(../img/icon_carender.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 20px;
  margin-right: 5px;
  filter: brightness(0);
}
.pastEventBox li p {
  font-size: clamp(0.75rem, 0.6346153846rem + 0.3205128205vw, 0.875rem);
  margin: 0;
}
@media screen and (max-width: 760px) {
  .pastEventBox li {
    flex-direction: column;
    padding: 1rem;
  }
  .pastEventBox li .btnMore {
    margin: 1rem auto 0;
  }
}

ul.innovationBlock {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 40px 20px;
}
ul.innovationBlock a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #333333;
  padding: 0 !important;
}
ul.innovationBlock li {
  width: calc(25% - 15px);
}
ul.innovationBlock li .img {
  width: 100%;
  height: 190px;
  overflow: hidden;
}
ul.innovationBlock li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px 16px 0 0;
}
@media screen and (max-width: 576px) {
  ul.innovationBlock li .img {
    height: 160px;
  }
}
ul.innovationBlock li .txt {
  flex-grow: 1;
  border: 1px solid #D9D9D9;
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 1rem;
  box-shadow: 3px 3px 9px 2px rgba(0, 0, 0, 0.11);
}
ul.innovationBlock li .txt em {
  display: block;
  font-style: normal;
  font-weight: 700;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #D9D9D9;
}
ul.innovationBlock li .txt p {
  font-size: clamp(0.75rem, 0.6346153846rem + 0.3205128205vw, 0.875rem);
  margin: 0;
}
@media screen and (max-width: 992px) {
  ul.innovationBlock li {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 576px) {
  ul.innovationBlock {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  ul.innovationBlock li {
    width: 100%;
  }
}

.innovationInner {
  width: calc(100% - 50px);
  border-radius: 16px;
  margin: 0 auto;
  box-shadow: 3px 3px 9px 2px rgba(0, 0, 0, 0.11);
  padding: 2rem;
}
.innovationInner h2 {
  background-color: inherit;
  color: #333333;
  position: relative;
  border-left: none;
  border-bottom: 1px solid #D9D9D9;
  padding: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.innovationInner h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 120px;
  height: 1px;
  background-color: #228469;
}
.innovationInner .area {
  font-weight: 700;
  font-size: clamp(1.125rem, 1.0096153846rem + 0.3205128205vw, 1.25rem);
  position: relative;
}
.innovationInner .area:before {
  content: "";
  display: inline-block;
  background: url(../img/icon_building.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 19px;
  position: relative;
  left: 0;
  top: 2px;
  margin-right: 10px;
}
.innovationInner .conteStyle {
  margin-top: 2rem;
}
@media screen and (max-width: 992px) {
  .innovationInner {
    width: calc(100% - 10px);
  }
}

ul.archiveEvent li {
  box-sizing: border-box;
  border-bottom: 1px solid #C7C7C7;
  padding: 1rem 0;
  position: relative;
}
ul.archiveEvent li .thumbnail {
  width: 100%;
  margin-bottom: 1.5rem;
}
ul.archiveEvent li p {
  margin: 0;
  padding: 0;
}
ul.archiveEvent li .btnMore {
  text-align: right;
  margin-left: auto;
  margin-bottom: 0;
}
ul.archiveEvent li .btnMore a {
  min-width: 210px;
  transition: 0.3s ease;
  text-decoration: none;
  text-align: left;
  font-size: clamp(0.8125rem, 0.6971153846rem + 0.3205128205vw, 0.9375rem);
  padding: 1.5rem;
  position: relative;
}
ul.archiveEvent li .btnMore a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background-image: url(../img/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  transition: 0.3s ease;
}
ul.archiveEvent li .btnMore a.is-pdf:after {
  background-image: url(../img/icon_pdf_w.svg);
}
ul.archiveEvent li .btnMore a:hover {
  background-color: #228469;
  filter: brightness(70%);
}
ul.archiveEvent li .btnMore a:hover:after {
  right: 0.8em;
}

.awardBox h3 span {
  margin-right: 1rem;
  color: #1876D0;
}
.awardBox .bgGray {
  background-color: #F8F8F8;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
.awardBox .bgGray li {
  width: calc(50% - 10px);
  background-color: #fff;
  border-radius: 0 4px 4px 0;
  padding: 1rem;
  font-size: clamp(1rem, 0.8846153846rem + 0.3205128205vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
  box-sizing: border-box;
  position: relative;
}
.awardBox .bgGray li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 12px solid #1876D0;
  border-right: 12px solid transparent;
  background-color: inherit;
  width: 0;
  height: 0;
  border-radius: inherit;
}
.awardBox .dlLine {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px 0;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.awardBox .dlLine dt {
  width: 240px;
  border-bottom: 1px solid #1876D0;
  padding-bottom: 1rem;
  font-size: clamp(1rem, 0.8846153846rem + 0.3205128205vw, 1.125rem);
  font-weight: 700;
  position: relative;
}
.awardBox .dlLine dd {
  width: calc(100% - 240px);
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 1rem;
  padding-left: 2rem;
  font-size: clamp(0.875rem, 0.7596153846rem + 0.3205128205vw, 1rem);
}
.awardBox .linkBox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.awardBox .btnMore {
  margin-bottom: 0;
}
.awardBox .btnMore a {
  min-width: 300px;
  background-color: #687587;
  border-radius: 8px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 992px) {
  .awardBox .dlLine dt {
    width: 220px;
  }
  .awardBox .dlLine dd {
    padding-left: 10px;
  }
}
@media screen and (max-width: 576px) {
  .awardBox .bgGray {
    gap: 20px 0;
  }
  .awardBox .bgGray li {
    width: 100%;
  }
  .awardBox .dlLine {
    gap: 10px 0;
  }
  .awardBox .dlLine dt {
    width: 100%;
    padding-bottom: 0.5rem;
  }
  .awardBox .dlLine dd {
    width: 100%;
    padding-left: 0;
    margin-bottom: 1rem;
  }
  .awardBox .linkBox {
    gap: 10px 0;
    flex-direction: column;
  }
  .awardBox .btnMore a {
    min-width: 200px;
  }
}

.contactBox {
  border: 1px solid #cccccc;
  background-color: #fff;
  border-radius: 4px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
}
.contactBox h3 {
  text-align: center;
  color: #1876D0;
}
.contactBox p {
  margin: 0;
  line-height: 1;
}
.contactBox .center {
  margin-bottom: 0;
}
.contactBox dl dt {
  margin-bottom: 0.8em;
  line-height: 1;
  font-size: clamp(1rem, 0.7692307692rem + 0.641025641vw, 1.25rem);
  font-weight: bold;
}
.contactBox dl dt .txts {
  font-weight: normal;
  font-size: clamp(0.875rem, 0.7596153846rem + 0.3205128205vw, 1rem);
}
.contactBox dl dt span {
  display: inline-block;
  color: #9C0F21;
  font-size: clamp(0.75rem, 0.6346153846rem + 0.3205128205vw, 0.875rem);
  margin-left: 0.5em;
}
.contactBox dl dd {
  margin-bottom: 2em;
  margin-inline-start: 0px;
}
.contactBox dl dd p {
  margin: 0;
  line-height: 1;
}
.contactBox dl .text {
  border: 1px solid #cccccc;
  background: #fff;
  border-radius: 4px;
  padding: 0.5em 1em;
  margin-bottom: 5px;
  width: 100%;
  box-sizing: border-box;
}
.contactBox dl .textarea {
  border: 1px solid #cccccc;
  background: #fff;
  border-radius: 4px;
  padding: 0.5em 1em;
  margin-bottom: 5px;
  width: 100%;
  box-sizing: border-box;
}
.contactBox dl .wpcf7-radio .wpcf7-list-item {
  margin-right: 1em;
}
.contactBox dl .wpcf7-radio .wpcf7-list-item.first {
  margin: 0;
  margin-right: 1em;
}
.contactBox dl .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}
.contactBox dl input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
.contactBox dl .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #333;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.2em;
  margin-top: auto;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 1.2em;
}
.contactBox dl input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #1876D0; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 3px #fff; /* 中心の色のスタイル */
}
.contactBox .wpcf7-form-control-wrap .wpcf7-list-item {
  margin-left: 0;
}
.contactBox .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}
.contactBox {
  /* デフォルトのチェックボックスを非表示 */
}
.contactBox .wpcf7-acceptance input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
}
.contactBox {
  /* チェックボックスにフォーカスした時 */
}
.contactBox .wpcf7-acceptance input[type=checkbox]:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}
.contactBox {
  /* チェックが入った状態 */
}
.contactBox .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #1876D0;
  border-color: #333;
}
.contactBox {
  /* チェックマーク */
}
.contactBox .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contactBox {
  /* ラベルテキスト */
}
.contactBox .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: clamp(0.875rem, 0.6442307692rem + 0.641025641vw, 1.125rem);
  line-height: 1.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
}
.contactBox {
  /* エラー時のスタイル（オプション） */
}
.contactBox .wpcf7-acceptance input[type=checkbox][aria-invalid=true] {
  border-color: #e74c3c;
}
.contactBox input[type=submit] {
  all: unset;
}
.contactBox .submitBtn {
  margin: 1rem auto;
  text-align: center;
}
.contactBox input.contactBtn {
  width: 280px;
  box-sizing: border-box;
  background: #228469;
  border-radius: 4px;
  color: #fff;
  padding: 1rem;
  display: inline-block;
  margin-top: 1em;
  cursor: pointer;
}
.contactBox input.contactBtn:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
}
.contactBox .wpcf7-spinner {
  display: block;
  margin: 0;
}
@media screen and (max-width: 992px) {
  .contactBox {
    padding: 1rem;
  }
  .contactBox input.contactBtn {
    width: 100%;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  font-size: 14px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wp-pagenavi a {
  color: #333;
  background-color: #fff;
}
.wp-pagenavi a:hover {
  background-color: #f5f5f5;
  border-color: #999;
}
.wp-pagenavi span.current {
  color: #fff;
  background-color: #333;
  border-color: #333;
  font-weight: bold;
}
.wp-pagenavi span.extend {
  border: none;
  min-width: auto;
}
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .wp-pagenavi {
    gap: 4px;
    font-size: 13px;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
  }
  .wp-pagenavi a.first,
  .wp-pagenavi a.last {
    display: none;
  }
}