@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: 5px;
  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;
}

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

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

.Title {
  margin-bottom: 40px;
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .Title {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1080px) {
  .Title {
    font-size: 4.2rem;
  }
}
.Title span {
  font-size: 2.4rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 20px;
  color: #f1b729;
  line-height: 1;
}
.Title span::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #f1b729;
  position: absolute;
  border-radius: 100px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.Title02 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: grid;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .Title02 {
    font-size: 3.4rem;
  }
}
.Title02 span {
  font-size: 1.8rem;
  color: #0491d8;
}
@media screen and (min-width: 768px) {
  .Title02 span {
    font-size: 2.2rem;
  }
}

.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;
  position: relative;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  background-color: #0491d8;
  display: block;
  transition: all 0.3s;
  line-height: 1;
  text-align: center;
  font-weight: 600;
  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: 37px;
  height: 36px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.Btn:hover::before {
  right: 20px;
  transition: all 0.3s;
}

.gridContent {
  display: grid;
  gap: 25px;
}
@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;
}

.TextContent p {
  line-height: 1.7;
}
.TextContent .Btn {
  margin: 30px auto 0;
}

/* 共通設定 */
/*----------------- HEADER ----------------- */
header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .Header__inner {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 3px;
  transition: all 1s;
  background-color: #fff;
}

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

/*------------------- 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;
  }
}
nav .Menu__content .Menu__list .Menu__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8e6f2;
  font-size: 2.4rem;
  font-weight: 600;
  color: #333;
}
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 0 40px;
    padding: unset;
    border: unset;
    font-size: 1.6rem;
    white-space: nowrap;
  }
}
nav .Menu__content .Menu__list .Menu__item .current::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  opacity: 1;
  transition: all 0.3s;
}
nav .Menu__content .Menu__list .Menu__item.Btn {
  padding: 20px;
  margin: 0 0;
  border-bottom: unset;
  font-size: 1.8rem;
  color: #fff;
  background-color: #f1b729;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item.Btn {
    margin: 0 0 0 40px;
    font-size: 1.4rem;
    max-width: 160px;
    padding: 15px;
  }
}
nav .Menu__content .Menu__list .Menu__item.Btn::before {
  background: url(../img/icon/arrow-yellow.svg) no-repeat;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item.Btn::before {
    display: none;
  }
}
nav .Copyright {
  position: absolute;
  bottom: 15px;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  nav .Copyright {
    display: none;
  }
}

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

/*----------------- KEY-VISUAL ------------------ */
.KeyVisualContent {
  padding: 0 15px;
  margin-top: 70px;
}
@media screen and (min-width: 1080px) {
  .KeyVisualContent {
    margin-top: 80px;
  }
}

.KeyVisual {
  height: 50vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .KeyVisual {
    height: 60vh;
  }
}
.KeyVisual .full {
  overflow: hidden;
  margin-bottom: 0;
}
.KeyVisual .full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vh;
}
@media screen and (min-width: 768px) {
  .KeyVisual .full div {
    height: 60vh;
  }
}
.KeyVisual .full div.img01 {
  background-image: url(../img/KeyVisual/keyVisual01.png);
}
.KeyVisual .full div.img02 {
  background-image: url(../img/KeyVisual/keyVisual02.png);
}
.KeyVisual .full div.img03 {
  background-image: url(../img/KeyVisual/keyVisual03.png);
}
.KeyVisual .swiper-pagination-wrapper {
  position: absolute;
  right: 15px;
  bottom: 20px;
  z-index: 10;
  padding: 6px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.KeyVisual .swiper-pagination {
  display: flex;
  gap: 7px;
  bottom: 70px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  right: 15px !important;
  left: unset !important;
}
@media screen and (min-width: 768px) {
  .KeyVisual .swiper-pagination {
    gap: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .KeyVisual .swiper-pagination {
    right: 3% !important;
    gap: 15px;
  }
}
.KeyVisual .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: hsl(0, 0%, 80%);
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .KeyVisual .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
}
@media screen and (min-width: 1080px) {
  .KeyVisual .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
  }
}
.KeyVisual .swiper-pagination-bullet-active {
  background: #0491d8;
}
.KeyVisual .KeyVisualCatch {
  position: absolute;
  bottom: 70px;
  left: 15px;
  right: 15px;
  max-width: 600px;
  height: auto;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .KeyVisual .KeyVisualCatch {
    right: unset;
    width: 75%;
  }
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualCatch {
    left: 3%;
    width: 100%;
  }
}
.KeyVisual .KeyVisualCatch img {
  aspect-ratio: unset;
  border-radius: unset;
}

