img {
  width: 100%;
}

/* -------------------------------------------------
      body
  -------------------------------------------------- */
body {
  font-family: var(--fontNotoSansJP);
  font-weight: 400;
}

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

.container1080 {
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 20px;
  width: 100%;
}

@media screen and (max-width:1080px) {
  .container,
  .container1080 {
    max-width: calc(100% - 40px);
  }
}
/* ------------------------------------------------
    page-top
------------------------------------------------- */
.page__top {
  align-content: center;
  background-color: #fff;
  border: 2px solid #17ac4d;
  border-radius: 50%;
  bottom: 10px;
  color: #17ac4d;
  display: grid;
  font-family: var(--fontRoboto);
  font-size: 14px;
  font-weight: 700;
  gap: 3px 0;
  height: 64px;
  justify-items: center;
  letter-spacing: 0.05em;
  position: fixed;
  right: 10px;
  width: 64px;
  z-index: 100;
}

.page__top::before {
  border: 3px solid currentColor;
  border-bottom: 0;
  border-left: 0;
  box-sizing: border-box;
  color: #17ac4d;
  content: "";
  display: inline-block;
  height: 0.8em;
  line-height: 1;
  transform: translateY(25%) rotate(-45deg);
  vertical-align: middle;
  width: 0.8em;
}

.page__top:hover {
  background-color: #17ac4d;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.page__top:hover::before {
  color: #fff;
  transition: 0.3s ease-in-out;
}

/*　左の動き　*/

#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

/* -------------------------------------------------
      アニメーション
  -------------------------------------------------- */
.anime-floating-y {
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}

@media screen and (max-width: 767px) {
  .anime-floating-y {
    height: 100%;
    object-fit: cover;
  }
}

/* -------------------------------------------------
      header
  -------------------------------------------------- */
.header {
  background: #fff;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: calc(8px * 2) 0;
  width: calc(100vw - 40px);
}

.header__logo img {
  height: 58px;
  width: auto;
}

.header__nav {
  align-items: center;
  column-gap: calc(8px * 4);
  display: flex;
  justify-content: space-between;
}

.header__navList {
  column-gap: calc(8px * 3);
  display: flex;
  font-size: var(--fontSize16);
  font-weight: bold;
}

.header__navList li a {
  color: var(--colorBlack);
  transition: opacity 0.3s ease-in-out;
}

.header__navList li a:hover {
  opacity: 0.6;
}

.header__navList li span {
  margin-right: calc(8px * 1);
  position: relative;
  top: -1px;
}

.header__navList li span:nth-last-child(1) {
  margin-right: 4px;
}

.header__navList li img {
  height: 17px;
  width: 17px;
}

@media screen and (max-width:1024px) {
  .header__inner {
    padding: 0 0 0 30px;
    width: auto;
  }

  .header__navList {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header {
    background-color: transparent;
    transition: background-color 0.2s ease-in-out;
    z-index: 1001;
  }
  .header.activeHead {
    background-color: rgba(255,255,255,0.8);
  }
	.header__logo img {
		height: 50px;
	}
}

/* sp */
.commonHeader__toggle {
  display: none;
}
.toggleMenu {
  display: none;
}

@media screen and (max-width: 1024px) {
  .toggleMenu {
    display: block;
  }

  .toggleMenu__inner a {
    display: flex;
    gap: 0 8px;
  }

  .toggleMenu__inner img {
    height: auto;
    width: 20px;
  }

  .commonHeader {
    height: 50px;
    left: 0;
    padding: 0 0 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }

  .commonHeader__logo img {
    height: 36px !important;
  }

  .commonHeader__nav {
    display: none;
  }

  .commonHeader__toggle {
    background-color: #4a943c;
    cursor: pointer;
    display: block;
    height: 72px;
    position: relative;
    right: 0;
    top: 0;
    width: 72px;
  }

  .commonHeader__toggle span {
    background: #fff;
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 28%;
    transition: 0.3s;
    width: 30px;
  }

  .commonHeader__toggle span:nth-of-type(1) {
    top: 41%;
  }

  .commonHeader__toggle span:nth-of-type(3) {
    top: 55%;
  }

  .hamburger__text::after {
    bottom: 10px;
    color: #fff;
    content: "menu";
    font-size: 12px;
    font-weight: 400;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }

  .is-active .commonHeader__toggle span:nth-of-type(1) {
    top: 42%;
    transform: rotate(45deg);
    width: 36px;
  }

  .is-active .commonHeader__toggle span:nth-of-type(2) {
    display: none;
  }

  .is-active .commonHeader__toggle span:nth-of-type(3) {
    top: 42%;
    transform: rotate(-45deg);
    width: 36px;
  }

  /* .is-active .commonHeader__toggle span:nth-of-type(3)::after {
    content:"Close";
    transform: translateY(0) rotate(45deg);
    top:5px;
    left:4px;
  } */

  .commonHeader__toggle.open .hamburger__text::after {
    content: "Close";
  }



  .toggleMenu {
    background: #fff;
    height: calc(100vh);
    left: 0;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }

  .toggleMenu__inner {
    height: 100%;
    margin: 0 auto;
    padding-top: 160px;
    row-gap: calc(8px * 5);
    width: 300px;
  }

  .toggleMenu__list li {
    font-size: 18px;
    line-height: 2.15;
    text-align: center;
  }

  .toggleMenu__list li .navDrawer__link,
  .toggleMenu__list li.header__navSearch {
    border-bottom: 1px solid #e6e6e6;
    color: var(--colorBlack);
    line-height: 1;
    padding: 28px 0;
    text-align: start;
  }

  .navDrawer__link,
  .header__drawerLink,
  .header__drawerTitle {
    position: relative;
  }

  .navDrawer__link::after,
  .header__drawerLink::after {
    border-bottom: 2px solid var(--colorGreen);
    border-right: 2px solid var(--colorGreen);
    content: "";
    height: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    width: 12px;
  }

  .header__drawerTitle::before,
  .header__drawerTitle::after {
    background: var(--colorGreen);
    content: "";
    height: 2px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
  }

  .header__drawerTitle::after {
    transform: translateY(-50%) rotate(90deg);
    transition: 0.3s ease-out;
  }

  .active .header__drawerTitle::after {
    transform: translateY(-50%);
  }

  .toggleMenu__list li.header__navSearch .header__drawerTitle {
    display: flex;
    gap: 8px;
  }

  .header__drawerTitle span {
    align-self: center;
    background: url(../images/icon-search_glass.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 19px;
    width: 18px;
  }

  .commonHeader__navItem {
    line-height: 2.15;
  }

  .commonHeader__navItem--contact img {
    top: -8px;
  }

  .header__acodBody {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .header__navSearch .js-acodInner {
    box-sizing: border-box;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    max-width: calc(100% - 25px);
    padding: 28px 0 0;
  }
}
/* -------------------------------------------------
      breadcrumb
  -------------------------------------------------- */
.breadcrumb {
  margin-top: calc(8px * 4);
}

.breadcrumb__list {
  align-items: center;
  column-gap: calc(8px * 6);
  display: flex;
}

.breadcrumb__list li {
  color: var(--colorlightGray);
  font-size: var(--fontSize14);
  position: relative;
}

.breadcrumb__list li:nth-child(1),
.breadcrumb__list li:nth-child(2) {
  min-width: fit-content;
}

.breadcrumb__list li:nth-child(3) {
  line-height: 1.6;
}

.breadcrumb__list li::before {
  border-right: 1px solid #808080;
  border-top: 1px solid #808080;
  bottom: 0;
  content: "";
  height: 0.4em;
  left: calc(-8px * 3);
  margin: auto;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: middle;
  width: 0.4em;
}

.breadcrumb__list li:first-child::before {
  display: none;
}

.breadcrumb__list li a {
  color: var(--colorBlack);
  transition: opacity 0.3s ease-in-out;
}

.breadcrumb__list li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .breadcrumb__list {
    gap: calc(8px * 3);
    row-gap: 8px;
  }
  .breadcrumb__list li:not(:last-child)::before {
    left: unset;
    right: calc(-8px * 2);
    top: 2px;
  }
  .breadcrumb__list li:first-child::before {
    display: block;
  }
  .breadcrumb__list li:last-child::before {
    display: none;
  }
}

/* -------------------------------------------------
      mainvisual
  -------------------------------------------------- */
.mainvisual {
  align-items: center;
  display: flex;
  height: 330px;
  position: relative;
  width: 100%;
}

.mainvisual__floating {
  left: 0;
  position: absolute;
  top: 20%;
  width: 100%;
}

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

.mainvisual__catch--title {
  color: var(--colorBlack);
  font-size: var(--fontSize48);
  font-weight: bold;
}

.mainvisual__catch--lead {
  color: var(--colorGreen);
  font-family: var(--fontRoboto);
  font-size: var(--fontSize16);
  font-weight: bold;
  margin-top: calc(8px * 2);
}

.mainvisual__illust {
  align-items: flex-end;
  bottom: 0;
  column-gap: calc(8px * 4);
  display: flex;
  position: absolute;
  right: calc(8px * 2);
}

.mainvisual__illust--img.is-first img {
  height: 9.5vw;
  width: auto;
}

.mainvisual__illust--img.is-second img {
  height: 11.7vw;
  width: auto;
}

.mainvisual__illust--img.is-third img {
  height: 9.5vw;
  width: auto;
}
@media screen and (max-width:1024px) {
  .mainvisual__inner {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 767px) {
  .mainvisual__floating {
    height: 100%;
  }
  .mainvisual {
    height: 180px;
  }
  .mainvisual__catch--title {
    font-size: 26px;
  }
}

/* -------------------------------------------------
      button
  -------------------------------------------------- */
.buttonSearch {
  align-items: center;
  background: var(--colorGreen);
  border-radius: 40px;
  color: #fff;
  display: flex;
  font-size: var(--fontSize16);
  font-weight: bold;
  justify-content: center;
  letter-spacing: 2px;
  padding: calc(8px * 2) 0;
  text-align: center;
  transition: 0.3s ease-in-out;
  width: 190px;
}

.buttonSearch:hover {
  opacity: 0.8;
}

.buttonSearch span {
  margin-right: calc(8px * 1);
}

.buttonSearch span img {
  height: 17px;
  width: 17px;
}

.whiteBtn {
  align-items: center;
  background-color: #fff;
  border: 3px solid var(--colorBlack);
  border-radius: 40px;
  box-shadow: 3px 6px 0 rgba(0, 0, 0, 0.4);
  color: var(--colorBlack);
  display: flex;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize15);
  font-weight: 700;
  height: 54px;
  justify-content: center;
  margin: 80px auto 40px;
  max-width: 240px;
  position: relative;
  transition: 0.3s ease-in-out;
  width: 100%;
}

.koremouLinks .whiteBtn {
  max-width: 190px;
}

.koremouLinks .whiteBtn::after {
  right: 6%;
}

.whiteBtn:hover,
.caseStudy__column--item:has(a:hover) .whiteBtn {
  background: var(--colorBlack);
  color: #fff;
}

.ChevronRight,
.Chevronleft {
  position: relative;
}

.ChevronRight::after {
  background-image: url(../images/top/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 14px;
  position: absolute;
  right: 15px;
  top: 51%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
  width: 8px;
}

.ChevronLeft::after {
  background-image: url(../images/top/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 14px;
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: 0.3s ease-in-out;
  width: 8px;
}


.ChevronRight.ChevronWhite::after {
  background-image: url(../images/top/arrow-white.svg);
}

.ChevronRight.ChevronWhite:hover::after,
.is-greenbtn.whiteBtn.ChevronRight:hover::after {
  background-image: url(../images/top/arrow-green.svg);
  filter: brightness(1);
  mix-blend-mode: unset;
}

.is-greenbtn.openButton::after {
  background: url(../images/icon_open_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 16px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
  width: 16px;
}

.is-greenbtn.openButton:hover::after {
  background: url(../images/icon_open_green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.whiteBtn.ChevronLeft:hover::before,
.whiteBtn.ChevronRight:hover::before,
.whiteBtn.ChevronLeft:hover::after,
.whiteBtn.ChevronRight:hover::after,
.whiteBtn:hover span.ChevronLeft,
.caseStudy__column--item:has(a:hover) .whiteBtn.ChevronLeft::after,
.caseStudy__column--item:has(a:hover) .whiteBtn.ChevronRight::after {
  filter: brightness(4);
  mix-blend-mode: plus-lighter;
}
/* -------------------------------------------------
      topBottom
  -------------------------------------------------- */
.topBottom {
  background-image: url(../images/top/img-top_bottom_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
}

.topBottom__box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: -65px;
}

.topBottom__box1,
.topBottom__box2,
.topBottom__box3 {
  background-color: #fff;
  background-image: url(../images/top/img-top_bottom_frame.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.topBottom__box1.long,
.topBottom__box2.long,
.topBottom__box3.long {
  background-color: #fff;
  background-image: url(../images/top/img-top_bottom_frame-long.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.topBottom__inner {
  border: 4px solid var(--colorGreen);
  border-radius: 16px;
  box-shadow: 6px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  max-width: 347px;
  outline-offset: -4px;
  padding: 0;
  transition: 0.3s ease-in-out;
  width: 31.3%;
}

.topBottom__inner:hover {
  box-shadow: 8px 8px rgba(0, 0, 0, 0.4);
}

.topBottom__inner a {
  color: #333;
  display: block;
  padding: 20px 0;
  width: 100%;
}

.topBottom__inner--once {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
  max-width: calc(100% - 54px);
  width: 100%;
}

@media screen and (max-width:1060px) and (min-width:1000px) {
  .topBottom__inner--once {
    max-width: calc(100% - 40px);
  }
}
.topBottom__logo {
  align-content: flex-end;
  display: flex;
  height: 52px;
  margin: 0 auto;
  width: 220px;
}

.contactPage .topBottom__logo {
  align-content: center;
}

.topBottom__dot {
  background-image: linear-gradient(to right, var(--colorGreen) 8px, transparent 8px);
  background-position: center;
  background-repeat: repeat-x;
  background-size: 16px 4px;
  height: 4px;
  margin: 16px auto 0;
  width: 206px;
}

.contactPage .topBottom__dot {
  margin: 20px auto 0;
}

.topBottom__inner--text {
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: 400;
  line-height: 1.86;
  margin-top: 22px;
  text-align: center;
}

.topBottom__inner---search {
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: bold;
  line-height: 1.86;
  margin: 24px auto 0;
  padding-right: 8px;
  position: relative;
  text-align: center;
  width: fit-content;
}

.topBottom__inner---search::after {
  background-image: url(../images/top/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 14px;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 8px;
}

@media screen and (max-width:1024px) {
  .topBottom__inner--once {
    width: calc(100% - 20px);
  }
  .buttonSearch {
    display: none;
  }
  .topBottom__inner {
    width: 100%;
  }
  .topBottom__inner a {
    min-width: 340px;
    padding: 12px 0;
  }
}

@media screen and (max-width:767px) {
  .topBottom {
    height: auto;
  }
  .topBottom__dot {
    margin: 12px auto 0;
  }
  .topBottom__inner---search {
    margin: 16px auto 12px;
  }
}

@media screen and (max-width: 550px) {
  .topBottom__inner {
    max-width: 340px;
    width: 100%;
  }
  .topBottom__logo {
    align-content: center;
  }
  .topBottom__inner a {
    min-width: unset;
    padding: 11px 0;
  }
}
/* -------------------------------------------------
      greenDotted__title
  -------------------------------------------------- */
.greenDotted__title {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize28);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 60px;
  padding: 0 20px;
  text-align: center;
}

.greenDotted__title.smallMargin {
  margin-bottom: 10px;
}

.greenDotted {
  background-image: linear-gradient(to right, var(--colorGreen) 8px, transparent 8px);
  background-position: center;
  background-repeat: repeat-x;
  background-size: 16px 4px;
  display: block;
  height: 4px;
  margin: 18px auto 0;
  width: 206px;
}

@media screen and (max-width: 767px) {
  .greenDotted {
    margin-top: 16px;
  }
  
  .greenDotted__title.smallMargin {
    margin-bottom: 40px;
  }
}
/* -------------------------------------------------
      footer
  -------------------------------------------------- */
.footerTop {
  background-color: var(--colorGreen);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 51px 5% 72px;
}
.footerTop__illustBox {
  position: relative;
}
.footerTop__illustInner {
  bottom: -72px;
  display: flex;
  flex-wrap: wrap;
  max-width: 770px;
  position: absolute;
}
.footerTop__bg {
  height: auto;
  margin-bottom: 17px;
  width: 90%;
}
.footerTop__illust1 {
  height: auto;
  margin-right: 10%;
  width: 40%;
}
.footerTop__illust2 {
  align-content: end;
  display: flex;
  height: auto;
  position: relative;
  width: 44%;
}
.footerTopNav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 168px;
}
.footerTopNavList {
  border-right: 1px solid #fff;
  display: grid;
  gap: 24px;
  padding-left: 60px;
}
.footerTopNavList:nth-child(2) {
  border: none;
}
.footerTopNavList__item {
  color: #fff;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize16);
  font-weight: 700;
}

.footerTopNavList__item a {
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}

.footerTopNavList__item a:hover {
  opacity: 0.8;
}

.footerTopNavSearch a {
  line-height: 1.4;
  padding-left: 4px;
  position: relative;
}

.footerTopNavSearch a::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: -13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.footerTopNavSearch__item {
  color: #fff;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: 400;
  transition: opacity 0.3s ease-in-out;
}

.footerTopNavSearch__item:hover {
  opacity: 0.8;
}

.footerTopNavList__item p {
  color: #fff;
  display: flex;
  gap: 0 8px;
}

.footerTopNav .footerTopNavList:last-child .footerTopNavList__item a {
  color: #fff;
  display: grid;
  gap: 8px;
  grid-template-columns: 18px auto;
}

.footerTopNavSearch {
  display: grid;
  gap: 17px 0;
  margin-top: 17px;
  padding-left: 40px;
}
.footerBottom {
  background-color: #fff;
}
.footerBottom {
  align-items: center;
  display: flex;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize12);
  font-weight: 400;
  gap: 0 40px;
  justify-content: center;
  padding: 51px 0;
}
.footerBottom__logo {
  height: auto;
  width: 171px;
}
.footerBottomNav {
  align-self: flex-end;
  display: grid;
  gap: 13px 0;
}
.footerBottomNavList {
  display: flex;
  gap: 0 18px;
}
.footerBottomNavList__item {
  display: flex;
  gap: 0 6px;
}

.footerBottomNavList__item a {
  color: var(--colorBlack);
}

.footerBottomNavList__item::after {
  content: url(../images/icon_open.svg);
}

.footerBottomNavList__item:nth-of-type(1):after {
	content: none;
}
@media screen and (max-width:1024px) {
  .footerTop {
    grid-template-columns: 35% 65%;
    padding: 30px 5%;
  }
  .footerTop__illustInner {
    bottom: -30px;
  }
  .footerTopNavList {
    gap: 14px 0;
    padding-left: 30px;
  }
  .footerTopNavSearch {
    padding-left: 20px;
  }
}
@media screen and (max-width:767px) {
  .footerTop {
    grid-template-columns: 1fr;
  }
  .footerTopNav {
    height: auto;
    order: 1;
  }
  .footerTopNavList {
    padding-left: 10px;
  }
  .footerTop__illustBox {
    display: flex;
    justify-content: center;
    order: 2;
    position: absolute;
    top: -16vw;
  }

  .footerTop__illustInner {
    position: unset;
  }
  .footerBottom {
    display: grid;
    gap: 10px 0;
    justify-items: center;
    padding: 30px 20px;
  }

  .footerBottomNavList {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footerTop__illustInner {
    width: 50%;
  }
  .footer__copyright {
    text-align: center;
  }
  .footerTop {
    padding: 80px 20px 30px 20px;
    position: relative;
  }
}
@media screen and (max-width:450px) {
  .footerTop__illustBox {
    top: -26vw;
  }
  .footerTop__illustInner {
    width: 70%;
  }
  .footerTop {
    padding: 40px 20px 30px 20px;
  }
  .footerTopNav {
    gap: 17px;
  }
  .footerTopNavList {
    border: none;
  }
  .footerTop__illust2 {
    bottom: -5px;
  }
  .footerBottomNavList__item {
    line-height: 2;
  }
}

/* ------------------------------------------------
      event 一覧
  ------------------------------------------------ */
.eventInnerList {
  display: grid;
  gap: 40px 30px;
  grid-template-columns: repeat(3,1fr);
  margin-top: 40px;
}

.eventInnerListBox {
  border-bottom: 1px solid #707070;
  padding-bottom: 80px;
}

.eventInnerList__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.eventInnerList__img {
  height: 226px;
  margin-bottom: 24px;
  transition: 0.3s ease-in-out;
}

.eventInnerList__img img {
  aspect-ratio: 3 / 2;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.eventInnerList__logo {
  height: 30px;
}

.eventInnerList__logo .logo__1 {
  height: auto;
  width: 100%;
}

.eventInnerList__logo .logo__2 {
  height: auto;
  max-width: 150px;
  width: 100%;
}

.eventInnerList__logo .logo__3 {
  height: auto;
  max-width: 150px;
  width: 100%;
}

.eventInnerList__logo .logo__1.gransta__logo {
  max-width: 120px;
}

.eventInnerList__logo .logo__1.ecute__logo {
  max-width: 90px;
  position: relative;
}

.eventInnerList__logo .logo__6.cial__logo ,
.eventInnerList__logo .logo__6.lusca__logo {
  width: fit-content;
}

.eventInnerList__item:hover .eventInnerList__img {
  filter: brightness(1.1);
}

.eventInnerList__item:has(.noHover):hover .eventInnerList__img {
  filter: brightness(1);
}

.eventInnerList__title {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize18);
  font-weight: 700;
  line-height: 2;
  margin-top: 4px;
}

.eventInnerList__date {
  color: var(--colorBlack);
  display: flex;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize18);
  font-weight: 500;
  gap: 0 8px;
  margin-top: 14px;
}

.eventInnerList__date--text {
  border: 1px solid var(--colorGreen);
  border-radius: 5px;
  color: var(--colorGreen);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize10);
  font-weight: 500;
  padding: 4px 6px;
  width: fit-content;
}

.eventInnerList__text {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: 400;
  line-height: 2;
  margin: 16px 0;
  text-align: start;
}

.eventInnerList__btn {
  color: var(--colorGreen);
  display: flex;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: 700;
  justify-content: end;
  margin-top: auto;
  padding-right: 25px;
  position: relative;
}

.eventInnerList__btn::after {
  background-image: url(../images/icon_open_green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 14px;
  position: absolute;
  right: 5px;
  top: 56%;
  transform: translateY(-50%);
  width: 12px;
}

@media screen and (max-width:1024px) {
  .eventInnerList__date {
    flex-wrap: wrap;
    font-size: var(--fontSize14);
    gap: 8px 16px;
  }

  .eventInnerList__text {
    font-size: 12px;
  }

  .eventInnerList {
    gap: 30px 20px;
  }
}

@media screen and (max-width:767px) {
  .eventInnerList {
    grid-template-columns: 1fr 1fr;
    margin: 40px auto;
  }

  .eventInnerList__date--text {
    width: 58px;
  }
  .eventInnerList__img {
    margin-bottom: 18px;
  }
  .eventInnerListBox {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 500px) {
  .eventInnerList {
    grid-template-columns: 1fr;
  }
}
/* -------------------------------------------------
      click__contactBox
  -------------------------------------------------- */
.click__contact {
  margin-bottom: 80px;
}
.click__contactBox {
  background-color: var(--colorSkin);
  /* background-image: url(../images/flow/flow_contactBox_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  padding: 60px 40px;
  position: relative;
}

.contactBox__bg {
  position: absolute;
}

.contactBox__bg--bl {
  bottom: 0;
  height: auto;
  left: 0;
  max-width: 214px;
  width: 30%;
}

.contactBox__bg--tr {
  height: auto;
  max-width: 193px;
  right: 0;
  top: 0;
  width: 27%;
}

.contactBox__bg--tl {
  height: auto;
  left: 5%;
  max-width: 54px;
  top: 9%;
  width: 8%;
}

.contactBox__bg--br {
  height: auto;
  left: 82%;
  max-width: 94px;
  top: 79%;
  width: 13%;
}

@media screen and (max-width: 500px) {
  .contactBox__bg--br {
    left: 75%;
    max-width: 64px;
    top: 89%;
    width: 100%;
  }
  .contactBox__bg--bl {
    width: 35%;
  }
  .contactBox__bg--tr {
    width: 32%;
  }
  .contactBox__bg--tl {
    left: 6%;
    max-width: 44px;
    top: 6%;
    width: 100%;
  }
}


.click__contactBox--title {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize32);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.click__contactBox--text {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize16);
  font-weight: 400;
  line-height: 2;
  margin-top: 35px;
  text-align: center;
}

.click__contactBox--text a {
  color: #0571aa;
  text-decoration: underline;
}

.click__contactBox--btn {
  align-items: center;
  background-color: var(--colorGreen);
  border: 3px solid var(--colorBlack);
  border-radius: 40px;
  box-shadow: 3px 6px 0 rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize15);
  font-weight: 700;
  height: 54px;
  justify-content: center;
  left: 50%;
  margin-top: 40px;
  max-width: 240px;
  position: relative;
  transform: translateX(-50%);
  transition: 0.3s ease-in-out;
  width: 100%;
}

.click__contactBox--btn:hover {
  background: #fff;
  border: 3px solid var(--colorGreen);
  color: var(--colorGreen);
}
/* -------------------------------------------------
    詳細ページ
  -------------------------------------------------- */
.Post__inner {
  margin-top: 40px;
}

.Post__cat {
  border-radius: 27px;
  color: #fff;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize12);
  font-weight: 500;
  padding: 5px 30px;
  width: fit-content;
}

.Post__cat.yellow {
  background-color: var(--colorYellow);
}

.Post__catInner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 16px auto 40px;
}

.Post__cat--name {
  color: var(--colorBlack);
  font-family: var(--fontZenKaku);
  font-size: var(--fontSize30);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.Post__cat--text {
  color: var(--colorBlack);
  font-family: var(--fontMontSerrat);
  font-size: var(--fontSize20);
  font-weight: 400;
  line-height: 1.5;
}

.exampleContents {
  margin-top: 40px;
}

.Post__catch {
  color: var(--colorBlack);
  font-family: var(--fontZenKaku);
  font-size: var(--fontSize24);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.Post__catColumn--column {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
}

.searchPost .Post__catColumn--logo img {
  height: 30px;
  width: auto;
}

.post__contactButton {
  align-items: center;
  background: var(--colorGreen);
  border-radius: 22px;
  color: #fff;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 43px;
  justify-content: center;
  max-width: 228px;
  transition: 0.3s ease-in-out;
  width: 100%;
}

.post__contactButton:hover {
  opacity: 0.6;
}

.Post__text {
  color: var(--colorBlack);
  font-family: var(--fontZenKaku);
  font-size: var(--fontSize16);
  font-weight: 400;
  line-height: 1.875;
  text-align: start;
}

.Post__img {
  height: 590px;
  margin: 40px auto 10px;
  text-align: center;
}

.Post__img img {
  height: 100%;
  width: auto;
}

@media screen and (max-width: 1100px) {
  .Post__img {
    height: 360px;
  }

  .Post__img img {
    object-fit: contain;
  }
}

.Post__deta {
  align-items: center;
  display: flex;
  gap: 0 32px;
}

.Post__place,
.Post__area {
  color: var(--colorlightGray);
  display: flex;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: 400;
  gap: 0 8px;
  position: relative;
}

.Post__place span {
  background: url(../images/flow/icon-area.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 16px;
  margin-right: 8px;
  position: relative;
  width: 9px;
}

.Post__area span {
  background: url(../images/flow/icon-sitearea.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 16px;
  margin-right: 8px;
  position: relative;
  width: 18px;
}

.postContents__main:has(.postContents__schedule) {
  display: grid;
  grid-template-columns: 56% 39%;
  justify-content: space-between;
}

.scheudleYear {
  color: var(--colorGreen);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.postContents__sheduleGroup {
  background: rgba(204, 204, 204, 0.23);
  border-radius: 9px;
  margin-top: 20px;
  padding: 20px;
}

.postContents__sheduleGroup--list {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.postContent__scheduleRow {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}

.postContents__month {
  color: var(--colorGreen);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.postContents__month span {
  font-size: 22px;
}

.toggleMenu__inner .toggleMenu__list {
  margin-top: -80px;
}

.header__navSearch {
  position: relative;
  z-index: 1;
}

.postContents__scheduleList {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
}

.postContents__scheduleItem {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.postContents__scheduleItem::before {
  background-color: var(--colorGreen);
  border-radius: 50%;
  content: "";
  height: 11px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 11px;
}

@media screen and (max-width: 767px) {
  .Post__catInner {
    grid-template-columns: 1fr;
  }
}

.header__navSearch .buttonSearch {
  cursor: pointer;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.header__drawerTitle {
  color: var(--colorBlack);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.header__drawerLink {
  align-items: center;
  background: #f3f3f3;
  border-radius: 6px;
  color: #000;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  height: 60px;
  justify-content: flex-start;
  line-height: 1.5;
  padding-left: 25px;
  text-align: center;
  width: 100%;
}

/* swiper */

.Post__swiper {
  padding: 5px 0;
}

.Post__swiper--wrapper.startCentered {
  justify-content: center;
}

.Post__swiper--slide {
  cursor: pointer;
  height: 100px;
  max-width: fit-content;
}

.Post__swiper--slide img {
  height: 100%;
  transition: box-shadow 0.3s ease-in-out;
  width: auto;
}

.Post__swiper--slide img:hover {
  box-shadow: 4px 4px 1px rgba(0, 0, 0, 0.4);
}

.swiperContainer {
  position: relative;
}

.Post__swiper--buttonPrev {
  left: -40px;
}

.Post__swiper--buttonNext {
  right: -40px;
}

.Post__swiper--buttonPrev:after,
.Post__swiper--buttonNext:after {
  color: #707070;
  font-size: unset;
  height: 21px;
  width: 12px;
}

@media screen and (max-width: 1024px) {
  .Post__swiper--buttonPrev {
    left: -15px;
  }

  .Post__swiper--buttonNext {
    right: -15px;
  }
}

@media screen and (max-width: 767px) {
  .swiperContainer {
    margin: 0 auto;
    max-width: calc(100% - 20px);
    position: relative;
  }
  .Post__swiper--buttonPrev {
    left: -20px;
  }

  .Post__swiper--buttonNext {
    right: -20px;
  }
}
