@charset "UTF-8";
/*
Theme Name: Hiroki Ishiida Portfolio
Description: Hiroki Ishiida Portfolio
Author: Hiroki ishiida
Version: 1.0
*/
/*------------ COMMON SETTING ------------ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px !important;
  font-size: 62.5%;
}

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

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

.home main {
  border-radius: 15px 15px 0 0;
  margin-top: -20px;
}

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

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

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

section {
  padding: 60px 15px;
}
@media screen and (min-width: 1080px) {
  section {
    padding: 80px 15px;
  }
}
@media screen and (min-width: 1400px) {
  section {
    padding: 80px 0;
  }
}

.Title {
  margin-bottom: 40px;
  font-size: 5.5rem;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 800;
  font-style: normal;
  overflow: hidden;
}
@media screen and (min-width: 400px) {
  .Title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .Title {
    font-size: 9rem;
  }
}

.Title .char,
.Nametitle .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.9em);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}

.Title.is-inview .char,
.Nametitle.is-inview .char {
  animation: titleRise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes titleRise {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes titleRise {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.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;
  z-index: 9999;
  transition: all 1.5s;
  background-color: #fff;
}
#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;
  font-family: "Google Sans Flex", sans-serif;
}
.Btn::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  background-size: contain;
  width: 9px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all 0.3s;
}
.Btn:hover {
  opacity: 1;
  background-color: #fff;
  color: #0d0d0d;
  transition: all 0.3s;
}
.Btn:hover::before {
  right: 30px;
  background: url(../img/icon/arrow-bk.svg) no-repeat;
  transition: all 0.3s;
}
@media screen and (min-width: 400px) {
  .Btn {
    max-width: 400px;
  }
}

.Btn.back::before {
  content: "";
  transform: translateY(-50%) rotate(-180deg);
  right: unset;
  left: 20px;
}
.Btn.back:hover::before {
  left: 30px;
}

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

.Logo {
  max-width: 170px;
  width: 100%;
  z-index: 1000;
  cursor: default;
}

.Header__inner.is-animation {
  background-color: rgba(255, 255, 255, 0.9411764706);
  filter: drop-shadow(0 2px 3px rgba(64, 64, 64, 0.062745098));
  color: #3a3a3a;
  transition: all 0.3s;
  left: 15px;
  top: 15px;
  right: 15px;
  border-radius: 8px;
  width: auto;
  padding: 15px 20px;
}
.Header__inner.is-animation .OpenBtn span {
  background-color: #2d2d2d;
}

.Header__inner.is-animation:has(nav.panelactive) {
  left: 0;
  top: 0;
  right: 0;
}

.Header__inner.is-animation .logo-bk {
  display: block;
}

nav.panelactive + .logo-bk {
  display: block;
}

.Header__inner.is-animation .logo-wh,
nav.panelactive + .logo-wh {
  display: none;
}

.logo-bk {
  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;
  font-family: "Google Sans Flex", sans-serif;
}
@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:last-child::before {
  transform: translateY(-50%);
}
.Menu__content .Menu__list .Menu__item::before {
  content: "";
  background: url(../img/icon/arrow-bk.svg) no-repeat;
  width: 10px;
  height: 16px;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-110%);
  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: 100%;
  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) {
  .Header__inner.is-animation .Menu__list {
    color: #3a3a3a;
  }
}

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

.PageTitle {
  font-size: 18vmin;
  font-weight: 800;
  letter-spacing: 0.3rem;
  z-index: 1;
  color: #fff;
  filter: drop-shadow(0px 0px 3px rgb(168, 168, 168));
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Google Sans Flex", sans-serif;
}

.PageTitle span {
  opacity: 0;
}

.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: 50%;
  animation: mousemove 1.6s ease-in-out infinite;
}

@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;
  font-family: "Google Sans Flex", sans-serif;
}

.scrolldown span::after {
  content: "";
  width: 1px;
  height: 15px;
  background: #eee;
  position: absolute;
  top: 10px;
  left: 17px;
  animation: mousepathmove 1.4s linear infinite;
  opacity: 0;
}

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

/*----------------- PROFILE ---------------- */
#profile .gridContent {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #profile .gridContent {
    grid-template-columns: 45% 1fr;
    gap: 30px;
  }
}
#profile .gridContent .imgContent {
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
}
#profile .gridContent .imgContent img {
  height: 100%;
  aspect-ratio: 1/1.5;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 400px) {
  #profile .gridContent .imgContent img {
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 768px) {
  #profile .gridContent .imgContent img {
    aspect-ratio: 4/1;
  }
}
@media screen and (min-width: 768px) {
  #profile .gridContent .textContet {
    padding: 20px 0;
  }
}
#profile .gridContent .textContet .textContetName {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 2.4rem;
  font-weight: 500;
  gap: 10px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  #profile .gridContent .textContet .textContetName {
    flex-direction: column-reverse;
    gap: 5px;
  }
}
#profile .gridContent .textContet .textContetName p:nth-child(2) {
  font-size: 1.6rem;
  font-family: "Google Sans Flex", sans-serif;
}
#profile .gridContent .textContet .textContetBirth {
  margin-bottom: 15px;
  font-family: "Google Sans Flex", sans-serif;
}
#profile .gridContent .textContet .text_wrapper {
  position: relative;
  line-height: 1.7;
  margin-bottom: 30px;
}
#profile .gridContent .textContet .text_wrapper .text {
  height: 300px;
  overflow: hidden;
}
#profile .gridContent .textContet .text_wrapper .text span {
  display: block;
  margin-bottom: 20px;
}
#profile .gridContent .textContet .text_wrapper .show_more {
  width: 100%;
  height: 100px;
  padding-top: 135px;
  position: absolute;
  bottom: 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1c1c1c 80%);
  cursor: pointer;
  display: block;
  transition: all 0.3s;
}
#profile .gridContent .textContet .text_wrapper .show_more::before {
  content: "";
  background: url(../img/icon/arrow-down.svg) no-repeat;
  width: 25px;
  height: 18px;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}
