@charset "utf-8";


body{background:#fff;font-size:14px;font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;font-weight: bold;}
/* @media screen and (max-width: 414px){body{background:#ff0}} */

a {
  display: block;
  transition:all .2s ease-in-out;
}

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

.serif {
  font-family: YuMincho, "Hiragino Mincho ProN", serif;
}

.inner {
  width: min(90%,1200px);
  margin: auto;
}

/* ヘッダー */
.header {
  width: 100%;
  background: #000;
  position: fixed;
  top: 0;
  height: 80px;
  z-index: 50;
}

.header-inner {
  margin: auto;
  /* padding: 17px 20px 10px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  margin-left: 30px;
}

/* ナビゲーション */
.nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-list {
  display: flex;
  height: 100%;
}
.nav-list-item {
  height: 100%;
}

.nav-list-item--download {
  margin-left: min(2.5vw,35px);
}


.nav-list-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  padding: 0 1.0714285714285714vw;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}

.nav-list-link:hover {
  color: #ccc;
}

.nav-list-link--download,
.nav-list-link--contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  font-size: 13px;
}

.nav-list-link--download {
  background: #585858;
  height: 100%;
  padding: 0 22.5px;
}

.nav-list-link--contact {
  background: #232323;
  height: 100%;
  padding: 0 28px;
}

.nav-list-link--download:hover,
.nav-list-link--contact:hover {
  color:#fff;
  background: #C3A055;
}

.nav-list-link__img {
  display: block;
  width: 32px;
}

.nav-list-link__img--download {
  width: 17.35px;
}

.nav-list-link__img--contact {
  width: 19.28px;
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* ハンバーガー→バツ */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* レスポンシブ */
/* @media screen and (max-width: 1366px) and (min-width: 1025px) {
  .nav-list-link {
    padding: 0 0.36603221083455345vw;
    font-size: 15px;
  }
  .nav-list-link--contact {
    padding: 0 0.7320644216691069vw;
    font-size: 15px;
  }
  .nav-list-item--contact {
    width: 190px;
    margin-left: 0;
    padding: 0;
  }
  .nav-list-link__img {
    width: 25px;
    margin-right: 5px;
  }
} */
@media (max-width: 1024px) {
  .header {
    height: 80px;
    position: fixed;
  }
  .nav {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition:
      height 0.4s ease,
      opacity 0.4s ease;
    background: #000;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
  }

  .nav.open {
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 50px 0;
  }
  .nav-list-item {
      width: 100%;
  }
  .nav-list-link {
    justify-content: center;
    width: 100%;
    font-size: px;
    
  }
  .nav-list-link--contact {
    width: 100%;
    padding: 20px 5vw;
    border-radius: 50px;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
  }
  .nav-list-item--download {
    margin-left: 0;
  }
  .nav-list-item--contact {
    margin-left: 0;
    padding: 0 15px;
  }
  .nav-list-link--download,
  .nav-list-link--contact {
    background: transparent;
  }
  .nav-list-link--contact {
    padding: 0 15px;
  }
  .nav-list-link__img {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .header-inner {
    margin-left: 0;
  }
  .logo img {
    width: 50vw;
  }
}

main {
  margin-top: 80px;
}

/* mv */
.mv {
  position: relative;
  height: calc(100vh - 180px);
  color:#fff;
}

.mv-movie-wrap {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.mv-movie-wrap::before {
  content:'';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,40%);
}

.mv-movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-inner {
  position: relative;
  padding-top: 140px;
  z-index: 10;
}

.mv-text {
  font-size: 33px;
}
.mv-copy {
  margin-top: 10px;
  font-size: 41px;
}

.mv-title {
  margin-top: 30px;
  font-size: 44px;
  line-height: 1.6;
}

.mv-body {
  margin-top: 43px;
  line-height: 2;
  font-size: 16px;
}

.mv-btn-img {
  filter: brightness(0);
}

.mv-button {
  display: flex;
  flex-flow: row wrap;
  gap:23px;
  margin-top: 60px;
}

.mv-btn {
  width: 255px;
  height: 56px;
}

.mv-btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:15px;
  height: 100%;
  color: #000;
  font-size: 16px;
  background: #fff;
  border: #000 solid 1px;
}

.mv-btn-img--download {
  width:20.56px;
}

.mv-btn-img--contact {
  width:22.85px;
}

.mv-btn-link:hover {
  color: #fff;
  background: #000;
  border: #fff solid 1px;
}

.mv-btn-link:hover .mv-btn-img{
  filter: none;  
}

.mv-scroll {
  position: absolute;
  bottom: -5%;
  left: 1%;
}

@media (max-width: 480px) {
  .mv {
    height: 150vw;
  }
  .mv-inner {
    padding-top: 15vw;
  }
  .mv-text {
    font-size: 18px;
  }
  .mv-copy {
    font-size: 23px;
  }
  .mv-title {
    font-size: 25px;
  }
  .mv-body {
    margin-top: 30px;
    font-size: 14px;
  }
  .mv-button {
    justify-content: center;
    margin-top: 10vw;
  }
  .mv-btn {
    width: 90%;
  }
}

.brsp {
  display: none;
}

@media (max-width: 480px) {
  .brsp {
    display: block;
  }
}

/* raised */
.raised {
  padding: 150px 0;
  color: #fff;
  background: url(../img/bg-raised.jpg) center/cover no-repeat;
}
.raised-copy {
  text-align: center;
  font-size: 26px;
  line-height: 1.6;
}
.raised-body {
  width: min(90%,646px);
  margin: 50px auto 0;
  line-height: 2.1;
}

/* concerns */
.concerns {
  padding: 120px 0 60px;
  color:#fff;
  background: #000;
}

.concerns-inner {
  width: min(90%,1060px);
  margin: auto;
}

.concerns-title {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.06em;
}
.concerns-copy {
  margin-top: 10px;
  text-align: center;
  font-size: 26px;
}
.concerns-list {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  margin-top: 65px;
}
.concerns-item {
  flex: 0 0 18%;
}
.concerns-body {
  margin-top: 25px;
  line-height: 2;
}
.concerns-arrow {
  width: 146.4px;
  margin:  50px auto 0;
  text-align: center;
}

@media (max-width: 480px) {
  .concerns-copy {
    margin-top: 5vw;
    font-size: 24px;
    line-height: 1.4;
  }
  .concerns-list {
    gap: 10vw 3vw;
    justify-content: center;
  }
  .concerns-item {
    flex: 0 0 48%;
  }
  .concerns-arrow {
    width: 20%;
  }
}

/* reason */
.reason {
  padding: 60px 0 0;
  color:#fff;
  background: #444444;
}

.reason-title {
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.06em;
}

.reason-copy {
  margin-top: 20px;
  text-align: center;
  font-size: 26px;
  line-height: 1.6;
}
.reason-text {
  margin-top: 35px;
  text-align: center;
  font-size: 24px;
}
.reason-list {
  display: flex;
  align-items: center;
  height: 520px;
  position: relative;
  background: #505050;
}
.reason-list.--1 {
  margin-top: 60px;
}
.reason-list::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
}
.reason-list.--1::after {
  right:0;
  background: url(../img/img-reson01.jpg) center/cover no-repeat;
}
.reason-list.--2::after {
  left:0;
  background: url(../img/img-reson02.jpg) center/cover no-repeat;
}
.reason-list.--3::after {
  right:0;
  background: url(../img/img-reson03.jpg) center/cover no-repeat;
}

.reson-num {
  font-size: 20px;
  font-weight: bolder;
}
.reson-num-spn {
  font-size: 40px;
  font-weight: normal;
}
.reason-txt {
  width: min(45%,500px);
}

.reason-txt.--2 {
  margin-left: auto;
}

.reason-point {
  margin-top: 30px;
  font-size: 24px;
  line-height: 1.4;
}
.reason-body {
  margin-top: 40px;
  line-height: 2;
  font-size: 15px;
}
.reason-value {
  padding: 80px 0 0;
}
.reason-value-copy {
  font-size: 26px;
  text-align: center;
  line-height: 1.4;
}
.reason-value-flex {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  margin-top: 50px;
}

.reason-value-item {
  flex: 0 0 46%;
}

.reason-slide {
  margin-top: 140px;
}
.reason-slide .slick-slide img {
  width: 100%;
}

@media (max-width: 480px) {
  .reason-copy {
    font-size: 24px;
  }
  .reason-txt {
    width: 100%;
  }
  .reason-list::after {
    width: 100%;
    filter: brightness(.2);
  }
  .reason-txt {
    position: relative;
    z-index: 10;
  }
  .reason-value-flex {
    gap: 15vw;
  }
  .reason-value-item {
    flex: 0 0 100%;
  }
  .reason-slide {
    margin-top: 80px;
  }
}

/* story */
.story {
  padding: 100px 0;
}
@media (max-width: 480px) {
  .story {
    padding: 100px 0 50px;
  }  
}
.story-title {
  color: #707070;
  font-size: 20px;
  text-align: center;
}
.story-copy {
  margin-top: 10px;
  font-size: 26px;
  text-align: center;
}
.story-item {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
}

.story-text {
  flex: 0 0 60%
}
.story-text-ttl {
  font-size: 24px;
  line-height: 1.4;
}

.story-body {
  margin-top: 40px;
  line-height: 1.6;
  font-size: 15px;
}
.story-img {
  flex: 0 0 33%
}


.history {
  position: relative;
  margin-top: 100px;
  height: auto;
}

.history::after {
  position: absolute;
  top:0;
  left: 11%;
  content: '';
  width: 1px;
  height: 100%;
  background: #000;
  z-index: -1;
}

.history-item {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  padding: 20px 0;
  background: #fff;
}
.history-item + .history-item {
  margin-top: 40px;
}
.history-image {
  flex: 0 0 23%
}
.history-img {
  width: 100%;
}
.history-text {
    flex: 0 0 73%
}
.history-title {
  font-size: 24px;
}
.history-body {
  margin-top: 40px;
  line-height: 2;
  font-size: 15px;
}
.history-figcap {
  margin-top: 5px;
  color:#707070;
  font-size: 15px;
}

@media (max-width: 768px) {
  .history::after {
    left: 20%;
  }
  .history-image {
    flex: 0 0 40%;
  }
  .history-text {
    flex: 0 0 55%;
  }
  .history-body {
    margin-top: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .story-copy {
    font-size: 24px;
  }
  .story-item {
    gap:10vw;
  }
  .story-text,
  .story-img {
    flex: 0 0 100%;
  }
  .history::after {
    left: 50%;
  }
  .history-item {
    gap: 10vw;
  }
  .history-image,
  .history-text {
    flex: 0 0 100%;
  }
}

/* producers */
.producers-inner {
  padding: 60px 50px 75px;
  background: #EEEEEE;
}

.producers-title {
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 500;
}

.producers-item {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}

.producers-item.--reverse {
  flex-flow: row-reverse wrap;
  margin-top: 50px;
}

.producers-text {
  flex: 0 0 65%;
}

.producers-item-ttl {
  font-size: 24px;
  margin-bottom: 30px;
}

.producers-body {
  line-height: 1.6;
  /* letter-spacing: 0.06em; */
  font-size: 15px;
}

.producers-body + .producers-body {
  margin-top: 30px;
}


.producers-image {
  flex: 0 0 30%;
}

.producers-figcap {
  margin-top: 10px;
  font-size: 16px;
  text-align: right;
}

@media (max-width: 480px) {
  .producers-inner {
    padding: 60px 5% 75px;
  }
  .producers-item {
    gap:10vw;
  }
  .producers-text,
  .producers-image {
    flex: 100%;
  }
}


/* clients */
.clients {
  padding: 100px 0 125px;
}
@media (max-width: 480px) {
   .clients {
    padding: 100px 0 100px;
  } 
}
.clients-title {
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.06em;
}
.clients-copy {
  margin-top: 5px;
  font-size: 26px;
  line-height: 1.5;
  text-align: center;
}
.clients-list {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: .3%;
  margin-top: 70px;
}
.clients-item {
  flex: 0 0 20%;
  padding: 15px 0;
  color: #222;
  font-size: 16px;
  text-align: center;
  border: solid 1px #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-copy-sub {
  margin-top: 50px;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
}

.clients-voice {
  margin-top: 60px;
}

.clients-voice-item {
  position: relative;
  margin: 0 10px;
  padding: 25px 0;
  line-height: 2;
}

.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}

.clients-voice-txt {
  position: relative;
  height: 250px;
  padding: 35px 30px 0;
  line-height: 1.6;
  background: #eee;
}
.clients-voice-txt span {
  font-size: 13px;
  color: #707070;
}
.clients-voice-txt::before {
  position: absolute;
  top: -20px;
  left: 0;
  content:'VOICE';
  color: #707070;
  font-size: 20px;
  font-style: italic;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .clients-item {
    flex: 0 0 24%;
  }
}
@media (max-width: 480px) {
  .clients-copy {
    font-size: 24px;
  }
  .clients-list {
    gap: 1vw;
  }
  .clients-item {
    flex: 0 0 48%;
  }
}

/* faq */
.faq {
  padding: 100px 0 125px;
  background: url(../img/bg-faq.jpg) center/cover no-repeat;
  background-attachment: fixed;
}

.faq-inner {
  width: min(90%, 960px);
  margin: auto;
}

.faq-title {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  color: #ccc;
}

.faq-copy {
  margin-top: 10px;
  color:#eee;
  font-size: 26px;
  text-align: center;
}

.faq-section {
  margin-top: min(4.6875vw, 90px);
}

.faq-item {
  margin-bottom: 20px;
  overflow: hidden;
  padding: 25px 20px;
  background-color: #eee;

}

.faq-question {
  color: #000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  cursor: pointer;
  font-size: 21px;
  position: relative;
  padding-left: 10px;
}

.faq-question .label {
  margin-right: 15px;
  font-size: 28px;
}

.faq-question .text {
  flex: 1;
  font-size: 18px;
  text-align: left;
}

.faq-question .icon {
  width: 30px;
  height: 30px;
  position: relative;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background-color: #000;
  transition: 0.3s ease;
}

