/*----------------------------
  * common
 *----------------------------*/
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-size: 1.6rem;
  line-height: 2.0;
  font-family: "Noto Sans JP", "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "sans-serif";
  overscroll-behavior: none;
  background-color: #DBD8CE;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

h2 {
  font-size: 4.8rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}


@media (max-width: 768px) {

  h2 {
    font-size: 2.8rem;
  }
}



/*----------------------------
  *header
 *----------------------------*/
.header {
  height: 10vh;
}

.header_inner {
  padding-left: 50px;
  padding-top: 20px;
  color: #fff;
}

.header_ttl {
  display: flex;
}

.header_ttl_text {
  display: inline-block;
  vertical-align: top;
  font-weight: normal;
  font-size: 1.6rem;
  margin-left: 20px;
  line-height: 1.5;
}

.header_ttl_logo img {
  max-height: 46px;
}

@media (max-width: 1024px) {
  .header_inner {
    padding-left: 20px;
    padding-top: 10px;
  }
}

@media (max-width: 768px) {
  .header_inner {
    padding-left: 20px;
    padding-top: 10px;
  }

  .header_ttl_text {
    font-size: 1.2rem;
    margin-left: 10px;
  }

  .header_ttl_logo img {
    max-height: 32px;
  }
}


/*----------------------------
  *parallax
 *----------------------------*/

.mvWrapper {
  max-width: 1320px;
  padding-left: 50px;
  padding-right: 20px;
}

.bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  z-index: -2;
}

.bgvideo_overlay {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

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

.parallax .contents1 {
  min-height: 97vh;
  display: flex;
  align-items: flex-end;
}

.parallax .contents1 img {
  max-width: 60vw;
}

.parallax .contents2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 100px;
  color: #fff;
  font-size: 2.0rem;
  line-height: 2.7;
  letter-spacing: 0.12em;
}

@media (max-width: 1024px) {
  .mvWrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .parallax .contents1 {
    min-height: 50vh;
  }

  .parallax .contents1 img {
    max-width: 100%;
  }

  .parallax .contents2 {
    max-height: 50vh;
    margin-top: 60px;
  }
}


@media (max-width: 768px) {
  .mvWrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .parallax .contents1 {
    min-height: 50vh;
  }

  .parallax .contents1 img {
    max-width: 100%;
  }

  .parallax .contents2 {
    max-height: 50vh;
    margin-top: 0px;
  }
}


@media (max-width: 768px) {
  .mvWrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .parallax .contents1 {
    min-height: 50vh;
  }

  .parallax .contents1 img {
    max-width: 100%;
  }

  .parallax .contents2 {
    max-height: 50vh;
    font-size: 1.6rem;
    line-height: 2.2;
    margin-top: 60px;
  }  
  }


/*----------------------------
  *section 
 *----------------------------*/
.main_content {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #fff;
  color: #333;
}

.sectionWrapper {
  max-width: 1200px;
  margin: 0 auto;
}


/* movie_section */
.movie_sec {
  background:
    linear-gradient(to right,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0.5) 100%),
    radial-gradient(at 85% 50%,
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0) 60%),
    #DBD8CE;

  padding: 120px 20px;
  margin-top: 120px;
}

.movie_sec .concept {
  margin-top: 60px;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #290606;
}

.movie_sec .imageList {
  margin-top: 60px;
  display: flex;
  gap: 40px 70px;
  flex-wrap: wrap;
  justify-content: center;
}

.movie_sec .imageList figcaption {
  margin-top: 5px;
  font-size: 1.8rem;
}

.movie_sec .imageList a {
  position: relative;
  display: block;
  overflow: hidden;
}

.movie_sec .imageList a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: 0.3s;
}

.movie_sec .imageList a:hover::after {
  opacity: 1;
}

.movie_sec .imageList img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.movie_sec .imageList a:hover img {
  transform: scale(1.03);
}


@media (max-width: 768px) {
  .movie_sec {
    padding: 80px 20px;
    margin-top: 0;
  }

  .movie_sec .imageList {
    flex-direction: column;
    gap: 30px;
  }

  .movie_sec .imageList figure {
    width: 100%;
  }

  .movie_sec .concept {
    line-height: 2.2;
    letter-spacing: 0.03em;
  }
}


/* graphic_section */
.graphic_sec {
  padding: 120px 20px
}

.graphic_sec h3 {
  font-size: 3.2rem;
  position: relative;
}

.graphic_sec h3::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  background-color: #85352B;
  margin: 15px auto 0;
}

.graphic_sec .concept {
  margin-top: 60px;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #290606;
}

.graphic_sec img {
  display: block;
  margin: 60px auto 0;
  transition: transform 0.3s ease;
}

.graphic_sec figure a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.graphic_sec figure>a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: 0.3s;
}

.graphic_sec figure>a:hover::after {
  opacity: 1;
}

.graphic_sec figcaption {
  font-size: 1.6rem;
  color: #290606;
}

.graphic_sec figcaption a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
  margin-left: 3px;
  background-image: url("../images/loupe.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: -2px;
}

.graphic_sec figcaption a {
  transition: 0.3s;
}

.graphic_sec figcaption a:hover {
  opacity: 0.6;
}

.graphic_sec figure>a:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .graphic_sec {
    padding: 80px 20px
  }

  .graphic_sec h3 {
    font-size: 2.4rem;
  }

  .graphic_sec img {
    width: 60vw;
  }

  .graphic_sec .concept {
    line-height: 2.2;
    letter-spacing: 0.03em;
  }

}



/* project_section */

.project_sec {
  background-image: url("../images/bg_project_sec.jpg");
  background-repeat: repeat;
  background-size: auto;
  padding: 120px 20px
}

.project_sec h3 {
  font-size: 3.2rem;
  position: relative;
}

.project_sec h3::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  background-color: #85352B;
  margin: 15px auto 0;
}

.project_item {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: 80px;
}

.project_item:nth-of-type(n+2) {
  margin-top: 137px;
}

.project_item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.project_item_text,
.project_item_photo {
  width: 50%;
  text-align: left;
}

.project_item_photo img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 6px 6px 14px rgba(155, 145, 138, 0.35);
}

.project_item h4 {
  font-size: 2.4rem;
  color: #290606;
  font-weight: 500;
  margin-top: -14px;

}

.project_item h5 {
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #290606;
  position: relative;
}

.project_item h5::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #290606;
  margin-top: 4px;
}

.project_item ul {
  margin-top: 8px;
  line-height: 1.6;
}

.project_item li {
  position: relative;
  padding-left: 16px;
}

.project_item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}

.project_item li a {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s;
}

.project_item li a:hover {
  transform: translateX(2px);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .project_sec {
    padding: 80px 20px
  }

  .project_sec h3 {
    font-size: 2.4rem;
  }

  .project_item {
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
  }
  
  .project_item:nth-of-type(even) {
    flex-direction: column;
  }

  .project_item:nth-of-type(n+2) {
    margin-top: 80px;
  }

  .project_item h4 {
    font-size: 2.0rem;
  }

  .project_item_photo img {
    box-shadow: 4px 4px 10px rgba(155, 145, 138, 0.3);
  }

  .project_item_text,
  .project_item_photo {
    width: 100%;
  }

}


/* character_section */

.character_sec {
  padding: 120px 20px 220px 20px
}

.character_sec h3 {
  font-size: 3.2rem;
  position: relative;
}

.character_sec h3::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  background-color: #85352B;
  margin: 15px auto 0;
}

.characterWrapper {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 80px;
  align-items: stretch;
}

.character_item { 
  display: flex;
  flex-direction: column;
  flex: 1;
}

.character_item img {
  width: 280px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.character_box {
  margin: 40px auto 0;
  width: 100%;
  max-width: 560px;
  padding: 30px 20px 20px;
  border: 2px solid #DBD8CE;
  border-radius: 13px;
  position: relative;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.character_box h4 {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
  background: #fff;
  color: #290606;
  font-weight: 500;
  font-size: 2.0rem;
  white-space: nowrap;
}

.character_box h4::before {
  right: 100%;
  margin-right: 10px;
}

.character_box h4::after {
  left: 100%;
  margin-left: 10px;
}

.character_box p {
  text-align: left;
  flex: 1;
}


@media (max-width: 768px) {

  .character_sec {
    padding: 80px 20px 100px 20px;
  }

  .character_sec h3 {
    font-size: 2.4rem;
  }

  .characterWrapper {
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    gap: 60px;
  }

  .character_item img {
    width: 200px;
  }

  .character_box {
    padding: 20px;
  }

  .character_box h4 {
    padding: 0 10px;
    font-size: 1.8rem;
  }

  .character_box br {
    display: none;
  }


}

/*----------------------------
  *footer
 *----------------------------*/

.footer {
  height: 100px;
  background-color: #DBD8CE;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer p {
  color: #000;
  font-size: 14px;
}

/* pagetop */

.page_top {
  z-index: 1000;
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 50px;
  height: 50px;
  border-radius: 50%;

  background: rgba(112, 112, 112, 0.5);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;

  opacity: 0;
  pointer-events: none;
}


.page_top:hover {
  background: #707070;
}

.page_top::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .page_top {
    width: 40px;
    height: 40px;
  }
}





/* modal */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 9999;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}


.modal_content {
  position: relative;
  width: 90%;
  max-width: 1000px;
}


.modal_content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}


.modal .close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}


/* imagemodal */

.imageModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);

  display: flex;
  align-items: flex-start;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s;

  z-index: 9999;

  overflow: auto;
}

.imageModal.active {
  opacity: 1;
  pointer-events: auto;
}

.imageModal_content img {
  display: block;
  margin: 60px auto;
  max-width: 65vw;
  height: auto;

}

.imageModal .close_image {
  position: fixed;
  top: 0px;
  right: 40px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

.imageModal_content {
  position: relative;
}

@media (max-width: 768px) {

  .modal_content {
    width: 95%;
  }

  .imageModal_content img {
    max-width: 90vw;
  }

  .modal .close {
    top: -40px;
  }

}

/* fadein */
.fade_line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: 2s ease;
}

.fade_line.show {
  opacity: 1;
  transform: translateY(0);
}

/* section fadein */
.fade_in_section {
  opacity: 0;
  transform: translateY(10px);
  transition: 1.2s ease;
}

.fade_in_section.show {
  opacity: 1;
  transform: translateY(0);
}