@charset "utf-8";
/* MV
----------------------------------------------------------------------------------------------------*/
.mv-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding: 10rem 4rem;
}
.mv-top__image {
  flex: 6;
  display: flex;
  gap: 5rem;
  max-width: 112rem;
}
.mv-top__image img {
  width: 50%;
  height: auto;
  max-width: 51.2rem;
}
.mv-top__title {
  flex: 4;
  max-width: 72rem;
}
.mv-top__title ul {
  padding: 0;
  list-style-type: none;
}
.mv-top__title a {
  position: relative;
  display: block;
  width: 62rem; /* 右の吹き出し余白込み */
  height: 8rem;
  margin: 2rem 5rem 2rem 0;
  line-height: 8rem;
  text-decoration: none;
  white-space: nowrap;
  overflow: visible;
}
.mv-top__title a > .btn__text:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 51rem;
  height: 100%;
  font-family: "Dela Gothic One", sans-serif;
  font-size: min(4vw, 7.2rem);
}
.mv-top__title a > .btn__text:nth-child(2) {
  position: absolute;
  top: 0;
  left: 51rem; /* ← 最初から空ける右余白 */
  transform: translateY(-50%) scale(0.6);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.25s cubic-bezier(.2, 1.5, .4, 1), opacity 0.15s;
  pointer-events: none;
}
.mv-top__title a:hover > .btn__text:nth-child(2) {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.mv-top__title .btn__text svg {
  display: block;
  height: 7.71rem;
  width: 11.64rem;
}
.mv-top__title .btn__text svg path {
  fill: currentColor; /* 色をCSSで制御 */
}
.mv-top__title .btn__text > span {
  position: absolute;
  top: -0.25rem;
  left: 0;
  z-index: 10;
  width: 11.64rem;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.mv-top__title a:hover.color-logo {
  color: #ff2b00;
}
.mv-top__title a:hover.color-works {
  color: #00bec8;
}
.mv-top__title a:hover.color-price {
  color: #ff9300;
}
.mv-top__title a:hover.color-company {
  color: #2da600;
}
.mv-top__title a:hover.color-contact {
  color: #7b63ff;
}
@media screen and (max-width: 1800px) {
  .mv-top__image, .mv-top__title, .mv-top__image img {
    max-width: none;
  }
  .mv-top__title a {
    margin: 1rem 5rem 1rem 0;
  }
}
@media screen and (max-width: 1300px) {
  .mv-top__image {
    width: 50%;
    gap: 2rem;
  }
  .mv-top__title {
    width: 50%;
  }
  .mv-top__title a {
    margin: 0 5rem 0 0;
  }
  .mv-top__title a > .btn__text:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 41rem;
    height: 100%;
    font-family: "Dela Gothic One", sans-serif;
    font-size: min(4vw, 7.2rem);
  }
  .mv-top__title a > .btn__text:nth-child(2) {
    position: absolute;
    top: 0;
    left: 41rem; /* ← 最初から空ける右余白 */
    transform: translateY(-50%) scale(0.6);
    transform-origin: left center;
    opacity: 0;
    transition: transform 0.25s cubic-bezier(.2, 1.5, .4, 1), opacity 0.15s;
    pointer-events: none;
  }
}
@media screen and (max-width: 1023px) {
  .mv-top {
    flex-direction: column;
    padding: 16rem 0 5rem;
    margin: 0 auto;
  }
  .mv-top__title {
    display: none;
  }
  .mv-top__image {
    gap: 1rem;
    width: calc(340 / 375 * 100%);
    /*min-width: 34rem;*/
    margin: 0 auto;
  }
  .mv-top__image img {
    width: 100%;
    min-width: 16.4rem;
  }
}
.mv-top__title li a div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 11.57rem;
  width: 17.5rem;
  color: #000000;
  text-decoration: none;
}
.mv-top__title li a svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 11.57rem;
  width: 17.5rem;
}
.mv-top__title li a div span {
  z-index: 10;
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
}
.mv-top__title li a path {
  fill: #FFFFFF;
  transition: 0.5s;
}
.mv-top__title li a:hover.color-logo path {
  fill: #ff2b00;
}
.mv-top__title li a:hover.color-works path {
  fill: #00bec8;
}
.mv-top__title li a:hover.color-price path {
  fill: #ff9300;
}
.mv-top__title li a:hover.color-company path {
  fill: #2da600;
}
.mv-top__title li a:hover.color-contact path {
  fill: #7b63ff;
}
/* Section - Common
----------------------------------------------------------------------------------------------------*/
.sec-contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 151rem;
  margin: 0 auto;
}
.sec-logo, .sec-works, .sec-price, .sec-company {
  position: relative;
  display: block;
  width: 73.5rem;
  height: 67rem;
  margin: 7rem auto;
}
.top-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 36rem;
}
.top-title {
  position: absolute;
  top: 9rem;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1.5rem;
  width: 42.5rem;
}
.top-title a {
  text-decoration: none;
}
.top-title__jp h2 {
  margin-bottom: 3rem;
  font-size: 4rem;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}
.top-title__en {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  font-family: "Braah One", sans-serif;
  font-size: 9rem;
  text-align: right;
  line-height: 1;
}
.bk-text {
  position: absolute;
  inset: 0;
  z-index: -1;
  color: #FFFFFF;
  -webkit-text-stroke: 2rem #FFFFFF;
}
.top-title__text p {
  font-size: 2rem;
  font-weight: 600;
  text-align: justify;
  line-height: 1.75;
}
@media screen and (max-width: 1023px) {
  .sec-contents {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }
  .sec-logo, .sec-works, .sec-price, .sec-company {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    width: 34rem;
    margin: 0 auto 25rem;
  }
  .top-image {
    position: absolute;
    left: 0;
    width: 25rem;
    margin: 0 auto;
  }
  .top-title {
    position: inherit;
    top: 19rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
    gap: 0;
    width: 34rem;
  }
  .top-title__jp h2 {
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 900;
    text-align: left;
    white-space: nowrap;
  }
  .top-title__en {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    font-family: "Braah One", sans-serif;
    font-size: 5.2rem;
    text-align: left;
    line-height: 1;
  }
  .bk-text {
    position: absolute;
    inset: 0;
    z-index: -1;
    color: #FFFFFF;
    -webkit-text-stroke: 1rem #FFFFFF;
  }
  .top-title__text p {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: justify;
    line-height: 1.75;
  }
}
/* Section - LinkButton
----------------------------------------------------------------------------------------------------*/
.top-title__linkbtn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 9.7rem;
  width: 16rem;
  margin-left: 26.5rem;
  color: #FFFFFF;
  text-decoration: none;
}
.top-title__linkbtn a svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.top-title__linkbtn a span {
  z-index: 10;
  font-size: 2rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .top-title__linkbtn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9.7rem;
    width: 16rem;
    margin-left: 18rem;
    color: #FFFFFF;
    text-decoration: none;
  }
}
/* Section - Logo Effect
----------------------------------------------------------------------------------------------------*/
.sec-logo .top-title__jp h2 {
  color: #ff2b00;
}
.sec-logo .top-title__linkbtn a path {
  fill: #ff2b00;
  transition: 0.5s;
}
.sec-logo .top-title__linkbtn a:hover path {
  fill: #000000;
}
/* Section - Works
----------------------------------------------------------------------------------------------------*/
.sec-works .top-title__jp h2 {
  color: #00bec8;
}
.sec-works .top-title__linkbtn a path {
  fill: #00bec8;
  transition: 0.5s;
}
.sec-works .top-title__linkbtn a:hover path {
  fill: #000000;
}
/* Section - Price
----------------------------------------------------------------------------------------------------*/
.sec-price .top-title__jp h2 {
  color: #ff9300;
}
.sec-price .top-title__linkbtn a path {
  fill: #ff9300;
  transition: 0.5s;
}
.sec-price .top-title__linkbtn a:hover path {
  fill: #000000;
}
.sec-price .top-title__en small {
  font-size: 8.5rem;
}
@media screen and (max-width: 1023px) {
  .sec-price .top-title {
    top: 14rem;
  }
  .sec-price .top-title__en small {
    font-size: 5.2rem;
  }
}
/* Section - company
----------------------------------------------------------------------------------------------------*/
.sec-company .top-title__jp h2 {
  color: #2da600;
}
.sec-company .top-title__linkbtn a path {
  fill: #2da600;
  transition: 0.5s;
}
.sec-company .top-title__linkbtn a:hover path {
  fill: #000000;
}
.sec-company .top-title__en small {
  font-size: 6.5rem;
}
@media screen and (max-width: 1023px) {
  .sec-company .top-title {
    top: 14rem;
  }
  .sec-company .top-title__en small {
    font-size: 5.2rem;
  }
}
/* Section - LogoWorks
----------------------------------------------------------------------------------------------------*/
.sec-logoworks {
  position: relative;
  overflow: hidden;
  margin-bottom: 5rem;
}
.logo-marquee--1 {
  position: relative;
}
.logo-marquee--2 {
  position: absolute;
  top: 0;
  left: 0;
}
.logo-marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  will-change: transform;
}
.logo-marquee li {
  list-style: none;
  padding: 0 0.5rem;
  width: calc(100vw / 14 - 1rem);
}
.logo-marquee img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .logo-marquee li {
    width: calc(100vw / 3 - 0.5rem);
  }
}
/*----------------------------
バナー
------------------------------*/
.bannerBox__title {
  position: relative;
  width: min(90%, 100rem);
  margin: 5rem auto;
  color: #000;
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  white-space: nowrap;
}
.bannerBox__title::before, .bannerBox__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20%;
  height: 1px;
  background: #CCC;
}
.bannerBox__title::before {
  left: 0;
}
.bannerBox__title::after {
  right: 0;
}
.bannerBox__title h3 {
  display: block;
  background-color: #fff;
  padding: 0 1rem;
}
.bannerBox ul {
  list-style-type: none;
  margin: 0 auto;
  padding: 2rem 0 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3em;
  width: min(90%, 1154px);
}
.bannerBox ul li {
  margin: 0 auto;
  padding: 0;
  border: 1px solid #dcdcdc;
  border-radius: 0.5em;
  overflow: hidden;
}
.bannerBox ul li img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.bannerBox ul li a {
  transition: 0.5s;
}
.bannerBox ul li a:hover {
  opacity: 0.5;
}
section.copyright {
  background: #7abe4a;
  margin: 0;
  padding: 1em 0;
}
.copyright p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 767px) {
  .bannerBox ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em 0;
    padding: 5em 0;
  }
}