@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/* 決まりごと
---------------------------------------------------------- */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* 背景
---------------------------------------------------------- */
.Tomica-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  isolation: isolate;
}
.Tomica-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(0 0, calc(50% + 130px) 0, calc(50% - 200px) 100%, 0 100%);
  background:
    repeating-linear-gradient(-75.8deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 2px, transparent 2px, transparent 10px), #cdcdcd;
  pointer-events: none;
}
.customworks_contents {
  position: relative;
  z-index: 1;
  width: 960px;
  max-width: 100%;
  margin: 0 auto 5rem;
}
/* html_決まりごと
---------------------------------------------------------- */
/*hover*/
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
/*個別アイテム_グレーアウト*/
.img_grayscale {
  filter: grayscale(1);
  opacity: 0.5;
}
/*特定リンク_打ち消し*/
.no_change, .no_change:link, .no_change:visited, .no_change:hover, .no_changee:active {
  color: inherit;
  text-decoration: none;
}
/* スライダー
---------------------------------------------------------- */
/*スライダー_コンテナ*/
.index_slider_container {
  width: 960px;
  height: auto;
  margin: 3.5rem auto 0;
}
.index_swiper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  border: solid 1px #111;
}
.swiper-slide {
  line-height: 0;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
}
/* 各項目
---------------------------------------------------------- */
/* MOVIE/NEW/INFORMATION_コンテナ*/
.index_category_container {
  width: 900px;
  height: auto;
  margin: 0 auto;
}
/* MOVIE/NEW/INFORMATION_タイトル*/
.index_category_head {
  width: 960px;
  height: auto;
  margin: 2rem auto 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #111;
}
.index_category_head::before {
  content: '';
  width: 90px;
  height: 20px;
  background-color: #111;
}
.index_category_head::before {
  margin-right: 15px;
}
.index_category_title {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  color: #111;
}
/* MOVIE
---------------------------------------------------------- */
.index_movie_container {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.index_movie_container iframe, .index_movie_container object, .index_movie_container embed {
  width: 100%;
  height: 100%;
}
/* NEW
---------------------------------------------------------- */
/* 新製品_コンテナ */
.index_new_container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  margin: 0 auto 2rem;
}
/* 新製品_画像 */
.index_new_box {
  width: 100%;
  height: auto;
  border: solid 1px #111;
}
.index_new_img {
  line-height: 0;
}
.index_new_img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.index_new_name {
  font-size: 1.44rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  padding: 8px 1.5rem 8px;
  color: #fff;
	text-align: left;
  background: linear-gradient(135deg, #333 81%, #111 81%);
}
/* ラインナップへのボタン */
.btn_base {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(135, 135, 135, 1), 0px 0px 15px rgba(135, 135, 135, 1);
}
a.btn_lineup_flat {
  position: relative;
  display: block;
  width: 600px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  overflow: hidden;
  padding: 0.6rem 2rem;
  box-sizing: border-box;
  color: #fff;
  border-radius: 1rem;
  background: #333;
}
a.btn_lineup_flat span {
  position: relative;
  z-index: 1;
}
a.btn_lineup_flat:before {
  position: absolute;
  top: 0;
  left: calc(-140% + 50px);
  width: 200%;
  height: 500%;
  content: '';
  transition: all .3s ease-in-out;
  transform: rotate(135deg) translateX(0) translateY(0);
  background: #000;
}
a.btn_lineup_flat:after {
  position: absolute;
  top: -400%;
  right: calc(-140% + 50px);
  width: 200%;
  height: 500%;
  content: '';
  transition: all .3s ease-in-out;
  transform: rotate(135deg) translateX(0) translateY(0);
  background: #000;
}
a.btn_lineup_flat:hover:before {
  transform: rotate(135deg) translateX(0) translateY(50%);
}
a.btn_lineup_flat:hover:after {
  transform: rotate(135deg) translateX(0) translateY(-50%);
}
/* INFORMATION
---------------------------------------------------------- */
.index_info_container {
  width: 100%;
  height: auto;
}
.index_info_body {
  width: 100%;
  height: 9rem;
  margin: 0 auto 3rem;
  padding: 5px 10px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fff;
  border: 1px solid #111;
}
.info_category_box {
  display: grid;
  grid-template-columns: 130px 1fr;
  column-gap: 20px;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  box-sizing: border-box;
  align-items: center;
  border-bottom: 1px solid #999;
}
.info_category {
  align-self: start;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5px 1rem;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  background-color: #333;
}
.info_txt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
  padding-left: 10px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  color: #111;
  text-align: left;
}
.info_txt a {
  color: inherit;
}