.faq-question .icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-question .icon::after {
  height: 100%;
  width: 1px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* 開いたとき：縦棒を非表示（＝マイナス） */
.faq-item.open .faq-question .icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.open .faq-answer {
  margin-top: 30px;
  max-height: none;
   /* 十分な高さにするか、auto＋JSで対応可 */
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.7;
}

@media screen and (max-width: 480px) {
  .faq-copy {
    font-size: 24px;
    line-height: 1.4;
  }
  .faq-question {
    padding: 0;
  }
  .faq-question .text {
    font-size: 18px;
    margin-right: .5vw;
  }
  .faq-question .label {
    margin-right: 2vw;
    font-size: 24px;
  }
  .faq-question .icon {
    width: 20px;
    height: 20px;
  }
}

.about {
  padding: 100px 0;
  background: #eee;
}
.about-inner {
  width: min(90%,960px);
  margin: auto;
}
.about-title {
  font-size: 20px;
  color: #707070;
  text-align: center;
}
.about-text {
  margin-top: 15px;
  font-size: 26px;
  text-align: center;
}
.about-list {
  margin-top: 40px;
}
.about-item {
  display: flex;
  flex-flow: row wrap;
  padding: 12px 0;
  line-height: 2;
  border-bottom: solid 1px #000;
}
.about-item:last-of-type {
    padding: 12px 0 35px;
}

.about-dt {
  width: 25%;
  padding-left: 13px;
  color:#707070;
}
.about-dd {
  width: 75%;
  font-size: 15px;
}
.about-dd iframe {
  max-width: 100%;
  margin-top: 20px;
}

.about-dd iframe + p {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .about-dt {
    width: 30%;
  }
  .about-dd {
    width: 70%;
    line-height: 1.5;
  }
}

@media screen and (max-width: 480px) {
  .about-text {
    font-size: 24px;
  }
  .about-item {
    padding: 5vw 0;
  }
  .about-dt,
  .about-dd {
    flex: 0 0 100%;
  }
  .about-dt {
    padding-left: 0;
    margin-bottom: 3vw;
  }
  .about-dd {
    line-height: 1.5;
  }

}

/* cta */
.cta {
  padding: 100px 0 90px;
}
@media screen and (max-width: 480px) {
  .cta.contact_p {
    padding: 50px 0;
  }
}
.cta.bgg {
  background: #EEEEEE;
}
.cta-title {
  color: #707070;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.06em;
}
.cta.contact_p .cta-title {
  font-size: 30px;
}
.cta.contact_p .cta-copy {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.6;
}
.cta-copy {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.5;
  text-align: center;
}
.cta-button {
  display: flex;
  justify-content: space-between;
  width: min(90%,535px);
  margin: 75px auto 0;
}
.cta-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 20px;
  width: 255px;
  padding: 20px 0;
  color: #fff;
  font-size: 16px;
  background: #3E3E3E;
}

.cta-link:hover {
  background: #C3A055;
}
.cta-btn-img--download {
  width: 20.56px;
}
.cta-btn-img--contact {
    width: 22.85px;
}
.hbspt-form {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .cta-copy {
    margin-top: 8vw;
    font-size: 24px;
  }
  .cta-button {
    flex-flow: column wrap;
    gap: 5vw;
    margin: 50px auto 0;
  }
  .cta-link {
    width: 100%
  }
}


/* form */
.form-area {
  width: 800px;
  margin: 50px auto;
}
@media screen and (max-width: 768px) {
  .form-area {
    width: 90vw;
    margin: 30px auto;
  }
}

@media screen and (max-width: 480px) {
  .cta-link {
    width: 100%
  }
}

/* footer */
.ftr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 100px 50px 40px;
  color: #fff;
  background: #000;
}
.ftr-wrap {
  display: flex;
  gap: 35px;
}
.ftr-fig {
  flex: 0 0 220px;
}
.ftr-add {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .ftr {
    display: block;
    padding: 50px 5% 15px;
  }
  .ftr-wrap {
    justify-content: space-between;
  }
  .ftr-copy {
    margin-top: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .ftr-wrap {
    flex-flow: row wrap;
    justify-content: center;
  }
  .ftr-add {
    width: 100%;
    text-align: center;
    line-height: 1.5;
  }
  .ftr-copy {
    margin-top: 50px;
  }
}


/* フローティングバナー */
.float-bnr {
  position: fixed;
  top: 70vh;
  right:30px;
  width: 240px;
  z-index: 10;
}
.float-bnr-close {
  position: absolute;
  width: 35px;
  top: -17px;
  right: -17px;
  transition: all .2 ease-in-out;
}
.float-bnr-link:hover {
  filter: brightness(.8);
}
.float-bnr-close:hover {
  filter: brightness(.9);
}

@media screen and (max-width: 480px) {
  .float-bnr {
    top: auto;
    bottom: 5vw;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.float-bnr:hover {
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  z-index: 20;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  width: 80%;
  max-width: 800px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  color: #aaa;
  position: absolute;
  top: -40px;
  right: -30px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}