#profile .gridContent .textContet .text_wrapper .show_more.active {
  background: none;
}
#profile .gridContent .textContet .text_wrapper .show_more.active::before {
  display: none;
}
#profile .gridContent .textContet .textContetCardContent {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  #profile .gridContent .textContet .textContetCardContent {
    gap: 5px;
  }
}
#profile .gridContent .textContet .textContetCardContent .textContetCard {
  padding: 12px;
  border-radius: 5px;
  background-color: #dddddd;
  color: #262626;
  line-height: 1.5;
}

/*------------------ WORKS ----------------- */
#works {
  background: linear-gradient(var(180deg), var(--g-color-0) var(rgba(10, 138, 29, 0)), var(0.01%) var(rgba(10, 138, 29, 0.8)));
}

.works_items {
  text-align: center;
  transition: all 0.3s;
}
.works_items .ImgContent {
  overflow: hidden;
  transition: all 0.6s;
  border-radius: 7px;
}
.works_items .ImgContent img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 4/3;
}

.works_site_title {
  font-size: 1.6rem;
  display: grid;
  gap: 4px;
  margin-top: 15px;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (min-width: 1080px) {
  .works_site_title {
    font-size: 1.8rem;
  }
}
.works_site_title span {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 1080px) {
  .works_site_title span {
    font-size: 1.6rem;
  }
}

#works,
#other {
  /* ---------- Works card ---------- */
}
#works .Title,
#other .Title {
  margin-bottom: 70px;
}
#works .swiper,
#other .swiper {
  width: 100%;
  height: auto;
  overflow: visible; /* 両端を見えるように */
}
#works .swiper .swiper-wrapper .swiper-slide,
#other .swiper .swiper-wrapper .swiper-slide {
  overflow: hidden;
  width: auto;
  height: auto;
  flex-shrink: 0;
  text-align: center;
  transition: all 0.3s;
  opacity: 0.8; /* 非アクティブスライドを薄くする */
  border-radius: 5px;
}
#works .swiper .swiper-wrapper .swiper-slide-active,
#other .swiper .swiper-wrapper .swiper-slide-active {
  transform: scale(1.2); /* 中央のスライドを少し大きくする */
  opacity: 1; /* 中央のスライドを目立たせる */
  z-index: 1;
}
#works .Btn,
#other .Btn {
  margin: 80px auto 0 auto;
}

@media screen and (min-width: 1080px) {
  #illustration .illustrationContent {
    display: flex;
    justify-content: space-between;
  }
}
#illustration .illustrationContent .illustrationContentItem:nth-child(1) {
  margin-bottom: 20px;
}
@media screen and (min-width: 1080px) {
  #illustration .illustrationContent .illustrationContentItem:nth-child(1) {
    margin-bottom: 0;
  }
}
#illustration .illustrationContent .illustrationContentItem {
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  color: #262626;
}
@media screen and (min-width: 1080px) {
  #illustration .illustrationContent .illustrationContentItem {
    width: 49%;
  }
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 500;
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramProfile {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramProfile .imgContent {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  border-radius: 1000px;
  overflow: hidden;
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramProfile .imgContent img {
  height: 100%;
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramProfile .textContent {
  display: grid;
  gap: 5px;
  justify-content: start;
  align-content: center;
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramProfile .textContent p {
  font-weight: 500;
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramProfile .textContent p:nth-child(2) {
  font-size: 1.4rem;
  font-weight: 300;
  color: #898989;
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramBtn {
  color: #fff;
  font-size: 1.2rem;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media screen and (min-width: 1080px) {
  #illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramBtn {
    font-size: 1.4rem;
  }
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramBtn a {
  padding: 10px 33px 10px 15px;
  background-color: #2370ca;
  border-radius: 3px;
}
@media screen and (min-width: 1080px) {
  #illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramBtn a {
    padding: 10px 35px 10px 15px;
  }
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramBtn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 17px;
  height: 13px;
  transform: translateY(-50%);
  background: url(../img/icon/blank-wh.svg) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1080px) {
  #illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramBtn::before {
    width: 18px;
    height: 14px;
  }
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramBtn:hover {
  opacity: 0.6;
  transition: all 0.3s;
  cursor: pointer;
}
#illustration .illustrationContent .illustrationContentItem .instagramHeader .instagramBtn a:hover {
  opacity: 1;
}
#illustration .instaSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
#illustration .insta_items .ImgContent {
  border-radius: 7px;
  overflow: hidden;
}
#illustration .insta_items .ImgContent img {
  aspect-ratio: 4/5;
}

/*----------------- CTA ---------------- */
.CTA {
  padding: 60px 30px 150px;
  text-align: center;
  letter-spacing: 0.1rem;
  position: relative;
  background-color: #1c1c1c;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .CTA {
    padding: 80px 30px 150px;
  }
}
@media screen and (min-width: 1400px) {
  .CTA {
    padding: 80px 30px;
  }
}
.CTA .CTAInner,
.CTA .Title {
  position: relative;
  z-index: 4;
}
.CTA .CTAInner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.CTA .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/kv_overlay.png);
  background-size: 1.5px 1.5px;
  z-index: 3;
}
.CTA .CTA__bgVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.7);
}
.CTA .CTA--video {
  background: url("../img/cta-poster.jpg") center/cover no-repeat;
}
.CTA .CTAText {
  line-height: 1.5;
  margin-bottom: 20px;
}
.CTA .ctaInnerContent {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .CTA .ctaInnerContent {
    grid-template-columns: repeat(2, 1fr);
  }
}
.CTA .ctaInnerContent li {
  display: grid;
  gap: 10px;
  text-align: center;
  font-family: "Google Sans Flex", sans-serif;
  font-size: 3rem;
  font-weight: 600;
}
.CTA .ctaInnerContent li .Btn {
  margin: 0 auto;
  width: 100%;
  max-width: unset;
  color: #3a3a3a;
  background-color: #fff;
  font-size: 2.4rem;
}
.CTA .ctaInnerContent li .Btn::before {
  filter: brightness(0);
}
.CTA .ctaInnerContent li .Btn:hover {
  color: #fff;
  background-color: #1e1e1e;
}
.CTA .ctaInnerContent li .Btn:hover::before {
  filter: brightness(10);
}
.CTA .ctaInnerContent li:nth-child(1) .Btn::before {
  background: url(../img/icon/tel.svg) no-repeat;
  width: 23px;
  height: 23px;
}

.page-id-448 .CTA {
  display: none;
}

/*----------------- PAGE-TOP ----------------- */
#page-top a,
#page-top {
  width: 100px;
  height: 100px;
}

#page-top {
  position: fixed;
  font-family: "Google Sans Flex", sans-serif;
  right: 10px;
  z-index: 10;
  opacity: 0;
  transform: translateY(100px);
  /*　上に上がる動き　*/
  /*　下に下がる動き　*/
}
#page-top a {
  display: block;
  background: url(../img/daruma.png) no-repeat center center/cover;
  transition: all 0.3s;
  position: relative;
}
#page-top a::before {
  content: "PAGE TOP";
  position: absolute;
  top: -20px;
  right: 50%;
  width: 90%;
  text-align: center;
  transform: translateX(50%);
  font-weight: 500;
  background-color: rgba(25, 25, 25, 0.9215686275);
  border-radius: 2px;
  padding: 3px;
  line-height: 1;
}
#page-top a:hover {
  opacity: 0.5;
}
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(150px);
  }
}

/* LOW KEYVISUAL */
.LowKeyVisual .LowKeyVisualInner {
  padding: 110px 15px 60px;
  background-color: #141415;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual .LowKeyVisualInner {
    padding: 160px 15px 80px;
  }
}
@media screen and (min-width: 1400px) {
  .LowKeyVisual .LowKeyVisualInner {
    padding: 160px 0 80px;
  }
}
.LowKeyVisual .LowKeyVisualInner .LowKeyVisualTitle {
  padding: 0 0;
  margin-bottom: 0;
}

