@charset "UTF-8";
/* -------- 下層・トップビジュアル ---------*/
.pageHead {
  display: flex;
  aspect-ratio: 1920/398;
  margin-bottom: 24px;
}

.pageHead_LP {
  position: relative;
  display: grid;
  margin-bottom: 2em;
  place-items: center;
  aspect-ratio: 1920/735;
}

.pageHead__ttlWrapper {
  z-index: 1;
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40.6770833333%;
  height: 100%;
  background: linear-gradient(90deg, #00b7cc, #c7e6d6);
}
.pageHead__ttlWrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(-45deg, transparent 0, transparent 20px, rgba(255, 255, 255, 0.27) 20px, rgba(255, 255, 255, 0.27) 25px);
}
.pageHead__ttl {
  font-weight: bold;
  text-align: center;
  position: relative;
}
.pageHead__mainTtl {
  display: block;
  font-size: 2.1875em;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.pageHead__subTtl {
  display: block;
  letter-spacing: 0.05em;
  font-size: 0.9375em;
  text-transform: uppercase;
}
.pageHead__imgWrapper {
  width: 100%;
  height: 100%;
}
.pageHead__imgWrapper > img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  -o-object-fit: cover;
  object-fit: cover;
}

/* -------- 下層・パンくずリスト ---------*/
.crumbs {
  margin-bottom: 64px;
}

.crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.crumb .page {
  font-size: 0.875em;
}
.crumb .page a {
  position: relative;
  text-transform: uppercase;
  transition: color 0.3s;
}
.crumb .page a:focus-visible {
  color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .crumb .page a:hover {
    color: #00B7CC;
  }
}
.crumb .separator {
  font-size: 1.5em;
  padding-bottom: 5px;
  display: block;
}

/* -------- 下層・カテゴリー用グリッドタブパーツ ---------*/
.gridTab {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(163px, 1fr));
  -moz-column-gap: 9px;
  column-gap: 9px;
  margin-bottom: 56px;
}
.gridTab__btn {
  text-align: center;
  display: block;
  background-color: #DCDCDC;
  position: relative;
  width: 100%;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  font-weight: bold;
  padding: 14px 0 15px;
  font-size: 0.9375em;
  transition: background-color 0.3s, color 0.3s;
}
.gridTab__btn:focus-visible {
  background-color: #00B7CC;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .gridTab__btn:hover {
    background-color: #00B7CC;
    color: #fff;
  }
}
.gridTab__btn.current {
  background-color: #00B7CC;
  color: #fff;
}

/* -------- 下層・見出しパーツ ---------*/
.lineHeadingLv2 {
  display: flex;
  align-items: center;
  font-size: 2.1875em;
  line-height: 1.45;
  font-weight: bold;
  margin-bottom: 40px;
}
.lineHeadingLv2::before {
  content: "";
  width: 30px;
  height: 12px;
  background-color: #00B7CC;
  margin-right: 20px;
}

/* -------- 下層・公開リスト ---------*/
.dateList {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 15px;
  column-gap: 15px;
  margin-bottom: 20px;
  font-size: 0.8em;
}

ul.dateList  {
  list-style: none;
}
ul.dateList li {
  padding-left: 0 !important;
}
ul.dateList li:before {
  display: none !important;
}

/* -------- 下層・シェアボタンリスト ---------*/
.shareList {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 15px;
  column-gap: 15px;
  margin-bottom: 60px;
}
.shareList__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s;
}
.shareList__link:focus-visible {
  opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
  .shareList__link:hover {
    opacity: 0.7;
  }
}
.shareList__link.shareList__link--Line {
  padding: 0;
  background-color: #06C755;
  border-radius: 8px;
}
.shareList__link.shareList__link--Line img {
  width: 40px;
  height: auto;
}
.shareList__link.shareList__link--Twitter {
  background-color: #1D9BF0;
  border-radius: 50%;
  padding: 0;
}
.shareList__link.shareList__link--Twitter img {
  width: 22px;
  height: auto;
}
.shareList__link.shareList__link--Facebook {
  background-color: #1877f2;
  padding: 0;
  border-radius: 50%;
}
.shareList__link.shareList__link--Facebook img {
  width: 38px;
  height: auto;
}

/* -------- 下層・カテゴリー付き投稿パーツ ---------*/
.vertPosts {
  display: grid;
  row-gap: 14px;
}
.vertPosts__item {
  padding-bottom: 26px;
  border-bottom: 1px solid #707070;
}
.vertPosts__header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

.vertPosts__labels_wrap {
  display: flex;
  flex-wrap: wrap;
}

.vertPosts__date {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
}
.vertPosts__labels {
  display: flex;
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 8px;
  flex-wrap: wrap;
  margin: 0 5px;
}
.vertPosts__labels span {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 0.75em;
  font-weight: 500;
  border: 1px solid #53B985;
  border-radius: 21px;
  line-height: 1.44;
  flex-shrink: 0;
  padding: 3px 17px;
}
.vertPosts__ttl {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 19/16;
  text-decoration: underline;
  font-weight: 500;
  color: #006B8D;
  transition: color 0.3s;
}
.vertPosts__ttl:focus-visible {
  color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .vertPosts__ttl:hover {
    color: #00B7CC;
  }
}

/* -------- 下層・ページネーション ---------*/
.pagination {
  display: flex;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 80px auto 108px;
}
.pagination .first,
.pagination .last {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 5px;
  border: 1px solid #D4D4D4;
}
.pagination .first > a,
.pagination .last > a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transition: color 0.3s, background-color 0.3s;
  color: #333333;
  padding-bottom: 5px;
}
.pagination .first > a:focus-visible,
.pagination .last > a:focus-visible {
  color: #fff;
  background-color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .pagination .first > a:hover,
  .pagination .last > a:hover {
    color: #fff;
    background-color: #00B7CC;
  }
}
.pagination .prev,
.pagination .next {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border: 1px solid #D4D4D4;
  border-radius: 5px;
}
.pagination .prev > a,
.pagination .next > a {
  display: block;
  padding: 10px 9px;
  width: 100%;
  height: 100%;
  color: #333333;
  transition: color 0.3s, background-color 0.3s;
  pointer-events: auto;
}
.pagination .prev > a:focus-visible,
.pagination .next > a:focus-visible {
  background-color: #00B7CC;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .pagination .prev > a:hover,
  .pagination .next > a:hover {
    background-color: #00B7CC;
    color: #fff;
  }
}
.pagination .page {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  font-size: 0.9375em;
  font-weight: bold;
  border-radius: 5px;
  border: 1px solid #D4D4D4;
}
.pagination .page.current {
  background-color: #00B7CC;
  color: #fff;
}
.pagination .page > a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #D4D4D4;
  border-radius: 5px;
  transition: color 0.3s, background-color 0.3s;
  color: #333333;
}
.pagination .page > a:focus-visible {
  color: #fff;
  background-color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .pagination .page > a:hover {
    color: #fff;
    background-color: #00B7CC;
  }
}

.lp_contents_area .map-page,
.lp_contents_area .related-pages,
.lp_contents_area .contact {
  position: relative;
  width: min(100% - 40px, 1024px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}

.lp_contents_area .contact {
 border-top: none; 
}

.lp_contents_area .categories {
 display: none; 
}

.lp_contents_area .map-page h2,
.lp_contents_area .related-pages h2,
.lp_contents_area .contact h2 {
  display: flex;
  align-items: center;
  font-size: 1.4375em;
  line-height: 1.3043478261;
  margin-bottom: 26px;
}
.lp_contents_area .map-page h2::before,
.lp_contents_area .related-pages h2::before,
.lp_contents_area .contact h2::before {
  content: "";
  width: 24px;
  height: 3px;
  background-color: #00B7CC;
  margin-right: 16px;
}

/* -------- 下層・投稿ページパーツ群 ---------*/
.pagePost section {
  margin-bottom: 80px;
}

.pagePost h1,
.pagePost h2,
.pagePost h3,
.pagePost h4 {
  font-weight: bold;
}
.pagePost h1 {
  font-size: 2.375em;
  line-height: 1.4473684211;
  margin-bottom: 40px;
}
.pagePost h2 {
  display: flex;
  align-items: center;
  font-size: 2.1875em;
  line-height: 1.45;
  font-weight: bold;
  margin-bottom: 40px;
}
.pagePost h2::before {
  content: "";
  width: 30px;
  height: 12px;
  background-color: #00B7CC;
  margin-right: 20px;
}
.pagePost h3 {
  font-size: 1.75em;
  padding-left: 15px;
  padding-bottom: 14px;
  border-bottom: 2px solid #00B7CC;
  line-height: 1.4285714286;
  margin-bottom: 27px;
}
.pagePost h4,
.lp_contents_area .map-page h2,
.lp_contents_area .related-pages h2,
.lp_contents_area .contact h2 {
  display: flex;
  align-items: center;
  font-size: 1.4375em;
  line-height: 1.3043478261;
  margin-bottom: 26px;
}
.pagePost h4::before,
.lp_contents_area .map-page h2::before,
.lp_contents_area .related-pages h2::before,
.lp_contents_area .contact h2::before {
  content: "";
  width: 24px;
  height: 3px;
  background-color: #00B7CC;
  margin-right: 16px;
}
.pagePost p {
  line-height: 2.0625;
  font-weight: 400;
  margin-bottom: 30px;
}

.pagePost p.clear {

}

.pagePost p.clear::after {
   content: "";
   display: block;
   clear: both;
}

.pagePost p img {
  margin: 0 10px;
}

.pagePost p a {
  color: #006B8D;
  transition: color 0.3s;
  text-decoration: underline;
}
.pagePost p a:focus-visible {
  color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .pagePost p a:hover {
    color: #00B7CC;
  }
}
.pagePost ul,
.lp_contents_area .related-pages ul {
  margin-bottom: 35px;
}
.pagePost ul > li,
.lp_contents_area .related-pages ul > li {
  font-size: 1em;
  position: relative;
  padding-left: 20px;
  letter-spacing: 0.05em;
  line-height: 2.2222222222;
}
.pagePost ul > li::before,
.lp_contents_area .related-pages ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00B7CC;
}
.pagePost ul > li > a,
.lp_contents_area .related-pages ul > li > a {
  color: #006B8D;
  text-decoration: underline;
  transition: color 0.3s;
}
.pagePost ul > li > a:focus-visible,
.lp_contents_area .related-pages ul > li > a:focus-visible {
  color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .pagePost ul > li > a:hover,
  .lp_contents_area .related-pages ul > li > a:hover {
    color: #00B7CC;
  }
}
.pagePost ul.shareList {
  /* margin-bottom: 60px; */
  margin-bottom: 30px;
}
.pagePost ul.shareList > li {
  padding-left: 0;
}
.pagePost ul.shareList > li::before {
  content: "";
  display: none;
}
.pagePost ul.shareList > li > a {
  background-image: none;
  transition: opacity 0.3s;
}
.pagePost ul.pagePost__labels {
  display: flex;
  -moz-column-gap: 13px;
  column-gap: 13px;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 24px;
}
.pagePost ul.pagePost__labels > li {
  padding: 0;
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.2;
}
.pagePost ul.pagePost__labels > li::before {
  display: none;
}
.pagePost ul.pagePost__labels span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 0.875em;
  text-align: center;
  border-radius: 21px;
  border: 2px solid #53B985;
  padding: 6px 16px 5px;
}

.pagePost ul.pagePost__labels span.org {
  border: 2px solid #00B7CC;
}

.pagePost ul.underSwiper__thumb {
  margin-bottom: 80px;
}
.pagePost ul.underSwiper__thumb .underSwiper__thumbWrapper {
  padding-left: 0;
}
.pagePost ul.underSwiper__thumb .underSwiper__thumbWrapper::before {
  display: none;
}
.pagePost ol {
  padding-left: 24px;
  margin-bottom: 77px;
  list-style-type: decimal;
}
.pagePost ol > li {
  font-size: 1em;
  letter-spacing: 0.05em;
  line-height: 2.2222222222;
}
.pagePost ol > li::marker {
  font-weight: bold;
}
.pagePost ol > li > a {
  color: #006B8D;
  text-decoration: underline;
  transition: color 0.3s;
}
.pagePost ol > li > a:focus-visible {
  color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .pagePost ol > li > a:hover {
    color: #00B7CC;
  }
}
.pagePost ol.pagePost__outLine {
  background-color: #F3F3F3;
  padding: 37px 50px 45px 55px;
  margin-bottom: 96px;
  border-radius: 20px;
  list-style: none;
  font-weight: 500;
}
.pagePost ol.pagePost__outLine > li {
  position: relative;
  font-size: 1em;
  line-height: 1.5;
}
.pagePost ol.pagePost__outLine > li:not(:last-child) {
  margin-bottom: 20px;
}
.pagePost ol.pagePost__outLine > li:first-child {
  font-size: 1.5625em;
  font-weight: bold;
  margin-bottom: 20px;
}
.pagePost ol.pagePost__outLine > li:not(:first-child) {
  padding-left: 25px;
}
.pagePost ol.pagePost__outLine > li a {
  font-size: 1.125em;
  line-height: 1.5555555556;
}
.pagePost dl {
  margin-bottom: 80px;
}
.pagePost dl > div {
  display: flex;
  -moz-column-gap: 3px;
  column-gap: 3px;
}
.pagePost dl > div:not(:last-child) {
  margin-bottom: 2px;
}
.pagePost dl > div > dt {
  flex-shrink: 0;
  display: grid;
  align-items: center;
  width: 25.2740560292%;
  font-weight: 500;
  color: #fff;
  line-height: 1.6666666667;
  background-color: #00B7CC;
  padding: 20px;
}
.pagePost dl > div > dd {
  width: 100%;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  padding: 20px;
  background-color: #F3F3F3;
  overflow-wrap: break-word;
  word-break:break-all;
}
.pagePost dl > div > dd > span {
  display: block;
  font-weight: bold;
}
.pagePost dl > div > dd ul {
  margin-bottom: 0;
}
.pagePost dl > div > dd ul > li {
  font-size: 1em;
}
.pagePost dl > div > dd ul > li::before {
  top: 14px;
}
.pagePost dl > div > dd a {
  color: #006B8D;
  text-decoration: underline;
  transition: color 0.3s;
}
.pagePost dl > div > dd a:focus-visible {
  color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .pagePost dl > div > dd a:hover {
    color: #00B7CC;
  }
}
.pagePost table {
  width: 100%;
  margin-bottom: 80px;
  border-collapse: separate;
  border-spacing: 3px 3px;
}
.pagePost table caption {
  font-weight: bold;
  font-size: 1.125em;
  margin-bottom: 8px;
}
.pagePost table tr {
  width: 100%;
}
.pagePost table tr:not(:last-child) {
  margin-bottom: 30px;
}
.pagePost table th {
  /* width: 25.3349573691%; */
  background-color: #00B7CC;
  color: #fff;
  font-weight: 500;
  vertical-align: middle;
  text-align: center;
  line-height: 1.6666666667;
  padding-left: 10px;
  padding-right: 10px;
}
.pagePost table td {
  /* width: 74.6650426309%; */
  line-height: 1.6666666667;
  background-color: #F3F3F3;
  padding: 20px;
}
.pagePost__thumb {
  width: 100%;
  margin-bottom: 40px;
  display: grid;
  place-items: center;
}
.pagePost__thumb > img {
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
}
.pagePost__media {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.pagePost__media + .pagePost__media {
  margin-top: 60px;
}
.pagePost__mediaThumb {
  display: grid;
  place-items: center;
  width: 42.6309378806%;
  flex-shrink: 0;
}
.pagePost__mediaThumb > img {
  -o-object-fit: contain;
  object-fit: contain;
}
.pagePost__media p {
  margin-bottom: 0;
}
.pagePost__media.pagePost__media--reverse {
  flex-direction: row-reverse;
}
.pagePost__col2Image {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px 14px;
  margin-bottom: 30px;
}
.pagePost__col2ImageThumb {
  width: 100%;
  display: grid;
  place-items: center;
}
.pagePost__col2ImageThumb > img {
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
}
.pagePost__col3Image {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 32px 12px;
  margin-bottom: 100px;
}
.pagePost__col3ImageThumb {
  width: 100%;
  display: grid;
  place-items: center;
}
.pagePost__col3ImageThumb > img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.pagePost__video {
  aspect-ratio: 126/71;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  border: 1px solid #00B7CC;
}
.pagePost__supportTag {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  -moz-column-gap: 24px;
  column-gap: 24px;
  width: auto;
  max-width: 94%;
  border: 3px solid #00B7CC;
  border-radius: 20px;
  margin: 0 auto 80px;
  padding: 12px;
}
.pagePost__supportTag > span {
  font-size: 1.25em;
  font-weight: bold;
}
.pagePost__supportTagTtl {
  font-size: 3.3125em;
  font-weight: 900;
  margin: 0 0 0.25em 0;
}
.pagePost__supportTagTtl > span {
  font-size: 0.63em;
  font-weight: bold;
}
.pagePost .map-page h2 {
  font-size: 1.75em;
  padding-left: 15px;
  padding-bottom: 14px;
  border-bottom: 2px solid #00B7CC;
  line-height: 1.4285714286;
  margin-bottom: 40px;
}
.pagePost .map-page h2::before {
  display: none;
}
.pagePost .map-page #map-canvas {
  aspect-ratio: 850/308;
  width: 100%;
}
.pagePost .map-page #map-canvas > iframe {
  max-width: 100%;
}
.pagePost .categories {
  margin-bottom: 80px;
}
.pagePost .categories h2 {
  font-size: 1.75em;
  padding-left: 15px;
  padding-bottom: 14px;
  border-bottom: 2px solid #00B7CC;
  line-height: 1.4285714286;
  margin-bottom: 40px;
}
.pagePost .categories h2::before {
  display: none;
}
.pagePost .categories .nodes ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 12px;
  margin-bottom: 0;
}
.pagePost .categories .nodes ul > li {
  padding: 0;
  letter-spacing: 0;
  font-size: 1em;
  line-height: 1;
}
.pagePost .categories .nodes ul > li::before {
  display: none;
}
.pagePost .categories .nodes ul > li > a {
  font-size: 0.9375em;
  display: block;
  text-align: center;
  background-color: #F3F3F3;
  color: #333333;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid #006B8D;
  padding: 10px 15px;
}
.pagePost .categories .nodes ul > li > a:focus-visible {
  color: #00B7CC;
}
@media (hover: hover) and (pointer: fine) {
  .pagePost .categories .nodes ul > li > a:hover {
    color: #00B7CC;
  }
}
.pagePost .contact {
  position: relative;
  margin-bottom: 160px;
  border-top: none;
}
.pagePost .contact h2 {
  font-size: 1.75em;
  padding-left: 15px;
  padding-bottom: 14px;
  border-bottom: 2px solid #00B7CC;
  line-height: 1.4285714286;
  margin-bottom: 40px;
}
.pagePost .contact h2::before {
  display: none;
}

