@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: "Sen", "M PLUS 1", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

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

.sectionPdZero {
  padding: 60px 0;
}
@media screen and (min-width: 1080px) {
  .sectionPdZero {
    padding: 80px 0;
  }
}

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

.Title {
  margin-bottom: 30px;
  font-size: 4rem;
  font-weight: 700;
  color: #3a3a3a;
  position: relative;
  display: grid;
  gap: 5px;
  padding-left: 28px;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 1080px) {
  .Title {
    font-size: 5rem;
    margin-bottom: 40px;
  }
}
.Title span {
  color: #6b6b6b;
  font-weight: 800;
  font-size: 1.6rem;
}
@media screen and (min-width: 1080px) {
  .Title span {
    font-size: 2rem;
  }
}
.Title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #d6ac40;
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 100px;
}
@media screen and (min-width: 1080px) {
  .Title::before {
    top: 15px;
  }
}

.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;
}

.comingSoon {
  font-size: 1.8rem;
}

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

.backBtn::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 34px;
  height: 34px;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 15px;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-180deg);
}
.backBtn:hover::before {
  left: 25px;
  transition: all 0.3s;
}

/* 共通設定 */
/*----------------- 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: 70px;
  z-index: 100;
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .logo {
    max-width: 100px;
  }
}
.logo a:hover {
  opacity: 1;
}

.is-animation {
  background-color: rgba(255, 255, 255, 0.9490196078);
  transition: all 1s;
  filter: drop-shadow(0 2px 3px rgba(64, 64, 64, 0.062745098));
}
@media screen and (min-width: 1080px) {
  .is-animation .Menu__content .Menu__list {
    color: #262626;
  }
}

/*------------------- NAV ------------------ */
nav {
  width: 100%;
  height: 100vh;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 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;
  }
}
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;
  }
}

@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 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3a3a3a;
  position: relative;
}
.Menu__content .Menu__list .Menu__item::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/icon/arrow-yellow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 15%;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item::before {
    display: none;
  }
}
.Menu__content .Menu__list .Menu__item a {
  width: 100%;
  display: grid;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item a {
    text-align: center;
  }
}
.Menu__content .Menu__list .Menu__item a span {
  font-size: 1.4rem;
  color: #d6ac40;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item a span {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item {
    margin: 0 0;
    padding: unset;
    border: unset;
    font-size: 1.6rem;
    white-space: nowrap;
  }
}
.Menu__content .Menu__list .Btn {
  margin: 0 auto;
  border-bottom: unset;
  font-size: 1.6rem;
  color: #fff;
  background-color: #d6ac40;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Btn {
    font-size: 1.4rem;
    padding: 13px 40px 13px 20px;
    margin: 0 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.Menu__content .Menu__list .Btn:before {
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Btn:before {
    width: 20px;
    height: 20px;
  }
}

/*------------- HAMBERGER MENU ------------ */
.OpenBtn {
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 1000;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #3a3a3a;
  border-radius: 100%;
}
.OpenBtn span {
  width: 18px;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: all 0.3s;
  position: absolute;
  border-radius: 50px;
  right: 50%;
  transform: translateX(50%);
}
.OpenBtn span:nth-of-type(1) {
  top: 38%;
}
.OpenBtn span:nth-of-type(2) {
  top: 50%;
}
.OpenBtn span:nth-of-type(3) {
  top: 63%;
}
.OpenBtn.active span:nth-of-type(1) {
  top: 50%;
  transform: translateX(50%) rotate(30deg);
}
.OpenBtn.active span:nth-of-type(2) {
  transform: scaleX(0);
}
.OpenBtn.active span:nth-of-type(3) {
  top: 50%;
  transform: translateX(50%) rotate(150deg);
}
@media screen and (min-width: 1080px) {
  .OpenBtn {
    display: none;
  }
}

/*----------------- KEY-VISUAL ------------------ */
.KeyVisual {
  padding: 80px 15px 0px;
  position: relative;
}
.KeyVisual .KeyVisualInner {
  height: 40vh;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}
.KeyVisual .KeyVisualInner .full {
  overflow: hidden;
  margin-bottom: 0;
}
.KeyVisual .KeyVisualInner .full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 40vh;
}

/*-----------------  NewsList ------------------ */
.NewsContent {
  position: absolute;
  bottom: 15px;
  right: 30px;
  left: 30px;
  background-color: rgba(255, 255, 255, 0.9490196078);
  border-radius: 20px;
  padding: 15px;
  z-index: 1;
}
@media screen and (min-width: 1080px) {
  .NewsContent {
    margin-left: auto;
    left: unset;
    right: 30px;
    bottom: 20px;
    width: 100%;
    max-width: 500px;
  }
}
.NewsContent .InnerTop {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
  justify-content: space-between;
}
.NewsContent .InnerTop .NewsContentTitle {
  color: #70b22f;
  font-size: 2.4rem;
  font-weight: 600;
}
.NewsContent .InnerTop .Btn {
  font-size: 1.2rem;
  padding: 7px 30px 7px 20px;
  margin: 0 0;
  background-color: #d6ac40;
}
.NewsContent .InnerTop .Btn::before {
  width: 17px;
  height: 17px;
  right: 7px;
}
@media screen and (min-width: 1080px) {
  .NewsContent .InnerTop .Btn {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.NewsItem .Date {
  font-size: 1.2rem;
  color: #939393;
  margin-bottom: 3px;
}
@media screen and (min-width: 1080px) {
  .NewsItem .Date {
    font-size: 1.4rem;
  }
}
.NewsItem .NewsContentText {
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 1; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
  font-size: 1.4rem;
}
@media screen and (min-width: 1080px) {
  .NewsItem .NewsContentText {
    font-size: 1.6rem;
  }
}

.NewsItem .NewsListText {
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .NewsItem .NewsListText {
    font-size: 1.6rem;
  }
}

.NewsMeta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.NewsMeta .Date {
  font-size: 1.4rem;
  color: #939393;
}
.NewsMeta .NewsCategory {
  background: #bcbcbc;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  padding: 5px 14px;
  border-radius: 100px;
}

/*-----------------  Section01 ------------------ */
@media screen and (min-width: 1080px) {
  .Section01 .Section01Content {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .Section01 .Title {
    margin-bottom: 0;
    align-content: start;
  }
}
.Section01 .TextContent p {
  line-height: 1.7;
}
.Section01 .TextContent .subTitle {
  margin-bottom: 5px;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 700;
  color: #70b22f;
}
.Section01 .TextContent .Btn {
  margin: 30px auto 0;
}

/*-----------------  event ------------------ */
.event .ArticleSwiper {
  width: 100%;
  overflow: hidden;
  padding: 0 0 32px;
}
.event .ArticleList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.event .ArticleItem a {
  display: block;
  color: #262626;
  text-decoration: none;
}
.event .ArticleImage {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 10px;
}
.event .ArticleImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.event .ArticleDate {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  color: #777;
}
.event .ArticleTitle {
  margin: 3px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.event .ArticleText {
  margin: 3px 0 0;
  font-size: 12px;
  line-height: 1.35;
}
.event .ArticlePagination {
  bottom: 0 !important;
}
.event .ArticlePagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 4px !important;
  background: #d4d4d4;
  opacity: 1;
}
.event .ArticlePagination .swiper-pagination-bullet-active {
  background: #686868;
}

/*----------------- member ------------------ */
.member .MemberTitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.member .MemberTitle__dot {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #d7a329;
}
.member .MemberTitle__jp {
  margin: 6px 0 0 26px;
  font-size: 14px;
  font-weight: 700;
  color: #777;
}
.member .MemberSwiper {
  overflow: visible;
}
.member .MemberList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.member .MemberItem {
  height: auto;
}
.member .MemberItem .MemberImage {
  width: 100%;
  aspect-ratio: 1/1.25;
  overflow: hidden;
  border-radius: 10px;
  background: #bbb;
}
.member .MemberItem .MemberImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.member .MemberItem .MemberCompany {
  margin: 8px 0 0;
  font-size: 10px;
  line-height: 1.4;
  color: #888;
}
.member .MemberItem .MemberName {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.member .MemberItem .MemberNameEn {
  margin: 1px 0 0;
  font-size: 11px;
  line-height: 1.4;
}

.post-type-archive-member .MemberList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 10px;
}
@media screen and (min-width: 1080px) {
  .post-type-archive-member .MemberList {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }
}

/*----------------- CTA ------------------ */
.cta {
  padding: 30px 15px;
  background-color: #d6ac40;
}
.cta .ctaContent {
  padding: 30px 15px;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (min-width: 1080px) {
  .cta .ctaContent {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 20px;
    padding: 40px;
    align-items: end;
  }
}
.cta .ctaContent .TextContent {
  line-height: 1.5;
}
.cta .ctaContent .BtnContent .Btn {
  margin: 30px auto 0;
}
@media screen and (min-width: 1080px) {
  .cta .ctaContent .BtnContent .Btn {
    margin: 0 auto 20px;
  }
}

/*----------------- LOW KEYVISUAL ------------------ */
.LowKeyVisual {
  padding: 100px 15px 15px;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual {
    padding: 120px 15px 15px;
  }
}
.LowKeyVisual .LowKeyVisualTitle {
  font-size: 4rem;
  font-weight: 700;
  color: #3a3a3a;
  display: grid;
  gap: 5px;
  margin-bottom: 40px;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .LowKeyVisualTitle {
    font-size: 6rem;
  }
}
.LowKeyVisual .LowKeyVisualTitle span {
  color: #6b6b6b;
  font-weight: 700;
  font-size: 1.6rem;
  padding-left: 28px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .LowKeyVisualTitle span {
    font-size: 2.4rem;
    padding-left: 22px;
  }
}
.LowKeyVisual .LowKeyVisualTitle span::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #d6ac40;
  position: absolute;
  top: -3px;
  left: 0;
  border-radius: 100px;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .LowKeyVisualTitle span::before {
    top: 3px;
  }
}
.LowKeyVisual .LowKeyVisualImg {
  margin-bottom: 15px;
}
.LowKeyVisual .LowKeyVisualImg img {
  aspect-ratio: 16/9;
  width: 100%;
  height: 200px;
  border-radius: 20px;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .LowKeyVisualImg img {
    height: 240px;
  }
}

/* パンクズリスト */
.breadcrumb-trail {
  font-family: "M PLUS 1", sans-serif !important;
}
.breadcrumb-trail .fbc-wrap {
  width: 100%;
  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 ------------------ */
@media screen and (min-width: 1080px) {
  .about .Section01 .Title {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .about .Section01 .Section01Content {
    grid-template-columns: 55% 1fr;
  }
}
.about .Section01 .Section01Content .TextContent p span {
  display: block;
  height: 10px;
}
.about .Section01 .Section01Content .imgContent {
  margin-top: 15px;
  display: grid;
  gap: 15px;
}
.about .Section01 .Section01Content .imgContent img {
  border-radius: 15px;
  aspect-ratio: 16/9;
}
.about .aboutInfo .InfoBox {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
}
.about .aboutInfo .InfoBox dl {
  margin: 0;
}
.about .aboutInfo .InfoBox dl > div {
  display: grid;
  gap: 5px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .about .aboutInfo .InfoBox dl > div {
    grid-template-columns: 120px 1fr;
    gap: 10px;
  }
}
.about .aboutInfo .InfoBox dl > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about .aboutInfo .InfoBox dl > div:first-child {
  padding-top: 0;
}
.about .aboutInfo .InfoBox dl dt,
.about .aboutInfo .InfoBox dl dd {
  margin: 0;
}
.about .aboutInfo .InfoBox dl dt {
  font-weight: 600;
  line-height: 1.3;
  color: #3a3a3a;
}
.about .aboutInfo .InfoBox dl dd {
  font-weight: 400;
  line-height: 1.3;
}
.about .aboutInfo .InfoBox dl dd a {
  color: #2370ca;
  text-decoration: underline;
}
.about .Social .SocialContentGrid {
  display: grid;
  gap: 30px;
}
.about .Social .SocialContentGrid .SocialContent .SocialTitle {
  font-size: 3rem;
}
@media screen and (min-width: 1080px) {
  .about .Social .SocialContentGrid .SocialContent .SocialTitle {
    font-size: 4rem;
    margin-bottom: 20px;
  }
}
.about .Social .SocialContentGrid .SocialContent .SocialTitle::before {
  top: 4px;
  background-color: #737373;
}
.about .Social .SocialContentGrid .SocialContent .SocialTitle span {
  font-size: 1.4rem;
}
@media screen and (min-width: 1080px) {
  .about .Social .SocialContentGrid .SocialContent .SocialTitle span {
    font-size: 1.6rem;
  }
}
.about .partonerList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 10px;
}
@media screen and (min-width: 1080px) {
  .about .partonerList {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about .partonerList p {
  display: grid;
  gap: 3px;
  font-weight: 600;
}
.about .partonerList p span {
  font-size: 1.2rem;
  font-weight: 400;
}
.about .partonerList img {
  aspect-ratio: 2/1;
  border-radius: 10px;
  margin-bottom: 5px;
}

/*----------------- Archive ------------------ */
.post-type-archive-post .NewsItem .Date {
  margin-bottom: 0;
}
.post-type-archive-post .NewsList {
  display: grid;
  gap: 15px;
}
.post-type-archive-post .NewsList .NewsItem {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.post-type-archive-post .NewsList .NewsItem:last-child {
  border: unset;
  padding-bottom: 0;
}

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

.newsArchive {
  padding: 15px;
}

.NewsFilter {
  display: flex;
  gap: 10px;
  padding: 15px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 30px;
}
.NewsFilter .NewsFilterItem {
  width: 50%;
}
.NewsFilter .NewsFilterLabel {
  font-size: 1.2rem;
  margin-bottom: 3px;
}
.NewsFilter .NewsSelectWrap {
  position: relative;
}
.NewsFilter .NewsSelectWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #75b94e;
  border-radius: 50%;
  pointer-events: none;
}
.NewsFilter .NewsSelectWrap::before {
  content: "";
  position: absolute;
  top: 48%;
  right: 12px;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.NewsFilter .NewsSelect {
  width: 100%;
  height: 32px;
  padding: 0 35px 0 10px;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 30px;
  background: #fff;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.EventFilter {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  width: 100%;
  margin: 0 auto 30px;
}
.EventFilter .EventFilterLabel {
  font-size: 1.2rem;
  margin-bottom: 3px;
}
.EventFilter .EventSelectWrap {
  position: relative;
}
.EventFilter .EventSelectWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #75b94e;
  border-radius: 50%;
  pointer-events: none;
}
.EventFilter .EventSelectWrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 46%;
  right: 13px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.EventFilter .EventSelect {
  width: 100%;
  height: 34px;
  padding: 0 35px 0 10px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background: #fff;
  font-size: 1.2rem;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

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

.EventItem a {
  display: block;
}
.EventItem .EventImage {
  width: 100%;
  aspect-ratio: 16/10;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 8px;
}
.EventItem .EventImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.EventItem .EventDate {
  margin-bottom: 2px;
  font-size: 1.2rem;
  color: #939393;
}
.EventItem .EventTitle {
  margin-bottom: 5px;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 500;
}
.EventItem .EventText {
  font-size: 1.4rem;
  line-height: 1.3;
}
.EventItem .EventText p {
  margin: 0;
}

/*--------------- 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: #d6ac40;
  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 .TextInner .NewsListText {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: #3a3a3a;
}
#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 {
  font-size: 1.8rem;
  position: relative;
  padding-left: 12px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  #Post h2.wp-block-heading {
    font-size: 2rem;
  }
}
#Post h2.wp-block-heading::before {
  content: "";
  width: 7px;
  height: 140%;
  background-color: #70b22f;
  position: absolute;
  border-radius: 100px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#Post h3.wp-block-heading {
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.6rem;
  padding: 13px;
  color: #3a3a3a;
  border-radius: 5px;
  background-color: #f2f2f2;
}
@media screen and (min-width: 768px) {
  #Post h3.wp-block-heading {
    font-size: 1.8rem;
  }
}
#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;
  border-radius: 15px;
}
#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: #d6ac40;
  border-radius: 10px;
}
#Post .PostText a {
  color: #2370ca;
}

.post-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  color: #333;
  text-decoration: none;
}
.post-navigation .nav-previous a img,
.post-navigation .nav-next a img {
  width: 7px;
  height: auto;
}
.post-navigation .nav-next {
  margin-left: auto;
}

/*----------------- FORM ------------------ */
.Form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.Form .FormText {
  margin-bottom: 20px;
}
.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: #d6ac40;
  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: #3a3a3a;
  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: #3a3a3a;
  border: 2px solid #3a3a3a;
}
.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: 10px;
  margin-bottom: 25px;
}
.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 --------*/
footer {
  padding: 30px 15px 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  footer {
    padding: 30px 0 20px;
  }
}
@media screen and (min-width: 1080px) {
  footer .Menu__list {
    justify-content: center !important;
  }
}
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 .FooterBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */