@charset "UTF-8";
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Yu Gothic UI", "Meiryo UI", "Segoe UI", -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;
  }
}

/*** 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 .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: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 screen and (max-width: 992px) {
  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 .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 .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 .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.0200320513vw, 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.0200320513vw, 0.75rem);
  font-weight: 400;
}
@media screen and (max-width: 576px) {
  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.0400641026vw, 1.125rem);
  margin-top: 10px;
  color: #888;
}

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

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

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

p {
  line-height: 1.8;
}

.btnMore {
  text-align: center;
  margin-bottom: 10px;
  width: auto;
  margin: 1rem auto;
}
.btnMore a {
  display: inline-block;
  min-width: 220px;
  font-size: clamp(0.875rem, 0.6442307692rem + 0.0400641026vw, 1.125rem);
  color: #fff;
  padding: 1rem;
  line-height: 1;
  box-sizing: border-box;
  background-color: #1876D0;
  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: #333333;
  opacity: 1;
  background-color: #F2CE00;
}
.btnMore a:hover:after {
  right: 0.8em;
}

/*** Top ***/
.index h2 {
  text-align: center;
  font-size: clamp(1.5rem, 0.5769230769rem + 0.1602564103vw, 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 + 0.3605769231vw, 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 + 0.1201923077vw, 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;
  position: relative;
}
.topNews .innerBox ul li:before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #1876D0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.topNews .innerBox ul li:hover:before {
  transform: scale(1, 1);
}
.topNews .innerBox ul li a {
  display: block;
  padding: 1em 40px 1em 0;
  transition: 0.3s ease;
}
.topNews .innerBox ul li a:hover {
  color: #228469;
}
.topNews .innerBox ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #EEF7F0;
  z-index: 0;
  transition: 0.3s ease;
}
.topNews .innerBox ul li a:hover::before {
  background-color: #228469;
}
.topNews .innerBox ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  height: 12px;
  z-index: 1;
  transition: 0.3s ease;
}
.topNews .innerBox ul li a:hover:after {
  background: url(../img/icon_arrow_w.svg);
  right: 8px;
}
.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;
  text-align: center;
  font-size: clamp(0.625rem, 0.5096153846rem + 0.0200320513vw, 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.0200320513vw, 0.75rem);
}
@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:before {
    left: 50%;
    transform: translateX(-50%);
  }
  .topNews .innerBox {
    width: 100%;
  }
}

.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.0600961538vw, 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.0500801282vw, 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.0200320513vw, 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%;
  margin-bottom: 10px;
}
.topUpdate ul li .img img {
  margin: 0 auto;
  border-radius: 8px;
}
.topUpdate ul li h3 {
  font-size: clamp(0.875rem, 0.7596153846rem + 0.0200320513vw, 1rem);
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #D9D9D9;
}
.topUpdate ul li p {
  font-size: clamp(0.75rem, 0.6346153846rem + 0.0200320513vw, 0.875rem);
}
.topUpdate ul li a {
  text-decoration: none;
  color: #333333;
}
@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: #F2F3F5;
  padding: 1rem 0 5rem;
}
@media screen and (max-width: 992px) {
  main.under {
    padding-bottom: 2rem;
  }
}

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

.wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0 50px;
}
.wrapper .sidebar {
  width: 280px;
}
.wrapper .pageinner {
  width: calc(100% - 300px);
}
@media screen and (max-width: 992px) {
  .wrapper {
    flex-direction: column-reverse;
  }
  .wrapper .sidebar {
    width: 100%;
  }
  .wrapper .pageinner {
    width: 100%;
  }
}

.sidebar h3 {
  font-size: clamp(1rem, 0.8846153846rem + 0.0200320513vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 1.5em;
}
.sidebar__list {
  position: relative;
  font-size: clamp(0.75rem, 0.6346153846rem + 0.0200320513vw, 0.875rem);
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar__list > li {
  margin-bottom: 1em;
  position: relative;
  padding-left: 2em;
}
.sidebar__list > li.has-children::before {
  content: "";
  position: absolute;
  left: 0.4em;
  top: 0.4rem;
  background-image: url(../img/icon_pulus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  transition: 0.3s ease;
}
.sidebar__list > li.has-children.is-open::before {
  background-image: url(../img/icon_minus.svg);
  width: 13px;
  height: 3px;
  top: 0.6rem;
}
.sidebar__list > li.has-children > a {
  cursor: pointer;
}
.sidebar__list > li.has-children > a:before {
  content: none;
}
.sidebar__list > li > a {
  color: #333333;
  display: block;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.sidebar__list > li > a:before {
  content: "";
  position: absolute;
  left: -1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #A6A6A6;
  transition: border-left-color 0.3s ease;
}
.sidebar__list > li:hover > a {
  text-decoration: underline;
}
.sidebar__list > li:hover > a:before {
  border-left-color: #333333;
}
.sidebar__list > li.current > a:before {
  border-left-color: #333333;
}
.sidebar__sublist {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0.5em;
  list-style: none;
  padding: 0;
}
.is-open > .sidebar__sublist {
  max-height: 1000px;
}
.sidebar__sublist li {
  margin-bottom: 0.5em;
  position: relative;
}
.sidebar__sublist li a {
  color: #333333;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.sidebar__sublist li a:before {
  content: none;
}
.sidebar__sublist li:hover a {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .sidebar {
    margin: 0;
    margin-bottom: 1.5em;
    position: relative;
  }
  .sidebar__list > li {
    margin-bottom: 5px;
    box-sizing: border-box;
  }
}

.pageinner h1 {
  line-height: 1;
  margin-bottom: 80px;
  font-size: clamp(1.875rem, 0.8365384615rem + 0.1802884615vw, 3rem);
  font-weight: 700;
}
.pageinner h2 {
  margin-top: 3em;
  margin-bottom: 1em;
  font-size: clamp(1.125rem, 0.8942307692rem + 0.0400641026vw, 1.375rem);
  color: #333333;
  line-height: 1.5;
  position: relative;
}
.pageinner h2 span {
  position: relative;
  background-color: #F2F3F5;
  padding-right: 1rem;
  z-index: 1;
}
.pageinner h2:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: double 3px #A6A6A6;
  z-index: 0;
}
.pageinner h3 {
  margin-top: 2em;
  margin-bottom: 1em;
  border-bottom: 1px solid #1876D0;
  font-size: clamp(1.125rem, 1.0096153846rem + 0.0200320513vw, 1.25rem);
  color: #333333;
  line-height: 1.5;
}
.pageinner h4 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: clamp(1rem, 0.7692307692rem + 0.0400641026vw, 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 {
  text-decoration: underline;
  padding-left: 5px;
  padding-right: 5px;
}
.pageinner p {
  margin-bottom: 1.5em;
}
.pageinner p strong {
  color: #1876D0;
}
.pageinner .btnMore a {
  text-decoration: none;
}
.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.0400641026vw, 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.0400641026vw, 0.875rem);
  color: #555;
}
.pageinner .txtCenter {
  margin: 0 auto;
  text-align: center;
}
.pageinner .txtCenter img {
  margin: 0 auto;
}
.pageinner .txtRight {
  text-align: right;
}
.pageinner a.pdf[target=_blank]:after {
  content: "";
  display: inline-block;
  margin-right: 3px;
  background: url(libs/img/icon_pdf.svg);
  position: relative;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 992px) {
  .pageinner h1 {
    margin-bottom: 3rem;
  }
}

.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 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 span {
  position: relative;
}
.conteStyle ol li span:before {
  content: "-----";
  color: #1876D0;
  padding-right: 10px;
}
.conteStyle ol li ul {
  counter-reset: section;
}
.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.0200320513vw, 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.0200320513vw, 1.125rem);
  position: absolute;
  top: 0;
  left: 0;
}
.conteStyle .counterList p {
  margin: 0;
  font-size: clamp(1rem, 0.8846153846rem + 0.0200320513vw, 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);
}

.pageLinkbox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 4rem;
}
.pageLinkbox li {
  width: calc(50% - 10px);
}
.pageLinkbox li a {
  display: block;
  text-decoration: none;
  background-color: #fff;
  border-radius: 4px;
  padding: 2rem;
  padding-right: 4rem;
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.3s ease;
}
.pageLinkbox li a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 2rem;
  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: 1.8rem;
  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.0200320513vw, 1.125rem);
  font-weight: 500;
  margin: 0;
  transition: 0.3s ease;
}
.pageLinkbox li a h2:before {
  content: none;
}
@media screen and (max-width: 576px) {
  .pageLinkbox {
    gap: 10px 0;
    margin-bottom: 2rem;
  }
  .pageLinkbox li {
    width: 100%;
  }
}

.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.0400641026vw, 1.25rem);
  font-weight: bold;
}
.contactBox dl dt .txts {
  font-weight: normal;
  font-size: clamp(0.875rem, 0.7596153846rem + 0.0200320513vw, 1rem);
}
.contactBox dl dt span {
  display: inline-block;
  color: #9C0F21;
  font-size: clamp(0.75rem, 0.6346153846rem + 0.0200320513vw, 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 .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 .wpcf7-acceptance input[type=checkbox]:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}
.contactBox .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #1876D0;
  border-color: #333;
}
.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 .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: clamp(0.875rem, 0.6442307692rem + 0.0400641026vw, 1.125rem);
  line-height: 1.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
}
.contactBox .wpcf7-acceptance input[type=checkbox][aria-invalid=true] {
  border-color: #e74c3c;
}
.contactBox input[type=submit] {
  all: unset;
}
.contactBox .submitBtn {
  margin: 1re 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%;
  }
}/*# sourceMappingURL=style.css.map */