@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: 10px;
  aspect-ratio: 3/2;
}

.imgText {
  margin-top: 10px;
  font-size: 1.4rem;
}

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

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

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

.home .circular_board,
.home .kawaraban {
  padding: 30px 0;
}
@media screen and (min-width: 1080px) {
  .home .circular_board,
  .home .kawaraban {
    padding: 60px 0;
  }
}

.Title {
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  position: relative;
  line-height: 1;
  padding-left: 35px;
  display: grid;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .Title {
    font-size: 3rem;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .Title {
    font-size: 3.6rem;
    padding-left: 47px;
  }
}
.Title span {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .Title span {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1080px) {
  .Title span {
    font-size: 2.2rem;
  }
}
.Title .subtitle-en {
  color: #838383;
  font-weight: 500;
}
.Title .subtitle-jp {
  font-size: 2rem;
  margin-bottom: -3px;
}
@media screen and (min-width: 1080px) {
  .Title .subtitle-jp {
    font-size: 2.4rem;
  }
}
.Title::before {
  content: "";
  width: 27px;
  height: 27px;
  background-color: #4cc0da;
  position: absolute;
  border-radius: 2px;
  top: 54%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1080px) {
  .Title::before {
    width: 37px;
    height: 37px;
    border-radius: 4px;
  }
}

.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: 2rem;
  color: #3a3a3a;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

/* ------- BTN -------- */
.Btn {
  max-width: 400px;
  width: 100%;
  margin: 20px auto 0;
  position: relative;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  background-color: #4cc0da;
  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;
    margin: 40px auto 0;
  }
}
.Btn::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 17px;
  height: 17px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.Btn:hover::before {
  right: 20px;
  transition: all 0.3s;
}

.blank::before {
  content: "";
  background: url(../img/icon/blank.svg) no-repeat;
}

.download::before {
  content: "";
  background: url(../img/icon/download.svg) no-repeat;
}

.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;
  border-top: 2px solid #4cc0da;
}
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: 140px;
  width: 100%;
  z-index: 100;
}
.logo img {
  aspect-ratio: unset;
  border-radius: 0;
}
@media screen and (min-width: 1080px) {
  .logo {
    max-width: 160px;
  }
}

/*------------------- 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;
  }
}
nav .Menu__content .Menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .menu-item-1275,
  nav .Menu__content .Menu__list .menu-item-1274 {
    display: none;
  }
}
nav .Menu__content .Menu__list .Menu__item {
  padding-bottom: 15px;
  border-bottom: 1px solid #d8e6f2;
  font-size: 1.8rem;
  font-weight: 600;
  color: #3a3a3a;
}
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.4rem;
    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 auto;
  border-bottom: unset;
  font-size: 1.8rem;
  color: #fff;
  background-color: #f1b729;
  grid-column: 1/3;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item.Btn {
    margin: 0 0;
    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%;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  nav .Copyright {
    display: none;
  }
}

/*------------- HAMBERGER MENU ------------ */
.MenuBtn {
  display: flex;
  gap: 5px;
  padding: 10px;
  background-color: #4cc0da;
  color: #fff;
  font-size: 1.4rem;
  padding: 10px;
  border-radius: 5px;
  align-items: center;
  font-weight: 500;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (min-width: 1080px) {
  .MenuBtn {
    display: none;
  }
}
.MenuBtn .OpenBtn {
  width: 23px;
  height: 12px;
  position: relative;
  display: block;
  transition: all 0.3s;
}
.MenuBtn .OpenBtn span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: all 0.3s;
  position: absolute;
  border-radius: 50px;
}
.MenuBtn .OpenBtn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.MenuBtn .OpenBtn span:nth-of-type(3) {
  bottom: 0;
}
.MenuBtn .OpenBtn.active span:nth-of-type(1) {
  top: 50%;
  transform: rotate(30deg) translateY(-50%);
}
.MenuBtn .OpenBtn.active span:nth-of-type(2) {
  transform: scaleX(0);
}
.MenuBtn .OpenBtn.active span:nth-of-type(3) {
  bottom: 50%;
  transform: rotate(150deg) translateY(-50%);
}

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

.KeyVisual {
  height: 25vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .KeyVisual {
    height: 35vh;
  }
}
.KeyVisual .full {
  overflow: hidden;
  margin-bottom: 0;
}
.KeyVisual .full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 25vh;
}
@media screen and (min-width: 768px) {
  .KeyVisual .full div {
    height: 35vh;
  }
}
.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;
  bottom: 15px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  right: 15px !important;
  left: unset !important;
}
@media screen and (min-width: 1080px) {
  .KeyVisual .swiper-pagination {
    right: 3% !important;
    bottom: 5% !important;
  }
}
.KeyVisual .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 !important;
  background: #fff;
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (min-width: 1080px) {
  .KeyVisual .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
  }
}
.KeyVisual .swiper-pagination-bullet-active {
  background: #4cc0da;
}
.KeyVisual .KeyVisualCatch {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 10;
  display: grid;
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .KeyVisual .KeyVisualCatch {
    gap: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualCatch {
    left: 3%;
    width: 100%;
    bottom: 5%;
  }
}
.KeyVisual .KeyVisualCatch img {
  aspect-ratio: unset;
  border-radius: unset;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
  height: 35px;
}
@media screen and (min-width: 768px) {
  .KeyVisual .KeyVisualCatch img {
    height: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .KeyVisual .KeyVisualCatch img {
    height: 60px;
  }
}

/*-----------------  TOP ------------------ */
/*-----------------  KeySection ------------------ */
.KeySection {
  max-width: 800px;
  width: 100%;
  margin: 10px auto 0;
  padding: 0 15px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1080px) {
  .KeySection {
    margin: 30px auto 0;
  }
}
.KeySection .NewsContent {
  background-color: #fff;
  border-radius: 15px;
  display: grid;
  border: 3px solid #daa74c;
}
.KeySection .NewsContent .NewsContentTitleContent {
  background-color: #daa74c;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 7px 10px 10px;
  border-radius: 10px 10px 0 0;
}
.KeySection .NewsContent .NewsContentTitleContent .NewsContentTitle {
  position: relative;
  padding-left: 25px;
}
.KeySection .NewsContent .NewsContentTitleContent .NewsContentTitle::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../img/icon/news.svg) no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.KeySection .NewsContent .NewsList {
  padding: 10px;
}
.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 .NewsListText {
  -webkit-line-clamp: 1;
}
@media screen and (min-width: 1080px) {
  .KeySection .NewsContent .NewsList .NewsListItem a {
    display: block;
  }
}

/*-----------------  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/arrow-grey.svg) no-repeat;
  width: 16px;
  height: 16px;
  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 .NewsListText {
  padding-right: 20px;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}

.Date {
  font-size: 1.4rem;
  color: #656565;
  margin-bottom: 5px;
  line-height: 1 !important;
}
@media screen and (min-width: 1080px) {
  .Date {
    margin-bottom: 0;
  }
}

/*-----------------  TopMenu ------------------ */
.TopMenu .TopMenuList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .TopMenu .TopMenuList {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .TopMenu .TopMenuList {
    grid-template-columns: repeat(6, 1fr);
  }
}
.TopMenu .TopMenuList li img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: unset;
  aspect-ratio: unset;
}

/*-----------------  kawaraban ------------------ */
.circular_board .TitleContent,
.circular_board .BtnContent,
.kawaraban .TitleContent,
.kawaraban .BtnContent {
  padding: 0 15px;
}
@media screen and (min-width: 1200px) {
  .circular_board .TitleContent,
  .circular_board .BtnContent,
  .kawaraban .TitleContent,
  .kawaraban .BtnContent {
    padding: 0 0;
  }
}
@media screen and (min-width: 768px) {
  .circular_board .swiper,
  .kawaraban .swiper {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1200px) {
  .circular_board .swiper,
  .kawaraban .swiper {
    padding: 0 0;
  }
}
.circular_board .ImgContent img,
.kawaraban .ImgContent img {
  aspect-ratio: 1/1.414;
}

.circular_board .ImgContent {
  position: relative;
  z-index: 1;
}
.circular_board .ImgContent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: url(../img/kawaraban/kawaraban.png) no-repeat center center/cover;
}

/*-----------------  Event ------------------ */
.event .imgText {
  max-width: 800px;
  width: 100%;
  margin: 10px auto 0;
}

.eventList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3% 2%;
  background: url(../img/keijiban.png) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 370/319;
  padding: 14.5% 5% 10%;
  box-sizing: border-box;
  align-content: start;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  .eventList {
    padding: 110px 35px 75px;
    gap: 10px;
  }
}
.eventList .ImgContent img {
  aspect-ratio: 1/1.414;
  border-radius: 3px;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 7px !important;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #4cc0da;
}
.swiper .swiper-wrapper {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .swiper .swiper-wrapper {
    display: grid !important;
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    padding-bottom: unset;
  }
}
.swiper .swiper-wrapper li .ImgContent img {
  aspect-ratio: 1/1.414;
}

.circularListItem .circularListTextContent {
  margin-top: 10px;
  position: relative;
}
.circularListItem .circularListTextContent::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon/arrow-grey.svg) no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.circularListItem .circularListTextContent .circularListTitle {
  font-size: 1.8rem;
  font-weight: 600;
  padding-right: 15px;
}
@media screen and (min-width: 1080px) {
  .circularListItem .circularListTextContent .circularListTitle {
    font-size: 1.6rem;
  }
}
.circularListItem .circularListTextContent .Date {
  margin-top: 5px;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 7px !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #4cc0da;
}

.EventArchive .searchText {
  margin-bottom: 20px;
}
.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 #4cc0da;
  color: #4cc0da;
  border-radius: 5px;
  transition: all 0.3s;
  line-height: 1;
  font-weight: 600;
}
.EventArchive .categoryNav ul li a:hover {
  background: #4cc0da;
  color: #fff;
}
.EventArchive .categoryNav ul li.is-active a {
  background: #4cc0da;
  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 #3a3a3a;
  color: #3a3a3a;
  border-radius: 5px;
  font-weight: 600;
  line-height: 1;
  transition: background 0.3s, color 0.3s;
}
.EventArchive .archiveContainer .yearList li a:hover {
  background: #3a3a3a;
  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 ------------------ */
.AboutPage .aboutImgWrep {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.AboutPage .gridContent {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .AboutPage .gridContent {
    gap: 30px;
    grid-template-columns: 40% 1fr;
  }
}
@media screen and (min-width: 768px) {
  .AboutPage .gridContent .KeySectionImg {
    display: grid;
    gap: 15px;
  }
}
.AboutPage .gridContent .TextContent p:nth-child(1) {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
  color: #4cc0da;
}
@media screen and (min-width: 768px) {
  .AboutPage .gridContent .TextContent p:nth-child(1) {
    font-size: 3rem;
  }
}
.AboutPage .gridContent .TextContent p:nth-child(2) {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1;
}
.AboutPage .gridContent .TextContent p:nth-child(3) span {
  display: block;
  height: 10px;
}
.AboutPage .history ul {
  display: grid;
  gap: 15px;
}
.AboutPage .history ul li {
  padding-bottom: 15px;
  border-bottom: 1px solid #d8e6f2;
  display: grid;
  gap: 2px;
}
.AboutPage .history ul li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .AboutPage .history ul li {
    grid-template-columns: 170px 1fr;
    gap: 10px;
  }
}
.AboutPage .history ul li p:nth-child(1) {
  font-size: 1.8rem;
  color: #4cc0da;
  font-weight: 600;
}
.AboutPage .history ul li p:nth-child(2) {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .AboutPage .bylaws .BylawsContent {
    display: grid;
    grid-template-columns: 60% 1fr;
    align-items: center;
    gap: 30px;
  }
}
.AboutPage .bylaws .BylawsText p {
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .AboutPage .bylaws .Btn {
    margin: 0 0;
  }
}
.AboutPage .movie .movieContent {
  aspect-ratio: 16/9;
  background-color: #838383;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.AboutPage .movie .movieContent video {
  width: 100%;
  height: 100%;
}
.AboutPage .movie .movieContent .ComingSoon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
}
.AboutPage .GroupMap img {
  display: block;
  aspect-ratio: unset;
  border: 1px solid #d8e6f2;
}
.AboutPage .Activity ul {
  display: grid;
  gap: 15px;
  border-bottom: 1px solid #d8e6f2;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .AboutPage .Activity ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.AboutPage .Activity ul:last-child {
  border-bottom: unset;
  padding-bottom: unset;
  margin-bottom: unset;
}
.AboutPage .Activity ul li p:nth-child(1) {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}
.AboutPage .Activity ul li p:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #4cc0da;
  border-radius: 10px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.AboutPage .Activity ul li p:nth-child(2) {
  line-height: 1.5;
}

/*----------------- LOW KEYVISUAL ------------------ */
.LowKeyVisual {
  padding: 70px 15px;
  background: url(../img/KeyVisual/low-kv.png) no-repeat center 70%/cover;
  border-radius: 15px;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual {
    padding: 90px 30px;
  }
}
.LowKeyVisual .Title {
  color: #fff;
  margin-bottom: 0;
}

/* パンクズリスト */
.breadcrumb-trail {
  background-color: #f2f9ff;
  border-radius: 100px;
  font-family: "M PLUS 1", sans-serif !important;
  margin: 10px 15px 0 15px;
}
.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;
}

.aboutUs .tableContent {
  padding: 20px 15px;
  background-color: #fff;
  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;
    align-items: center;
  }
}
.aboutUs .tableContent table tbody tr:last-child {
  border-bottom: unset;
  padding-bottom: 0;
}
.aboutUs .tableContent table tbody tr th {
  font-weight: 700;
}
.aboutUs .tableContent table tbody tr td a {
  color: #2370ca;
  text-decoration: underline;
}
.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);
  }
}

/*----------------- question ------------------ */
.QList {
  display: grid;
  gap: 30px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.QList li {
  display: grid;
  gap: 10px;
}
.QList li .QListTitle {
  background-color: #8c8c8c;
  padding: 10px;
  border-radius: 7px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.QList li .QListTitle:nth-child(1) {
  font-size: 1.8rem;
}
.QList li .QListTitle p {
  line-height: 1.3 !important;
}
.QList li p {
  line-height: 1.5;
}

/*----------------- living_information ------------------ */
.living_information .crimeList {
  display: flex;
  gap: 15px 30px;
  flex-wrap: wrap;
}
.living_information .crimeList li {
  display: grid;
  gap: 5px;
}
.living_information .crimeList li a {
  color: #2370ca;
  position: relative;
  padding-right: 17px;
}
.living_information .crimeList li a::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/icon/blank_bl.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-45%);
}

/*----------------- Join ------------------ */
.join .Btn {
  margin: 20px auto 0;
}
.join .join-imgContent {
  margin-bottom: 30px;
}
.join .join-imgContent ul {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .join .join-imgContent ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
.join .join-imgContent ul li img {
  aspect-ratio: unset;
}
.join .join-divContent {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .join .join-divContent {
    grid-template-columns: repeat(3, 1fr);
  }
}
.join .join-divContent .join-divContent01 {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .join .join-divContent .join-divContent01 {
    grid-template-columns: repeat(3, 1fr);
    grid-column: 1/4;
  }
}
.join .join-divContent p {
  line-height: 1.5;
}
.join .join-divContent p a {
  text-decoration: underline;
  color: #2370ca;
}
.join .join-divContent .join-mb {
  margin-bottom: 10px;
}
.join .join-divContent .join-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #3a3a3a;
  line-height: 1;
}
.join .join-divContent .join-title span {
  font-size: 4rem;
  color: #4cc0da;
}
.join .join-divContent .join-title02 span {
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background-color: #f1b729;
}
.join .join-divContent .join-textBold {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.3;
}
.join .join-divContent .join-list {
  display: grid;
  gap: 10px;
}
.join .join-divContent .join-list li {
  display: flex;
  gap: 5px;
  align-items: center;
}
.join .join-divContent .join-list li p {
  font-size: 1.8rem;
  font-weight: 600;
}
.join .join-divContent .join-list li p:nth-child(1) {
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 100px;
  background-color: #f1b729;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join .join-divContent .join-border-top {
  padding-top: 30px;
  border-top: 1px solid #d8e6f2;
}
.join .join-divContent .join-textbox {
  padding: 10px;
  background-color: #f7f7f7;
  border-radius: 10px;
}
.join .join-divContent .join-textbox .join-mb {
  margin-bottom: 5px;
}
.join .join-divContent .join-textbox p:nth-child(1) {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .join .join-divContent .join-div04 {
    grid-column: 1/4;
  }
}
.join .join-divContent .join-div04 .join-div04Flex {
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .join .join-divContent .join-div04 .join-div04Flex {
    grid-template-columns: 62% 1fr;
    gap: 15px;
    align-items: center;
  }
}
.join .join-divContent .join-div05 .BtnContent:nth-child(3) .Btn {
  margin-top: unset;
}
@media screen and (min-width: 768px) {
  .join .join-divContent .join-div05,
  .join .join-divContent .join-div06 {
    position: relative;
  }
}
.join .join-divContent .join-div05::before,
.join .join-divContent .join-div06::before {
  content: "";
}
@media screen and (min-width: 768px) {
  .join .join-divContent .join-div05::before,
  .join .join-divContent .join-div06::before {
    position: absolute;
    top: 50%;
    right: -15px;
    width: 1px;
    height: 90%;
    transform: translateY(-50%);
    background-color: #d8e6f2;
  }
}

/*----------------- 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;
}

.pickupText {
  margin-top: 15px;
  font-size: 1.4rem;
  color: #2a2a2a;
  line-height: 1.3;
}
@media screen and (min-width: 1080px) {
  .pickupText {
    font-size: 1.6rem;
  }
}

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

.archiveSearch {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 20px;
}
.archiveSearch .archiveSearchLabel {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.archiveSearch select {
  font-size: 1.6rem;
  border-radius: 5px;
  background-color: #fcfcfc;
  border: 1px solid #d6d7d9;
  width: 100%;
  padding: 15px;
  text-align: left;
  -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;
}

@media screen and (min-width: 1080px) {
  .kawaraban .swiper-wrapper {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
.kawaraban .kawarabanList {
  display: grid;
  gap: 20px 15px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1080px) {
  .kawaraban .kawarabanList {
    grid-template-columns: repeat(5, 1fr);
  }
}
.kawaraban .kawarabanListItem .kawarabanListText {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
@media screen and (min-width: 1080px) {
  .kawaraban .kawarabanListItem .kawarabanListText {
    font-size: 1.6rem;
  }
}
.kawaraban .kawarabanListItem .kawarabanThumb {
  margin-bottom: 7px;
}
.kawaraban .kawarabanListItem .Date {
  margin-bottom: 0;
  margin-top: 5px;
}
.kawaraban {
  /*-- Single -- */
}
.kawaraban .btnOpenContent {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.kawaraban .btnOpenContent .btnOpen {
  text-align: center;
  position: relative;
  padding-right: 20px;
  justify-items: center;
  border-bottom: 1px solid #262626;
}
.kawaraban .btnOpenContent .btnOpen img {
  filter: brightness(0);
  width: 17px !important;
  height: 17px;
  background-size: contain;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  aspect-ratio: unset;
  border-radius: 0;
}
.kawaraban .PostText {
  margin: 20px 0 30px;
}
.kawaraban .btnDownload.Btn::before {
  background: url(../img/icon/download.svg) no-repeat;
  background-size: contain;
}
.kawaraban #Post {
  max-width: 660px;
}
.kawaraban #Post .pdfEmbed {
  border-radius: 5px;
  overflow: hidden;
}
.kawaraban #Post .pdfEmbed object {
  aspect-ratio: 1/1.414;
  height: auto;
}

.support .supportList {
  display: grid;
  gap: 20px 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .support .supportList {
    gap: 30px 15px;
  }
}
@media screen and (min-width: 1080px) {
  .support .supportList {
    grid-template-columns: repeat(4, 1fr);
  }
}
.support .supportList .supportListText {
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .support .supportList .supportListText {
    font-size: 1.8rem;
  }
}
.support .supportListItem a {
  position: relative;
  display: block;
}
.support .supportListItem .cat-badge {
  position: absolute;
  top: 7px;
  left: 7px;
}
@media screen and (min-width: 768px) {
  .support .supportListItem .cat-badge {
    top: 10px;
    left: 10px;
  }
}
.support .cat-badge {
  line-height: 1;
  display: block;
  padding: 6px;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .support .cat-badge {
    font-size: 1.6rem;
    padding: 7px 12px;
  }
}
.support .supportThumb {
  border: 1px solid #d8e6f2;
  border-radius: 10px;
}
.support .PostText {
  margin: 20px 0 30px;
}
.support .contactInfo .Title {
  margin-bottom: 5px;
}
.support .contactInfo .contactItem a {
  color: #2370ca;
}

/*--------------- 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: #bccbd8;
}
.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: #4cc0da;
  padding: 7px 10px;
  font-size: 1.4rem;
  font-weight: 600;
  border: 2px solid #4cc0da;
  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 .CardContent .Date {
  margin-bottom: 0;
}
#Post .catLabel {
  font-size: 1.2rem;
  padding: 8px 14px;
}
#Post .CardTitle {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #3a3a3a;
}
@media screen and (min-width: 768px) {
  #Post .CardTitle {
    font-size: 2rem;
  }
}
#Post h2.wp-block-heading {
  font-size: 2rem;
  position: relative;
  padding-left: 23px;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  #Post h2.wp-block-heading {
    font-size: 2.4rem;
  }
}
#Post h2.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 h3.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 10px;
  background-color: #ebebeb;
  border-radius: 5px;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  #Post h3.wp-block-heading {
    font-size: 2rem;
  }
}
#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 .wp-block-columns {
  gap: 20px;
  display: flex;
}
#Post .wp-block-columns a {
  color: #2370ca;
}
#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 .wp-block-file__embed {
  margin-bottom: 15px;
}
#Post .wp-block-file {
  font-size: 2rem;
  display: grid;
  justify-items: center;
}
#Post .wp-block-file__button {
  background: #4cc0da;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  display: block;
  padding: 5px 20px;
  margin-top: 10px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.8rem;
}

.BackBtn {
  margin: 0 auto;
}
.BackBtn::before {
  right: unset;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.BackBtn: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: #3a3a3a;
  height: 26px;
  width: 60px;
  border-radius: 100px;
  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: 30px;
}
.Form dl dd:last-child {
  margin-bottom: 0;
}
.Form dl .formNote {
  margin: 10px 0 15px;
}
.Form dl .fileContent p {
  display: grid;
  gap: 15px;
}
.Form dl .fileContent p br {
  display: none;
}
.Form dl .wpcf7-form-control-wrap {
  width: -moz-fit-content;
  width: fit-content;
}
.Form dl .wpcf7-form-control-wrap input[type=file] {
  width: 100%;
  font-size: 14px;
  position: relative;
}
.Form dl .wpcf7-form-control-wrap input[type=file]::file-selector-button {
  margin-right: 12px;
  padding: 8px 16px;
  background: #4cc0da;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.Form dl .wpcf7-form-control-wrap input[type=file]::file-selector-button:hover {
  opacity: 0.8;
}
.Form dl .wpcf7-form-control-wrap .file-clear-btn {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: #9c9c9c;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.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: #4cc0da;
  color: #fff;
  padding: 30px 15px 20px;
}
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 {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px 30px;
    flex-wrap: wrap;
    margin: 20px auto;
  }
}
footer .FooterTop .Menu__content .Menu__list .Menu__item {
  font-size: 1.8rem;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list .Menu__item {
    font-size: 1.6rem;
  }
}
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: 13px;
    font-size: 1.4rem;
    grid-column: unset;
  }
}
@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;
}

.guide ul {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .guide ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.guide ul li p:nth-child(2) {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 10px 0 5px;
}
.guide ul li p:nth-child(3) {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #9a9a9a;
}
.guide ul li p:nth-child(4) {
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */