@charset "UTF-8";
/*
Theme Name: IDEA Rocky 公式サイト
Description: IDEA Rocky 公式サイト
Version: 1.0
*/
/*------------ COMMON SETTING ------------ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px !important;
  font-size: 62.5%;
}

body {
  color: #fff;
  font-family: futura, Noto Sans JP, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

.home main {
  z-index: unset;
}

main {
  overflow: hidden;
  width: 100%;
  background-color: #333;
  position: relative;
  z-index: 2;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.lightbox img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

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: 60px 15px;
}
@media screen and (min-width: 1080px) {
  section {
    padding: 80px 15px;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding: 80px 0;
  }
}

.Title {
  margin-bottom: 40px;
  font-size: 6rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .Title {
    font-size: 10rem;
  }
}
.Title span {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .Title span {
    font-size: 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;
  }
}

/* ------- Shutter -------- */
#shutter {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #090909;
  z-index: 9999;
  transition: all 1.5s;
}
#shutter #shutter_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#shutter #shutter_logo img {
  max-width: 300px;
  width: 100%;
}

@keyframes logo {
  from {
    opacity: 1;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
/* ------- BTN -------- */
.Btn {
  margin: 40px auto 0 auto;
  padding: 23px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  display: block;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s;
  position: relative;
  background-color: #0d0d0d;
  line-height: 1;
}
.Btn::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all 0.3s;
}
.Btn:hover {
  opacity: 1;
  transition: all 0.3s;
}
.Btn:hover::before {
  right: 25px;
  transition: all 0.3s;
}
@media screen and (min-width: 400px) {
  .Btn {
    max-width: 400px;
  }
}

/* 共通設定 */
/*----------------- HEADER ----------------- */
header {
  width: 100%;
  position: absolute;
  height: 65px;
  top: -65px;
}
header .HeaderInner {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  header .HeaderInner {
    padding: 15px 30px;
  }
}
header .HeaderInner .Logo .bk {
  display: none;
}

.Logo {
  max-width: 90px;
  z-index: 100;
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .Logo {
    max-width: 100px;
  }
}
.Logo a:hover {
  opacity: 1;
}
.Logo .hidden {
  display: none !important;
}
.Logo .block {
  display: block !important;
}

.is-animation {
  background-color: rgba(255, 255, 255, 0.9411764706);
  transition: all 1s;
  filter: drop-shadow(0 2px 3px rgba(64, 64, 64, 0.062745098));
}
.is-animation .OpenBtn span {
  background-color: #2d2d2d;
}

.HeaderInner.is-animation {
  left: 15px;
  right: 15px;
  top: 15px;
  width: auto;
  border-radius: 5px;
  padding: 15px;
}
@media screen and (min-width: 1080px) {
  .HeaderInner.is-animation {
    padding: 15px 30px;
  }
}
.HeaderInner.is-animation .Logo .bk {
  display: block;
}
.HeaderInner.is-animation .Logo .wh {
  display: none;
}

/*------------------- NAV ------------------ */
nav {
  width: auto;
  height: 100vh;
  opacity: 0;
  padding: 15px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9490196078);
  text-align: center;
  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;
    background: unset;
  }
}

.Menu__content {
  width: 100%;
  flex-direction: column;
  padding: 0 15px;
}
@media screen and (min-width: 1080px) {
  .Menu__content {
    flex-direction: row;
    position: unset;
    transform: unset;
    padding: 0 0;
  }
}
.Menu__content .Menu__list {
  color: #262626;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
  padding-top: 20px;
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list {
    color: #fff;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
    gap: 30px;
    position: unset;
    transform: unset;
  }
}
.Menu__content .Menu__list .Menu__item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 2.4rem;
  transition: all 0.3s;
  border-bottom: 1px solid #ddd;
  font-weight: 500;
  width: 100%;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item {
    width: -moz-fit-content;
    width: fit-content;
    font-size: var(--font-size-16);
    white-space: nowrap;
    margin: 0 0;
    border-bottom: unset;
    padding-bottom: unset;
  }
}
.Menu__content .Menu__list .Menu__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.Menu__content .Menu__list .Menu__item::before {
  content: "";
  background: url(../img/icon/arrow-bk.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-150%);
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item::before {
    display: none;
  }
}
.Menu__content .Menu__list .Menu__item:hover::before {
  right: 15px;
  transition: all 0.3s;
}
.Menu__content .Menu__list .Menu__item a {
  display: block;
  width: 100%;
}
.Menu__content .Menu__list .Btn {
  text-align: center;
  margin: 0 auto;
  font-size: 2rem;
}
.Menu__content .Menu__list .Btn::before {
  content: "";
  right: 20px;
  background: url(../img/icon/Arrow/Btn-arrow.svg) no-repeat;
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Btn::before {
    display: none;
  }
}
.Menu__content .Menu__list .Btn:hover::before {
  right: 25px;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Btn:hover::before {
    right: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Btn {
    font-size: 1.4rem;
    padding: 15px 35px;
    max-width: 160px;
    width: 100%;
  }
}
.Menu__content .Copyright {
  font-size: 1.2rem;
  font-weight: 300;
  width: auto;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #262626;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Copyright {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .HeaderInner.is-animation .Menu__list {
    color: #262626;
  }
}

/*------------- HAMBERGER MENU ------------ */
.OpenBtn {
  width: 35px;
  height: 11px;
  position: relative;
  z-index: 1000;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
}
.OpenBtn span {
  width: 35px;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.OpenBtn span:nth-of-type(1) {
  top: 0;
}
.OpenBtn span:nth-of-type(2) {
  bottom: 0;
}
.OpenBtn.active span {
  background-color: #262626;
}
.OpenBtn.active span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(30deg);
  top: 50%;
}
.OpenBtn.active span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(150deg);
  top: 50%;
}
@media screen and (min-width: 1080px) {
  .OpenBtn {
    display: none;
  }
}

/*----------------- KEY-VISUAL ------------------ */
.KeyVisual,
#underlayer_key-visual {
  width: 100%;
  background-color: #000;
  overflow: hidden;
  position: sticky;
  top: 0px;
  z-index: 1;
}

.KeyVisual {
  height: 100svh;
  border-bottom: 5px solid #000;
  overflow: hidden;
}
.KeyVisual #key-visual-top,
.KeyVisual #key-visual-bottom {
  filter: blur(3px) brightness(0.97);
}
.KeyVisual #key-visual-top {
  display: none;
}
@media screen and (min-width: 768px) {
  .KeyVisual #key-visual-top {
    display: block;
  }
}
.KeyVisual .key_visual_item {
  width: 20%;
  height: 50vh;
  padding: 5px;
  height: 100vh;
  filter: brightness(0.5);
}
@media screen and (min-width: 768px) {
  .KeyVisual .key_visual_item {
    height: 50vh;
  }
}
.KeyVisual .key_visual_item img {
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .KeyVisual .key_visual_item img {
    height: 50vh;
  }
}

.PageTitleContent {
  position: absolute;
  bottom: 30px;
  left: 15px;
}
@media screen and (min-width: 1080px) {
  .PageTitleContent {
    display: flex;
    align-items: baseline;
    gap: 30px;
    left: 5%;
  }
}
.PageTitleContent .PageTitle {
  font-size: 10rem;
  font-weight: 800;
  z-index: 1;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -10px;
  filter: drop-shadow(0px 0px 3px rgb(168, 168, 168));
}
@media screen and (min-width: 400px) {
  .PageTitleContent .PageTitle {
    font-size: 13rem;
  }
}
@media screen and (min-width: 768px) {
  .PageTitleContent .PageTitle {
    font-size: 15rem;
  }
}
@media screen and (min-width: 1080px) {
  .PageTitleContent .PageTitle {
    margin-top: 0;
  }
}
.PageTitleContent .PageTitle span {
  opacity: 0;
}
.PageTitleContent .PageTitle:nth-child(2) {
  font-size: 6rem;
}
@media screen and (min-width: 400px) {
  .PageTitleContent .PageTitle:nth-child(2) {
    font-size: 7rem;
  }
}
@media screen and (min-width: 768px) {
  .PageTitleContent .PageTitle:nth-child(2) {
    font-size: 8rem;
  }
}
@media screen and (min-width: 1080px) {
  .PageTitleContent .PageTitle:nth-child(2) {
    font-size: 10rem;
  }
}
.PageTitleContent .PageTitle:nth-child(2) span:nth-child(2) {
  margin-right: 10px;
  font-size: 4rem;
}
@media screen and (min-width: 400px) {
  .PageTitleContent .PageTitle:nth-child(2) span:nth-child(2) {
    font-size: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .PageTitleContent .PageTitle:nth-child(2) span:nth-child(2) {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1080px) {
  .PageTitleContent .PageTitle:nth-child(2) span:nth-child(2) {
    font-size: 7rem;
  }
}
.PageTitleContent .PageTitle.appeartext span {
  animation: text_anime_on 3s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*------------- Scroll ------------- */
.scrolldown {
  position: absolute;
  bottom: 0;
  right: 40px;
  animation: mousemove 1.6s ease-in-out infinite;
}
@media screen and (min-width: 1080px) {
  .scrolldown {
    right: 5%;
  }
}

@keyframes mousemove {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 10px;
  }
}
.scrolldown span {
  position: absolute;
  left: -15px;
  bottom: 75px;
  color: #eee;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.scrolldown span::after {
  content: "";
  width: 1px;
  height: 15px;
  background: #eee;
  position: absolute;
  top: 10px;
  left: 17px;
  animation: mousepathmove 1.4s linear infinite;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .scrolldown span::after {
    top: 10px;
  }
}

@keyframes mousepathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  50% {
    height: 15px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}
.scrolldown:before {
  content: "";
  width: 25px;
  height: 37px;
  position: absolute;
  bottom: 30px;
  left: -10px;
  border-radius: 10px;
  border: 2px solid #eee;
}

.scrolldown:after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  bottom: 50px;
  left: 0;
  border-radius: 50%;
  border: 1px solid #eee;
}

/*-----------------  NewsList ------------------ */
.News {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid #bababa;
  padding-bottom: 30px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .News {
    max-width: 900px;
    width: 100%;
    padding-bottom: 40px;
    margin: 0 auto 80px auto;
  }
}
.News a:hover {
  opacity: 1;
}
.News .NewsInner {
  background-color: #141415;
  padding: 15px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .News .NewsInner {
    padding: 25px;
  }
}
.News .NewsInner .NewsInnerTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.News .NewsInner .NewsInnerTop .newsTitle {
  font-size: 2.4rem;
  font-weight: 500;
}
.News .NewsInner .NewsInnerTop .newsBtn {
  padding: 7px 15px;
  border-radius: 3px;
  background: #fff;
  color: #262626;
  font-size: 1.2rem;
  line-height: 1;
  max-width: 125px;
  width: 100%;
  text-align: center;
  font-weight: 500;
}
.News .NewsInner .NewsInnerBottom {
  line-height: 1;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .News .NewsInner .NewsInnerBottom {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
  }
}
.News .NewsInner .NewsInnerBottom .Date {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .News .NewsInner .NewsInnerBottom .Date {
    margin-bottom: 0;
  }
}
.News .NewsInner .NewsInnerBottom .Text {
  font-size: 1.4rem;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 1; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
  position: relative;
  transition: all 0.3s;
  padding-right: 20px;
}
.News .NewsInner .NewsInnerBottom .Text:hover::before {
  right: 5px;
  transition: all 0.3s;
}
.News .NewsInner .NewsInnerBottom .Text::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .News .NewsInner .NewsInnerBottom .Text {
    font-size: 1.6rem;
  }
}

/*----------------- artwork ------------------ */
.artwork {
  background-color: #f3f3f3;
  border-radius: 15px;
  position: relative;
  z-index: 5;
  padding: 30px 15px 60px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.062745098));
}
@media screen and (min-width: 768px) {
  .artwork {
    padding: 60px 15px 90px;
  }
}
@media screen and (min-width: 1080px) {
  .artwork {
    padding: 80px 15px 120px;
  }
}
.artwork .swiper {
  width: 100%;
  height: auto;
  overflow: visible; /* 両端を見えるように */
}
.artwork .swiper .swiper-wrapper {
  display: flex;
}
.artwork .swiper .swiper-wrapper .swiper-slide {
  overflow: hidden;
  width: auto;
  height: auto;
  flex-shrink: 0;
  text-align: center;
  transition: all 0.3s;
  opacity: 0.8; /* 非アクティブスライドを薄くする */
}
.artwork .swiper .swiper-wrapper .swiper-slide-active {
  transform: scale(1.2); /* 中央のスライドを少し大きくする */
  opacity: 1; /* 中央のスライドを目立たせる */
  z-index: 1;
}
.artwork .swiper .swiper-wrapper img {
  aspect-ratio: 1/1;
  transition: all 0.6s;
  max-width: 420px;
  border-radius: 5px;
}
.artwork .swiper .swiper-wrapper a:hover {
  opacity: 1;
}
.artwork .swiper .swiper-wrapper a:hover img {
  scale: 1.2;
  transition: all 0.6s;
}
.artwork .Btn {
  margin: 15% auto 0 auto;
}
@media screen and (min-width: 768px) {
  .artwork .Btn {
    margin: 6% auto 0 auto;
  }
}

/*----------------- services ------------------ */
.services {
  padding: 80px 15px 60px;
  background-color: #474747;
  border-radius: 0 0 15px 15px;
  margin-top: -20px;
  position: relative;
  z-index: 4;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.062745098));
}
@media screen and (min-width: 768px) {
  .services {
    padding: 110px 15px 90px;
  }
}
@media screen and (min-width: 1080px) {
  .services {
    padding: 140px 15px 120px;
  }
}
.services ul {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .services ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
.services ul li {
  border-radius: 5px;
  overflow: hidden;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.062745098));
}
.services ul li .ImgContent img {
  aspect-ratio: 2/1;
}
.services ul li .TextContent {
  padding: 20px;
  background-color: #fff;
}
.services ul li .TextContent p {
  color: #262626;
}
.services ul li .TextContent p:nth-child(1) {
  position: relative;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 10px;
  padding-left: 16px;
  font-size: 1.8rem;
}
.services ul li .TextContent p:nth-child(1)::before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #262626;
}
.services ul li .TextContent p:nth-child(2) {
  line-height: 1.5;
  font-size: 1.4rem;
}

/*----------------- CTA ---------------- */
.home .CTA {
  margin-top: -20px;
  padding: 80px 15px 60px;
}
@media screen and (min-width: 768px) {
  .home .CTA {
    padding: 110px 15px 90px;
  }
}

.CTA {
  padding: 0 15px 60px;
  background-color: #333333;
  position: relative;
  z-index: 3;
  border-radius: 0 0 15px 15px;
}
@media screen and (min-width: 768px) {
  .CTA {
    padding: 0 15px 90px;
  }
}
.CTA .CTAInner {
  background-color: #fff;
  padding: 45px 15px;
  border-radius: 5px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.062745098));
}
@media screen and (min-width: 768px) {
  .CTA .CTAInner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
    padding: 60px;
  }
}
.CTA .CTAInner .Title {
  color: #262626;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .CTA .CTAInner .Title {
    margin-bottom: 40px;
    font-size: 7rem;
  }
}
.CTA .CTAInner p {
  line-height: 1.5;
  color: #262626;
}
.CTA .CTAInner .Btn {
  margin: 20px auto 0 auto;
}
@media screen and (min-width: 768px) {
  .CTA .CTAInner .Btn {
    max-width: unset;
    width: 100%;
    margin: 0 0;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 1.8rem;
    padding: 25px;
  }
}

/* LOW KEYVISUAL */
.LowKeyVisual .LowKeyVisualInner {
  padding: 110px 15px 60px;
  background-color: #141415;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .LowKeyVisualInner {
    padding: 160px 0 80px;
  }
}
.LowKeyVisual .LowKeyVisualInner .LowKeyVisualTitle {
  font-size: 4rem;
  font-weight: 500;
  padding: 0 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .LowKeyVisual .LowKeyVisualInner .LowKeyVisualTitle {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .LowKeyVisualInner .LowKeyVisualTitle {
    font-size: 6rem;
  }
}

/* パンクズリスト */
.breadcrumb-trail {
  background-color: #141415;
}
.breadcrumb-trail .fbc-wrap {
  margin: 0 15px;
  padding: 10px 0;
  border-top: 1px solid #595959;
  word-break: break-word;
}
@media screen and (min-width: 1200px) {
  .breadcrumb-trail .fbc-wrap {
    max-width: 1200px;
    width: 100%;
    padding: 15px 0;
    margin: 0 auto;
  }
}
.breadcrumb-trail .fbc-wrap .fbc-items {
  padding: 0 0 !important;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 1.2rem !important;
}
.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;
  font-family: futura, Noto Sans JP, sans-serif;
}
.breadcrumb-trail .fbc-wrap .fbc-items li:first-child {
  padding: 0 0 !important;
}
.breadcrumb-trail .fbc-page .fbc-wrap .fbc-items li .fbc-separator {
  color: #999;
}

/*----------------- Archive ------------------ */
/*--- ArchivePage01 --- */
.newslist .newslistItem {
  border-bottom: 1px solid #444449;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.newslist .newslistItem:last-child {
  border-bottom: unset;
  margin-bottom: 0;
  padding-bottom: 0;
}
.newslist .NewsInnerBottom {
  line-height: 1;
}
.newslist .NewsInnerBottom .Date {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.newslist .NewsInnerBottom .Text {
  font-size: 1.6rem;
  font-family: Noto Sans JP, sans-serif;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}

/*-------------- artworkPage --------------- */
/*--- Archive --- */
.post-type-archive-artwork .card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 1080px) {
  .post-type-archive-artwork .card-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.post-type-archive-artwork .card-list .card-item {
  transition: all 0.3s;
  height: -moz-fit-content;
  height: fit-content;
}
.post-type-archive-artwork .card-list .card-item a:hover {
  opacity: 1;
  transition: all 0.3s;
}
.post-type-archive-artwork .card-list .card-item a:hover img {
  scale: 1.1;
}
.post-type-archive-artwork .card-list .card-item a .card-image {
  overflow: hidden;
  border-radius: 5px;
}
.post-type-archive-artwork .card-list .card-item a .card-image img {
  transition: all 0.3s;
  aspect-ratio: 1/1;
}

/*--- Single --- */
.single-artwork .imgContent {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 30px auto;
  overflow: hidden;
  border-radius: 5px !important;
  aspect-ratio: 1/1 !important;
}
.single-artwork .imgContent a {
  transition: all 0.3s;
}
.single-artwork .imgContent a:hover {
  opacity: 1;
  transition: all 0.3s;
}
.single-artwork .imgContent a:hover img {
  scale: 1.1;
  transition: all 0.3s;
}
.single-artwork .imgContent img {
  max-height: unset !important;
  aspect-ratio: 1/1 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  border-radius: 5px !important;
  transition: all 0.3s;
}
.single-artwork .CardTitle {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

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

.CategoryContent {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 30px;
}
.CategoryContent li a,
.CategoryContent li p {
  background-color: #999;
  color: #fff;
  border-radius: 2px;
  padding: 10px 25px;
  line-height: 1;
  display: block;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 1.2rem;
}
@media screen and (min-width: 1080px) {
  .CategoryContent li a,
  .CategoryContent li p {
    font-size: 1.4rem;
    padding: 12px 25px;
  }
}
.CategoryContent li.active p {
  background-color: #000;
}

/*----------------- Single ------------------ */
.single #Post {
  padding: 60px 15px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.single #Post .PostSubContent {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
@media screen and (min-width: 400px) {
  .single #Post .PostSubContent {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }
}
.single #Post .PostSubContent .Date {
  font-size: 1.4rem;
}
.single #Post .PostTitle {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #444449;
}
@media screen and (min-width: 768px) {
  .single #Post .PostTitle {
    font-size: 2rem;
  }
}
@media screen and (min-width: 400px) {
  .single #Post .PostTitle {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 400px) {
  .single #Post .PostTitle br {
    display: none;
  }
}
.single #Post img {
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  margin: 0 auto 40px auto;
}
.single #Post .Btn::before {
  left: 15px;
  transform: translateY(-50%) rotate(180deg);
  padding-left: unset;
}
.single #Post .Btn:hover::before {
  left: 25px;
}
.single #Post .wp-block-columns {
  gap: 20px;
}
.single #Post .wp-block-columns img {
  border-radius: 10px;
}
.single #Post .wp-block-image.aligncenter {
  text-align: center;
  display: block !important;
}

/* ■ Singleページ　アイテム */
#Post h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  padding-left: 15px;
  line-height: 1.5;
  position: relative;
}
#Post h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  #Post h2 {
    font-size: 1.8rem;
  }
}
#Post h3 {
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd;
}
#Post h4 {
  background: #ecf7f4;
  padding: 15px;
  border-radius: 5px;
  font-weight: 500;
  margin-bottom: 20px;
}
#Post .PostText {
  line-height: 2;
  margin-bottom: 40px;
}
#Post .PostText a {
  color: #0066c0;
  text-decoration: underline;
}

.wp-block-separator {
  border: 1px solid #999 !important;
  border-left: none;
  border-right: none;
  margin: 20px 0;
}

.wp-block-image.aligncenter > figcaption {
  display: block !important;
}

/* ボーダー */
.wp-block-buttons > .wp-block-button {
  display: block !important;
}

.wp-block-button__link {
  max-width: 600px !important;
  font-weight: 500 !important;
  padding: 20px !important;
  font-size: 1.8rem !important;
  width: 100% !important;
  margin: 40px auto !important;
  display: block !important;
}

/* ボタン */
.navigation {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 400px) {
  .navigation {
    grid-template-columns: repeat(2, 1fr);
  }
}

.next-post-link,
.previous-post-link {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.next-post-link a,
.previous-post-link a {
  padding: 15px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s;
  display: block;
  position: relative;
  background-color: #666;
}
.next-post-link a::before,
.previous-post-link a::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  transition: all 0.3s;
}

.next-post-link a::before {
  left: 15px;
  transform: translateY(-50%) rotate(-180deg);
}

.previous-post-link a::before {
  right: 15px;
}

.next-post-link a:hover::before {
  left: 25px;
  transition: all 0.3s;
}

.previous-post-link a:hover::before {
  right: 25px;
  transition: all 0.3s;
}

/*----------------- wp-pagenavi ------------------ */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
  font-size: 2rem;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  font-weight: 600;
  border: 1px solid #d8d8d8;
  border-radius: 100px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 50px;
    height: 50px;
  }
}
.wp-pagenavi .extend {
  display: inline;
  line-height: 1;
  width: unset;
  height: 35px;
  border: unset;
  padding: 0;
}
.wp-pagenavi .current {
  background-color: #8cd00f;
  color: #fff;
  border-color: #8cd00f;
}
.wp-pagenavi .pages {
  display: none;
}

/*----------------- FORM ------------------ */
.page-id-448 section {
  border-radius: 0 0 15px 15px;
  position: relative;
  z-index: 3;
}
.page-id-448 .CTA {
  display: none;
}

.Form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.Form .FormText {
  line-height: 1.8;
  text-align: left;
}
.Form dl {
  margin-top: 40px;
  text-align: left;
  margin-bottom: 40px;
}
.Form dl .must,
.Form dl .any {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #262626;
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 3px;
}
.Form dl .any {
  background-color: #717171;
}
.Form dl dt {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: flex-start;
}
.Form dl dt p {
  display: flex;
  align-items: center;
}
.Form dl dd {
  width: 100%;
  margin-top: 20px;
  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;
  color: #262626;
  width: 100%;
  padding: 15px;
  text-align: left;
}
.Form dl ::-moz-placeholder {
  color: #9c9c9c;
}
.Form dl ::placeholder {
  color: #9c9c9c;
}
.Form dl .wpcf7-not-valid-tip {
  text-align: left;
}
.Form dl select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/icon/Arrow/selectArrow.svg);
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 18px;
  cursor: pointer;
}
.Form dl textarea {
  height: 300px;
}
.Form .Btn {
  width: 100%;
  padding: 20px 0;
  font-size: 1.8rem;
  background-color: #fff;
  color: #262626;
  position: relative;
  transition: all 0.3s;
}
.Form .Btn:hover::before {
  right: 5px;
  transition: all 0.3s;
}
.Form .Btn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon/arrow-bk.svg) no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
}
.Form .privacyContent {
  display: block;
  text-align: center;
  padding: 18px;
  border-radius: 3px;
  background: #ececec;
  max-width: 400px;
  margin: 0 auto;
  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 {
  width: 100%;
  padding: 80px 15px 30px;
  background-color: #141415;
  position: relative;
  z-index: 2;
  color: #fff;
  margin-top: -20px;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 110px 15px 60px;
  }
}
footer .FooterTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .FooterTop .Logo {
  max-width: 90px;
  width: 100%;
}
footer .FooterTop .SNS {
  max-width: 20px;
  width: 100%;
}
footer .FooterBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 300;
}
footer ul {
  margin: 40px auto;
  display: grid;
}
@media screen and (min-width: 768px) {
  footer ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
}
@media screen and (min-width: 1080px) {
  footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
    gap: 0 60px;
  }
}
footer ul li {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 1px solid #404044;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  footer ul li {
    border: unset !important;
    padding: 0 !important;
    margin: 0 !important;
    width: -moz-fit-content;
    width: fit-content;
  }
}
footer ul li:last-child {
  margin-bottom: 0;
}
footer ul li:nth-child(1) {
  border-top: 1px solid #404044;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  footer ul li:nth-child(2) {
    border-top: 1px solid #404044;
    padding-top: 20px;
  }
}
footer ul li::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-150%);
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  footer ul li::before {
    display: none;
  }
}
footer ul li:hover::before {
  right: 15px;
  transition: all 0.3s;
}
footer ul li a {
  display: block;
  width: 100%;
}/*# sourceMappingURL=style.css.map */