/*-----------------  TOP ------------------ */
/*-----------------  KeySection ------------------ */
.KeySection {
  max-width: 800px;
  width: 100%;
  margin: -50px auto 0;
  position: relative;
  z-index: 10;
}
.KeySection .Title {
  font-size: 1.8rem;
  margin-bottom: unset;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .KeySection .Title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1080px) {
  .KeySection .Title {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
  }
}
.KeySection .Title br {
  display: none;
}
@media screen and (min-width: 1080px) {
  .KeySection .Title br {
    display: block;
  }
}
.KeySection .Title span {
  font-size: 2.2rem;
  margin-top: -5px;
  padding-left: 17px;
}
@media screen and (min-width: 768px) {
  .KeySection .Title span {
    font-size: 2.4rem;
    margin-top: unset;
    padding-left: 20px;
  }
}
.KeySection .Title span::before {
  width: 13px;
  height: 13px;
  top: 60%;
}
@media screen and (min-width: 768px) {
  .KeySection .Title span::before {
    width: 15px;
    height: 15px;
    top: 50%;
  }
}
.KeySection .NewsContent {
  background-color: #f6f6f6;
  padding: 17px 15px;
  border-radius: 10px;
  display: grid;
  width: 85%;
  margin: 0 auto;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .KeySection .NewsContent {
    width: 90%;
  }
}
@media screen and (min-width: 1080px) {
  .KeySection .NewsContent {
    grid-template-columns: 160px 1fr;
    width: 100%;
  }
}
.KeySection .NewsContent .NewsList .NewsListItem {
  padding-bottom: 7px;
  margin-bottom: 7px;
}
@media screen and (min-width: 768px) {
  .KeySection .NewsContent .NewsList .NewsListItem {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.KeySection .NewsContent .NewsList .NewsListItem:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.KeySection .NewsContent .NewsList .NewsListItem a {
  grid-template-columns: 100px 1fr;
  gap: 10px;
}
.KeySection .NewsContent .NewsList .NewsListItem a .NewsListText {
  -webkit-line-clamp: 1;
  font-size: 1.4rem;
}
@media screen and (min-width: 1080px) {
  .KeySection .NewsContent .NewsList .NewsListItem a .NewsListText {
    font-size: 1.6rem;
  }
}

/*-----------------  NEWS ------------------ */
.NewsList .NewsListItem {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e8ebf0;
}
.NewsList .NewsListItem a {
  transition: all 0.3s;
  position: relative;
  display: block;
}
.NewsList .NewsListItem a:hover::before {
  right: 15px;
  transition: all 0.3s;
}
.NewsList .NewsListItem a::before {
  content: "";
  background: url(../img/icon/news-arrow.svg) no-repeat;
  width: 8px;
  height: 12px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .NewsList .NewsListItem a {
    display: grid;
    align-items: center;
    grid-template-columns: 130px 1fr;
    gap: 15px;
  }
}
.NewsList .NewsListItem:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  margin-bottom: 0;
}
.NewsList .NewsListItem .Date {
  font-size: 1.4rem;
  color: #656565;
  margin-bottom: 5px;
}
@media screen and (min-width: 1080px) {
  .NewsList .NewsListItem .Date {
    margin-bottom: 0;
  }
}
.NewsList .NewsListItem .NewsListText {
  padding-right: 40px;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
@media screen and (min-width: 1080px) {
  .NewsList .NewsListItem .NewsListText {
    padding-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: #0491d8;
}

.eventList {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .eventList {
    display: grid !important;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: unset;
  }
}
.eventList li .eventListImg {
  position: relative;
}
.eventList li .eventListImg .catLabel {
  position: absolute;
  top: 10px;
  left: 10px;
}
.eventList li .eventListTextContent {
  margin-top: 10px;
}
.eventList li .eventListTextContent .eventListTitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.eventList li .eventListTextContent .eventListText {
  margin-bottom: 5px;
}
.eventList li .eventListTextContent .Date {
  font-size: 1.4rem;
  font-weight: 300;
  text-align: right;
  color: #7e7e7e;
}

.EventArchive .searchText {
  margin-bottom: 20px;
}
.EventArchive .eventList {
  padding: 0 0;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .EventArchive .eventList {
    grid-template-columns: repeat(3, 1fr);
  }
}
.EventArchive .searchContainer form {
  max-width: 700px;
  margin: 0 auto 20px;
  display: flex;
  border: 1px solid #b0b0b0;
  border-radius: 5px;
  padding: 5px 5px 5px 15px;
}
.EventArchive .searchContainer form input[type=text] {
  flex: 1;
}
.EventArchive .searchContainer form button {
  background: #f1b729;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  position: relative;
}
.EventArchive .searchContainer form button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/icon/search.svg) no-repeat;
  width: 20px;
  height: 20px;
}
.EventArchive .categoryNav {
  margin-bottom: 20px;
}
.EventArchive .categoryNav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .EventArchive .categoryNav ul {
    justify-content: center;
  }
}
.EventArchive .categoryNav ul li a {
  display: block;
  padding: 10px 20px;
  border: 2px solid #0491d8;
  color: #0491d8;
  border-radius: 5px;
  transition: all 0.3s;
  line-height: 1;
  font-weight: 600;
}
.EventArchive .categoryNav ul li a:hover {
  background: #0491d8;
  color: #fff;
}
.EventArchive .categoryNav ul li.is-active a {
  background: #0491d8;
  color: #fff;
}
.EventArchive .archiveContainer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .EventArchive .archiveContainer {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.EventArchive .archiveContainer .archiveTitle {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.EventArchive .archiveContainer .yearList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.EventArchive .archiveContainer .yearList li a {
  display: block;
  padding: 10px 30px;
  border: 2px solid #333;
  color: #333;
  border-radius: 5px;
  font-weight: 600;
  line-height: 1;
  transition: background 0.3s, color 0.3s;
}
.EventArchive .archiveContainer .yearList li a:hover {
  background: #333;
  color: #fff;
}

/*-----------------  instagram ------------------ */
.instagram #sb_instagram {
  padding: 0 0 !important;
}
.instagram #sb_instagram #sbi_images {
  gap: 3px !important;
  padding: 0 0 !important;
}
@media screen and (min-width: 768px) {
  .instagram #sb_instagram #sbi_images {
    gap: 10px !important;
  }
}
.instagram .Btn::before {
  background: url(../img/icon/blank.svg) no-repeat;
}

/*-----------------  About ------------------ */
.about .gridContent .TextContent .TextContentCatch {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .about .gridContent .TextContent .TextContentCatch {
    width: 80%;
  }
}
.about .gridContent .TextContent .TextContentCatch img {
  border-radius: 0;
  aspect-ratio: unset;
}
.about .gridContent .TextContent p:nth-child(1) {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .about .gridContent .TextContent p:nth-child(1) {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .about .gridContent .TextContent p:nth-child(2) {
    font-size: 1.8rem;
  }
}

/*----------------- LOW KEYVISUAL ------------------ */
.LowKeyVisual {
  padding: 60px 15px 15px;
  background: url(../img/KeyVisual/low-kv-sp.png) no-repeat;
  background-size: cover;
  border-radius: 10px;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual {
    background: url(../img/KeyVisual/low-kv-pc.png) no-repeat;
    background-size: cover;
  }
}
.LowKeyVisual .Title {
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .Title {
    margin-left: 15px;
  }
}
.LowKeyVisual .Title span {
  color: #fff;
}
.LowKeyVisual .Title span::before {
  background-color: #fff;
}

/* パンクズリスト */
.breadcrumb-trail {
  background-color: #f2f9ff;
  border-radius: 5px;
  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 p span {
  display: block;
  height: 7px;
}
.AboutPage .about p .memberName {
  display: block;
  margin: 15px 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  font-weight: 400;
}
.AboutPage .about .KeySectionImg {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .AboutPage .about .KeySectionImg {
    height: 90%;
  }
}
@media screen and (min-width: 768px) {
  .AboutPage .about .KeySectionImg img {
    aspect-ratio: unset;
    height: 100%;
  }
}
.AboutPage .member .memberList {
  display: grid;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .AboutPage .member .memberList {
    gap: 30px;
  }
}
.AboutPage .member .memberList .memberListItem {
  display: grid;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .AboutPage .member .memberList .memberListItem {
    grid-template-columns: 250px 1fr;
  }
}
.AboutPage .member .memberList .memberListItem:nth-child(2) {
  align-items: center;
}
.AboutPage .member .memberList .memberListItem .ImgContent img {
  aspect-ratio: unset;
}
.AboutPage .member .memberList .memberListItem .TextContent .memberListName {
  line-height: 1.2;
  font-size: 2.4rem;
  margin-bottom: 7px;
  font-weight: 600;
}
.AboutPage .member .memberList .memberListItem .TextContent .memberListName span {
  color: #707070;
  font-size: 1.8rem;
}
.AboutPage .member .memberList .memberListItem .TextContent .memberListAge {
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .AboutPage .member .memberList .memberListItem .TextContent .memberListAge {
    margin-bottom: 15px;
  }
}
.AboutPage .member .memberList .memberListItem .memberListSub {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.AboutPage .member .memberList .memberListItem .memberListSub li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.AboutPage .member .memberList .memberListItem .memberListSub li p:nth-child(1) {
  width: 65px;
  height: 28px;
  border: 2px solid #2a2a2a;
  border-radius: 100px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutUs .tableContent {
  padding: 20px 15px;
  background-color: #e6f7ff;
  border-radius: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .aboutUs .tableContent {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 30px;
  }
}
.aboutUs .tableContent table {
  width: 100%;
}
.aboutUs .tableContent table tbody {
  display: grid;
  gap: 15px;
}
.aboutUs .tableContent table tbody tr {
  display: grid;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d8e6f2;
}
@media screen and (min-width: 768px) {
  .aboutUs .tableContent table tbody tr {
    grid-template-columns: 150px 1fr;
  }
}
.aboutUs .tableContent table tbody tr:last-child {
  border-bottom: unset;
  padding-bottom: 0;
}
.aboutUs .tableContent table tbody tr th {
  font-weight: 700;
}
.aboutUs .aboutUsImgList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .aboutUs .aboutUsImgList {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*----------------- 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 {
  background: #fff;
  color: #0491d8;
  padding: 7px 10px;
  font-size: 1.4rem;
  font-weight: 600;
  border: 2px solid #0491d8;
  border-radius: 5px;
  z-index: 2;
  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: 500;
}
@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: #f1b729;
  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: 15px;
  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 .wp-block-file {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
#Post .wp-block-file a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
#Post .wp-block-file .wp-block-file__button {
  padding: 10px 25px;
  border-radius: 5px;
  background-color: #f1b729;
  font-weight: 600;
}
#Post .PostText a {
  color: #2370ca;
}
#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;
}

/*----------------- FORM ------------------ */
.Form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.Form .FormText {
  line-height: 1.8;
  text-align: left;
}
.Form dl {
  text-align: left;
}
.Form dl .must,
.Form dl .any {
  font-size: 1.2rem;
  color: #fff;
  background-color: #333;
  height: 26px;
  width: 60px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.Form dl .any {
  background-color: #fff;
  color: #333;
  border: 2px solid #333;
}
.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 --------*/
footer {
  background-color: #0491d8;
  color: #fff;
  padding: 30px 15px 20px;
}
@media screen and (min-width: 1200px) {
  footer {
    padding: 30px 0 20px;
  }
}
@media screen and (min-width: 1080px) {
  footer .FooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
  }
}
footer .FooterTop .Menu__content {
  position: unset;
  transform: unset;
  padding: 0 0;
  margin: 30px 0 20px;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content {
    margin: 0 0;
    width: 100%;
  }
}
footer .FooterTop .Menu__content .Menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 15px;
  font-weight: 600;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
  }
}
footer .FooterTop .Menu__content .Menu__list .Menu__item {
  font-size: 1.8rem;
}
footer .FooterTop .Menu__content .Menu__list .Menu__item.Btn {
  padding: 20px;
  margin: 0 0;
  border-bottom: unset;
  color: #fff;
  background-color: #f1b729;
  grid-column: 1/3;
  max-width: unset;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list .Menu__item.Btn {
    margin: 0 0;
    font-size: 1.4rem;
    max-width: 160px;
    padding: 15px;
    font-size: 1.8rem;
  }
}
footer .FooterTop .Menu__content .Menu__list .Menu__item.Btn::before {
  background: url(../img/icon/arrow-yellow.svg) no-repeat;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list .Menu__item.Btn::before {
    display: none;
  }
}
footer .privacy,
footer .Copyright {
  font-size: 1.2rem;
}
footer .FooterBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.Copyright {
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */