@charset "utf-8";

:root {
  --roboto: "Roboto Condensed", sans-serif;
  --red: #cc0000;
}





/* -----------------------------------------------------------
　common
----------------------------------------------------------- */

* {box-sizing: border-box;}
img {max-width: 100%;}
.fwbold {font-weight: bold;}
figure img {display: block;}
body figure {margin-bottom: 0;}
a {
  color: inherit;
  text-decoration: none;
}

body.renew {
  font-family: "Noto Sans JP","ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.75;
  color: #000;
}
body.open {overflow: hidden;}

@media screen and (min-width: 768px) {
  
  .sp_cont {display: none !important;}
  
}
a:hover {
  text-decoration: underline;
  color: inherit;
}

/* -----------------------------------------------------------
  template
----------------------------------------------------------- */

/* :::::::::: header :::::::::: */

header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  height: 95px;
  padding: 27px 20px;
  color: #FFFFFF;
  background: #000000;
}
header .logo {
  width: 180px;
  margin: 0;
}
header .logo a {
  display: block;
  height: 100%;
}
header .logo a img {display: block;}
.header_store {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  display: block;
  width: 230px;
  height: 100%;
  border-left: solid 4px var(--red);
}
.header_store a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: 0.5s;
}
.header_store a:hover {background: var(--red);}
.header_store a img {width: 205px;}

/* :::::::::: nav :::::::::: */

nav .menu {display: none;}
nav .menu_box {
  position: absolute;
  z-index: 1;
  inset: 0 234px auto auto;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column-reverse;
}
nav .menu_box .sp_store {display: none;}
nav .menu_box .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  height: 50px;
}
nav .menu_box .nav > li {
  position: relative;
  z-index: 0;
  height: 100%;
  line-height: 50px;
  width: fit-content;
}
nav .menu_box .nav > li > a,
nav .menu_box .nav > li > span {
  display: block;
  width: fit-content;
  padding: 0 20px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}
nav .menu_box .nav > li > a:hover,
nav .menu_box .nav > li > span:hover {color: var(--red);}
nav .menu_box .nav > li > ul {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  position: absolute;
  z-index: 1;
  inset: 50px auto auto 0;
  width: 240px;
  padding: 15px 0 25px;
}
nav .menu_box .nav > li > ul.open {
  opacity: 1;
  visibility: visible;
}
nav .menu_box .nav > li > ul::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 200vw;
  height: 100%;
  background: rgba(0,0,0,0.4);
  inset: 0 -100vw;
  margin: auto;
}
nav .menu_box .nav > li > ul.open {
  opacity: 1;
  visibility: visible;
}
nav .menu_box .nav > li > ul > li {
  position: relative;
  z-index: 1;
  line-height: 1.5;
  margin: 10px 0 0;
}
nav .menu_box .nav > li > ul > li a {
  padding: 0 20px;
  text-decoration: none;
  transition: 0.5s;
}
nav .menu_box .nav > li > ul > li a:hover {color: var(--red);}

nav .menu_box > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  font-size: 16px;
  padding: 15px 20px 2px 0;
}
nav .menu_box > div .header_contact {margin: 0 0 0 120px;}
nav .menu_box > div .header_contact a {
  transition: 0.5s;
  text-decoration: none;
}
nav .menu_box > div .header_contact a:hover {color: var(--red);}
nav .menu_box > div .header_contact a::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 18px;
  height: 16px;
  margin: 0 0.2em 0.2em 0;
  mask: url("../img/common/ico_contact.svg") no-repeat center / contain;
  background: #FFFFFF;
  transition: 0.5s;
}
nav .menu_box > div .header_contact a:hover::before {background: var(--red);}
nav .menu_box > div .header_lang {
  position: absolute;
  width: 90px;
  inset: 15px 145px auto auto;
  border-radius: 4px;
  line-height: 1.5;
  border: solid 1px transparent;
}
nav .menu_box > div .header_lang li:nth-child(2),
nav .menu_box > div .header_lang li:nth-child(3) {
  display: none;
  padding: 0 0 0 1.75em;
}

nav .menu_box > div .header_lang:hover {border: solid 1px #FFFFFF;background: #000000;}
nav .menu_box > div .header_lang:hover li:nth-child(2),
nav .menu_box > div .header_lang:hover li:nth-child(3) {
  display: block;

}
nav .menu_box > div .header_lang a {
  transition: 0.5s;
  text-decoration: none;
}
nav .menu_box > div .header_lang a:hover {color: var(--red);}
nav .menu_box > div .header_lang li:nth-child(1) a::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 18px;
  height: 16px;
  margin: 0 0.5em 0.2em 0;
  mask: url("../img/common/ico_lang.svg") no-repeat center / contain;
  background: #FFFFFF;
  transition: 0.5s;
}
nav .menu_box > div .header_lang li:nth-child(1) a:hover::before {background: var(--red);}
nav .menu_box > div .header_search {
  width: 240px;
  height: 28px;
  border: solid 1px #FFFFFF;
  border-radius: 4px;
}
nav .menu_box > div .header_search form {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
nav .menu_box > div .header_search form button {
  width: 30px;
  background: url("../img/common/ico_search.svg") no-repeat center / 60%;
}
nav .menu_box > div .header_search form input {width: calc(100% - 30px);color: #FFFFFF;}
nav .menu_box > div .header_search form input::placeholder {color: #FFFFFF;}

/* :::::::::: main :::::::::: */

main {
  display: block;
  overflow: clip;
  padding: 150px 0 100px;
}
main.home {padding: 0;}
main article {}
.box {
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
}
/* :::::::::: footer :::::::::: */

.pagetop {
  position: fixed;
  z-index: 5;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  font-size: 0;
  text-decoration: none;
  background-color: #666666;
  display: block;
  text-align: center;
  border-radius: 3px;
  transition: opacity 0.4s ease-in;
}
.pagetop::before {
  content: '▲';
  font-family: 'Font Awesome 6 Free';
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 58px;
}
.pagetop:hover {
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
}
.fixed_bnr {
  position: fixed;
  z-index: 4;
  inset: auto 0 50px auto;
  width: 360px;
  transition: 0.5s;
}
.fixed_bnr.out {transform: translateX(120%);}
.fixed_bnr a {transition: 0.5s;}
.fixed_bnr a:hover {opacity: 0.5;}
.fixed_bnr > span {
  position: absolute;
  z-index: 1;
  inset: -10px 20px auto auto;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/common/btn_close.svg") no-repeat center / contain;
  cursor: pointer;
}


footer {
  background: #000000;
  color: #a0a0a0;
}
footer a {
  text-decoration: none;
  transition: 0.5s;
}
footer a:hover {
  color: var(--red);
  text-decoration: none;
}
footer > .box > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 70px 0;
}
footer > .box > div:nth-of-type(1) .logo {
  width: 240px;
  margin: 0 30px 0 0;
}
footer > .box > div:nth-of-type(1) .logo img {display: block;}
footer > .box > div:nth-of-type(1) .logo a {transition: 0.5s;}
footer > .box > div:nth-of-type(1) .logo a:hover {opacity: 0.5;}
footer > .box > ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer > .box > ul > li {width: fit-content;}
footer > .box > ul > li > span ,
footer > .box > ul > li > a {
  display: block;
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 10px;
}
footer > .box > div:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0 70px;
  margin: 30px 0 0;
  border-top: solid 1px #a0a0a0; 
}
footer > .box > div > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer > .box > div > div a[target="_blank"]::after {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 1.2em;
  height: 1em;
  mask: url("../img/common/ico_target.svg") no-repeat center / contain;
  background: #a0a0a0; 
  margin: 0 0 0.25em 0.25em;
}
footer > .box > div > div a[target="_blank"]:hover::after {background: var(--red);}
footer > .box > div .sp_store {display: none;}
footer > .box > div .pc_store {margin: 0 30px 0 0;}
footer > .box > div > div .pc_store a::after {content: none;}
footer > .box > div .pc_store a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer > .box > div .pc_store a:hover {
  color: inherit;
  opacity: 0.5;
}
footer > .box > div .pc_store a img {
  display: block;
  width: 210px;
  margin: 0 20px 0 0;
}
footer > .box > div .sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer > .box > div .sns li {
  width: 30px;
  height: 30px;
  margin: 0 0 0 20px;
}
footer > .box > div .sns li a {transition: 0.5s;}
footer > .box > div .sns li a:hover {opacity: 0.5;}

footer .footer_bottom {
  height: 90px;
  color: #FFFFFF;
  background: #333333;
}
footer .footer_bottom > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
}
footer .footer_bottom > div p a {
  text-decoration: none;
  transition: 0.5s;
}
footer .footer_bottom > div p a:hover {color: var(--red);}

/* -----------------------------------------------------------
 static
----------------------------------------------------------- */

.home .kv {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100dvh;
  padding: 0 0 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.home .kv::before ,
.home .kv::after {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: 100%;
}
.home .kv::before {
  background: rgba(0,0,0,0.2);
  inset: 0;
  height: 100%;
}
.home .kv::after {
  background: rgba(0,0,0,0.4);
  inset: auto 0 0;
  height: 150px;
}
.home .kv > video ,
.home .kv > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .kv p {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-size: min(2vw,32px);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 1em;
}
.home .kv p span {
  display: block;
  font-size: 1.6875em;
}
.home .kv p:nth-of-type(1) {
  color: #d7a05f;
  font-size: min(1.3125vw,21px);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 0 auto 1em;  
}

.home .kv .scroll {
  position: absolute;
  inset: auto 0 200px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.home .kv .scroll a {
  text-decoration: none;
  transition: 0.5s;
}
.home .kv .scroll a:hover {color: var(--red);}

.home section {
  position: relative;
  z-index: 0;
}
.home section::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
}
.home section > .box {
  position: relative;
  z-index: 2;
}
.home section .section_title a {
  display: block;
  transition: 0.5s;
}
.home section .section_title a:hover {
  opacity: 0.5;
  text-decoration: none;
} 
.home section .section_title .h_caption {
  font-family: var(--roboto);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}
.home section .section_title .h_caption > span {
  display: block;
  font-size: 2.67em;
  font-weight: 600;
}
.home section .section_title .h_caption > span > span {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.33em;
  font-weight: 400;
  line-height: 1;
  padding: 0.25em;
  border: solid 1px;
  margin: 0 0 0.25em 1em;
}
.home section .section_title h2 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 40px;
}
.home section .section_title ul li {font-weight: 500;}
.home section .section_title ul li span {display: inline-block;}
.home section .section_title ul li span:nth-of-type(1) {width: 160px;}
.home section .section_title ul li span:nth-of-type(2) {width: fit-content;}
.home section .catch p {
  font-size: 21px;
  line-height: 1.45;
  margin: 0 0 1em;
}
.home section .catch p span {
  display: block;
  font-size: 2.1em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
}
.home section .bg_area {
  position: relative;
  z-index: 3;
}
.home section .bg_area .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
}

.home_mechanism {
  color: #FFFFFF;
  height: 900px;
  padding: 130px 0 100px;
  background: url("../img/home/bg_mechanism.jpg") no-repeat left center / cover;
}
.home .home_mechanism::after {display: none;}
.home_mechanism .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
}
.home_gallery .bg_area {
  height: 640px;
  padding: 70px 0;
  background: url("../img/home/bg_gallery.jpg") no-repeat center / cover;
}
.home_gallery > .box {padding: 70px 40px 20px;}
.home_gallery > .box::before {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  width: 100vw;
  height: 150px;
  background: rgba(221,220,186,0.4);
  inset: 0 -100vw auto;
  margin: auto;
}
.home_gallery > .box .gallery_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.home_gallery > .box .gallery_list li {
  width: 22.7%;
  margin: 0 0 60px;
}
.home_gallery > .box .gallery_list li a {transition: 0.5s;text-decoration: none;font-size: 21px;}
.home_gallery > .box .gallery_list li a:hover {opacity: 0.5;}
.home_gallery > .box .gallery_list li a figure {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 10px;
}
.home_gallery > .box .gallery_list li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_gallery > .box .gallery_list li > p {margin: 10px 0 0;}
.home_gallery > .box .gallery_list li > p a {
  width: fit-content;
  padding: 0.25em 1em;
  border: solid 1px #c2c2c2;
  color: #8a8a8a;
  font-size: 16px;
  border-radius: 99px;
}
.home_products {background: rgba(0,0,0,0.5);}
.home_products .bg_area {
  color: #FFFFFF;
  height: 640px;
  padding: 70px 0;
  background: url("../img/home/bg_series.jpg") no-repeat center / cover;
}
.home_products .bg_area p {max-width: 780px;}
.home_products .bg_area .box > p:nth-last-of-type(1) {
  font-size: 82px;
  font-family: var(--roboto);
}
.home_products > .box {padding: 70px 40px 60px;}
.home_products > .box::before {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  width: 100vw;
  height: 150px;
  background: rgba(0,0,0,0.8);
  inset: 0 -100vw auto;
  margin: auto;
}
.home_products > .box .products_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.home_products > .box .products_list::after {
  display: block;
  content: "";
  width: 32%;
  height: 0;
}
.home_products > .box .products_list li {
  position: relative;
  z-index: 0;
  width: 32%;
  margin: 0 0 40px;
  padding: 0 0 30px;
  background: #eeeeee;
}
.home_products > .box .products_list li a {transition: 0.5s;text-decoration: none;font-size: 21px;}
.home_products > .box .products_list li a:hover {opacity: 0.5;}
.home_products > .box .products_list li figure {
  position: relative;
  z-index: 0;
  margin: 0;
}
.home_products > .box .products_list li figure.new::after {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: 19%;
  aspect-ratio: 1 / 1;
  background: url("../img/home/ico_new.svg") no-repeat center / 98%;
  inset: 3% auto auto 3%;
}
.home_products > .box .products_list li .title {
  font-family: var(--roboto);
  font-weight: 600;
  color: #000000;
  font-size: 30px;
  padding: 10px 20px;
  line-height: 1.2;
  background: #d7a05f;
}
.home_products > .box .products_list li .color {
  color: #FFFFFF;
  font-weight: 500;
  padding: 10px 20px;
  line-height: 1.5;
  background: #5e5e5e;
}
.home_products > .box .products_list li .spec {padding: 20px;}
.home_products > .box .products_list li .spec p {
  color: #5e5e5e;
  font-size: 14px;
  line-height: 1.7;
}
.home_products > .box .products_list li .spec p:nth-of-type(1) {margin: 0 0 1em;}
.home_products > .box .products_list li .spec p span {
  display: block;
  font-weight: 700;
  color: #000000;
}
.home_products > .box .products_list li .more {
  position: absolute;
  z-index: 1;
  inset: auto 0 0 auto;
  width: fit-content;
}
.home_products > .box .products_list li .more a {
  display: block;
  height: 100%;
  line-height: 1;
  padding: 5px;
  color: #FFFFFF;
  background: var(--red);
}
.home_products > .box .products_caption {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 0 0 1.5em;
  text-indent: -1.25em;
}
.home_products > .box .products_caption::before {content: "■ ";}
.home_company {
  height: 490px;
  padding: 70px 0;
  background: url("../img/home/bg_company.jpg") no-repeat right center / cover;
}
.home_company::after {background: rgba(246,239,196,0.3);}
.home .home_company .section_title ul li span:nth-of-type(1) {width: 90px;}
.home_sl {
  color: #FFFFFF;
  height: 490px;
  padding: 70px 0;
  background: url("../img/home/bg_sl.jpg") no-repeat right center / cover;
}
.home_sl::after {background: rgba(0,0,0,0.4);}

.home_topics {padding: 70px 0 110px;}
.home .home_topics .section_title h2 {
  border-top: solid 2px #c8c8c8;
  padding: 10px 0 0;
  margin: 0 0 10px;
}
.home .home_topics .section_title .h_caption > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .home_topics .section_title .h_caption > span > span {
  border: none;
  padding: 0;
}
.topic_list {border-top: solid 1px #c8c8c8;}
.topic_list > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 0;
  border-bottom: solid 1px #c8c8c8;
  line-height: 1.5;
}
.topic_list > li time {
  width: 160px;
  color: #8a8a8a;
}
.topic_list > li > span {
  display: inline-block;
  width: 90px;
  color: #d7a05f;
}
.topic_list > li p a {transition: 0.5s;}
.topic_list > li p a:hover {
  opacity: 0.5;
  text-decoration: none;
}


/* -----------------------------------------------------------
 search
----------------------------------------------------------- */
.page_search {line-height: 1;}
.page_search .search_title p {
  font-family: var(--roboto);
  font-weight: 400;
  font-size: 18px;
}
.page_search .search_title p span {
  display: block;
  font-size: 2.67em;
  margin: 15px 0;
}
.page_search .search_title h1 {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 30px;
}
.page_search h2 {
  font-size: 36px;
  font-weight: 400;
  padding: 1em 0;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
}
.page_search .search_section {
  padding: 50px 0;
  border-bottom: solid 1px #000000;
}
.page_search .search_section h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 1em;
}
.page_search .search_section p {
  font-size: 14px;
  line-height: 2;
}
.page_search .search_section div p {
  margin: 2em 0 0;
  word-break: break-all;
}
.page_search .more_news {margin: 60px 0 0;}
.page_search .more_news button {
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
}
.page_search .more_news button::after {
  display: inline-block;
  content: "";
  width: 0.8em;
  height: 0.7em;
  line-height: 1;
  background: #000000;
  margin: 0 0 0 0.5em;
  clip-path: polygon(0 0,100% 0,50% 100%);
}
.page_search .no_result {margin: 50px 0 0;line-height: 1.75;}