/* パンクズリスト */
.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: 1400px) {
  .breadcrumb-trail .fbc-wrap {
    max-width: 1400px;
    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: 300;
  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;
}
.breadcrumb-trail .fbc-page .fbc-wrap .fbc-items li .fbc-separator {
  color: #999;
}

/*----------------- Archive ------------------ */
.archive .works_list,
.page-id-845 .works_list {
  display: grid;
  gap: 30px 15px;
}
@media screen and (min-width: 768px) {
  .archive .works_list,
  .page-id-845 .works_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.archive .works_list .works_items .works_inner .works_site_title,
.page-id-845 .works_list .works_items .works_inner .works_site_title {
  margin-bottom: 10px;
}
.archive .works_list .works_items:hover,
.page-id-845 .works_list .works_items:hover {
  opacity: 0.5;
  transition: all 0.3s;
}
.archive .works_list .works_items a:hover,
.page-id-845 .works_list .works_items a:hover {
  opacity: 1;
}
.archive .noContensText,
.page-id-845 .noContensText {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .archive .noContensText,
  .page-id-845 .noContensText {
    position: unset;
    transform: unset;
  }
}

.post-categories {
  display: flex;
  justify-content: center;
  margin-bottom: unset;
  align-items: center;
  gap: 10px;
  margin-left: -10px;
}
.post-categories li {
  padding: 8px 16px;
  border-radius: 45px;
  text-align: center;
  background-color: #3f3f3f;
  width: -moz-fit-content;
  width: fit-content;
}
.post-categories li a {
  transition: all 0.3s;
  width: 100%;
  display: block;
  font-size: 1.4rem;
}

/*--- Tab MEnu --- */
.tabMenu {
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
  background-color: #3f3f3f;
  border-radius: 10px;
  width: 100%;
}
@media screen and (min-width: 400px) {
  .tabMenu {
    display: flex;
    flex-wrap: wrap;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1080px) {
  .tabMenu {
    justify-content: center;
  }
}
.tabMenu li a,
.tabMenu li button {
  background-color: #ccc;
  border-radius: 5px;
  padding: 10px 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  position: relative;
  font-weight: 500;
  transition: all 0.3s;
  color: #262626;
  width: 100%;
}
@media screen and (min-width: 400px) {
  .tabMenu li a,
  .tabMenu li button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.tabMenu li a.active,
.tabMenu li button.active {
  background-color: #222;
  color: #fff;
}

/*--- 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 .works-single .wrapper {
  max-width: 1200px;
}
.single .works-single .works_site_title {
  font-size: 3rem;
  gap: 4px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 3rem;
  gap: 4px;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #363636;
  padding-bottom: 15px;
}
@media screen and (min-width: 1080px) {
  .single .works-single .works_site_title {
    font-size: 4rem;
  }
}
.single .works-single .works_site_title span {
  font-size: 1.8rem;
}
@media screen and (min-width: 1080px) {
  .single .works-single .works_site_title span {
    font-size: 2.4rem;
  }
}
.single .works-single .works-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .single .works-single .works-grid {
    flex-direction: row;
  }
}
.single .works-single .works-grid .content_box.is-empty {
  display: none;
}
@media screen and (min-width: 1080px) {
  .single .works-single .works-slider {
    width: 49%;
  }
}
.single .works-single .works-slider .ImgContent {
  overflow: hidden;
  transition: all 0.6s;
  border-radius: 7px;
}
.single .works-single .works-slider .ImgContent img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 3/2;
}
.single .works-single .works_item_inner {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 1080px) {
  .single .works-single .works_item_inner {
    width: 49%;
  }
}
@media screen and (min-width: 1080px) {
  .single .works-single .works_item_inner .post-categories {
    justify-content: flex-start;
  }
}
.single .works-single .works_item_inner .content_box {
  margin-bottom: 30px;
}
.single .works-single .works_item_inner .content_box .content_title {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #353535;
  font-weight: 500;
  font-size: 2rem;
  border-radius: 5px;
  line-height: 1;
}
.single .works-single .works_item_inner .content_box .works_discription {
  line-height: 1.5;
}
.single .works-single .works_item_inner .content_box .works_discription br {
  display: block;
}
.single .works-single .works_item_inner .works_url {
  margin-top: 30px;
  display: block;
  text-decoration: underline;
  transition: all 0.3s;
}
.single .works-single .works_item_inner .works_url:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.works-site-content {
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .works-site-content {
    width: 80%;
  }
}
.works-site-content .works-site-content-list {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .works-site-content .works-site-content-list {
    grid-template-columns: 35% 1fr;
  }
}
.works-site-content .works-site-content-list .works-site-content-list-item .imgContent {
  max-height: 400px;
  overflow: scroll;
  border-radius: 10px;
  padding: 10px;
  border: 2px solid #ddd;
  background-color: #fff;
}

.single #Post {
  padding: 60px 15px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.single #Post p {
  line-height: 1.5;
  font-weight: 500;
}
.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 .PostThumbnail img {
  margin: 0 0;
}
.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: 12px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    gap: 30px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 1.8rem;
  aspect-ratio: 1/1;
  font-weight: 600;
  border-radius: 100px;
  margin: 0 0 !important;
}
@media screen and (min-width: 400px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 2rem;
  }
}
.wp-pagenavi i {
  font-size: 1.6rem;
}
.wp-pagenavi .extend {
  display: none;
  padding: 0;
}
.wp-pagenavi .current {
  background-color: #fff;
  color: #262626;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a:hover {
  border-color: #3f3f3f !important;
  background-color: #3f3f3f;
  color: #a1a1a1;
}

/*----------------- FORM ------------------ */
.page-id-448 section {
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .page-id-448 section {
    padding-bottom: 80px;
  }
}

.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: #b94646;
  padding: 6px 12px;
  color: #fff;
  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: 15px;
  margin-bottom: 30px;
}
.Form dl dd:last-child {
  margin-bottom: 0;
}
.Form dl input[type=text],
.Form dl input[type=tel],
.Form dl input[type=email],
.Form dl select,
.Form dl textarea {
  font-size: 1.6rem;
  border-radius: 5px;
  background-color: #fcfcfc;
  border: 1px solid #d6d7d9;
  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/select-icon.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: 40px 15px 20px;
  background-color: #0b0b0b;
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Google Sans Flex", sans-serif;
}
footer .Logo {
  margin: 0 auto;
}
footer .FooterBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 300;
  flex-wrap: wrap;
  gap: 10px;
}
footer ul {
  margin: 30px 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: 40px auto;
    gap: 0 60px;
  }
}
footer ul li {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 1px solid #161617;
  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:nth-child(1) {
  border-top: 1px solid #161617;
  padding-top: 20px;
}
footer ul li:nth-child(1)::before {
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  footer ul li:nth-child(2) {
    border-top: 1px solid #161617;
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  footer ul li:nth-child(2)::before {
    transform: translateY(-50%);
  }
}
footer ul li::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 10px;
  height: 16px;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-110%);
  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%;
}
footer .Copyright {
  color: #636363;
}

/*----------------- privacy-policy ----------------- */
.privacypolicyContent {
  line-height: 1.5;
}
.privacypolicyContent .wrapper {
  max-width: 800px;
}
.privacypolicyContent .wp-block-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

/*----------------- THANKS ---------------- */
.thanks {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .thanks {
    text-align: center;
  }
}
.thanks p {
  margin-bottom: 15px;
  display: block;
}
.thanks .mail {
  color: #fff;
  text-decoration: underline;
  transition: all 0.3s;
}
.thanks .mail:hover {
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */