@charset'utf-8';
/* メディアクエリ
@media screen and (min-width: 520px~959px) {}

@media screen and (min-width: 960px) {} */

/* リセットcss ---------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 共通設定 ------------------------------------*/
:root {
  /*　作り方 
  --primary-color: #1b9aaa; 
  　　指定方法
  color: var(--primary-color); */
  --primary-color: rgba(242, 242, 242, 0.8);
  --secondary-color: #808080;
  --accent-color: #337AB7;
}

body,
button {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: #333;
}

h2 {
  font-family: haboro-soft-condensed, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

ul li a {
  font-family: haboro-soft-condensed, sans-serif;
  font-weight: 200;
  font-style: normal;
}

h3 {
  font-size: 1.4rem;
  font-weight: normal;
}

img {
  width: 100%;
}

.lineup{
  margin: 3rem 0px 4.5rem;
}

/* メディアクエリ ////////////*/
@media screen and (min-width: 521px) {
  .lineup {
    margin: 5rem 0 7rem 0;
  }
}

@media screen and (min-width: 960px) {
  h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }

  h3 {
    font-size: 1.9rem;
  }

  .lineup {
    margin: 7rem 0 7.5rem 0;
  }
}

/* ハンバーガー ---------------------------------*/
/* ロゴ画像 */
.header_logo {
  position: fixed;
  top: 1.3rem;
  left: 0.8rem;
  width: 5.5rem;
  max-width: 8rem;
  z-index: 800;
}

#nav-input {
  display: none;
}

#nav-content {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  z-index: 900;
}

.nav ul {
  background: rgba(255, 255, 255, 0.93);
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav ul li {
  list-style: none;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

#nav-input:checked~#nav-content {
  left: 0;
}

/* ハンバーガーメニュー btnの× //////*/
.nav-btn {
  display: block;
  width: 40px;
  height: 40px;
  position: fixed;
  top: 0.5rem;
  right: 0.3rem;
  z-index: 1000;
}

.nav-btn span,
.nav-btn::before,
.nav-btn::after {
  width: 30px;
  height: 1.5px;
  background-color: #333;
  display: block;
  text-indent: 100%;
  /* 字下げプロパティ */
  white-space: nowrap;
  overflow: hidden;
  /* boxからはみ出た要素を回り込ませる */
  position: absolute;
  top: 50%;
  left: 5px;
  transition: 0.4s;
}

/* 1本線から3本線へ */
.nav-btn::before,
.nav-btn::after {
  content: "";
}

.nav-btn::before {
  transform: translateY(-9px);
}

.nav-btn::after {
  transform: translateY(9px);
}

#nav-input:checked~.nav-btn span {
  transform: scaleX(0);
}

#nav-input:checked~.nav-btn::before {
  transform: rotate(40deg);
}

#nav-input:checked~.nav-btn::after {
  transform: rotate(-40deg);
}

/* メディアクエリ ////////////*/
@media screen and (min-width: 960px) {
  .header_logo {
    top: 3.6rem;
    left: 5rem;
    width: 5.5rem;
  }

  .nav-btn {
    top: 3rem;
    right: 5rem;
  }

  .nav ul li {
    margin-bottom: 1.8rem;
  }

  /* ホバー時の挙動 */
  .header_logo:hover,
  .nav-btn:hover,
  .nav ul li a:hover {
    cursor: pointer;
    opacity: 0.6;
  }
}

/* mv スライドショー ----------------------------*/
.title{
  padding-top: 2rem;
  background: white;
}

.product{
  padding-bottom: 2rem;
  margin-bottom: 0;
}

/* slick スライドショー  */
.my-slick img {
  display: block;
  width: 100%;
  height: auto;
  /* 画像のトリミング */
  object-fit: contain;
  overflow: hidden;
  position: relative;
}

/* product -------------------------------------*/
.lineup {
  padding: 0 3rem;
}

.all-item {
  /* contactのmax-width: 57rem; */
  max-width: 65rem;
  margin: 0 auto;
}

.item {
  /* margin-bottom: 5.5rem; */
  margin-bottom: 3.5rem;
}

.item:last-child {
  margin-bottom: 0;
}

.number {
  font-weight: lighter;
}

.item p {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.item_bd {
  width: fit-content;
  border: 1px solid #333;
  padding: .2rem 0.5rem;
  border-radius: 0.2rem;
}

.item button {
  width: 100%;
  padding: .5rem 0;
  background: var(--secondary-color);
  border: none;
  border-radius: 0.2rem;
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
}

/* メディアクエリ ////////////*/
@media screen and (min-width: 521px) and (max-width:959px) {
  .lineup {
    padding: 0 4rem;
  }
}

@media screen and (min-width: 960px) {
  .lineup {
    padding: 0 6rem;
  }

  .all-item {
    display: flex;
    justify-content: center;
  }

  .item {
    margin-bottom: 0;
    margin-right: 5rem;
  }

  .item:last-child {
    margin-right: 0;
  }

  /* ホバー時の挙動 */
  .item button:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

/* footer -------------------------------------*/
footer {
  background: var(--secondary-color);
  max-width: 100%;
  color: white;
}

footer a {
  color: white;
}

/* 画像を白に変更 */
footer img {
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

.container {
  padding: 3.5rem 3rem 2rem;
  max-width: 60rem;
  margin: 0 auto;
}

.footer_logo_center {
  text-align: center;
  margin-bottom: 2rem;
}

.footer_logo img {
  width: 6.5rem;
}

.footer_nav ul {
  list-style: none;
}

.footer_nav ul li {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.sns {
  text-align: right;
}

.sns img {
  width: 1.7rem;
  margin: 0.6rem 0 0.6rem 0.5rem
}

.company {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}

.company a {
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.company a:first-child {
  margin-left: 0;
}

.copyright {
  text-align: center;
  font-size: 0.7rem;
}

/* メディアクエリ /////////////*/
@media screen and (min-width: 521px) {

  /* ホバー時の挙動 */
  footer a:hover {
    opacity: 0.6;
  }

  .footer_nav ul {
    display: flex;
    justify-content: space-around;
    max-width: 40rem;
    margin: 0 auto;
  }

  .sns {
    text-align: center;
  }

  .sns img {
    width: 1.5rem;
    margin: 0.5rem 0 1.4rem 0.5rem;
  }

  .company {
    margin-bottom: 0.5rem;
  }
}