@charset "utf-8";
/* CSS Document */

*,
*::before,
*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  color:#2c2e36;
  background-color: #fdfdfd;
  line-height:1.7;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);/*20px~16px*/
}

main{
  background: #171a1f;
  color: #fff;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

ul{
  margin: 0;
  padding: 0;
  list-style:none;
}

a{
  text-decoration:none;
  color:inherit;
} 

h2{
  font-size: clamp(1.5rem, 0.591rem + 4.55vw, 4rem);
}

h2 span {
  background: linear-gradient(
    transparent 55%,
    rgba(180, 180, 180, 0.7) 55%
  );
}

strong{
  font-size: clamp(1.125rem, 0.67rem + 2.27vw, 2.375rem);
  line-height: 4rem;
}

.highlight-red{
  color: #D70A2F;
}

/*デバッグ用 *//*
* {
  outline: 1px solid red;
}
*/

@media screen and (max-width: 768px){
  strong{
  line-height:1.8rem;
}

}

/************************ここからheader***********************/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: clamp(0.688rem, 0.528rem + 0.8vw, 1.125rem);/*18px~12px*/
}

header h1 img {
  height: 40px;
  width: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 10px;
  }

}

/************************ここからヒーロー***********************/

.hero{
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero img{
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width:768px){
  .hero{
  margin-bottom:0px;

}

}

/************************ここからproduct***********************/

.introduction,.tools,.guide{
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px;
}

.introduction__title{
  margin-bottom: 1rem;
}

.introduction__text{
  font-size: clamp(1rem, 0.682rem + 1.59vw, 1.875rem);
  line-break: strict;
  white-space: pre-line;
  line-height: 1.2;
  margin-bottom: 60px;
}

.introduction__list,.products__features{
  display: flex;
}

.introduction__list {
  gap: 20px;
}

.introduction__item {
  position: relative;
  overflow: hidden;
}
.introduction__item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  line-height: 1;

  color: #fff;
  opacity: 0.20;

  z-index: 0;
  pointer-events: none;
}

.introduction__item:nth-child(1)::after {
  content: "01";
}

.introduction__item:nth-child(2)::after {
  content: "02";
}

.introduction__item:nth-child(3)::after {
  content: "03";
}

.introduction__item h3,
.introduction__item p {
  position: relative;
  z-index: 1;
}

.introduction__item h3{
  text-align: center;
  font-size: clamp(1.125rem, 0.761rem + 1.82vw, 2.125rem);
  margin-bottom: 1rem;
  line-height: 2rem;
}

.introduction__item p{
  font-size: clamp(1rem, 0.682rem + 1.59vw, 1.875rem);
}

.products__series {
  position: relative;
  overflow: hidden;
}

.products__series img {
  display: block;
  width: 100%;
  height: auto;
}


/* 左上：シリーズ名 */
.products__heading {
  position: absolute;
  top: 8%;
  left: 15%;

  font-size: clamp(2rem, 1.273rem + 3.64vw, 4rem);
  margin: 0;
  color: #806419;
  text-shadow:
    0 0 2px #fff,
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 18px rgba(255, 255, 255, 0.9);
}


/* 右上：数量限定 */
.products__limited {
  position: absolute;
  top: 8%;
  right: 15%;

  margin: 0;
  padding: 0.5em 1.5em;

  color: #fff;
  background: #c00;

  font-weight: bold;
}

.products__status{
  position: absolute;
  top: 8%;
  right: 15%;

  margin: 0;
  padding: 0.5em 1.5em;

  color: #fff;
  background: #d85e91;

  font-weight: bold;
}


/* 左下：説明文 */
.products__text {
  position: absolute;
  left: 15%;
  bottom: 8%;

  width: 60%;
  margin: 0;

  font-size: clamp(1.125rem, 0.898rem + 1.14vw, 1.75rem);
  color: #080808;
  line-height: 1.5;
  font-weight: 800;
  text-shadow:
    0 0 3px #fff,
    0 0 7px #fff,
    0 0 14px rgba(255, 255, 255, 0.95),
    0 0 24px rgba(255, 255, 255, 0.7);
  line-break: strict;
  white-space: pre-line;
}

.products__title{
  padding: 1rem;
}

.products__lead{
  padding: 40px 80px;
}

.products__lead .line-left {
  display: block;
  text-align: left;
}

.products__lead .line-right {
  display: block;
  text-align: right;
}

.products__features{
  justify-content: center;
  gap: 50px;
}

.products__features img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
}
.products__feature-text{
  font-size: clamp(1rem, 0.727rem + 1.36vw, 1.75rem);
  line-break: strict;
  white-space: pre-line;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.product__price{
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.product__image img{
  width: 100%;
  height: 600px;
  object-fit: contain;
  display: block;
  background: #313131;
}

.product__spec > div {
  display: flex;
  gap: 1rem;
  background-color:#0f0824 ;
  padding: 0.4rem;
}

.product__spec dt {
  width: 8em;
  flex-shrink: 0;
  font-weight: bold;
}

.product-slider img {
  display: block;
  width: 100%;
}

.product-slider {
  position: relative;
}

.product-slider .slick-prev,
.product-slider .slick-next {
  width: 44px;
  height: 44px;
  z-index: 10;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);

  top: 50%;
  transform: translateY(-50%);
}

.product-slider .slick-prev {
  left: 15px;
}

.product-slider .slick-next {
  right: 15px;
}

.product-slider .slick-prev::before,
.product-slider .slick-next::before {
  color: #333;
  font-size: 34px;
  opacity: 1;
  line-height: 1;
  position: relative;
  top: 2px;
}

.product-slider .slick-prev:hover,
.product-slider .slick-next:hover {
  background: #fff;
}

.product__title,
.product__price,
.product__description{
  color: #fff;
}

.product__title span {
  font-weight: 900;
}

.product__labels {
  display: flex;
  gap: 8px;
  align-items: center;
}

.product__label {
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0.4em 0.8em;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}

.product__label--limited {
  background: #c00;
}

.product__label--garage {
  background: #e67e22;
}

.product__label--painted {
  background: #d85e91;
}

.products__title,.products__assembly,.products__list{
  max-width: 1440px;
  margin: 0 auto;
}

.products__title{
  padding-left: 80px;
}

.product__content{
  padding: 1rem;
}

.product__description{
  padding: 1rem 0;
  line-break: strict;
  white-space: pre-line;
  line-height: 1.3;
}

.product__title{
  margin-bottom: 0.5rem;
}

.product__price {
  display: flex;
  align-items: baseline;
  margin-bottom: 1rem;
}

.product__price span{
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  font-weight: 600;
}

/*ゴジラ*/
.products__series--godzilla{
  background-image: url(../image/godzilla.png);
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
}

.products__list--alternate .products__item{
  margin-bottom: 1rem;
}

.products__list--alternate .product {
  display: flex;
}

.products__list--alternate .products__item:nth-child(even) .product {
  flex-direction: row-reverse;
}

.products__list--alternate .product__image {
  width: 50%;
}

.products__list--alternate .product__content {
  width: 50%;
}

.guide__button--detail {
  background-color: #3771C8;
}

.products__series--g01,.products__series--g03{
  background: linear-gradient(
  135deg,
  #171923 0%,
  #292c35 45%,
  #50545a 100%
);
}

.products__series--g02,.products__series--g04{
  background: linear-gradient(
  135deg, 
  #3d080d 0%, 
  #25282d 50%, 
  #555a60 100%);
}

/*エヴァ*/
.products__series--eva{
  background-image: url(../image/eva.png);
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
  background-color: #0f0824;
}

.products__list--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.products__list--grid .product {
  display: flex;
  flex-direction: column;
}

.products__list--grid .products__item {
  min-width: 0;
}

.products__list--grid .product {
  min-width: 0;
}

.products__list--grid .product__image {
  min-width: 0;
}

.products__series--e01{
  background: linear-gradient(
    135deg, 
    #55585f 0%, 
    #292b35 50%, 
    #32183d 100%);
}

.products__series--e02{
  background: linear-gradient(
    135deg, 
    #77797b 0%, 
    #45474a 50%, 
    #292b2f 100%);
}

.products__series--e03{
  background: linear-gradient(
    135deg, 
    #5b5d61 0%, 
    #302a2f 50%, 
    #55151d 100%);
}

.products__series--e04{
  background: linear-gradient(
    135deg, 
    #626268 0%, 
    #35343c 50%, 
    #40354d 100%);
}

.products__series--e05{
  background: linear-gradient(
  135deg,
  #747a7d 0%,
  #3d4a52 50%,
  #1d2933 100%
);
}

.products__series--e06{
  background: linear-gradient(
  135deg,
  #69696a 0%,
  #3a3436 45%,
  #35151a 100%
);
}

.products__divider {
  display: none;
}

@media (max-width: 912px) {

  .products__series {
    position: relative;
  }

  .products__series img {
    width: 100%;
    height: auto;
  }

  /* シリーズ名 */
  .products__heading {
    top: 2%;
    left: 1%;
    line-height: 1.3;
    white-space: nowrap;
  }

  /* 数量限定 */
  .products__limited {
    top: 70%;
    right: 5%;
    padding: 0.35em 0.8em;
    font-size: clamp(0.75rem, 3.2vw, 1rem);
    line-height: 1.3;
  }

  .products__status{
    top: 65%;
    right: 5%;
    padding: 0.35em 0.8em;
    font-size: clamp(0.75rem, 3.2vw, 1rem);
    line-height: 1.3;
  }

  /* 説明文 */
  .products__text {
    left: 6%;
    bottom: 0;
    width: 90%;
    font-size: clamp(0.8rem, 3vw, 1.1rem);
    line-height: 1.5;
  }

   /* 究極造形シリーズ */
  .products__text--ultimate {
    bottom: 10%;
  }

  /* Yoshi.シリーズ */
  .products__text--yoshi {
    bottom: 15%;
  }

}

@media screen and (min-width: 769px) {

  .products__list--grid .product {
    height: 100%;
  }

  .products__list--grid .product__content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .products__list--grid .product__content > div:last-child {
    margin-top: auto;
  }

}

@media screen and (max-width: 768px) {
  .introduction,
  .tools,
  .guide {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 20px 20px;
  }

  .introduction__text{
    margin-bottom: 30px;
  }

  .products__title{
    padding-left: 20px;
  }

  .introduction__list{
    flex-direction: column;
  }

  /* 商品シリーズ */
  .products__heading {
    font-size: 1.25rem;
  }

  .products__limited {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
  }

  .products__text {
    width: 88%;
    font-size: 1rem;
    line-height: 1.5;
  }


  /* 商品特徴：横並びを維持 */
  .products__features {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .products__features img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }


  .products__features > * {
    flex: 1;
    min-width: 0;
  }

  .products__lead{
    padding: 1rem 0;
  }


  /* 商品画像 */
  .product__image img {
    height: 350px;
  }

  .products__feature-text{
    margin-bottom: 0;
  }

  /* ゴジラ：1列 */
  .products__series--godzilla{
    background-image: url(../image/godzilla_sp0.png);
    padding-bottom: 0;
  }
  
  .products__assembly,.products__list{
    padding:1rem 1rem 0;
  }
 
  .products__list--alternate .product,
  .products__list--alternate .products__item:nth-child(even) .product {
    flex-direction: column;
  }

  .products__list--alternate .products__item{
  margin-bottom: 0;
}

  .products__list--alternate .product__image,
  .products__list--alternate .product__content {
    width: 100%;
  }


  /* エヴァ：1列 */
  .products__series--eva{
    background-image: none;
    padding-bottom: 0;
}


  .products__list--grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .products__divider {
    display: block;
    width: 100%;
  }

  .products__divider img {
    display: block;
    width: 100%;
    height: auto;
  }
  /* 数量限定 */
  .products__limited {
    top: 63%;
    right: 5%;
    padding: 0.35em 0.8em;
    font-size: clamp(0.75rem, 3.2vw, 1rem);
    line-height: 1.3;
  }

  .products__status{
    top: 60%;
    right: 3%;
    padding: 0.35em 0.8em;
    font-size: clamp(0.75rem, 3.2vw, 1rem);
    line-height: 1.3;
  }

  /* 説明文 */
  .products__text {
    left: 6%;
    bottom: 6%;
    width: 90%;
    font-size: clamp(0.8rem, 3vw, 1.1rem);
    line-height: 1.5;
  }

   /* 究極造形シリーズ */
  .products__text--ultimate {
    bottom: 8%;
  }

  /* Yoshi.シリーズ */
  .products__text--yoshi {
    bottom: 8%;
  }

}


@media screen and (max-width: 400px){
  /* 数量限定 */
  .products__limited {
    top: 55%;
    right: 5%;
    padding: 0.35em 0.8em;
    font-size: clamp(0.75rem, 3.2vw, 1rem);
    line-height: 1.3;
  }

  .products__status{
    top: 55%;
    right: 5%;
    padding: 0.35em 0.8em;
    font-size: clamp(0.75rem, 3.2vw, 1rem);
    line-height: 1.3;
  }

  /* 説明文 */
  .products__text {
    left: 6%;
    bottom: 6%;
    width: 90%;
    font-size: clamp(0.8rem, 3vw, 1.1rem);
    line-height: 1.5;
  }

   /* 究極造形シリーズ */
  .products__text--ultimate {
    bottom: 8%;
  }

  /* Yoshi.シリーズ */
  .products__text--yoshi {
    bottom: 8%;
  }

  .product__labels {
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .product__label {
    margin: 0;
    margin-bottom: 0.5rem;
    padding: 0.4em 0.3em;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
  }
}


/************************ここから工具***********************/

.tools{
  background-image: url(../image/tool.png);
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
  background-color: #0f0824;
}

.tools__title {
  padding: 1rem;
  margin-bottom: 1rem;
}

.tools__lead,
.tools__guide {
  padding: 1rem;
}

.tools__lead {
  margin-bottom: 2rem;
  background: linear-gradient(
    #0d2479
  );
}

.tools__heading {
  font-size: clamp(1.125rem, 0.511rem + 3.07vw, 2.813rem);
  margin-bottom: 1rem;
}

.tools__text {
  font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  line-break: strict;
  white-space: pre-line;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.tools__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tools__item {
  position: relative;
  padding-left: 1.2em;
}
.tools__item span{
  color: #fa112d;
}

.tools__item::before {
  content: "・";
  position: absolute;
  left: 0;
}
/************************ここからお知らせ***********************/
.guide__title{
  padding: 1rem;
}

.guide__list{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  padding: 1rem;
}

.guide__item {
  width: 600px;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  padding: 20px 0;
}

.guide__heading{
  font-size: clamp(1.125rem, 0.807rem + 1.59vw, 2rem);
  text-align:center;
  color: #080808;
}

.guide__text{
  text-align:start;
  padding: 0 35px 15px;
  color: #080808;
  line-break: strict;
  white-space: pre-line;
  line-height: 1.2;
}

.guide__button{
  margin-top:auto;

  display:block;
  width:280px;

  padding:14px 20px;

  text-align:center;
  text-decoration:none;

  color:#fff;
  border-radius:6px;

  margin-left:auto;
  margin-right:auto;
}

.guide__sns{
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.guide__button--sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.guide__button--mail{
  background:#3771C8;
}


@media screen and (max-width: 768px) {

  .guide__list {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .guide__item {
    width: 100%;
    padding:1rem;
  }

  .guide__text {
    padding: 0;
    padding: 0 5px 5px;
  }

  .guide__button {
    width: 100%;
    max-width: 280px;
    padding: 12px 15px;
  }

  .guide__button--sns img{
    max-width: 53%;
  }
  
}

/************************ここからfooter***********************/
.site-footer{
    padding: 60px;
}

.site-footer__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.site-footer__info{
  display: flex;
  gap: 1rem;
}


.site-footer__copy{
  font-size: clamp(0.625rem, 0.489rem + 0.68vw, 1rem);
}

.site-footer__list{
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px){
    .site-footer{
      padding: 20px 10px;
    }
    .site-footer__info{
      margin-bottom: 1rem;
    }

    .site-footer__inner{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }

    .site-footer__nav{
      line-height: 0.8rem;
    }

    .site-footer__list{
      flex-direction: column;
      gap: 0;
    }

}