@charset "UTF-8";
/*
Theme Name: 
Description:  Web Site
Author: Hiroki Ishiida
Version: 1.0
*/
/*------------ COMMON SETTING ------------ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px !important;
  font-size: 62.5%;
}

body {
  color: #262626;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

section {
  padding: 60px 15px;
  border-radius: 20px 20px 0 0;
}
section:nth-child(odd) {
  background-color: #fff;
  margin-top: -20px;
}
section:nth-child(even) {
  background-color: #f3fff8;
  padding: 60px 15px 80px;
}
@media screen and (min-width: 1080px) {
  section {
    padding: 80px 15px;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding: 80px 0;
  }
}

.Title {
  margin-bottom: 40px;
  font-size: 2.6rem;
  font-weight: 700;
  color: #262626;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media screen and (min-width: 1080px) {
  .Title {
    font-size: 3.2rem;
  }
}
.Title span {
  font-size: 2rem;
  font-family: "Titillium Web", sans-serif;
  font-style: italic;
  font-weight: 600;
  color: #01a641;
}
@media screen and (min-width: 1080px) {
  .Title span {
    font-size: 2.4rem;
  }
}

.Pcver {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .Pcver {
    display: block !important;
  }
}

.Spver {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .Spver {
    display: none !important;
  }
}

main {
  overflow: hidden;
}

/* ------- BTN -------- */
.Btn {
  max-width: 400px;
  width: 100%;
  margin: 40px auto 0;
  font-weight: 500;
  position: relative;
  color: #fff;
  padding: 20px 25px;
  border-radius: 3px;
  background-color: #ebb912;
  display: block;
  transition: all 0.3s;
  line-height: 1;
  text-align: center;
  font-weight: 600;
  font-family: "Titillium Web", sans-serif;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .Btn {
    font-size: 1.8rem;
  }
}
.Btn::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 10px;
  height: 16px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.Btn:hover::before {
  right: 25px;
  transition: all 0.3s;
}

.Btn-Blank::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../img/icon/blank.svg) no-repeat;
  background-size: contain;
}

.gridContent {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .gridContent {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
  }
}
.gridContent .imgContent img {
  aspect-ratio: 16/9;
  border-radius: 10px;
}

.TextContent p {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .TextContent .Btn {
    margin: 20px auto 0;
  }
}

.sns-btn {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sns-btn li img {
  display: flex;
  max-width: 25px;
  width: 100%;
}

/* 共通設定 */
/*----------------- HEADER ----------------- */
header {
  width: 100%;
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  top: -65px;
}
header .Header__inner {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 110;
  background-color: #fff;
  transition: all 0.5s;
}
@media screen and (min-width: 1080px) {
  header .Header__inner {
    padding: 15px;
  }
}

.logo {
  max-width: 127px;
  width: 100%;
  height: auto;
  z-index: 100;
  margin-left: 15px;
}
@media screen and (min-width: 1080px) {
  .logo {
    max-width: 150px;
    margin-left: 0;
  }
}

/*------------------- NAV ------------------ */
nav {
  width: 100%;
  height: 100vh;
  opacity: 0;
  padding: 15px;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  transition: all 0.5s;
  visibility: hidden;
}
nav.panelactive {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1080px) {
  nav {
    visibility: visible;
    opacity: 1;
    height: -moz-fit-content;
    height: fit-content;
    background: unset;
    text-align: left;
    padding: 0 0;
    position: relative;
    z-index: 100;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

.Menu__content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 15px;
}
@media screen and (min-width: 1080px) {
  .Menu__content {
    flex-direction: row;
    position: unset;
    transform: unset;
    padding: 0 0;
  }
}
.Menu__content .Menu__list {
  display: grid;
  font-weight: 600;
  font-family: "Titillium Web", sans-serif;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }
}
.Menu__content .Menu__list .Menu__item {
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.8rem;
  transition: all 0.3s;
  position: relative;
}
.Menu__content .Menu__list .Menu__item::before {
  content: "";
  background: url(../img/icon/arrow-bk.svg) no-repeat;
  width: 10px;
  height: 16px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 0;
  transform: translateY(-100%);
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item::before {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.Menu__content .Menu__list .Menu__item:last-child {
  margin-bottom: 0;
}
.Menu__content .Menu__list .Menu__item:last-child::before {
  background: url(../img/icon/arrow.svg) no-repeat;
}
.Menu__content .Menu__list .Menu__item:hover::before {
  right: 15px;
  transition: all 0.3s;
}
.Menu__content .Menu__list .Menu__item a {
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
  display: block;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item a {
    padding-bottom: 0;
    border-bottom: unset;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.Menu__content .Menu__list .Btn {
  max-width: 600px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Btn {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.4rem;
    padding: 15px;
  }
}
.Menu__content .Menu__list .Btn::before {
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 10px;
  height: 16px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.Menu__content .Menu__list .Btn:hover::before {
  right: 25px;
}
.Menu__content .Menu__list .Btn a {
  padding-bottom: 0;
  border-bottom: 0;
}

@media screen and (min-width: 1080px) {
  .current-menu-item.Menu__item {
    position: relative;
  }
}
.current-menu-item.Menu__item::before {
  content: "";
}
@media screen and (min-width: 1080px) {
  .current-menu-item.Menu__item::before {
    display: block !important;
    background: unset !important;
    width: 40px !important;
    height: 3px !important;
    background-color: #01a641 !important;
    position: absolute !important;
    top: unset !important;
    bottom: -10px;
    right: 50% !important;
    transform: translateX(50%) !important;
  }
}

.page-id-30 .current-menu-item::before {
  display: none !important;
}

/*------------- HAMBERGER MENU ------------ */
.OpenBtn {
  width: 65px;
  height: 65px;
  position: relative;
  z-index: 1000;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #01a641;
}
.OpenBtn span {
  width: 35px;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: all 0.3s;
  position: absolute;
  right: 50%;
  transform: translate(50%, -50%);
}
.OpenBtn span:nth-of-type(1) {
  top: 55%;
}
.OpenBtn span:nth-of-type(2) {
  top: 45%;
}
.OpenBtn.active {
  background-color: #4a4a4a;
}
.OpenBtn.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(50%, -50%) rotate(30deg);
}
.OpenBtn.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(50%, -50%) rotate(150deg);
}
@media screen and (min-width: 1080px) {
  .OpenBtn {
    display: none;
  }
}

/*----------------- KEY-VISUAL ------------------ */
.KeyVisual-new {
  height: 80vh;
  position: relative;
  overflow: hidden;
  background: url(../img/KeyVisual/kv-bg-person-sp.jpeg);
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 1080px) {
  .KeyVisual-new {
    height: 90vh;
  }
}
.KeyVisual-new .KeyVisualText {
  font-weight: 600;
  position: absolute;
  left: 15px;
  bottom: 30px;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  z-index: 10;
}
@media screen and (min-width: 1080px) {
  .KeyVisual-new .KeyVisualText {
    font-size: 4.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .KeyVisual-new .KeyVisualText {
    left: 9.5%;
  }
}
.KeyVisual-new .KeyVisualText p {
  padding: 10px;
  background-color: #01a641;
  width: -moz-fit-content;
  width: fit-content;
}
.KeyVisual-new .KeyVisualText p:last-child {
  margin-top: 10px;
}
@media screen and (min-width: 1080px) {
  .KeyVisual-new .KeyVisualText p:last-child {
    margin-top: 15px;
  }
}
.KeyVisual-new .KeyVisualText p span {
  font-size: 2.3rem;
}
@media screen and (min-width: 1080px) {
  .KeyVisual-new .KeyVisualText p span {
    font-size: 3.8rem;
  }
}

/*-----*/
.KeyVisual {
  height: 80vh;
  position: relative;
  overflow: hidden;
  background: url(../img/KeyVisual/kv-bg-sp.png);
  background-position: center center;
  background-size: cover;
}
.KeyVisual .KeyVisualimg {
  max-width: 330px;
  width: 100%;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualimg {
    left: 30%;
  }
}
.KeyVisual .KeyVisualText {
  font-weight: 600;
  position: absolute;
  left: 15px;
  bottom: 30px;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  z-index: 10;
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualText {
    right: 15%;
    left: unset;
    bottom: 5%;
    font-size: 3.6rem;
  }
}
.KeyVisual .KeyVisualText p {
  padding: 10px;
  background-color: #50d182;
  width: -moz-fit-content;
  width: fit-content;
}
.KeyVisual .KeyVisualText p:last-child {
  margin-top: 10px;
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualText p:last-child {
    margin-top: 15px;
  }
}
.KeyVisual .KeyVisualText p span {
  font-size: 2.3rem;
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualText p span {
    font-size: 3rem;
  }
}

/*------------- Scroll ------------- */
.scroll a {
  display: inline-block;
  position: absolute;
  right: 15px;
  bottom: 30px;
  padding-bottom: 70px;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-rl;
  transition: 0.2s;
  overflow: hidden;
}
.scroll a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 60px;
  background: #bebebe;
}
@media screen and (min-width: 1080px) {
  .scroll a {
    right: 9.5%;
  }
}

#scroll a {
  color: #6e6e6e;
}
#scroll a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 60px;
  background: #6e6e6e;
}
#scroll a::after {
  animation: scrollDown 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*-----------------  message ------------------ */
.message .wrapper {
  max-width: 1080px;
}
.message .messageContent {
  grid-template-columns: 1fr;
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}
.message .messageContent .ContentInner {
  grid-template-columns: 1fr;
  display: grid;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .message .messageContent .ContentInner {
    grid-template-columns: 45% 1fr;
    gap: 30px;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .message .messageContent .ContentInner:nth-child(1) img {
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 768px) {
  .message .messageContent .ContentInner img {
    aspect-ratio: 16/9;
  }
}
.message .messageContent .ContentInner .TextContent {
  font-weight: 400;
}
.message .messageContent .ContentInner .TextContent p {
  line-height: 1.7;
}
.message .messageContent .ContentInner .TextContent p::first-letter {
  font-size: 2rem;
  font-weight: 400;
  color: #01a641;
}
@media screen and (min-width: 768px) {
  .message .messageContent .gridReverse {
    grid-template-columns: 1fr 45%;
  }
}
@media screen and (min-width: 768px) {
  .message .messageContent .gridReverse .TextContent {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .message .messageContent .gridReverse img {
    order: 2;
  }
}
/*-----------------  movie ------------------ */
.movieList li div {
  padding-bottom: 0 !important;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.movieList li div iframe {
  height: auto;
}
.movieList li p {
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.4rem;
}

.movie .swiper,
.report .swiper {
  padding: 0 15px;
  overflow: visible !important;
}

@media screen and (min-width: 768px) {
  .Section02 .swiper,
  .report .swiper {
    padding: 0 0;
    overflow: visible;
  }
}
.archive .movie ul {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .archive .movie ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .archive .movie ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*-----------------  report ------------------ */
.report .swiper {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .report .swiper {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .report .reportsSwiper {
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  .report .reportsSwiper .swiper-pagination {
    display: none;
  }
}
.report .reportsSwiper .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
}
.report .reportsSwiper .swiper-pagination-bullet-active {
  background-color: #01a641;
}
.report .Btn {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .report .Btn {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .reportList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
.reportList p {
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.3;
}
.reportList p img {
  width: 18px;
  height: 18px;
  margin-left: 5px;
}
.reportList .imgContent img {
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
  display: block;
}

.post-type-archive-post .reportList {
  display: grid;
  gap: 15px;
}

/*-----------------  profile ------------------ */
@media screen and (min-width: 768px) {
  .profile .profileContent {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 30px;
    align-items: center;
  }
}
.profile .profileContent .profileTopPc {
  display: none !important;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .profile .profileContent .profileTopPc {
    display: flex !important;
  }
}
.profile .profileContent .profileTopSp {
  display: flex !important;
}
@media screen and (min-width: 768px) {
  .profile .profileContent .profileTopSp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .profile .profileContent .profileContentImg {
    height: 90%;
  }
}
.profile .profileContent .profileTop {
  align-items: flex-end;
  margin: 20px 0 30px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.profile .profileContent .profileTop .Title {
  font-size: 2.4rem;
  margin: 0 0;
}
@media screen and (min-width: 768px) {
  .profile .profileContent .profileTop .Title {
    font-size: 2.8rem;
  }
}
.profile .profileContent .profileTop .Title span {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .profile .profileContent .profileTop .Title span {
    font-size: 1.8rem;
  }
}
.profile .profileContent .profileTop .sns-btn li img {
  max-width: 25px;
}
@media screen and (min-width: 768px) {
  .profile .profileContent tbody {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: stretch;
  }
}
.profile .profileContent table {
  width: 100%;
}
.profile .profileContent table tr {
  border-bottom: 1px solid #e4e4e4;
  display: grid;
  gap: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  grid-template-columns: 85px 1fr;
}
@media screen and (min-width: 768px) {
  .profile .profileContent table tr {
    margin-bottom: 0;
  }
}
.profile .profileContent table tr th,
.profile .profileContent table tr td {
  width: 100%;
}
.profile .profileContent table tr th {
  line-height: 1.3;
}

/*----------------- vision ------------------ */
.vision ul {
  display: grid;
  gap: 30px;
  position: relative;
}
.vision ul::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #c7c7c7;
}
@media screen and (min-width: 768px) {
  .vision ul::before {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .vision ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.vision ul .vision-content {
  display: grid;
  gap: 30px;
  position: relative;
}
.vision ul .vision-content::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  height: 98%;
  width: 2px;
  background-color: #c7c7c7;
}
.vision ul .vision-content:nth-child(2)::before {
  top: -20px;
  height: 98%;
}
.vision ul li {
  padding-left: 28px;
  position: relative;
}
.vision ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #32cc6d;
  width: 18px;
  height: 18px;
  border-radius: 100px;
}
.vision ul li p:nth-child(1) {
  font-weight: 600;
  margin-bottom: 5px;
}
.vision ul li p:nth-child(2) {
  line-height: 1.3;
}

/*----------------- activities ------------------ */
.activities {
  padding: 60px 0 !important;
}
@media screen and (min-width: 1080px) {
  .activities {
    padding: 80px 15px;
  }
}
@media screen and (min-width: 1200px) {
  .activities {
    padding: 80px 0;
  }
}
.activities .Title {
  padding: 0 15px;
}
@media screen and (min-width: 1080px) {
  .activities .Title {
    padding: 0 0;
  }
}
.activities ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1080px) {
  .activities ul {
    flex-direction: row;
    width: 100%;
    padding-bottom: 40px;
    gap: 0;
  }
}
.activities ul li p {
  margin: 0 15px;
}
@media screen and (min-width: 1080px) {
  .activities ul li p {
    margin: 0 0;
  }
}
.activities ul li p:nth-child(1) {
  font-weight: 600;
  font-size: 2rem;
  position: relative;
  padding-left: 13px;
  line-height: 1.3;
}
.activities ul li p:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 110%;
  background-color: #01a641;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.activities ul li p:nth-child(3) {
  line-height: 1.5;
}
.activities ul li img {
  aspect-ratio: 16/9;
  display: block;
  margin: 15px 0;
}
.activities .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
}
.activities .swiper-pagination-bullet-active {
  background-color: #01a641;
}

@media screen and (min-width: 768px) {
  .page-id-713 .activities {
    padding: 60px 15px !important;
  }
}
@media screen and (min-width: 1080px) {
  .page-id-713 .activities {
    padding: 80px 15px !important;
  }
}
@media screen and (min-width: 1200px) {
  .page-id-713 .activities {
    padding: 80px 0 !important;
  }
}
.page-id-713 .activities ul {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .page-id-713 .activities ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .page-id-713 .activities ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-id-713 .activities ul li p:nth-child(1) {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.page-id-713 .activities ul li p:nth-child(1) span {
  color: #32cc6d;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  margin-top: -1px;
}
.page-id-713 .activities ul li p:nth-child(1)::before {
  content: "";
  display: none;
}
.page-id-713 .activities ul li img {
  margin: 10px 0 15px;
}

/*----------------- supporters ------------------ */
.supporters .supportersContent {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .supporters .supportersContent {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 40px;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
  }
}
.supporters .supportersContent img {
  aspect-ratio: 1/1;
}
.supporters .supportersContent .TextContent p:nth-child(1) {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .supporters .supportersContent .TextContent p:nth-child(1) {
    font-size: 2.4rem;
  }
}
.supporters .supportersContent .TextContent p:nth-child(2) {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .supporters .supportersContent .TextContent .Btn {
    max-width: unset;
  }
}
.supporters .snsContent {
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
  margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
  .supporters .snsContent {
    font-size: 2.4rem;
    margin: 80px auto 0;
  }
}
.supporters .snsContent .sns-btn {
  margin: 20px auto 0;
  gap: 25px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .supporters .snsContent .sns-btn {
    gap: 40px;
  }
}
.supporters .snsContent .sns-btn li img {
  max-width: 40px;
}

/*----------------- CTA ------------------ */
.CTA {
  padding: 0 15px;
  margin-bottom: 60px;
}
@media screen and (min-width: 1080px) {
  .CTA {
    margin-bottom: 80px;
  }
}
.CTA .CTAContent {
  background-image: url(../img/CTABG.png);
  background-size: cover;
  background-position: center center;
  padding: 40px 15px;
  border-radius: 3px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .CTA .CTAContent {
    padding: 60px 30px;
  }
}
@media screen and (min-width: 1080px) {
  .CTA .CTAContent {
    padding: 100px 30px;
  }
}
@media screen and (min-width: 768px) {
  .CTA .CTAContent .wrapper {
    display: grid;
    align-items: end;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .CTA .CTAContent .wrapper {
    max-width: 800px;
    align-items: end;
  }
}
.CTA .CTAContent .wrapper .TextContent .Title {
  color: #fff;
  margin-bottom: 30px;
}
.CTA .CTAContent .wrapper .TextContent .Title span {
  color: #fff;
}
.CTA .CTAContent .wrapper .TextContent p {
  line-height: 1.5;
  font-weight: 400;
  filter: drop-shadow(0px 3px 3px black);
}
@media screen and (min-width: 768px) {
  .CTA .CTAContent .wrapper .Btn {
    margin: 0 0;
  }
}

/* LOW KEYVISUAL */
.LowKeyVisual {
  padding: 100px 15px 40px;
}
@media screen and (min-width: 768px) {
  .LowKeyVisual {
    padding: 130px 15px 40px;
  }
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual {
    padding: 130px 15px 60px;
  }
}
.LowKeyVisual .LowKeyVisualInner .LowKeyVisualTitle {
  font-size: 2.8rem;
  font-weight: 600;
  padding: 0 0;
  margin-bottom: 0;
  gap: 5px;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .LowKeyVisualInner .LowKeyVisualTitle {
    font-size: 4rem;
  }
}
.LowKeyVisual .LowKeyVisualInner .LowKeyVisualTitle span {
  font-size: 2rem;
  font-weight: 600;
  color: #01a641;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .LowKeyVisualInner .LowKeyVisualTitle span {
    font-size: 3rem;
  }
}

.LowKeyvisualImg img {
  aspect-ratio: 3/2;
}
@media screen and (min-width: 768px) {
  .LowKeyvisualImg img {
    aspect-ratio: unset;
    max-height: 300px;
    -o-object-position: center 25%;
       object-position: center 25%;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (min-width: 1080px) {
  .LowKeyvisualImg img {
    max-height: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .LowKeyvisualImg img {
    border-radius: 30px;
  }
}

.page-id-30 .LowKeyvisualImg img {
  -o-object-position: center 22%;
     object-position: center 22%;
}
@media screen and (min-width: 768px) {
  .page-id-30 .LowKeyvisualImg img {
    -o-object-position: center;
       object-position: center;
    border: 3px solid #f5f5f5;
  }
}

@media screen and (min-width: 768px) {
  .post-type-archive .LowKeyvisualImg img {
    -o-object-position: center 18%;
       object-position: center 18%;
  }
}

@media screen and (min-width: 768px) {
  .privacy-policy .LowKeyvisualImg img {
    -o-object-position: center 40%;
       object-position: center 40%;
  }
}

.reportarchive img {
  -o-object-position: center 40%;
     object-position: center 40%;
}
@media screen and (min-width: 768px) {
  .reportarchive img {
    -o-object-position: center 10% !important;
       object-position: center 10% !important;
  }
}

/*----------------- policies-page ------------------ */
.policies-page .policies-sec01 {
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .policies-page .policies-sec01 {
    margin-bottom: 80px;
  }
}
.policies-page .policies-sec01 img {
  display: block;
  margin: 0 auto 20px;
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .policies-page .policies-sec01 img {
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 768px) {
  .policies-page .policies-sec01 {
    text-align: center;
    font-weight: 400;
    font-size: 2rem;
  }
}
.policies-page .policiesList {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .policies-page .policiesList {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.policies-page .policiesList li .policiesTitle {
  display: grid;
  gap: 10px;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (min-width: 1080px) {
  .policies-page .policiesList li .policiesTitle {
    font-size: 2.4rem;
  }
}
.policies-page .policiesList li .policiesTitle span {
  background-color: #01a641;
  color: #fff;
  font-weight: 600;
  padding: 7px 14px;
  font-size: 1.4rem;
  border-radius: 3px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1080px) {
  .policies-page .policiesList li .policiesTitle span {
    font-size: 1.6rem;
  }
}
.policies-page .policiesList li .policiesListContent {
  display: grid;
  gap: 15px;
}
.policies-page .policiesList li .policiesListContent .Textcontent .TextcontentTitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.policies-page .policiesList li .policiesListContent .Textcontent ul {
  display: grid;
  gap: 15px;
}
.policies-page .policiesList li .policiesListContent .Textcontent ul li p {
  line-height: 1.5;
}
.policies-page .policiesList li .policiesListContent img {
  aspect-ratio: 16/9;
}

/*----------------- contact-page ------------------ */
.contact .wrapper {
  max-width: 800px;
}
.contact p {
  line-height: 1.5;
}
.contact .form02 .form02List {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}
.contact .form02 .form02List .form02List-item .form02List-itemText p:nth-child(1) {
  font-weight: 600;
  font-size: 1.8rem;
  position: relative;
  padding-left: 12px;
  margin-bottom: 10px;
}
.contact .form02 .form02List .form02List-item .form02List-itemText p:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background-color: #01a641;
  top: 0;
  left: 0;
}
.contact .form02 .form02List .form02List-item .form02List-itemText p:nth-child(2) {
  line-height: 1.5;
}
.contact .form02 .form02List .form02List-item .form02SubList {
  display: grid;
  gap: 30px;
  position: relative;
  margin-top: 15px;
}
.contact .form02 .form02List .form02List-item .form02SubList::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  height: 85%;
  width: 2px;
  background-color: #c7c7c7;
}
.contact .form02 .form02List .form02List-item .form02SubList .form02SubList-item {
  padding-left: 28px;
  position: relative;
}
.contact .form02 .form02List .form02List-item .form02SubList .form02SubList-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #32cc6d;
  width: 18px;
  height: 18px;
  border-radius: 100px;
}
.contact .form02 .form02List .form02List-item .form02SubList .form02SubList-item p:nth-child(1) {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
}
.contact .form02 .form02List .form02List-item .form02SubList .form02SubList-item p:nth-child(2) {
  line-height: 1.3;
}
.contact .form02 .form02List .form02List-item .form02SubListLastText {
  font-size: 1.4rem;
  margin-top: 15px;
}

/* パンクズリスト */
.breadcrumb-trail .fbc-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  word-break: break-word;
}
.breadcrumb-trail .fbc-wrap .fbc-items {
  padding: 0 0 !important;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.breadcrumb-trail .fbc-wrap .fbc-items li {
  padding: 0 0 !important;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1;
}
.breadcrumb-trail .fbc-wrap .fbc-items li:first-child {
  padding: 0 0 !important;
}

/*----------------- Archive ------------------ */
.archive .NewsCategory {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 1.4rem;
}
@media screen and (min-width: 1080px) {
  .archive .NewsCategory {
    font-size: 1.6rem;
    justify-content: center;
    margin-bottom: 60px;
  }
}
.archive .NewsCategory li button {
  padding: 10px 30px;
  border-radius: 2px;
  background-color: #999;
  color: #fff;
  font-weight: 500;
}

.Pagenation {
  font-size: 2rem;
  width: 100%;
  text-align: center;
  margin-top: 80px;
  font-weight: 500;
  letter-spacing: 0.3em;
}

/*--------------- WP-PAGENAVI -------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  font-size: 2rem;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 2.4rem;
  font-family: "Titillium Web", sans-serif;
  margin: 20px !important;
  border: unset !important;
  transition: all 0.3s;
  font-weight: 600 !important;
}
.wp-pagenavi .current {
  color: #555;
}
.wp-pagenavi .pages {
  display: none !important;
}

/*----------------- Single ------------------ */
.CardContent {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
}
.CardContent .Date {
  font-size: 1.4rem;
  color: #666666;
  font-family: "Titillium Web", sans-serif;
}
.CardContent .post-categories {
  padding: 5px 15px;
  border-radius: 2px;
  border: 1px solid #318999;
  font-size: 1.2rem;
  font-family: "Titillium Web", sans-serif;
  line-height: 1;
  font-weight: 600;
}

#Post {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  word-wrap: break-word;
}
#Post .TextInner {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#Post .CardTitle {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
#Post h2.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
#Post h2.wp-block-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 140%;
  background-color: #01a641;
  transform: translateY(-50%);
}
#Post h3.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 15px;
  background-color: #eee;
  border-radius: 3px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
#Post p {
  line-height: 1.7;
}
#Post iframe,
#Post img {
  width: 100%;
  border-radius: 5px;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
#Post .Btn {
  text-align: right;
}
#Post .Btn::before {
  right: unset;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
#Post .Btn:hover::before {
  left: 15px;
}
#Post .wp-block-columns {
  gap: 20px;
}
#Post .wp-block-buttons {
  display: flex;
  justify-content: center;
}
#Post .wp-block-image.aligncenter {
  display: block !important;
}
#Post .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: 100%;
}

.privacy-policy section {
  max-width: 800px;
}

/*----------------- PrivacyPolicy ------------------ */
.privacy-policy h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.privacy-policy p {
  line-height: 1.5;
}

/*----------------- FORM ------------------ */
.Form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.Form .FormText {
  line-height: 1.8;
  text-align: left;
}
.Form dl {
  margin-top: 40px;
  text-align: left;
  margin-bottom: 40px;
}
.Form dl .must,
.Form dl .any {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #fff;
  background-color: #e14e4e;
  padding: 4px 13px;
  border-radius: 3px;
}
.Form dl .any {
  background-color: #999;
}
.Form dl dt {
  font-size: 1.8rem;
  font-weight: 500;
  color: #262626;
  display: flex;
  align-items: flex-start;
}
.Form dl dt p {
  display: flex;
  align-items: center;
}
.Form dl dd {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}
.Form dl dd:last-child {
  margin-bottom: 0;
}
.Form dl input[type=text],
.Form dl input[type=tel],
.Form dl input[type=email],
.Form dl select,
.Form dl textarea {
  font-size: 1.6rem;
  border-radius: 5px;
  background-color: #fcfcfc;
  border: 1px solid #d6d7d9;
  width: 100%;
  padding: 15px;
  text-align: left;
}
.Form dl ::-moz-placeholder {
  color: #ccc;
}
.Form dl ::placeholder {
  color: #ccc;
}
.Form dl .wpcf7-not-valid-tip {
  text-align: left;
}
.Form dl .wpcf7-checkbox,
.Form dl .wpcf7-radio {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 400;
}
.Form dl .wpcf7-checkbox .wpcf7-list-item,
.Form dl .wpcf7-radio .wpcf7-list-item {
  margin: 0 0;
  display: block;
}
.Form dl select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/icon/select-icon.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}
.Form dl textarea {
  height: 300px;
}
.Form .Btn {
  width: 100%;
  max-width: 600px;
  padding: 20px 0;
  font-size: 1.8rem;
}
@media screen and (min-width: 1080px) {
  .Form .Btn {
    max-width: 440px;
  }
}
.Form .privacyContent {
  display: block;
  text-align: center;
  padding: 18px;
  border-radius: 3px;
  background: #ececec;
  max-width: 400px;
  margin: 0 auto;
  color: #262626;
}
.Form .privacyContent input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -3px;
}
.Form .privacyContent .privacyText {
  font-size: 1.5rem;
  font-weight: 500;
}
.Form .privacyContent .privacyText a {
  color: #1d8ad9;
  text-decoration: underline;
}

/*------ Footer --------*/
footer {
  padding: 60px 15px 20px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 1080px) {
  footer {
    padding: 60px 15px;
  }
}
footer .FooterTop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop {
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .FooterTop .FooterTopContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 0 40px;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .FooterTopContent {
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    width: -moz-fit-content;
    width: fit-content;
  }
}
footer .FooterTop .FooterTopContent .logo {
  z-index: 10;
  margin: 0 0;
}
footer .FooterTop .Menu__content {
  position: unset;
  transform: unset;
  padding: 0 0;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list .Btn {
    margin: 0 0;
  }
}

.FooterBottom .FooterBottomLeft {
  margin-bottom: 40px;
  font-weight: 300;
  display: grid;
  gap: 15px;
}
@media screen and (min-width: 1080px) {
  .FooterBottom .FooterBottomLeft {
    margin-bottom: 20px;
    width: 100%;
    grid-template-columns: 30% 1fr;
    gap: 20px;
    align-items: center;
  }
}
@media screen and (min-width: 1080px) {
  .FooterBottom .FooterBottomLeft .FooterBottomLeftContent {
    width: 100%;
    line-height: 1.5;
    order: 1;
  }
}
.FooterBottom .FooterBottomLeft .FooterBottomLeftContent p:nth-child(2) {
  margin-bottom: 15px;
}
.FooterBottom .FooterBottomLeft .FooterBottomLeftContent p:nth-child(3) {
  margin-bottom: 10px;
}
.FooterBottom .FooterBottomLeft .map-title {
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 12px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .FooterBottom .FooterBottomLeft .map-title {
    margin-bottom: 10px;
  }
}
.FooterBottom .FooterBottomLeft .map-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #3a3a3a;
  width: 5px;
  height: 100%;
}
.FooterBottom .FooterBottomLeft .map {
  display: grid;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .FooterBottom .FooterBottomLeft .map {
    order: 2;
  }
}
.FooterBottom .FooterBottomLeft .map .map-content {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 15px;
  border: 2px solid #ddd;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .FooterBottom .FooterBottomLeft .map .map-content {
    aspect-ratio: unset;
    height: 350px;
  }
}
.FooterBottom .FooterBottomLeft .map .map-content iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.FooterBottom .FooterBottomRight {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .FooterBottom .FooterBottomRight {
    font-size: 1.4rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
.FooterBottom .FooterBottomRight .Copyright {
  font-size: 1.2rem;
  font-family: "Titillium Web", sans-serif;
}/*# sourceMappingURL=style.css.map */