.contact .group {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1;
}
.contact .tel,
.contact .fax {
  display: flex;
  font-size: 1.125em;
  letter-spacing: 0.05em;
  border-top: none;
  margin-bottom: 0.5em;
  margin-left: 0;
}

.contact .tel > dt,
.contact .fax > dt {
  margin: 0 10px 0 0;
}
.contact .tel > dd,
.contact .fax > dd {
  display: inline-block;
}
.contact .fax {
  /* margin-left: 20px; */
}

.pagePost .CVBtn {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 1.5em auto;
}

.pagePost .CVBtn a.CV_Ptn01 {
  display: block;
  width: 80%;
  margin: 0 auto;
  background-color: #00B7CC;
  color: #FFF;
  font-size: 1.8em;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 10px;
  transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .pagePost .CVBtn a.CV_Ptn01:hover {
    background-color: #F3F3F3;
    color: #00B7CC;
  }
}

/* -------- 下層・サムネイル付スワイパー ---------*/
.underSwiper {
  position: relative;
  margin-bottom: 32px;
  max-height: 700px;
  min-height: 400px;
  height: 45vw;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
.underSwiper .swiper-slide {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.underSwiper .swiper-slide img {
  display: inline;
  align-self: center;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.underSwiper__thumb {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 20px;
}
.underSwiper__thumbWrapper {
  cursor: pointer;
  aspect-ratio: 185/120;
}
.underSwiper__thumbWrapper > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* -------- 下層・アコーディオン ---------*/
.accordion {
  margin-bottom: 80px;
}
.accordion__btn {
  position: relative;
  display: block;
  width: 100%;
  background-color: #00B7CC;
  color: #fff;
  border-radius: 20px;
  font-size: 1.75em;
  font-weight: bold;
  padding: 16px 0 16px 20px;
  transition: border-bottom-left-radius 1.5s, border-bottom-right-radius 1.5s;
}
.accordion__btn[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.accordion__btn[aria-expanded=true] .accordion__btnIcon::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion__btnIcon {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 4px solid #fff;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}
.accordion__btnIcon::before, .accordion__btnIcon::after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 5px;
  border-radius: 20px;
  background-color: #fff;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.accordion__btnIcon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
.accordion__panel {
  display: none;
  background-color: rgba(199, 230, 214, 0.1);
  padding: 40px 16px 64px 40px;
  border: 5px solid #00B7CC;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.accordion__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 48px;
  -moz-column-gap: 5%;
  column-gap: 5%;
}
.accordion__ttl {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 28px;
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: bold;
  transition: color 0.3s;
  color: #006B8D;
  text-decoration: underline;
}
.accordion__ttl:focus-visible {
  color: #00B7CC;
}
.accordion__ttl:focus-visible::before {
  background: linear-gradient(270deg, #53B985, #00B7CC);
}
@media (hover: hover) and (pointer: fine) {
  .accordion__ttl:hover {
    color: #00B7CC;
  }
  .accordion__ttl:hover::before {
    background: linear-gradient(270deg, #53B985, #00B7CC);
  }
}
.accordion__ttl::before, .accordion__ttl::after {
  position: absolute;
  content: "";
  left: 0;
}
.accordion__ttl::before {
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(270deg, #C7E6D6, #00B7CC);
  border-radius: 50%;
  transition: background-color 0.3s;
}
.accordion__ttl::after {
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-left: 5px;
  margin-top: -3px;
  transform: rotate(45deg);
  transition: border-color 0.3s;
}