@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-size: 1.6rem;
  font-weight: 400;
  font-family: "M PLUS 1", sans-serif;
  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: 20px;
  aspect-ratio: 3/2;
}

@media screen and (min-width: 768px) {
  a {
    transition: all 0.3s;
  }
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.3s;
  }
}

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

.miniWrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

section {
  padding: 30px 15px 90px;
  position: relative;
  z-index: 1;
}
section::before {
  content: "";
  position: absolute;
  top: -29px;
  left: -100px;
  right: -100px;
  height: 30px;
  background: inherit;
  z-index: -1;
  border-top-left-radius: 50% 30px;
  border-top-right-radius: 50% 30px;
}
section:first-child {
  padding: 60px 15px 90px;
}
@media screen and (min-width: 1080px) {
  section:first-child {
    padding: 80px 15px 110px;
  }
}
@media screen and (min-width: 1200px) {
  section:first-child {
    padding: 80px 0 110px;
  }
}
section:last-child {
  padding: 30px 15px 60px;
}
@media screen and (min-width: 1080px) {
  section:last-child {
    padding: 50px 15px 80px;
  }
}
@media screen and (min-width: 1200px) {
  section:last-child {
    padding: 50px 0 80px;
  }
}
section:nth-child(odd) {
  background-color: #fff;
}
section:nth-child(even) {
  background-color: #f1fffd;
}
section:nth-child(even) .section-top {
  background-color: #f1fffd;
}
@media screen and (min-width: 1080px) {
  section {
    padding: 50px 15px 110px;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding: 50px 0 110px;
  }
}

.sectionPdZero {
  padding: 30px 0 90px;
}
@media screen and (min-width: 1080px) {
  .sectionPdZero {
    padding: 50px 0 110px;
  }
}

.sectionPdZeroInnerContents {
  padding: 0 15px;
}
@media screen and (min-width: 1080px) {
  .sectionPdZeroInnerContents {
    padding: 0 0;
  }
}

.Title {
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .Title {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1080px) {
  .Title {
    font-size: 4.2rem;
    margin-bottom: 40px;
  }
}
.Title span {
  font-size: 2.4rem;
  color: #38903a;
  line-height: 1;
  font-family: "Righteous", sans-serif;
  font-weight: 500;
}

.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: 360px;
  width: 100%;
  margin: 30px auto 0;
  position: relative;
  color: #fff;
  padding: 15px;
  border-radius: 100px;
  background-color: #e6782a;
  display: block;
  transition: all 0.3s;
  line-height: 1;
  text-align: center;
  font-weight: 600;
  border: 3px solid #e6782a;
  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: 34px;
  height: 34px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.Btn:hover {
  opacity: 1;
}
.Btn:hover::before {
  right: 40px;
  transition: all 0.3s;
  opacity: 0;
}

.BackBtn {
  margin: 0 auto;
}
.BackBtn::before {
  right: unset;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.BackBtn:hover::before {
  left: 40px;
  opacity: 0;
}

.gridContent02 {
  display: grid;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .gridContent02 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
  }
}

.gridContent03 {
  display: grid;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .gridContent03 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.TextContent p {
  line-height: 1.7;
}

/* 共通設定 */
/*----------------- HEADER ----------------- */
header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .Header__inner {
  background-color: rgba(255, 255, 255, 0.9137254902);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
}
@media screen and (min-width: 1080px) {
  header .Header__inner {
    gap: 10px;
  }
}

.logo {
  max-width: 45px;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 1080px) {
  .logo {
    max-width: 60px;
  }
}
.logo img {
  aspect-ratio: unset;
  border-radius: 0;
}

/*------------------- NAV ------------------ */
nav {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9490196078);
  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;
    position: unset;
    background: unset;
    text-align: left;
    padding: 0 0;
    overflow: unset;
  }
}
nav .Menu__content {
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1080px) {
  nav .Menu__content {
    position: unset;
    transform: unset;
    padding: 0 0;
  }
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }
}
nav .Menu__content .Menu__list .Menu__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  font-size: 2rem;
  font-weight: 600;
  color: #4d555c;
}
nav .Menu__content .Menu__list .Menu__item a {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item {
    margin: 0 0;
    padding: unset;
    border: unset;
    font-size: 1.6rem;
    white-space: nowrap;
  }
}
nav .Menu__content .Menu__list .Menu__item.Btn {
  margin: 0 auto;
  border-bottom: unset;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item.Btn {
    width: 100%;
    max-width: 180px;
    font-size: 1.4rem;
    padding: 16px 25px 16px 18px;
  }
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item.Btn:before {
    width: 25px;
    height: 25px;
  }
}
nav .Copyright {
  position: absolute;
  bottom: 15px;
  text-align: center;
  width: 100%;
  font-size: 1.2rem;
}
@media screen and (min-width: 1080px) {
  nav .Copyright {
    display: none;
  }
}

/*------------- HAMBERGER MENU ------------ */
.OpenBtnContent {
  border-radius: 100px;
  background-color: #e6782a;
  width: 45px;
  height: 45px;
  aspect-ratio: 1/1;
  z-index: 1000;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .OpenBtnContent {
    display: none;
  }
}
.OpenBtnContent .OpenBtn {
  width: 18px;
  height: 12px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.OpenBtnContent .OpenBtn span {
  width: 18px;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: all 0.3s;
  position: absolute;
  border-radius: 50px;
}
.OpenBtnContent .OpenBtn span:nth-of-type(1) {
  top: 0;
}
.OpenBtnContent .OpenBtn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.OpenBtnContent .OpenBtn span:nth-of-type(3) {
  bottom: 0;
}
.OpenBtnContent .OpenBtn.active span:nth-of-type(1) {
  top: 42%;
  transform: rotate(35deg);
}
.OpenBtnContent .OpenBtn.active span:nth-of-type(2) {
  transform: scaleX(0);
}
.OpenBtnContent .OpenBtn.active span:nth-of-type(3) {
  top: 42%;
  bottom: unset;
  transform: rotate(145deg);
}

/*----------------- KEY-VISUAL ------------------ */
.KeyVisual {
  height: 30vh;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  z-index: 1;
  margin: 76px 15px 0;
}
@media screen and (min-width: 768px) {
  .KeyVisual {
    height: 40vh;
  }
}
@media screen and (min-width: 1080px) {
  .KeyVisual {
    height: 45vh;
    margin: 92px 15px 0;
  }
}
.KeyVisual .full {
  overflow: hidden;
  margin-bottom: 0;
}
.KeyVisual .full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 30vh;
}
@media screen and (min-width: 768px) {
  .KeyVisual .full div {
    height: 40vh;
  }
}
@media screen and (min-width: 1080px) {
  .KeyVisual .full div {
    height: 45vh;
  }
}
.KeyVisual .KeyVisualCatch {
  position: absolute;
  bottom: 20px;
  left: 15px;
  z-index: 10;
  display: grid;
  gap: 7px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .KeyVisual .KeyVisualCatch {
    gap: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualCatch {
    left: 30px;
    bottom: 30px;
  }
}
.KeyVisual .KeyVisualCatch img {
  aspect-ratio: unset;
  border-radius: 7px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 60%;
  max-width: 300px;
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualCatch img {
    max-width: 400px;
  }
}
.KeyVisual .KeyVisualCatch img:last-child {
  width: 70%;
  max-width: 350px;
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualCatch img:last-child {
    max-width: 450px;
  }
}
.KeyVisual .KeyVisualCatch .kvTx01 {
  opacity: 0;
  animation: kvBottom 0.8s ease-out forwards;
  animation-delay: 0.5s;
}
.KeyVisual .KeyVisualCatch .kvTx02 {
  opacity: 0;
  animation: kvBottom 0.8s ease-out forwards;
  animation-delay: 1s;
}
.KeyVisual .KeyVisualCatch .kvTx03 {
  opacity: 0;
  animation: kvfade 1.5s ease-out forwards;
  animation-delay: 1.5s;
}
@keyframes kvBottom {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kvfade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.TextSlider {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .TextSlider {
    margin: 60px 0;
  }
}
.TextSlider .TextSliderTrack {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: textLoop 40s linear infinite, textFeed 5s ease forwards;
}
.TextSlider .TextSliderTrack img {
  flex-shrink: 0;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: unset;
  border-radius: unset;
  height: 60px;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .TextSlider .TextSliderTrack img {
    height: 80px;
  }
}
@media screen and (min-width: 1080px) {
  .TextSlider .TextSliderTrack img {
    height: 100px;
  }
}
@keyframes textLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes textFeed {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.KeyVisual + .TextSlider {
  margin: 30px 0 0;
}
@media screen and (min-width: 768px) {
  .KeyVisual + .TextSlider {
    margin: 60px 0 0;
  }
}

main + .TextSlider {
  margin: 0 0 30px;
}
@media screen and (min-width: 768px) {
  main + .TextSlider {
    margin: 0 0 60px;
  }
}

/*-----------------  TOP ------------------ */
/*-----------------  About ------------------ */
.home .about::before {
  display: none;
}

.about .gridContent02 .TextContent .TextContentCatch {
  width: 80%;
  margin: 0 auto 15px;
}
@media screen and (min-width: 768px) {
  .about .gridContent02 .TextContent .TextContentCatch {
    width: 70%;
  }
}
.about .gridContent02 .TextContent .TextContentCatch img {
  border-radius: 0;
  aspect-ratio: unset;
}
.about .gridContent02 .TextContent p {
  text-align: center;
  word-break: auto-phrase;
}
@media screen and (min-width: 768px) {
  .about .gridContent02 .TextContent p {
    font-size: 1.8rem;
  }
}

/*-----------------  NEWS ------------------ */
.NewsHead {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.NewsHead .Date {
  color: #adadad;
  font-size: 1.4rem;
  line-height: 1;
}
.NewsHead .NewsCat {
  padding: 6px 8px;
  border-radius: 999px;
  background: #ecf8f7;
  color: #75c7bb;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.NewsList .NewsListItem {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.NewsList .NewsListItem:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: unset;
}
.NewsList .NewsListItem a .NewsListText {
  padding-right: 40px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  position: relative;
  display: block;
  transition: all 0.3s;
}
.NewsList .NewsListItem a .NewsListText::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url(../img/icon/news-arrow.svg) no-repeat;
  background-size: contain;
  transition: all 0.3s;
}
.NewsList .NewsListItem a .NewsListText:hover::before {
  right: 15px;
}

/*-----------------  Event ------------------ */
.event .Title,
.event .BtnContent {
  padding: 0 15px;
}
@media screen and (min-width: 1200px) {
  .event .Title,
  .event .BtnContent {
    padding: 0 0;
  }
}
@media screen and (min-width: 768px) {
  .event .swiper {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1200px) {
  .event .swiper {
    padding: 0 0;
  }
}
.event .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 7px !important;
}
.event .swiper-pagination .swiper-pagination-bullet-active {
  background: #75c7bb;
}

.eventList {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .eventList {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 0;
  }
}
.eventList li {
  height: auto;
}
@media screen and (min-width: 768px) {
  .eventList li {
    width: calc((100% - 40px) / 3);
  }
}
.eventList .eventCard {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  color: inherit;
}
.eventList .eventCard .eventListImg {
  position: relative;
}
.eventList .eventCard .eventListImg img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px 20px 0 0;
}
.eventList .eventCard .catLabel {
  position: absolute;
  top: 15px;
  left: 15px;
}
.eventList .eventCard .eventListTextContent {
  background: #fff;
  padding: 15px;
}
.eventList .eventCard .eventListTextContent .eventListTitle {
  margin-bottom: 7px;
  font-weight: 700;
  line-height: 1.3;
}
.eventList .eventCard .eventListTextContent .eventMeta {
  position: relative;
  padding-left: 29px;
  margin-top: 10px;
  color: #666;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.eventList .eventCard .eventListTextContent .eventMeta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #75c7bb;
  background-repeat: no-repeat;
  background-position: center;
}
.eventList .eventCard .eventListTextContent .eventMeta.date::before {
  background-image: url("../img/icon/icon-calendar.svg");
}
.eventList .eventCard .eventListTextContent .eventMeta.place::before {
  background-image: url("../img/icon/icon-pin.svg");
}

.post-type-archive-event .eventList {
  display: grid;
  gap: 20px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .post-type-archive-event .eventList {
    grid-template-columns: repeat(3, 1fr);
  }
}
.post-type-archive-event .eventList li {
  border: 1px solid #e5e5e5;
  border-radius: 20px;
}

.EventInfo {
  padding: 15px;
  border-radius: 20px;
  background: #f7f7f7;
  margin-bottom: 15px;
}
.EventInfo .EventInfoItem {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.EventInfo .EventInfoItem:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.EventInfo .EventInfoItem .EventInfoLabel {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
  color: #4d555c;
}
.EventInfo .EventInfoItem .EventInfoLabel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
.EventInfo .EventInfoItem .EventInfoLabel.icon-calendar::before {
  background-image: url("../img/icon/icon-calendar.svg");
}
.EventInfo .EventInfoItem .EventInfoLabel.icon-pin::before {
  background-image: url("../img/icon/icon-pin.svg");
}
.EventInfo .EventInfoItem .EventInfoLabel.icon-yen::before {
  background-image: url("../img/icon/icon-yen.svg");
}
.EventInfo .EventInfoItem .EventInfoText {
  color: #333;
  line-height: 1.6;
}

.single-event .wp-block-columns {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

.event-Title {
  background-color: #4d555c !important;
  padding: 10px 20px !important;
  border-radius: 100px !important;
  text-align: center !important;
  font-size: 1.8rem !important;
  margin: 0 auto 15px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  color: #fff;
}
@media screen and (min-width: 1080px) {
  .event-Title {
    font-size: 1.8rem !important;
    padding: 12px 30px !important;
  }
}

/*----------------- CTA ------------------ */
.cta {
  background: url(../img/ctabg-sp.png) no-repeat;
  padding: 60px 15px 90px;
  background-size: cover;
  background-position: top center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cta {
    background: url(../img/ctabg-pc.png) no-repeat;
    padding: 80px 15px 110px;
    background-size: cover;
    background-position: top center;
  }
}
@media screen and (min-width: 1080px) {
  .cta {
    background: url(../img/ctabg-pcxl.png) no-repeat;
    padding: 80px 15px 110px;
    background-size: cover;
    background-position: top center;
  }
}
.cta .Title {
  color: #fff;
}
.cta .Title span {
  color: #fff;
}
.cta .Btn {
  background-color: #f39fc1;
  border-color: #f39fc1;
}

/*----------------- LOW KEYVISUAL ------------------ */
.LowKeyVisual {
  padding: 80px 15px 30px;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual {
    padding: 120px 15px 30px;
  }
}
.LowKeyVisual .Title {
  z-index: 2;
}
.LowKeyVisual .Title span {
  color: #75c7bb;
}
.LowKeyVisual .LowKeyVisualImg {
  margin-bottom: 15px;
}
.LowKeyVisual .LowKeyVisualImg img {
  aspect-ratio: 2/1;
  width: 100%;
  height: 150px;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .LowKeyVisualImg img {
    height: 220px;
  }
}

/* パンクズリスト */
.breadcrumb-trail {
  background-color: #f6fafc;
  border-radius: 500px;
  font-family: "M PLUS 1", sans-serif !important;
}
.breadcrumb-trail .fbc-wrap {
  width: 100%;
  padding: 10px 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;
  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;
}

/*----------------- ABOUT PAGE ------------------ */
.AboutPage .about .TextContent p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .AboutPage .Philosophy .gridContent02 {
    grid-template-columns: 40% 1fr;
  }
}
.AboutPage .Philosophy .TextContent p:first-of-type {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4d555c;
  margin-bottom: 10px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .AboutPage .Philosophy .TextContent p:first-of-type {
    font-size: 2.4rem;
  }
}
.AboutPage .member .memberList {
  display: grid;
  gap: 20px 15px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .AboutPage .member .memberList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .AboutPage .member .memberList li {
    width: calc((100% - 45px) / 4);
  }
}
.AboutPage .member .memberList img {
  aspect-ratio: unset;
  height: 200px;
}
.AboutPage .member .memberList .TextContent {
  margin-top: 10px;
}
.AboutPage .member .memberList .TextContent p {
  line-height: 1;
  font-weight: 600;
}
.AboutPage .member .memberList .TextContent p:nth-child(1) {
  font-size: 1.4rem;
  margin-bottom: 7px;
  color: #4d555c;
}
.AboutPage .member .memberList .TextContent p:nth-child(2) {
  display: grid;
  gap: 3px;
  font-size: 2rem;
}
.AboutPage .member .memberList .TextContent p:nth-child(2) span {
  font-size: 1.6rem;
  color: #878787;
}
.AboutPage .aboutTable .InfoBox {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.AboutPage .aboutTable .InfoBox dl {
  margin: 0;
}
.AboutPage .aboutTable .InfoBox dl > div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #d7edf1;
}
@media screen and (min-width: 768px) {
  .AboutPage .aboutTable .InfoBox dl > div {
    grid-template-columns: 120px 1fr;
  }
}
.AboutPage .aboutTable .InfoBox dl > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.AboutPage .aboutTable .InfoBox dl > div:first-child {
  padding-top: 0;
}
.AboutPage .aboutTable .InfoBox dl dt,
.AboutPage .aboutTable .InfoBox dl dd {
  margin: 0;
}
.AboutPage .aboutTable .InfoBox dl dt {
  color: #75c7bb;
  font-weight: 700;
  line-height: 1.3;
}
.AboutPage .aboutTable .InfoBox dl dd {
  color: #4d555c;
  font-weight: 700;
  line-height: 1.3;
}
.AboutPage .supporters .supportersItemContent {
  display: grid;
  gap: 15px;
}
.AboutPage .supporters .supportersItemContent .supportersItem:nth-child(1) {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.AboutPage .supporters .supportersItemContent .supportersItem:nth-child(1) ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .AboutPage .supporters .supportersItemContent .supportersItem:nth-child(1) ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .AboutPage .supporters .supportersItemContent .supportersItem:nth-child(1) ul li {
    width: calc((100% - 100px) / 6);
  }
}
.AboutPage .supporters .supportersItemContent .supportersItem:nth-child(2) p:nth-child(2) {
  line-height: 1.6;
  word-break: auto-phrase;
  text-align: center;
}
.AboutPage .sponsor .sponsorItem01 {
  margin-bottom: 30px;
}
.AboutPage .sponsor .sponsorItem01 ul {
  margin-top: 38px;
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .AboutPage .sponsor .sponsorItem01 ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
.AboutPage .sponsor .sponsorItem01 ul li {
  padding: 35px 15px 15px 15px;
  border-radius: 20px;
  background-color: #fff;
  border: 7px solid #75c7bb;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.AboutPage .sponsor .sponsorItem01 ul li::before {
  content: "01";
  position: absolute;
  top: -30px;
  width: 50px;
  height: 50px;
  background-color: #75c7bb;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  font-size: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.AboutPage .sponsor .sponsorItem01 ul li:nth-child(2)::before {
  content: "02";
}
.AboutPage .sponsor .sponsorItem01 ul li:nth-child(3)::before {
  content: "03";
}
.AboutPage .sponsor .sponsorItem01 ul li img {
  width: 170px;
  height: auto;
  border-radius: unset;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 15px;
  aspect-ratio: unset;
}
.AboutPage .sponsor .sponsorItem01 ul li .textContent p:nth-child(1) {
  font-weight: 600;
  color: #4d555c;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 auto 10px;
}
@media screen and (min-width: 1080px) {
  .AboutPage .sponsor .sponsorItem01 ul li .textContent p:nth-child(1) {
    font-size: 2rem;
  }
}
.AboutPage .sponsor .sponsorItem01 ul li .textContent p:nth-child(2) {
  line-height: 1.5;
}
.AboutPage .sponsor .sponsorItem02 ul {
  display: grid;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .AboutPage .sponsor .sponsorItem02 ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
.AboutPage .sponsor .sponsorItem02 ul li {
  border: 3px solid #b1c1bf;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}
.AboutPage .sponsor .sponsorItem02 ul li:nth-child(2) {
  border: 3px solid #75c7bb;
}
.AboutPage .sponsor .sponsorItem02 ul li:nth-child(2) .plan {
  background-color: #75c7bb;
}
.AboutPage .sponsor .sponsorItem02 ul li:nth-child(3) {
  border: 3px solid #4d555c;
}
.AboutPage .sponsor .sponsorItem02 ul li:nth-child(3) .plan {
  background-color: #4d555c;
}
.AboutPage .sponsor .sponsorItem02 ul li .plan {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background-color: #b1c1bf;
  padding: 13px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .AboutPage .sponsor .sponsorItem02 ul li .plan {
    font-size: 2rem;
  }
}
.AboutPage .sponsor .sponsorItem02 ul li .inner {
  padding: 12px;
}
.AboutPage .sponsor .sponsorItem02 ul li .inner .price {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .AboutPage .sponsor .sponsorItem02 ul li .inner .price {
    font-size: 3rem;
  }
}
.AboutPage .sponsor .sponsorItem02 ul li .inner .price span {
  font-size: 1.4rem;
}
@media screen and (min-width: 1080px) {
  .AboutPage .sponsor .sponsorItem02 ul li .inner .price span {
    font-size: 1.6rem;
  }
}
.AboutPage .sponsor .sponsorItem02 ul li .inner .addText {
  padding: 10px;
  font-size: 1.4rem;
  background-color: #f5f5f5;
  border-radius: 10px;
  height: 100%;
}
@media screen and (min-width: 1080px) {
  .AboutPage .sponsor .sponsorItem02 ul li .inner .addText {
    font-size: 1.6rem;
  }
}
.AboutPage .join .joinText {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
}
.AboutPage .join .joinContent {
  padding: 15px;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  background-color: #f7f7f7;
  display: grid;
  gap: 15px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .AboutPage .join .joinContent {
    padding: 20px;
  }
}
.AboutPage .join .joinContent .joinContentItem {
  display: grid;
  gap: 5px;
  line-height: 1.5;
}
.AboutPage .join .joinContent .joinContentItem .joinContentItemTitle {
  border-radius: 100px;
  padding: 10px;
  width: 100%;
  background-color: #75c7bb;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.AboutPage .join .joinContent .joinContentItem:nth-child(1) {
  text-align: center;
}

/*----------------- 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: 20px;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    margin-top: 40px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 2.4rem;
  margin: 20px !important;
  border: unset !important;
  transition: all 0.3s;
  font-weight: 600 !important;
}
.wp-pagenavi .current {
  color: #bbbbbb;
}
.wp-pagenavi .pages {
  display: none !important;
}

/*----------------- Single ------------------ */
.CardContent {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}
.CardContent .Date {
  font-size: 1.4rem;
  color: #666666;
  line-height: 1;
}

.catLabel {
  padding: 8px 18px;
  background: #75c7bb;
  color: #fff;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

#Post {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  word-wrap: break-word;
}
#Post .TextInner {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#Post .catLabel {
  font-size: 1.2rem;
  padding: 8px 14px;
}
#Post .CardTitle {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  #Post .CardTitle {
    font-size: 2.4rem;
  }
}
#Post h2.wp-block-heading {
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 2rem;
  padding: 15px;
  color: #fff;
  border-radius: 5px;
  background-color: #0491d8;
}
@media screen and (min-width: 768px) {
  #Post h2.wp-block-heading {
    font-size: 2.2rem;
  }
}
#Post h3.wp-block-heading {
  font-size: 1.8rem;
  position: relative;
  padding-left: 23px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  #Post h3.wp-block-heading {
    font-size: 2rem;
  }
}
#Post h3.wp-block-heading::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #e6782a;
  position: absolute;
  border-radius: 100px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#Post h4.wp-block-heading {
  padding: 13px;
  border-radius: 5px;
  background-color: #f0f0f0;
  font-weight: 500;
  color: #424242;
  margin: 0 auto 15px;
}
#Post .attachment-post-thumbnail {
  margin-bottom: 30px;
}
#Post p {
  line-height: 1.7;
}
#Post img {
  aspect-ratio: unset;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 768px) {
  #Post img {
    width: 80%;
  }
}
#Post .logo-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  #Post .logo-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
#Post .logo-list img {
  border: 1px solid #ddd;
  padding: 15px;
}
#Post .wp-block-columns {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  #Post .wp-block-columns {
    flex-direction: row;
  }
}
#Post .wp-block-columns img {
  width: 100% !important;
}
#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%;
}
#Post .BtnContent {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #ddd;
}
#Post .BtnContent .Btn {
  margin: 0 auto;
}
#Post .BtnContent .Btn::before {
  right: unset;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
#Post .BtnContent .Btn:hover::before {
  left: 20px;
}
#Post .wp-block-file {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 15px;
}
#Post .wp-block-file a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
#Post .wp-block-file .wp-block-file__button {
  background-color: #75c7bb;
  border-radius: 10px;
}
#Post .PostText a {
  color: #2370ca;
}

/*----------------- FORM ------------------ */
.Form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.Form .textContent {
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
}
.Form .textContent p span {
  display: block;
  height: 5px;
}
.Form .textContent p:nth-child(1) {
  font-weight: 600;
  color: #75c7bb;
  margin-bottom: 5px;
  font-size: 2rem;
  line-height: 1.3;
}
.Form dl {
  text-align: left;
}
.Form dl .addText {
  font-size: 1.4rem;
  margin: 5px 0;
}
.Form dl .must,
.Form dl .any {
  font-size: 1.2rem;
  color: #fff;
  background-color: #4d555c;
  height: 26px;
  width: 60px;
  border-radius: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.Form dl .any {
  background-color: #fff;
  color: #4d555c;
  border: 2px solid #4d555c;
}
.Form dl dt {
  font-size: 1.8rem;
  font-weight: 700;
}
.Form dl dt p {
  display: flex;
  gap: 5px;
  align-items: center;
}
.Form dl dt p span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.Form dl dd {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 30px;
}
.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;
  font-style: normal;
}
@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: 20px auto 0;
  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 --------*/
.footerContent {
  padding-top: 30px;
  overflow: hidden;
  margin-top: -30px;
}

footer {
  background-color: #4d555c;
  color: #fff;
  padding: 30px 15px 20px;
  position: relative;
  z-index: 1;
}
footer::before {
  content: "";
  position: absolute;
  top: -29px;
  left: -100px;
  right: -100px;
  height: 30px;
  background: inherit;
  z-index: -1;
  border-top-left-radius: 50% 30px;
  border-top-right-radius: 50% 30px;
}
@media screen and (min-width: 1200px) {
  footer {
    padding: 30px 0 20px;
  }
}
footer .FooterTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop {
    margin-bottom: 20px;
  }
}
footer .FooterTop .sns {
  display: flex;
  gap: 20px;
}
footer .FooterTop .sns li {
  max-width: 25px;
  width: 100%;
}
footer .FooterTop .sns li img {
  border-radius: unset;
  aspect-ratio: unset;
}
footer .Menu__content {
  position: unset;
  transform: unset;
  padding: 0 0;
  margin: 30px 0 20px;
}
@media screen and (min-width: 1080px) {
  footer .Menu__content {
    margin: 0 0 20px;
    width: 100%;
  }
}
footer .Menu__content .Menu__list {
  display: grid;
  gap: 20px;
  font-weight: 600;
}
@media screen and (min-width: 1080px) {
  footer .Menu__content .Menu__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-content: center;
    gap: 40px;
  }
}
footer .Menu__content .Menu__list .Menu__item {
  font-size: 1.8rem;
}
footer .Menu__content .Menu__list .Menu__item.Btn {
  margin: 0 0;
  border: unset;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (min-width: 1080px) {
  footer .Menu__content .Menu__list .Menu__item.Btn {
    width: 100%;
    max-width: 180px;
    font-size: 1.4rem;
    padding: 16px 25px 16px 18px;
  }
}
@media screen and (min-width: 1080px) {
  footer .Menu__content .Menu__list .Menu__item.Btn:before {
    width: 25px;
    height: 25px;
  }
}
footer .FooterBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
footer .FooterBottom .privacy,
footer .FooterBottom .Copyright {
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */