@charset "UTF-8";
@font-face {
  font-family: "back-to-black-demo";
  src: url(../css/back-to-black-demo.woff) format("woff"); /* フォントファイルのパスとフォーマットを指定 */
}
/* 共通 */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  padding: 0;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  margin: 0;
  width: 100vw;
  overflow-x: hidden;
}

main .top_wrap {
  padding-top: 100px;
}
main .subTop_wrap,
main .subSimpleTop_wrap {
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  main .top_wrap {
    padding-top: 75px;
  }
  main .subTop_wrap {
    padding-top: 75px;
    padding-bottom: 60px;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #333333;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.ttl_h2 h2 {
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 900;
  width: fit-content;
  line-height: 1em;
}
.ttl_h2 h2 span {
  font-size: 22px;
  font-family: "Sawarabi Mincho", serif;
}
.ttl_h2 h2::after {
  position: absolute;
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-image: url(../images/footprints.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  right: -20px;
}
@media (max-width: 768px) {
  .ttl_h2 h2 {
    font-size: 30px;
  }
  .ttl_h2 h2 span {
    font-size: 18px;
  }
  .ttl_h2 h2::after {
    width: 14px;
    height: 14px;
    top: 0;
    right: -20px;
  }
}

.page_content .page_content_area h3 {
  font-family: "Sawarabi Mincho", serif;
  font-size: 28px;
  line-height: 2em;
  border-bottom: #00a995 1px solid;
  margin-bottom: 40px;
}
.page_content .page_content_area h4 {
  position: relative;
  padding-left: 30px;
  font-size: 24px;
  margin-bottom: 40px;
}
.page_content .page_content_area h4::before {
  position: absolute;
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: #00a995;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page_content .page_content_area p {
  line-height: 1.8em;
  font-size: 18px;
  margin-bottom: 50px;
}
.page_content .page_content_area ul {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .page_content .page_content_area {
    margin-bottom: 25px;
  }
  .page_content .page_content_area h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .page_content .page_content_area h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .page_content .page_content_area h4::before {
    width: 20px;
  }
  .page_content .page_content_area p {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

/* --- scrollbar --- */
.scrollbar_wrap {
  position: relative;
}

.scrollbarContainer {
  height: calc(100% + 200px);
  position: absolute;
  width: 5%;
  left: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .scrollbarContainer {
    height: calc(100% + 100px);
  }
}

.scrollbar-text {
  display: inline-block;
  position: absolute;
  top: 0;
  padding: 10px 10px 110px;
  color: #00a995;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  left: 50%;
  transform: translateX(-50%);
}

.scrollbar {
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}

.scrollbar::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: calc(100% - 150px);
  background: #00a995;
}

.scrollbar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00a995;
  animation: circlemove 8s ease-in-out infinite, cirlemovehide 8s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: calc(100% - 150px);
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* --- insta to_tpo --- */
.side_link {
  width: 8%;
  position: fixed;
  right: 3%;
  bottom: 30%;
  z-index: 99;
  transition: all 0.6s;
}
@media (max-width: 768px) {
  .side_link {
    width: 70px;
    bottom: 56%;
  }
}

.side_link.active {
  position: fixed;
  right: 3%;
  bottom: 8%;
  z-index: 99;
  transition: all 0.6s;
}
@media (max-width: 768px) {
  .side_link.active {
    bottom: 6%;
  }
}

.insta_btn {
  width: 100%;
  transition: all 0.6s;
  margin-top: 10px;
}

.to_top {
  display: none;
  transition: all 0.6s;
}

.to_top.active {
  display: block;
  width: 100%;
  transition: all 0.6s;
  z-index: 99;
}

/* subMainView */
.subMainView {
  position: relative;
}
.subMainView .breadcrumbs {
  position: absolute;
  top: 0;
  left: 5%;
  font-size: 12px;
}
.subMainView .subMainView_box {
  display: flex;
  align-items: center;
  margin-bottom: 130px;
}
.subMainView .subMainView_box .subMainView_ttl {
  width: 30%;
  padding-left: 5%;
}
.subMainView .subMainView_box .subMainView_ttl p {
  font-family: "back-to-black-demo";
  font-size: 8vw;
  font-weight: 400;
  transform: rotate(-20deg);
  margin-bottom: 140px;
  line-height: 1em;
  color: #666666;
}
.subMainView .subMainView_box .subMainView_ttl h2 {
  font-family: "Sawarabi Mincho", serif;
  font-size: 22px;
  text-align: center;
}
.subMainView .subMainView_box .subMainView_img {
  width: 70%;
}
.subMainView .subMainView_box .subMainView_img img {
  aspect-ratio: 95/67;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 0 0 24px;
}
.subMainView h3 {
  font-family: "Sawarabi Mincho", serif;
  font-size: 42px;
  text-align: center;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .subMainView {
    position: relative;
  }
  .subMainView .breadcrumbs {
    position: absolute;
    top: -30px;
    left: 5%;
    font-size: 12px;
  }
  .subMainView .subMainView_box {
    position: relative;
    display: flex;
    justify-content: right;
    align-items: center;
    margin-bottom: 70px;
  }
  .subMainView .subMainView_box .subMainView_ttl {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 50%;
    padding-left: 5%;
  }
  .subMainView .subMainView_box .subMainView_ttl h2 {
    font-family: "Sawarabi Mincho", serif;
    font-size: 16px;
    text-align: center;
  }
  .subMainView .subMainView_box .subMainView_img {
    width: 70%;
  }
  .subMainView .subMainView_box .subMainView_img img {
    aspect-ratio: 95/67;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 0 0 24px;
  }
  .subMainView h3 {
    font-family: "Sawarabi Mincho", serif;
    font-size: 22px;
    text-align: center;
    line-height: 1.5em;
  }
}

.subSimpleMainView .breadcrumbs {
  padding-left: 5%;
  font-size: 12px;
}
.subSimpleMainView .subSimpleMainView_ttl {
  padding-top: 4em;
}
.subSimpleMainView .subSimpleMainView_ttl p {
  font-family: "back-to-black-demo";
  font-size: 8vw;
  font-weight: 400;
  transform: rotate(-20deg);
  margin-bottom: 1em;
  line-height: 1em;
  color: #666666;
  text-align: center;
}
.subSimpleMainView .subSimpleMainView_ttl h2 {
  font-family: "Sawarabi Mincho", serif;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .subSimpleMainView .subSimpleMainView_ttl p {
    font-size: 10vw;
  }
  .subSimpleMainView .subSimpleMainView_ttl h2 {
    font-family: "Sawarabi Mincho", serif;
    font-size: 20px;
    text-align: center;
  }
}

/* deco top */
.top_wrap {
  position: relative;
}
.top_wrap .deco_top_top {
  position: absolute;
  width: 30%;
  top: 0;
  left: 30%;
  z-index: -1;
}
.top_wrap .deco_top_migiue {
  position: absolute;
  width: 8.5%;
  top: 238%;
  right: 0;
  z-index: -1;
}
.top_wrap .deco_top_migisita {
  position: absolute;
  width: 11.4%;
  top: 890%;
  right: 0;
  z-index: -1;
}
.top_wrap .deco_top_hidariue {
  position: absolute;
  width: 5%;
  top: 156%;
  left: 0;
  z-index: -1;
}
.top_wrap .deco_top_hidarisita {
  position: absolute;
  width: 5.9%;
  top: 900%;
  left: 0;
  z-index: -1;
}

/* deco subTop */
.subTop_wrap {
  position: relative;
}
.subTop_wrap .deco_top {
  position: absolute;
  width: 30%;
  top: 0;
  left: 30%;
  z-index: -1;
}
.subTop_wrap .deco_migiue {
  position: absolute;
  width: 8.5%;
  top: 90%;
  right: 0;
  z-index: -1;
}
.subTop_wrap .deco_migisita {
  position: absolute;
  width: 11.4%;
  top: 90%;
  right: 0;
  z-index: -1;
}
.subTop_wrap .deco_hidariue {
  position: absolute;
  width: 5%;
  top: 16%;
  left: 0;
  z-index: -1;
}
.subTop_wrap .deco_hidarisita {
  position: absolute;
  width: 20%;
  top: 90%;
  left: 0;
  z-index: -1;
}

/* deco subSimpleTop_wrap */
.subSimpleTop_wrap {
  position: relative;
}
.subSimpleTop_wrap .deco_top {
  position: absolute;
  width: 30%;
  top: 0;
  left: 30%;
  z-index: -1;
}
.subSimpleTop_wrap .deco_migiue {
  position: absolute;
  width: 8.5%;
  top: 55%;
  right: 0;
  z-index: -1;
}
.subSimpleTop_wrap .deco_hidariue {
  position: absolute;
  width: 5%;
  top: 40%;
  left: 0;
  z-index: -1;
}

/* deco subSimpleMain_wrap */
.subSimpleMain_wrap {
  position: relative;
}
.subSimpleMain_wrap .deco_migisita {
  position: absolute;
  width: 11.4%;
  top: 50%;
  right: 0;
  z-index: -1;
}
.subSimpleMain_wrap .deco_hidarisita {
  position: absolute;
  width: 20%;
  top: 30%;
  left: 0;
  z-index: -1;
}
.subSimpleMain_wrap .deco_migi {
  position: absolute;
  width: 5.8%;
  top: 80%;
  right: 0;
}

/* deco subContent */
.subContent_wrap {
  position: relative;
}
.subContent_wrap .deco_top {
  position: absolute;
  width: 30%;
  top: 0;
  left: 30%;
}
.subContent_wrap .deco_migiue {
  position: absolute;
  width: 8.5%;
  top: 238%;
  right: 0;
}
.subContent_wrap .deco_migisita {
  position: absolute;
  width: 11.4%;
  top: 890%;
  right: 0;
}
.subContent_wrap .deco_hidariue {
  position: absolute;
  width: 5%;
  top: 156%;
  left: 0;
}
.subContent_wrap .deco_hidarisita {
  position: absolute;
  width: 5.9%;
  top: 900%;
  left: 0;
}

/* deco eventCalendar */
.eventCalendar {
  position: relative;
}
.eventCalendar .deco_migiue {
  position: absolute;
  width: 10%;
  top: -10%;
  right: 0;
}
.eventCalendar .deco_hidariue {
  position: absolute;
  width: 20%;
  top: -9%;
  left: 0;
}
@media (max-width: 768px) {
  .eventCalendar .deco_migiue {
    top: -3%;
    right: 0;
  }
  .eventCalendar .deco_hidariue {
    top: -2%;
    left: 0;
  }
}

/* deco revivalMap */
.revivalMap {
  position: relative;
}
.revivalMap .deco_migiue {
  position: absolute;
  width: 5.8%;
  top: -8%;
  right: 0;
}
.revivalMap .deco_migisita {
  position: absolute;
  width: 11%;
  bottom: 2%;
  right: 0;
}
.revivalMap .deco_hidarisita {
  position: absolute;
  width: 17%;
  bottom: -2%;
  left: 0;
  z-index: 3;
}
.revivalMap .map_img1 {
  position: absolute;
  width: 15%;
  top: 0;
  right: 20%;
  z-index: 3;
}
.revivalMap .map_img2 {
  position: absolute;
  width: 9%;
  top: 22%;
  right: 9%;
  z-index: 3;
}
@media (max-width: 1024px) {
  .revivalMap .map_img2 {
    position: absolute;
    width: 9%;
    top: 14%;
    right: 2%;
    z-index: 3;
  }
}
@media (max-width: 768px) {
  .revivalMap .map_img2 {
    position: absolute;
    width: 9%;
    top: 60%;
    right: 14%;
    z-index: 3;
  }
}

/* deco instagram */
.instagram {
  position: relative;
}
.instagram .deco_hidari {
  position: absolute;
  width: 11.4%;
  top: 30%;
  left: 0;
}
.instagram .deco_migi {
  position: absolute;
  width: 12%;
  top: 33%;
  right: 0;
}

/* deco usefulLinks */
.usefulLinks {
  position: relative;
}
.usefulLinks .deco_hidari {
  position: absolute;
  width: 5.8%;
  top: 30%;
  left: 0;
}
.usefulLinks .deco_migi {
  position: absolute;
  width: 5.8%;
  top: 30%;
  right: 0;
}

/* deco footer */
footer {
  position: relative;
}
footer .deco_hidari {
  position: absolute;
  width: 11.2%;
  top: -8%;
  left: 0;
}
footer .deco_migi {
  position: absolute;
  width: 7.8%;
  top: -2%;
  right: 0;
}

.inner860 {
  width: 90%;
  max-width: 860px;
  margin: auto;
}

.inner900 {
  width: 85%;
  max-width: 900px;
  margin: auto;
}

.inner1000 {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

@media (max-width: 768px) {
  .pc_display {
    display: none;
  }
}

.tab_display {
  display: none;
}
@media (max-width: 768px) {
  .tab_display {
    display: block;
  }
}

.sp_display {
  display: none;
}
@media (max-width: 576px) {
  .sp_display {
    display: block;
  }
}

.content_inner {
  width: 90%;
  max-width: 1040px;
  margin: auto;
}

.text_center {
  text-align: center;
}

.mg_auto {
  margin: auto;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .mb_20 {
    margin-bottom: 10px;
  }
}

.mb_30 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .mb_30 {
    margin-bottom: 15px;
  }
}

.mb_40 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mb_40 {
    margin-bottom: 20px;
  }
}

.mb_50 {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .mb_50 {
    margin-bottom: 25px;
  }
}

.mb_60 {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .mb_60 {
    margin-bottom: 30px;
  }
}

.mb_70 {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .mb_70 {
    margin-bottom: 35px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mb_100 {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .mb_100 {
    margin-bottom: 50px;
  }
}

.mb_140 {
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  .mb_140 {
    margin-bottom: 70px;
  }
}

/* ------- fade_ ----------- */
.fade_right {
  animation: slideright 3s ease forwards;
}

@keyframes slideright {
  0% {
    transform: translateX(230px);
    opacity: 0;
  }
  33% {
    transform: translateX(230px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade_left {
  animation: slideleft 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideleft {
  0% {
    transform: translateX(-230px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ------- news_list ----------- */
.news_list {
  list-style: none;
  margin-bottom: 50px;
}
.news_list .news_item {
  padding: 26px 0;
  border-bottom: #f3ecd9 1px solid;
}
.news_list .news_item .news_img {
  width: 30%;
}
.news_list .news_item .news_img img {
  aspect-ratio: 195/142;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.news_list .news_item .news_text {
  width: 68%;
}
.news_list .news_item .news_text .news_date {
  font-family: "Sawarabi Mincho", serif;
  color: #c9c9c9;
  font-size: 22px;
}
.news_list .news_item .news_text .news_title {
  font-size: 15px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .news_list .news_item {
    padding: 26px 0;
    display: block;
    border-bottom: #f3ecd9 1px solid;
  }
  .news_list .news_item:nth-of-type(1) {
    border-top: none;
  }
  .news_list .news_item .news_img {
    width: 100%;
  }
  .news_list .news_item .news_text {
    width: 100%;
  }
}

/* ------- btn ----------- */
.more_text a {
  display: block;
  width: 240px;
  position: relative;
  padding: 20px 22px;
  background-color: #fff;
  color: #333333;
  font-size: 14px;
  border-radius: 6px;
  box-shadow: 0px 5px 15px 0px rgba(141, 141, 141, 0.35);
}
.more_text a::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 11px;
  display: block;
  background-image: url(../images/arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .more_text a {
    width: 200px;
    position: relative;
    padding: 16px 18px;
    font-size: 13px;
    border-radius: 5px;
  }
  .more_text a::after {
    position: absolute;
    content: "";
    right: 18px;
  }
}

.greenBorder_btn {
  display: inline-block;
  position: relative;
  padding: 20px 50px 20px 25px;
  text-align: center;
  border-radius: 5px;
  border: #00a995 1px solid;
  background-color: #fff;
  color: #00a995;
  font-size: 14px;
}
.greenBorder_btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

.members_contact_btn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.members_contact_btn .greenBorder_btn {
  display: block;
}
@media (max-width: 768px) {
  .members_contact_btn {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 40px;
  }
  .members_contact_btn .greenBorder_btn {
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
  }
}

/* ------- page_navi ----------- */
.page_navi {
  margin-bottom: 50px;
}

.pagination {
  text-align: center;
}

.info_pagination {
  margin-bottom: 80px;
}
.info_pagination .nav-links {
  display: flex;
}

.info_pagination,
.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.info_pagination a,
.page-numbers a {
  text-decoration: none;
}

.info_pagination .page-numbers,
.info_pagination .current,
.info_pagination .dots {
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  border: #00a995 1px solid;
  color: #00a995;
  border-radius: 2px;
  margin-right: 25px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 30px;
}
.info_pagination a.page-numbers:hover {
  color: #fff;
  background-color: #00a995;
  opacity: 0.6;
}
.info_pagination .current {
  background: #00a995;
  color: #ffffff;
  padding: 0;
}
.info_pagination a.prev,
.info_pagination a.next {
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  border: #00a995 1px solid;
  color: #00a995;
  border-radius: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 16px;
}
.info_pagination a.prev:hover,
.info_pagination a.next:hover {
  color: #fff;
  background-color: #00a995;
  opacity: 0.6;
}
.info_pagination .dots {
  background: transparent;
  border: none;
}
@media (max-width: 768px) {
  .info_pagination .page-numbers,
  .info_pagination .current,
  .info_pagination .dots {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: #00a995 1px solid;
    color: #00a995;
    border-radius: 2px;
    margin-right: 15px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 30px;
  }
  .info_pagination a.page-numbers:hover {
    color: #fff;
    background-color: #00a995;
    opacity: 0.6;
  }
  .info_pagination .current {
    background: #00a995;
    color: #ffffff;
    padding: 0;
  }
  .info_pagination a.prev,
  .info_pagination a.next {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: #00a995 1px solid;
    color: #00a995;
    border-radius: 2px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 16px;
  }
  .info_pagination a.prev:hover,
  .info_pagination a.next:hover {
    color: #fff;
    background-color: #00a995;
    opacity: 0.6;
  }
  .info_pagination .dots {
    background: transparent;
    border: none;
  }
}

/* ------- 404 ----------- */
.min_content {
  min-height: 500px;
}
.min_content p {
  margin-top: 50px;
  text-align: center;
}

/* ------- eventCalendar ----------- */
.eventCalendar {
  padding: 80px 0;
  background-color: #eaf6f6;
}

/* --- members_contact_area --- */
.members_contact_area {
  padding: 80px 0;
  border-top: #00a995 1px solid;
}
@media (max-width: 768px) {
  .members_contact_area {
    padding: 40px 0;
  }
}

.members_contact_banner {
  border: #00a995 1px solid;
}
.members_contact_banner p {
  text-align: center;
  line-height: 1.8em;
}
.members_contact_banner .members_contact_banner_ttl {
  background-color: #00a995;
  color: #fff;
  font-size: 24px;
  padding: 20px 0;
}
.members_contact_banner .members_contact_banner_text {
  padding: 40px 0;
  background-color: #fff;
}
.members_contact_banner .members_contact_banner_text .members_contact_banner_name {
  font-size: 23px;
}
.members_contact_banner .members_contact_banner_text .members_contact_banner_add {
  font-size: 18px;
}
.members_contact_banner .members_contact_banner_text .members_contact_banner_t {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 24px;
}
.members_contact_banner .members_contact_banner_text .members_contact_banner_p {
  font-family: "Sawarabi Mincho", serif;
  font-size: 12px;
  line-height: 1em;
}
.members_contact_banner .members_contact_banner_text .members_contact_banner_tel {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 34px;
}
.members_contact_banner .members_contact_banner_text .members_contact_banner_tel span {
  font-size: 22px;
}
.members_contact_banner .members_contact_banner_text .members_contact_banner_pn {
  font-size: 12px;
  line-height: 1em;
  margin-bottom: 20px;
}
.members_contact_banner .members_contact_banner_text .greenBorder_btn {
  margin: auto;
}
@media (max-width: 768px) {
  .members_contact_banner .members_contact_banner_ttl {
    font-size: 18px;
  }
}

/* --- archive --- */
.archive_content2 {
  padding-top: 50px;
}

.archive_content {
  border-top: #00a995 1px solid;
  padding-top: 50px;
}

.info_post_list {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.info_post_list .info_post_item {
  padding: 10px;
  background-color: #fff;
}
.info_post_list .info_post_item .info_post_thumb {
  width: 100%;
  margin-bottom: 25px;
}
.info_post_list .info_post_item .info_post_thumb img {
  aspect-ratio: 28/22;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info_post_list .info_post_item h3 {
  font-family: "Sawarabi Mincho", serif;
  font-size: 20px;
  margin-bottom: 20px;
}
.info_post_list .info_post_item time {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #cccccc;
  font-weight: 900;
}
@media (max-width: 768px) {
  .info_post_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.info_catNav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.info_catNav_link {
  display: inline-block;
  padding: 2px 16px;
  border-radius: 3px;
  border: 1px solid currentColor;
  font-size: 14px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .info_catNav_link {
    padding: 2px 8px;
  }
}

/* 投稿カード内のカテゴリーラベル */
.info_post_cats {
  line-height: 1.5em;
}

.info_post_cat {
  display: inline-block;
  font-size: 12px;
  margin: 0 4px;
  padding: 0 12px;
  border-radius: 3px;
  border: 1px solid currentColor;
}
@media (max-width: 768px) {
  .info_post_cat {
    font-size: 10px;
    margin: 0 2px;
    padding: 0 6px;
  }
}

/* ===== カテゴリーごとの色指定 ===== */
.cat_news {
  color: #00a995;
}

.cat_event {
  color: #d9782b;
}

.cat_tips {
  color: #2499e3;
}

/* 現在のカテゴリタブ */
.info_catNav_link.cat_news.is-current {
  background-color: #00a995;
  color: #fff;
  border-color: #00a995;
}

.info_catNav_link.cat_event.is-current {
  background-color: #d9782b;
  color: #fff;
  border-color: #d9782b;
}

.info_catNav_link.cat_tips.is-current {
  background-color: #2499e3;
  color: #fff;
  border-color: #2499e3;
}

/* --- single --- */
.singlePage_content {
  min-height: 500px;
}
.singlePage_content .single_post_meta {
  margin-bottom: 10px;
  display: flex;
}
.singlePage_content .single_post_meta time {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #cccccc;
  font-weight: 900;
}
.singlePage_content h2 {
  font-family: "Sawarabi Mincho", serif;
  font-size: 28px;
  margin-bottom: 40px;
  line-height: 80px;
  border-bottom: #00a995 1px solid;
}
.singlePage_content figure {
  margin-bottom: 20px;
}
.singlePage_content p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8em;
}
.singlePage_content .single_post_content {
  margin-bottom: 100px;
}
.singlePage_content .single_post_cat_nav_p {
  font-family: "Sawarabi Mincho", serif;
  font-size: 24px;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .singlePage_content .single_post_content {
    margin-bottom: 50px;
  }
  .singlePage_content h2 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 60px;
  }
  .singlePage_content p {
    font-size: 16px;
  }
  .singlePage_content .single_post_cat_nav_p {
    font-size: 20px;
    margin-bottom: 2cqmax;
  }
}

.previous_link {
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
  font-size: 22px;
  display: flex;
  list-style: none;
}
.previous_link li {
  margin: 0 10px;
}
.previous_link li a {
  border: #00a995 1px solid;
  display: inline-block;
  color: #00a995;
  text-align: center;
  line-height: 30px;
  padding: 25px 30px;
}
@media (max-width: 768px) {
  .previous_link {
    margin-bottom: 60px;
    font-size: 16px;
  }
  .previous_link li {
    margin: 0 5px;
  }
  .previous_link li a {
    line-height: 22px;
    padding: 12px 20px;
  }
}

.event-category-buttons {
  margin-bottom: 10px;
}

.cat-button {
  display: inline-block;
  border: 2px solid;
  border-radius: 6px;
  padding: 4px 10px;
  margin: 0 5px 5px 0;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
}

.cat-button:hover {
  background: currentColor;
  color: #fff !important;
}

/* --- map_tb --- */
.map_tb {
  width: 100%;
  display: flex;
}
.map_tb .map_th {
  padding: 5px;
}
.map_tb .map_th p {
  border-radius: 3px;
  text-align: center;
  width: 75px;
  font-size: 12px;
  border: #00a995 solid 1px;
  color: #00a995;
}
.map_tb .map_td {
  padding: 0 5px;
  font-size: 14px;
  font-weight: 300;
}
.map_tb .map_td p {
  word-break: break-all;
}

.members_post_content {
  margin-bottom: 40px;
}

/* header */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 98;
  padding: 22px 140px 22px 10%;
}
@media (max-width: 768px) {
  header {
    padding: 22px 125px 22px 5%;
  }
}

header.is-show {
  background-color: rgba(255, 255, 255, 0.9294117647);
  transition: all 0.3s;
}

.header_main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_main h1 {
  width: 250px;
}
@media (max-width: 768px) {
  .header_main h1 {
    width: 140px;
  }
  .header_main .language_nav {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .header_main h1 {
    width: 140px;
  }
  .header_main .language_nav {
    display: none;
  }
}

.language_nav {
  list-style: none;
  display: flex;
}

.hamburger,
.hamburger.hamburger.active {
  display: block;
  position: fixed;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  right: 20px;
  top: 34px;
  width: 100px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}
.hamburger .hamburger_text,
.hamburger.hamburger.active .hamburger_text {
  font-size: 18px;
}
@media (max-width: 768px) {
  .hamburger,
  .hamburger.hamburger.active {
    top: 24px;
  }
}

.hamburger_wrap {
  width: 50%;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.global_nav {
  display: flex;
  justify-content: space-around;
  overflow: auto;
  position: fixed;
  background: #fff;
  z-index: 555;
  top: 100px;
  right: 0;
  color: #333333;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  padding: 60px 20%;
  font-size: 16px;
}
.global_nav ul {
  width: 29%;
  list-style: none;
}
.global_nav ul li {
  font-size: 18px;
  padding: 15px 0;
  border-bottom: #cbcbcb solid 1px;
}
.global_nav ul li span {
  width: 24px;
  height: 2px;
  background-color: #00a995;
  display: inline-block;
  margin: 7px;
}
@media (max-width: 1024px) {
  .global_nav {
    padding: 60px 10%;
  }
}
@media (max-width: 768px) {
  .global_nav {
    top: 70px;
    display: block;
    padding: 60px 10%;
  }
  .global_nav ul {
    width: 100%;
  }
}

.global_nav.active {
  display: flex;
  justify-content: space-around;
  overflow: auto;
  z-index: 555;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.global_nav.active ul {
  width: 29%;
  list-style: none;
}
.global_nav.active ul li {
  padding: 15px 0;
  border-bottom: #cbcbcb solid 1px;
}
@media (max-width: 1024px) {
  .global_nav.active {
    padding: 60px 10%;
  }
}
@media (max-width: 768px) {
  .global_nav.active {
    height: 100%;
    overflow-y: scroll;
    display: block;
    padding: 60px 10%;
  }
  .global_nav.active ul {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* footer */
footer {
  padding: 70px 0 20px;
  background-color: #f2f2f2;
}
footer .footer_wrap {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
footer .footer_wrap .footer_text .footer_logo {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}
footer .footer_wrap .footer_text p.footer_p {
  font-size: 12px;
  margin-bottom: 40px;
}
footer .footer_wrap .footer_text p.footer_contact {
  font-family: "Sawarabi Mincho", serif;
  font-size: 12px;
  margin-bottom: 20px;
}
footer .footer_wrap .footer_text p.footer_contact span {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 24px;
}
footer .footer_wrap .footer_text .footer_tel {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}
footer .footer_wrap .footer_text .footer_tel span {
  font-size: 34px;
}
footer .footer_wrap .footer_text p.footer_p2 {
  font-size: 12px;
  margin-bottom: 50px;
}
footer .footer_wrap .footer_nav {
  display: flex;
}
footer .footer_wrap .footer_nav ul {
  list-style: none;
  padding: 0 24px;
}
footer .footer_wrap .footer_nav ul li {
  font-size: 14px;
  padding: 12px 0;
}
footer .footer_wrap .footer_nav ul li span {
  width: 30px;
  height: 1px;
  background-color: #00a995;
  display: inline-block;
  margin: 7px;
}
footer .footer_copy {
  width: 93%;
  margin: auto;
  border-top: #00a995 1px solid;
}
footer .footer_copy p {
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}
@media (max-width: 1024px) {
  footer .footer_wrap {
    width: 80%;
    max-width: 760px;
    display: block;
  }
  footer .footer_wrap .footer_text {
    width: fit-content;
    margin: auto;
  }
  footer .footer_wrap .footer_nav {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  footer .footer_wrap .footer_nav {
    display: block;
  }
}

/*--------- top ----------*/
.mainView {
  position: relative;
  width: 90%;
  margin: auto;
}
.mainView .mainView_ttl {
  position: absolute;
  width: 33%;
  height: auto;
  top: -3%;
  left: 5%;
  z-index: 50;
}

/*--------- swiper ----------*/
.swiper {
  width: 100%;
}

/*--------　topNews ----------- */
.topNews {
  min-height: 660px;
  padding: 50px 0;
  display: flex;
}
.topNews .topNews_ttl {
  padding-top: 30px;
  width: 31%;
}
.topNews h2 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .topNews {
    padding: 50px 0;
    display: block;
  }
  .topNews .topNews_ttl {
    padding-top: 30px;
    width: 100%;
  }
  .topNews h2 {
    margin-bottom: 30px;
  }
}

.topNews_list {
  list-style: none;
  width: 69%;
}
.topNews_list .topNews_item {
  padding: 28px 0;
  border-bottom: #e5e5e5 1px solid;
}
.topNews_list .topNews_item .topNews_data {
  display: flex;
  margin-bottom: 24px;
}
.topNews_list .topNews_item .topNews_data time {
  font-size: 14px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin-right: 16px;
  color: #cccccc;
}
.topNews_list .topNews_item .topNews_data .info_post_cat {
  display: inline-block;
  font-size: 12px;
  margin: 0 4px;
  padding: 0 12px;
  border-radius: 3px;
  border: 1px solid currentColor;
}
.topNews_list .topNews_item h3 {
  font-family: "Sawarabi Mincho", serif;
  font-size: 22px;
  margin-bottom: 20px;
}
.topNews_list .topNews_item p {
  font-size: 14px;
}
@media (max-width: 768px) {
  .topNews_list {
    width: 100%;
  }
  .topNews_list .topNews_item {
    padding: 26px 0;
    display: block;
    border-bottom: #f3ecd9 1px solid;
  }
  .topNews_list .topNews_item:nth-of-type(1) {
    border-top: none;
  }
  .topNews_list .topNews_item .topNews_img {
    width: 100%;
  }
  .topNews_list .topNews_item .topNews_text {
    width: 100%;
  }
  .topNews_list .topNews_item .topNews_data .info_post_cat {
    display: inline-block;
    font-size: 10px;
    margin: 0 2px;
    padding: 0 6px;
    border-radius: 3px;
    border: 1px solid currentColor;
  }
}

.eventCalendar_ttl,
.instagram_ttl,
.usefulLinks_ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .eventCalendar_ttl,
  .instagram_ttl,
  .usefulLinks_ttl {
    display: block;
    margin-bottom: 30px;
  }
  .eventCalendar_ttl h2,
  .instagram_ttl h2,
  .usefulLinks_ttl h2 {
    margin-bottom: 20px;
  }
}

/*--------　revivalMap ----------- */
.revivalMap {
  position: relative;
  width: 100%;
  aspect-ratio: 1366/687;
}
.revivalMap .revivalMap_ttl {
  position: absolute;
  top: 40%;
  left: 60%;
}
.revivalMap .revivalMap_ttl h2 {
  margin-bottom: 35px;
}
.revivalMap .revivalMap_ttl p {
  margin-bottom: 45px;
}
.revivalMap .revivalMap_img {
  width: 53%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 5;
}
.revivalMap .revivalMap_line {
  position: absolute;
  top: 40%;
  left: 49%;
  width: 10%;
  height: 18px;
  border-bottom: #333333 3px dashed;
  z-index: 6;
}
@media (max-width: 1024px) {
  .revivalMap {
    position: relative;
    width: 100%;
  }
  .revivalMap .revivalMap_ttl {
    position: absolute;
    top: 33%;
    left: 60%;
  }
  .revivalMap .revivalMap_ttl h2 {
    margin-bottom: 16px;
  }
  .revivalMap .revivalMap_ttl p {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .revivalMap .revivalMap_img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 5;
  }
  .revivalMap .revivalMap_line {
    display: none;
  }
}

main > .revivalMap_ttl {
  width: fit-content;
  margin-left: auto;
  padding: 40px;
}
main > .revivalMap_ttl h2 {
  margin-bottom: 35px;
}
main > .revivalMap_ttl p {
  margin-bottom: 45px;
}

/*--------　traditionalCulture ----------- */
.traditionalCulture {
  position: relative;
}
.traditionalCulture .traditionalCulture_ttl {
  position: absolute;
  top: 10%;
  left: 10%;
}
.traditionalCulture .traditionalCulture_ttl h2 {
  color: #fff;
  margin-bottom: 35px;
}
.traditionalCulture .traditionalCulture_ttl h2::after {
  background-image: url(../images/footprints_w.svg);
}

/*--------　instagram ----------- */
.instagram {
  padding: 100px 0 0;
}
.instagram .instagram_ttl h2 {
  margin-bottom: 30px;
}
.instagram .instagram_ttl h2::after {
  right: 120px;
}

/*--------　usefulLinks ----------- */
.usefulLinks {
  padding: 100px 0 100px;
}
.usefulLinks h2 {
  margin-bottom: 30px;
}
.usefulLinks .usefulLinks_list {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.usefulLinks .usefulLinks_list .usefulLinks_item {
  width: 24%;
  border-bottom: 1px #00a995 solid;
}
.usefulLinks .usefulLinks_list .usefulLinks_item .usefulLinks_img {
  margin-bottom: 50px;
}
.usefulLinks .usefulLinks_list .usefulLinks_item p {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}
.usefulLinks .usefulLinks_list .usefulLinks_item p::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 11px;
  display: block;
  top: 50%;
  right: 10px;
  background-image: url(../images/arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .usefulLinks {
    padding-bottom: 50px;
  }
  .usefulLinks .usefulLinks_list {
    display: block;
  }
  .usefulLinks .usefulLinks_list .usefulLinks_item {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
  }
}

/*--------　about ----------- */
.aboutContent {
  margin-bottom: 200px;
}
.aboutContent p {
  font-family: "Sawarabi Mincho", serif;
  font-size: 20px;
  width: fit-content;
  line-height: 1.8em;
  margin: auto;
}
@media (max-width: 768px) {
  .aboutContent p {
    font-family: "Sawarabi Mincho", serif;
    font-size: 16px;
    width: fit-content;
    margin: auto;
  }
}

/*--------　culture ----------- */
.cultureContent .culture_foot {
  width: 40px;
  height: 40px;
  margin: auto;
}
.cultureContent .culture_dot {
  width: 2px;
  height: 60px;
  margin: 3px auto;
  border-left: #00a995 5px dashed;
}
.cultureContent .culture_flex {
  display: flex;
  justify-content: left;
  align-items: center;
}
.cultureContent .culture_flex .culture_img {
  width: 53%;
}
.cultureContent .culture_flex .culture_img img {
  aspect-ratio: 72/62;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}
.cultureContent .culture_flex .culture_text {
  width: 30%;
  margin-left: 3%;
}
.cultureContent .culture_flex .culture_text h4 {
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-weight: 900;
  width: fit-content;
  line-height: 1em;
  margin-bottom: 40px;
  color: #666666;
}
.cultureContent .culture_flex .culture_text h4::after {
  position: absolute;
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-image: url(../images/footprints.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  right: -20px;
}
.cultureContent .culture_flex .culture_text h5 {
  font-family: "Sawarabi Mincho", serif;
  font-size: 38px;
  margin-bottom: 40px;
}
.cultureContent .culture_flex .culture_text p {
  line-height: 1.8em;
}
.cultureContent .culture_flexR {
  flex-direction: row-reverse;
  justify-content: right;
}
.cultureContent .culture_flexR .culture_img img {
  border-radius: 20px 0 0 20px;
}
.cultureContent .culture_flexR .culture_text {
  margin-left: 0px;
  margin-right: 3%;
}
@media (max-width: 768px) {
  .cultureContent .culture_foot {
    width: 20px;
    height: 20px;
    margin: auto;
  }
  .cultureContent .culture_dot {
    width: 1px;
    height: 40px;
    margin: 2px auto;
    border-left: #00a995 3px dashed;
  }
  .cultureContent .culture_flex {
    display: block;
  }
  .cultureContent .culture_flex .culture_img {
    width: 80%;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .cultureContent .culture_flex .culture_img img {
    aspect-ratio: 72/62;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
  }
  .cultureContent .culture_flex .culture_text {
    width: 80%;
    margin-left: auto;
    margin-right: 5%;
  }
  .cultureContent .culture_flex .culture_text h4 {
    position: relative;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 900;
    width: fit-content;
    line-height: 1em;
    margin-bottom: 20px;
    color: #666666;
  }
  .cultureContent .culture_flex .culture_text h4::after {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(../images/footprints.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    right: -20px;
  }
  .cultureContent .culture_flex .culture_text h5 {
    font-family: "Sawarabi Mincho", serif;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .cultureContent .culture_flex .culture_text p {
    line-height: 1.8em;
  }
  .cultureContent .culture_flexR .culture_img {
    margin-left: auto;
  }
  .cultureContent .culture_flexR .culture_img img {
    border-radius: 20px 0 0 20px;
  }
  .cultureContent .culture_flexR .culture_text {
    margin-left: 5%;
    margin-right: auto;
  }
}

.culture_instagram {
  margin-bottom: 100px;
}

/*--------　map ----------- */
.mapMainView {
  width: 100%;
  aspect-ratio: 1366/700;
  position: relative;
}
.mapMainView .breadcrumbs {
  position: absolute;
  top: 0;
  left: 5%;
  font-size: 12px;
}
.mapMainView .mapMainView_ttl {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding-left: 5%;
  z-index: 5;
}
.mapMainView .mapMainView_ttl p {
  font-family: "back-to-black-demo";
  font-size: 8vw;
  font-weight: 400;
  transform: rotate(-20deg);
  margin-bottom: 140px;
  line-height: 1em;
  color: #666666;
}
.mapMainView .mapMainView_ttl h2 {
  font-family: "Sawarabi Mincho", serif;
  font-size: 22px;
  text-align: center;
}
.mapMainView .mapMainView_img {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 19%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .mapMainView .mapMainView_ttl p {
    margin-bottom: 40px;
  }
  .mapMainView .mapMainView_ttl h2 {
    font-family: "Sawarabi Mincho", serif;
    font-size: 16px;
    text-align: center;
  }
}

.hukko_map {
  padding: 80px 0 100px;
}

.map_list {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.map_list .map_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px #b2b2b2 solid;
  padding: 20px;
  background-color: #fff;
}
.map_list .map_item .map_list_img {
  width: 100%;
  margin-bottom: 25px;
}
.map_list .map_item .map_list_img img {
  aspect-ratio: 28/18;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map_list .map_item h3 {
  font-family: "Sawarabi Mincho", serif;
  font-size: 20px;
  margin-bottom: 20px;
}
.map_list .map_item .map_tb {
  width: 100%;
  display: flex;
}
.map_list .map_item .map_tb .map_th {
  padding: 5px;
}
.map_list .map_item .map_tb .map_th p {
  border-radius: 3px;
  text-align: center;
  width: 75px;
  font-size: 12px;
  border: #00a995 solid 1px;
  color: #00a995;
}
.map_list .map_item .map_tb .map_td {
  padding: 5px;
  font-size: 14px;
  font-weight: 300;
}
.map_list .map_item .map_tb .map_td p {
  word-break: break-all;
}
.map_list .map_item .g_map_btn {
  position: relative;
  padding: 20px 50px 20px 25px;
  text-align: center;
  border-radius: 5px;
  background-color: #00a995;
  color: #fff;
  font-size: 14px;
}
.map_list .map_item .g_map_btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  background-image: url(../images/arrow_w.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
@media (max-width: 1024px) {
  .map_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .map_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*--------　contact ----------- */
.contact_form {
  font-size: 18px;
  padding: 60px 0;
}
.contact_form .contact_p {
  font-size: 18px;
  margin-bottom: 20px;
}
.contact_form .contact_p2 {
  font-size: 28px;
  font-family: "Sawarabi Mincho", serif;
  text-align: center;
  margin: 80px 0 30px;
}
.contact_form span.red {
  color: #ff1d25;
}
.contact_form table {
  width: 100%;
}
.contact_form table th {
  font-weight: 500;
  width: 22%;
  vertical-align: top;
  text-align: left;
  padding: 10px;
}
.contact_form table td {
  width: 78%;
  padding: 10px;
}
.contact_form table td input[type=text],
.contact_form table td textarea {
  width: 100%;
  font-size: 18px;
  border-radius: 3px;
  border: #ccc 1px solid;
  padding: 10px 0;
}
.contact_form table .short_td input[type=text] {
  width: 340px;
}
.contact_form hr {
  border-bottom: #ccc 1px solid;
  margin: 30px 0;
}
.contact_form .submit_btn {
  display: inline-block;
  position: relative;
}
.contact_form .submit_btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  background-image: url(../images/arrow_w.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
.contact_form .text_center {
  margin: 50px 0;
}
.contact_form input[type=submit] {
  padding: 16px 75px 16px 50px;
  text-align: center;
  border-radius: 5px;
  background-color: #00a995;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.contact_form input[type=submit]:hover {
  opacity: 0.6;
  transition: all 0.3s;
}
.contact_form input.back_btn {
  display: inline-block;
  padding: 16px 50px;
  text-align: center;
  border-radius: 5px;
  background-color: #00a995;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.contact_form input.back_btn:hover {
  opacity: 0.6;
  transition: all 0.3s;
}
.contact_form .js-mw-checkbox,
.contact_form .js-mw-checkbox2 {
  text-align: center;
}
.contact_form .js-mw-checkbox a span.red,
.contact_form .js-mw-checkbox2 a span.red {
  color: #ff1d25;
}
@media (max-width: 768px) {
  .contact_form {
    font-size: 16px;
    padding: 30px 0;
  }
  .contact_form .contact_p {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .contact_form table {
    display: block;
    width: 100%;
  }
  .contact_form table th {
    display: block;
    width: 100%;
    text-align: left;
  }
  .contact_form table td {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .contact_form table td input[type=text],
  .contact_form table td textarea {
    width: 100%;
    font-size: 18px;
    border-radius: 3px;
    border: #ccc 1px solid;
    padding: 10px 0;
  }
  .contact_form table .short_td input[type=text] {
    width: 100%;
  }
  .contact_form hr {
    border-bottom: #ccc 1px solid;
    margin: 30px 0;
  }
  .contact_form .submit_btn {
    display: inline-block;
    position: relative;
  }
  .contact_form .submit_btn::after {
    position: absolute;
    content: "";
    display: block;
    width: 6px;
    height: 11px;
    background-image: url(../images/arrow_w.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
  }
  .contact_form .text_center {
    margin: 50px 0;
  }
  .contact_form input[type=submit] {
    padding: 16px 75px 16px 50px;
    text-align: center;
    border-radius: 5px;
    background-color: #00a995;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
  }
  .contact_form input[type=submit]:hover {
    opacity: 0.6;
    transition: all 0.3s;
  }
  .contact_form input.back_btn {
    display: inline-block;
    padding: 16px 50px;
    text-align: center;
    border-radius: 5px;
    background-color: #00a995;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
  }
  .contact_form input.back_btn:hover {
    opacity: 0.6;
    transition: all 0.3s;
  }
}

.grayBorder_btn {
  display: block;
  position: relative;
  padding: 20px 50px 20px 25px;
  text-align: center;
  border-radius: 5px;
  border: #ccc 1px solid;
  background-color: #fff;
  color: #333333;
  font-size: 14px;
  margin-bottom: 30px;
}
.grayBorder_btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  background-image: url(../images/arrow_g.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

/*--------　member ----------- */
.member,
.multilingual {
  padding-bottom: 50px;
}
.member h3,
.multilingual h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.member h3 img,
.multilingual h3 img {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .member,
  .multilingual {
    padding-bottom: 30px;
  }
  .member h3,
  .multilingual h3 {
    display: block;
  }
  .member h3 img,
  .multilingual h3 img {
    width: 50%;
    height: auto;
    margin-bottom: 10px;
  }
}