html, body {
  padding: 0;
  margin: 0;
}

.fcy {
  color: #ffea00;
}

.fc_r {
  color: #7e1416;
}

.fc_r2 {
  color: #da291c;
}

html {
  scroll-behavior: smooth;
}

main {
  font-size: 1.2vw;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: bold;
  padding: 0;
  margin: 0;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.07vw;
  font-weight: 500;
  line-height: 1.6;
  overflow: hidden;
  background-color: #eff0ef;
}

@media screen and (max-width: 750px) {
  main {
    font-size: 3vw;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p, figure {
  margin: 0;
}

main img {
  width: 100%;
  vertical-align: bottom;
}

.swrap {
  padding: 0 17vw;
  box-sizing: border-box;
}

.wrap {
  margin: 0 auto;
  padding: 0 7.3vw;
  box-sizing: border-box;
}

.rwd_show {
  display: none;
}

@media screen and (max-width: 880px) {
  .wrap {
    padding: 0 5vw;
  }
  html {
    scroll-padding-top: 0;
  }
  .swrap {
    padding: 0 5vw;
  }
  .rwd_show {
    display: inline !important;
  }
  .rwd_hide {
    display: none;
  }
}
.ovh {
  overflow: hidden;
}

.more_link_wrap {
  text-align: center;
}

.more_link_wrapFlex {
  display: flex;
  gap: 3em;
  justify-content: center;
}
.more_link_wrapFlex > * {
  flex: 0 1 17em;
  margin: 0 !important;
}

.more_link {
  display: block;
  border-radius: 0;
  background-color: #e60012;
  color: #fff;
  padding: 1.5vw 2vw;
  padding-bottom: 1.3vw;
  font-size: 120%;
  text-align: left;
  font-style: italic;
  margin: 0 auto;
  position: relative;
}
.more_link:after {
  content: "";
  display: block;
  width: 2vw;
  height: 1vw;
  background-image: url(../img/pointer_right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 1vw;
  top: calc(50% - 0.5vw);
  transition: all ease 0.3s;
}
.more_link > i {
  font-style: normal;
  position: relative;
  z-index: 2;
}
.more_link span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.more_link span img {
  width: auto;
  height: 1.2vw;
  vertical-align: revert;
}
.more_link {
  overflow: hidden;
}
.more_link:before {
  content: "";
  display: block;
  width: 100%;
  height: 103%;
  background-color: #000;
  transform: scaleX(0);
  transition: all ease 0.3s;
  transform-origin: left;
  position: absolute;
  left: 0;
  top: 0;
}
.more_link:hover:before {
  transform: scaleX(1);
}
.more_link:hover:after {
  transform: translate3d(0.3vw, 0, 0);
}
.more_link.more_linkCart span {
  display: flex;
}
.more_link.more_linkCart span:before {
  content: "";
  display: block;
  margin-top: 0.1em;
  width: 1.1em;
  height: 1.1em;
  margin-right: 1em;
  background-image: url(../img/commons/white_cart.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 880px) {
  .more_link:after {
    width: 4vw;
    height: 2vw;
    right: 2vw;
    top: calc(50% - 1vw);
  }
  .more_link_wrapFlex {
    gap: 1em;
  }
  .more_link.more_linkCart span:before {
    margin-right: 0.3em;
  }
  .more_link {
    font-size: 100%;
  }
}
.color_anim {
  animation: btn_animation 4s ease-in-out alternate infinite;
  background: linear-gradient(90deg, #000, #e60012);
  background-size: 500% 500%;
}

@keyframes btn_animation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.page_header {
  position: fixed;
  transition: all ease 0.3s;
  top: 0;
  width: 100%;
  left: 0;
  box-sizing: border-box;
  padding-left: 10vw;
  padding-right: 8vw;
  z-index: 1000;
}
.page_header h1 {
  margin-top: 2vw;
  width: 12vw;
}
.page_header h1 a {
  display: flex;
  align-items: center;
}
.page_header .sp_button {
  cursor: pointer;
  position: absolute;
  right: 80px;
  width: 136px;
  background-color: transparent;
  border: 0;
  color: #fff;
  top: 26px;
  display: flex;
  align-items: center;
  z-index: 11;
}
.page_header .sp_button i {
  margin-right: 14px;
  font-size: 14px;
}
.page_header .sp_button span {
  flex: 0 1 30px;
  height: 1px;
  width: 100%;
  background-color: #fff;
  position: relative;
  transition: all ease 0.3s;
}
.page_header .sp_button span:before {
  content: " ";
  width: 70%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: -6px;
  left: 0;
  transition: all ease 0.3s;
}
.page_header .sp_button span:after {
  content: " ";
  width: 130%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: all ease 0.3s;
}
.page_header .sp_button.open span {
  transform: rotate(45deg);
  transition: all ease 0.3s;
}
.page_header .sp_button.open span:before {
  opacity: 0;
  transition: all ease 0.3s;
}
.page_header .sp_button.open span:after {
  transform: rotate(90deg);
  bottom: 0;
  width: 100%;
  transition: all ease 0.3s;
}
.page_header .sp_button {
  right: 5vw;
  width: 8vw;
  top: 4.8vw;
}
.page_header .sp_button i {
  margin-right: 1vw;
  font-size: 1.7vw;
}
.page_header .sp_button span {
  flex: 0 1 1.5vw;
}
.page_header .sp_button span:before {
  top: -0.5vw;
}
.page_header .sp_button span:after {
  bottom: -0.5vw;
}
.page_header nav {
  background-image: url(../img/commons/bg.png);
  background-size: cover;
  padding-left: 50%;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100vh;
  height: 100dvh;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}
.page_header nav.open {
  visibility: visible;
  opacity: 1;
}
.page_header nav .nav_in_wrap {
  height: 100%;
  overflow: auto;
}
@media screen and (max-height: 800px) {
  .page_header nav .nav_in_wrap {
    display: block;
    overflow: scroll;
  }
}
.page_header nav .nav_in {
  padding: 68px 74px;
  padding-bottom: 50px;
  padding-right: 50px;
}
.page_header nav .nav_in > div > a {
  color: #fff;
  position: relative;
}
.page_header nav .nav_in > div > a span {
  display: block;
  position: relative;
}
.page_header nav .nav_in > div > a img {
  transition: all ease 0.3s;
  vertical-align: top;
}
.page_header nav .nav_in > div > a .red {
  position: absolute;
  width: 28vw;
  opacity: 0;
  left: 0;
  top: 0;
}
.page_header nav .nav_in > div > a:hover img {
  opacity: 0;
}
.page_header nav .nav_in > div > a:hover .red {
  opacity: 1;
}
.page_header nav .nav_in .sys_link {
  display: flex;
  gap: 0.3vw;
  align-items: center;
  padding: 1vw;
  background-color: #a5b8cd;
  margin-bottom: 4vw;
  margin-left: 2.2vw;
  width: 30.5vw;
  font-weight: 600;
  font-size: 1.3vw;
}
.page_header nav .nav_in .sys_link img {
  width: 19vw;
}
.page_header nav .nav_in .sys_link {
  text-decoration: none;
  color: #000;
  transition: all ease 0.3s;
}
.page_header nav .nav_in .sys_link:hover {
  background-color: #fff;
}
.page_header nav .nav_in .sys_link:hover img {
  opacity: 1;
}
.page_header nav:after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background-image: url(../img/commons/hml.png);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
}
.page_header nav > div {
  text-align: left;
  margin-bottom: 5vw;
}
.page_header nav > div h3 span {
  display: block;
}
.page_header nav > div h3 img {
  width: 28vw;
}
.page_header nav > div ul {
  padding: 0;
  margin: 0;
  padding-left: 37px;
  padding-top: 1.4vw;
  margin-bottom: 2.2vw;
  list-style: none;
  width: 33vw;
}
.page_header nav > div ul li {
  margin-bottom: 2.1vw;
}
.page_header nav > div ul li a {
  display: flex;
  text-align: left;
  justify-content: flex-start;
  position: relative;
}
.page_header nav > div ul li a img {
  transition: all ease 0.3s;
}
.page_header nav > div ul li a .red {
  position: absolute;
  width: 100%;
  opacity: 0;
  left: 0;
  top: 0;
}
.page_header nav > div ul li a:hover img {
  opacity: 0;
}
.page_header nav > div ul li a:hover .red {
  opacity: 1;
}
.page_header .qtslink {
  max-width: 436px;
}
.page_header .qtslink a {
  background-color: #000;
  border: 1px solid #e60012;
  position: relative;
  display: block;
  transition: all ease 0.3s;
  overflow: hidden;
}
.page_header .qtslink a:after {
  content: "";
  display: block;
  content: "";
  display: block;
  width: 27px;
  height: 14px;
  background-image: url(../img/pointer_right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 23px;
  top: calc(50% - 7px);
  transition: all ease 0.3s;
}
.page_header .qtslink a span {
  display: block;
  position: relative;
  align-items: center;
  padding: 15px 30px;
  color: #fff;
  display: flex;
  gap: 1em;
}
.page_header .qtslink a span img {
  height: 15px;
  width: auto;
}
.page_header .qtslink a span b {
  font-weight: normal;
  font-size: 90%;
}
.page_header .qtslink a:before {
  content: "";
  display: block;
  width: 100%;
  height: 110%;
  background-color: #e60012;
  transition: all ease 0.3s;
  transform: translate3d(-100%, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
}
.page_header .qtslink a:hover:before {
  transform: translate3d(0%, 0, 0);
}
.page_header .qtslink a:hover:after {
  transform: translate3d(0.3em, 0, 0);
}
.page_header.fixed, .page_header.active {
  transform: translate3d(0, -6em, 0);
  opacity: 0;
}

.iron .page_header nav:after {
  background-image: url(../img/iron/humbg.png);
}

.wood .page_header nav:after {
  background-image: url(../img/wood/humbg.png);
}

.qts .page_header nav:after {
  background-image: url(../img/qts/humbg.png);
}

.wood .page_header .sp_button span:before, .iron .page_header .sp_button span:before, .qts .page_header .sp_button span:before {
  background-color: #000;
}
.wood .page_header .sp_button span:after, .iron .page_header .sp_button span:after, .qts .page_header .sp_button span:after {
  background-color: #000;
}
.wood .page_header .sp_button, .iron .page_header .sp_button, .qts .page_header .sp_button {
  color: #000;
}
.wood .page_header .sp_button span, .iron .page_header .sp_button span, .qts .page_header .sp_button span {
  background-color: #000;
}
.wood .page_header .sp_button.open, .iron .page_header .sp_button.open, .qts .page_header .sp_button.open {
  color: #fff;
}
.wood .page_header .sp_button.open span, .iron .page_header .sp_button.open span, .qts .page_header .sp_button.open span {
  background-color: #fff;
}
.wood .page_header .sp_button.open span:before, .iron .page_header .sp_button.open span:before, .qts .page_header .sp_button.open span:before {
  background-color: #fff;
}
.wood .page_header .sp_button.open span:after, .iron .page_header .sp_button.open span:after, .qts .page_header .sp_button.open span:after {
  background-color: #fff;
}

@media screen and (max-width: 1000px) {
  .page_header nav .nav_in {
    padding: 80px 8vw;
  }
}
@media screen and (max-width: 750px) {
  .page_header {
    padding-left: 5vw;
  }
  .page_header h1 {
    margin-top: 3vw;
    width: 15vw;
  }
  .page_header .sp_button {
    right: 4vw;
    width: 14vw;
    top: 2.8vw;
  }
  .page_header .sp_button i {
    font-size: 3vw;
    margin-right: 5px;
  }
  .page_header .sp_button span {
    flex: 0 1 3vw;
  }
  .page_header .sp_button span:before {
    top: -0.8vw;
  }
  .page_header .sp_button span:after {
    bottom: -0.8vw;
  }
  .page_header nav {
    padding-left: 0;
  }
  .page_header nav:after {
    display: none;
  }
  .page_header nav > div h3 {
    font-size: 5vw;
  }
  .page_header nav > div h3 img {
    height: 4vw;
  }
  .page_header nav > div h3 {
    margin-bottom: 4.5vw;
  }
  .page_header nav > div ul {
    padding-left: 8vw;
    margin-bottom: 13vw;
  }
  .page_header nav > div ul li a img {
    height: 3.1vw;
  }
  .page_header nav > div ul li a {
    padding-left: 0vw;
  }
  .page_header .qtslink a span {
    padding: 2vw 3vw;
  }
  .page_header .qtslink a span img {
    height: 3vw;
  }
  .page_header .qtslink a:after {
    width: 5vw;
    height: 4vw;
  }
  .page_header .qtslink {
    max-width: none;
  }
}
.growfadein {
  opacity: 0;
  transition: all ease 1s;
}

.growfadein.active {
  opacity: 0;
  animation: growfade 0.8s linear 0.5s forwards;
}

.bigTo {
  opacity: 0;
  transition: all ease 1s;
  transform: scale(1.1);
}

.bigTo.active {
  opacity: 1;
  transform: scale(1);
}

@keyframes growfade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    filter: brightness(1330%) drop-shadow(0em 0em 0.5em #fff);
  }
  55% {
    opacity: 1;
    filter: brightness(500%);
    transform: translate3d(0, 0px, 0);
  }
  70% {
    opacity: 1;
    filter: brightness(100%);
    transform: translate3d(0, 0px, 0);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
    transform: translate3d(0px, 0, 0);
  }
}
.contents_nav {
  position: fixed;
  font-style: italic;
  font-weight: bold;
  top: 0;
  left: 0;
  z-index: 100;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contents_nav ul {
  transform-origin: top center;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  writing-mode: vertical-rl;
  width: 3em;
  height: 13em;
  margin: auto;
  position: relative;
}
.contents_nav ul li {
  color: #130000;
  font-size: 1.5em;
  letter-spacing: 0;
  transition: all ease 0.3s;
  opacity: 0;
  text-align: center;
  position: absolute;
  line-height: 1.3;
  font-weight: bolder;
  top: 0;
  bottom: 0;
}
.contents_nav ul li span {
  display: inline-block;
  position: relative;
}
.contents_nav ul li span:after {
  content: "";
  display: block;
  width: 0.1em;
  height: 100%;
  background-color: #130000;
}
.contents_nav ul li.active {
  display: block;
  opacity: 1;
}

@media screen and (max-width: 880px) {
  .contents_nav ul li {
    font-size: 1em;
  }
  .contents_nav ul {
    width: 1.5em;
  }
}
.show_text {
  position: relative;
  transition: clip-path 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  overflow: hidden;
}

.show_text.active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@keyframes bottom_to_top {
  0% {
    transform: translate3d(0, 3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bottom_to_top {
  opacity: 0;
}

.bottom_to_top.active {
  animation: bottom_to_top 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.left_to_right {
  opacity: 0;
  transform: translate3d(-150px, 0, 0) scale(1.1);
}

.left_to_right.active {
  animation: left_to_right 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes left_to_right {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.right_to_left {
  opacity: 0;
  transform: translate3d(50px, 0, 0);
}

.right_to_left.active {
  animation: right_to_left 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes right_to_left {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.red_glow {
  transition: all ease 0.3s;
  filter: none;
  transition-delay: 0.5s;
  opacity: 0;
}
.red_glow.active {
  opacity: 1;
  filter: drop-shadow(0 0 0.5vw rgb(255, 0, 0)) drop-shadow(0 0 0.5vw rgb(255, 0, 0));
}

.under_mv .under_mv_in {
  position: relative;
}
.under_mv .under_mv_in .under_mv_in_contents {
  padding-top: 15vw;
  padding-bottom: 4vw;
  position: relative;
  z-index: 2;
}
.under_mv .under_mv_in .under_mv_in_contents h2 {
  display: flex;
  position: relative;
  width: 34%;
  padding-bottom: 3vw;
  margin-bottom: 3.3vw;
}
.under_mv .under_mv_in .under_mv_in_contents h2 img {
  filter: drop-shadow(0 0 0.5vw rgb(255, 0, 0)) drop-shadow(0 0 0.5vw rgb(255, 0, 0));
}
.under_mv .under_mv_in .under_mv_in_contents h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 1vw;
  background-color: #e60012;
  position: absolute;
  left: 0;
  bottom: 0;
}
.under_mv .under_mv_in .under_mv_in_contents p {
  font-size: 184%;
  line-height: 1.5;
  font-weight: 700;
  display: inline-block;
}
.under_mv .under_mv_in .under_mv_bg {
  position: absolute;
  width: 86%;
  right: -10vw;
  top: 0;
}
.under_mv .under_mv_in .under_mv_bg iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 880px) {
  .under_mv .under_mv_in .under_mv_in_contents p {
    font-size: 120%;
  }
  .under_mv .under_mv_in .under_mv_in_contents h2 {
    width: 40%;
  }
  .under_mv .under_mv_in .under_mv_bg {
    right: -5vw;
  }
}
.sb {
  padding: 10.6vw 0;
  text-align: center;
}
.sb .sbh {
  text-align: center;
  margin-bottom: 2vw;
}
.sb .sbh h2 {
  display: flex;
  justify-content: center;
  padding-bottom: 2vw;
  position: relative;
  margin-bottom: 2vw;
}
.sb .sbh h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.3vw;
  background-color: #e60012;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 13vw;
}
.sb .sbh h2 img {
  height: 2.5vw;
  width: auto;
  filter: drop-shadow(0 0 0.5vw rgb(255, 0, 0)) drop-shadow(0 0 0.5vw rgb(255, 0, 0));
}
.sb .sbh > p {
  font-size: 192%;
  line-height: 1.4;
  font-weight: 700;
}

@media screen and (max-width: 880px) {
  .sb {
    padding: 4em 0;
  }
  .sb .sbh > p {
    font-size: 140%;
  }
  .sb .sbh h2 img {
    height: 4.5vw;
  }
  .sb .sbh h2 {
    margin-bottom: 1em;
    padding-bottom: 0.5em;
  }
  .sb .sbh {
    margin-bottom: 1.5em;
  }
}
.sbb {
  background-color: #370000;
  padding: 8.5em 0;
  padding-bottom: 4em;
}
.sbb .sbbh {
  position: relative;
}
.sbb .sbbh .sbbh_in {
  padding-left: 42%;
}
.sbb .sbbh .sbbh_in figure {
  position: absolute;
  width: 31%;
  left: 7%;
  top: -2vw;
  z-index: 2;
}
.sbb .sbbh .sbbh_in > div {
  position: relative;
}
.sbb .sbbh .sbbh_in h2 {
  padding: 1em 0;
  padding-bottom: 1.5em;
  position: relative;
  margin-bottom: 0.5em;
}
.sbb .sbbh .sbbh_in h2 img {
  position: relative;
  z-index: 2;
  height: 2vw;
  width: auto;
}
.sbb .sbbh .sbbh_in h2:after {
  content: "";
  display: block;
  width: 130%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
}
.sbb .sbbh .sbbh_in h3 {
  font-size: 160%;
  color: #e60012;
  margin-bottom: 0.5em;
  font-weight: 900;
}
.sbb .sbbh .sbbh_in P {
  font-size: 122%;
  margin-bottom: 1em;
}
.sbb .sbbh .sbb_table {
  padding-left: 42%;
}
.sbb .sbbh .sbb_table table {
  border-collapse: collapse;
  font-size: 90%;
  text-align: center;
  width: 100%;
}
.sbb .sbbh .sbb_table table th, .sbb .sbbh .sbb_table table td {
  padding: 0.5em 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.sbb .sbbh .sbb_table table th {
  font-size: 70%;
  font-weight: normal;
}
.sbb .sbbh .sbb_table table .sbb_w {
  width: 21%;
}
.sbb .sbbh .sbb_table table tr:first-child th, .sbb .sbbh .sbb_table table tr:first-child td {
  border-top: 0;
}
.sbb .sbbh .sbb_table p {
  margin-top: 0.5em;
  text-align: right;
  line-height: 1.5;
}
.sbb .sbbh .sbb_table p small {
  font-size: 70%;
}
.sbb .sbb_contents .sbb_mid {
  display: flex;
  padding-top: 3em;
  gap: 3vw;
}
.sbb .sbb_contents .sbb_mid > figure {
  flex: 0 1 39%;
}
.sbb .sbb_contents .sbb_mid .desc1 {
  flex: 0 1 56%;
}
.sbb .sbb_contents .sbb_mid .desc1 > figure {
  margin-top: -2em;
}
.sbb .sbb_contents .sbb_mid .desc1 ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 70%;
}
.sbb .sbb_contents .sbb_mid .desc1 ul li {
  flex: 0 1 50%;
}
.sbb .sbb_contents .sbb_mid .desc1 ul li:first-child {
  flex: 0 1 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.sbb .sbb_contents .sbb_mid .desc1 ul li:first-child > figure {
  flex: 0 1 49%;
  margin-top: -4em;
}
.sbb .sbb_contents .sbb_mid .desc1 ul li:first-child p {
  padding-top: 4em;
  padding-left: 4em;
}
.sbb .sbb_contents .sbb_mid .desc1 ul li:nth-child(2) {
  display: flex;
  flex-direction: column-reverse;
}
.sbb .sbb_contents .sbb_mid .desc1 ul li:nth-child(2) figure img {
  width: 84%;
  margin-left: 5%;
}
.sbb .sbb_contents .sbb_mid .desc1 ul li:nth-child(2) p {
  margin-bottom: 2em;
  margin-top: 3em;
  padding-left: 4em;
}
.sbb .sbb_contents .sbb_mid .desc1 ul li:nth-child(3) {
  display: flex;
  flex-direction: column-reverse;
}
.sbb .sbb_contents .sbb_mid .desc1 ul li:nth-child(3) figure img {
  width: 74%;
  margin-left: 12%;
}
.sbb .sbb_contents .sbb_mid .desc1 ul li:nth-child(3) p {
  margin-bottom: 2em;
  margin-top: 3em;
  padding-left: 5em;
}
.sbb .sbb_contents .sbb_pro {
  display: flex;
  margin-bottom: 5em;
}
.sbb .sbb_contents .sbb_pro > figure {
  flex: 1;
}
.sbb .sbb_contents .sbb_pro > figure img {
  width: 100%;
  margin-top: -3em;
}
.sbb .sbb_contents .sbb_pro > figure:nth-child(2) {
  flex: 0 1 43%;
  padding-top: 6em;
}
.sbb .sbb_contents .sbb_pro .desc1 {
  padding-top: 2em;
  flex: 1;
}
.sbb .sbb_contents .sbb_pro .desc1 ul {
  position: relative;
  font-size: 75%;
  height: 100%;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li {
  position: absolute;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li p {
  line-height: 2;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li p b {
  font-size: 120%;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li {
  flex: 0 1 50%;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li:first-child {
  flex: 0 1 100%;
  display: flex;
  justify-content: flex-start;
  top: 0;
  left: -3%;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li:first-child > figure {
  flex: 0 1 52%;
  margin-top: -3em;
  padding-left: 3em;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li:first-child p {
  flex: 1;
  margin-top: -1em;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li:nth-child(2) {
  display: flex;
  flex-direction: column;
  flex: 1;
  left: -2vw;
  top: 13vw;
  width: 50%;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li:nth-child(2) figure {
  text-align: center;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li:nth-child(2) figure img {
  width: 69%;
  margin-left: 0;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li:nth-child(2) p {
  margin-top: -3em;
  padding-left: 6em;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li:nth-child(3) {
  display: flex;
  flex-direction: column;
  flex: 0 1 50%;
  width: 50%;
  top: 11vw;
  right: 0;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li:nth-child(3) figure img {
  width: 84%;
  margin-right: 0;
  margin-left: auto;
}
.sbb .sbb_contents .sbb_pro .desc1 ul li:nth-child(3) p {
  margin-top: -1em;
}
.sbb .more_link {
  font-size: 100%;
}

@media screen and (max-width: 880px) {
  .sbb {
    padding-top: 4em;
    padding-bottom: 4em;
  }
  .sbb .sbbh .sbbh_in h3 {
    font-weight: 900;
    line-height: 1.3;
  }
  .sbb .sbbh .sbbh_in h2 img {
    height: 3vw;
  }
  .sbb .sbbh .sbbh_in h2 {
    display: flex;
    padding-bottom: 1em;
  }
  .sbb .sbbh .sbbh_in figure {
    position: absolute;
    width: 36%;
    left: 2%;
    top: -5vw;
    z-index: 2;
  }
  .sbb .sbbh .sbb_table {
    padding-left: 0;
  }
  .sbb .sbbh .sbb_table table th {
    font-size: 100%;
  }
  .sbb .sbb_contents .sbb_mid {
    flex-direction: column;
    gap: 4em;
  }
  .sbb .sbb_contents .sbb_pro {
    flex-direction: column;
  }
  .sbb .sbbh {
    margin-bottom: 2em;
  }
}
.speck_list {
  background-color: #292929;
  border: 1px solid #e60012;
  padding: 1.5em;
  padding-bottom: 2.5em;
}
.speck_list .speck_images {
  display: flex;
  gap: 2em;
  margin-bottom: 2em;
}
.speck_list .speck_images > figure, .speck_list .speck_images > picture {
  flex: 1;
}
.speck_list .speck_images > div {
  flex: 0 1 17%;
}
.speck_list .speck_images > div > p {
  background-color: #727171;
  color: #fff;
  font-size: 70%;
  text-align: center;
  border-radius: 0.3em;
  margin-top: 3em;
}
.speck_list .speck_images > div a {
  display: block;
  border: 1px solid #e60012;
  background-color: #000;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.speck_list .speck_images > div a > figure {
  width: 80%;
  margin: 0 auto;
}
.speck_list .speck_images > div a > div {
  padding: 1vw;
  padding-bottom: 0;
}
.speck_list .speck_images > div a > div b {
  display: block;
  font-size: 150%;
  line-height: 1.2;
  padding-bottom: 0.3em;
}
.speck_list .speck_images > div a > div p {
  font-size: 65%;
}
.speck_list .speck_images > div a button {
  border: 0;
  background-color: #e60012;
  font-size: 65%;
  width: 100%;
  color: #FFF;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  transition: all ease 0.3s;
}
.speck_list .speck_images > div a:hover button {
  background-color: #000;
}
.speck_list .speck_in {
  display: flex;
  font-size: 75%;
  gap: 3em;
  font-weight: normal;
}
.speck_list .speck_in > div {
  flex: 1;
}
.speck_list .speck_in > div .speck_shuft {
  margin-bottom: 2em;
}
.speck_list .speck_in > div .speck_shuft h4 {
  font-size: 110%;
  font-weight: normal;
  line-height: 1;
}
.speck_list .speck_in > div .speck_shuft p {
  font-size: 90%;
}
.speck_list .speck_in > div .speck_shuft p b {
  font-size: 160%;
}
.speck_list .speck_table {
  border-collapse: collapse;
  text-align: center;
  width: 100%;
  margin-bottom: 0.5em;
}
.speck_list .speck_table th, .speck_list .speck_table td {
  border-bottom: 1px solid #fff;
  padding: 0.2em 0;
  font-weight: normal;
  letter-spacing: 0;
}
.speck_list .speck_table .pr {
  padding-right: 2em;
}
.speck_list .speck_table .pr1 {
  padding-right: 0.5em;
}
.speck_list .speck_table .pl1 {
  padding-left: 1em;
}
.speck_list .speck_table .w2em {
  width: 2em;
}
.speck_list .speck_table .bdn {
  border: 0;
}
.speck_list .speck_table .w30 {
  width: 32%;
}
.speck_list .speck_table .ww {
  width: 15%;
}
.speck_list .speck_table .ws {
  width: 10%;
}
.speck_list .speck_table .left_ari {
  display: block;
  border: 1px solid #fff;
  padding: 0.2em;
  margin-bottom: 0.5em;
  font-size: 80%;
}
.speck_list .speck_table .bdl {
  border-right: 1px solid #fff;
}
.speck_list .speck_table_caps {
  font-size: 80%;
  margin-bottom: 3em;
}
.speck_list .speck_table_cap {
  text-align: right;
  margin-bottom: -1.5em;
}
.speck_list .speck_shuftRab figure {
  margin-top: 0.5em;
}
.speck_list .speck_text {
  margin-bottom: 2em;
}
.speck_list .speck_text h3 {
  border-bottom: 1px solid #fff;
  margin-bottom: 0.3em;
  font-weight: normal;
}
.speck_list .speck_text ul li {
  display: flex;
}
.speck_list .speck_text ul li span {
  text-align: right;
  white-space: nowrap;
}
.speck_list .speck_text ul li p {
  flex: 1;
}
.speck_list .speck_text .speck_text_ireg {
  padding-left: 2em;
}
.speck_list .speck_table2 {
  border-top: 1px solid #fff;
}

@media screen and (max-width: 880px) {
  .speck_list .speck_in {
    flex-direction: column;
  }
  .speck_list .speck_in {
    font-size: 100%;
  }
  .speck_list .speck_in > div .speck_shuft h4 {
    line-height: 1.3;
  }
  .speck_table_wrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .speck_table_wrap .speck_table {
    width: 150%;
  }
  .speck_list .speck_table {
    margin-bottom: 1em;
  }
  .speck_list .speck_table_caps {
    font-size: 90%;
  }
  .speck_list .speck_images {
    display: block;
    position: relative;
  }
  .speck_list .speck_images > div {
    width: 39%;
    position: absolute;
    right: 0;
    bottom: 3em;
  }
}
.spec_links {
  background-color: #5c0100;
  padding: 5vw 0;
}
.spec_links header {
  margin-bottom: 1vw;
}
.spec_links header h2 {
  height: 6vw;
  text-align: center;
}
.spec_links header h2 img {
  height: 100%;
  width: auto;
}
.spec_links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  row-gap: 2vw;
}
.spec_links ul li {
  flex: 0 1 calc((100% - 3vw) / 4);
}
.spec_links ul li a {
  border: 1px solid #e60012;
  display: block;
  background-color: #292929;
  position: relative;
  transition: all ease 0.3s;
}
.spec_links ul li a > div {
  padding: 1vw;
  padding-top: 0;
  margin-top: -1vw;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}
.spec_links ul li a h3 {
  height: 2.5vw;
  margin: 0 auto;
  margin-bottom: 0.5vw;
  text-align: center;
}
.spec_links ul li a h3 img {
  width: auto;
  margin: 0 auto;
  height: 100%;
}
.spec_links ul li a p {
  color: #fff;
  font-size: 75%;
  text-align: center;
  margin-bottom: 0.5vw;
}
.spec_links ul li a button {
  display: block;
  background-color: #b40000;
  color: #fff;
  text-align: center;
  font-size: 80%;
  width: 100%;
  box-sizing: border-box;
  transition: all ease 0.3s;
}
.spec_links ul li a:hover {
  background-color: #101010;
}
.spec_links ul li a:hover button {
  background-color: #000;
}
.spec_links ul li.qts a h3 {
  height: 1.8vw;
}
.spec_links ul li.qts a > div p {
  font-size: 100%;
  line-height: 1.5;
}

.spec_linksIron {
  padding-top: 2vw;
  padding-bottom: 11vw;
}

@media screen and (max-width: 880px) {
  .spec_links ul li {
    flex: 0 1 calc((100% - 1vw) / 2);
  }
  .spec_links ul li a h3 {
    height: 8.5vw;
    margin-bottom: 2.5vw;
  }
  .spec_links ul li a p {
    margin-bottom: 1.5vw;
  }
  .spec_links ul li.qts a h3 {
    height: 5.8vw;
  }
  .spec_links header h2 {
    height: 10vw;
  }
  .spec_links header {
    margin-bottom: 4vw;
  }
  .spec_links {
    padding-bottom: 8vw;
  }
  .spec_linksIron {
    margin-bottom: 15vw;
  }
}
.spec_linksUnder {
  padding-top: 3em;
  background-image: url(../img/wood/iron_lineup_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 4em;
}

.overview header {
  position: relative;
}
.overview header h2 {
  display: flex;
  position: absolute;
  right: 18vw;
  top: 6vw;
}
.overview header h2 img {
  height: 2.5vw;
}
.overview .overview_contents {
  padding-bottom: 2em;
  background-image: url(../img/wood/overview_bg2.png);
  background-size: cover;
  padding-top: 3.5em;
}
.overview .overview_contents h3 {
  color: #e60012;
  font-size: 180%;
  text-align: center;
  margin-bottom: 0.5em;
}
.overview .overview_contents .obbdesc {
  display: flex;
  gap: 1em;
  margin: 0 auto;
  margin-bottom: 3.5em;
}
.overview .overview_contents .obbdesc > * {
  flex: 0 1 calc((100% - 1em) / 2);
}
.overview .overview_contents .obbstar > p {
  text-align: right;
  font-size: 80%;
}
.overview .overview_contents .obbstar ul {
  display: flex;
  gap: 1em;
}
.overview .overview_contents .obbstar ul li {
  flex: 0 1 calc((100% - 3em) / 4);
}
.overview .overview_contents .obbstar ul li h4 {
  font-size: 120%;
  font-weight: normal;
  margin-bottom: 0.5em;
  line-height: 1;
}
.overview .overview_contents .obbstar ul li h4 span {
  font-size: 60%;
  letter-spacing: 0;
}
.overview .overview_contents .obbstar ul li h4 span small {
  font-size: 70%;
}
.overview .overview_contents .obbstar ul li .stars {
  font-size: 60%;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}
.overview .overview_contents .obbstar ul li .stars tr:nth-child(1) th {
  padding: 0.7em 0;
}
.overview .overview_contents .obbstar ul li .stars th {
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0.2em 0;
}
.overview .overview_contents .obbstar ul li .stars td {
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0.2em 0;
}
.overview .overview_contents .obbstar ul li .stars td.star {
  font-size: 175%;
  padding: 0;
}
.overview .overview_contents .obbstar ul li .desc {
  font-size: 60%;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}
.overview .overview_contents .obbstar ul li .desc th {
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0.5em 0;
}
.overview .overview_contents .obbstar ul li .desc td {
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0.5em 0;
}

@media screen and (max-width: 880px) {
  .overview .overview_contents .obbdesc {
    flex-direction: column;
  }
  .overview .overview_contents .obbstar ul {
    flex-wrap: wrap;
    row-gap: 3em;
  }
  .overview .overview_contents .obbstar ul li {
    flex: 0 1 calc((100% - 1em) / 2);
  }
  .overview .overview_contents .obbstar ul li .stars {
    font-size: 75%;
  }
  .overview .overview_contents .obbstar ul li .desc {
    font-size: 85%;
  }
  .overview .overview_contents .obbstar ul li h4 span {
    font-size: 71%;
    margin-top: 0.2em;
  }
  .overview .overview_contents .obbstar ul li h4 span br {
    display: none;
  }
  .overview .overview_contents h3 {
    line-height: 1.3;
  }
  .overview header figure {
    height: 35vw;
  }
  .overview header figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .overview header h2 img {
    height: 3.5vw;
  }
  .overview header h2 {
    right: 11vw;
  }
  .overview .overview_contents .obbstar ul li h4 {
    font-size: 135%;
  }
  .overview header figure {
    height: 41vw;
  }
}
.spiral_hover {
  position: relative;
}
.spiral_hover:before {
  transition: all linear 0.2s;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e60012;
  box-shadow: 0 0 0.5em 0.1em #e60012;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
}
.spiral_hover:after {
  transition: all linear 0.2s;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e60012;
  box-shadow: 0 0 0.5em 0.1em #e60012;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
}
.spiral_hover .spiral_hover_in:before {
  transition: all linear 0.2s;
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background-color: #e60012;
  box-shadow: 0 0 0.5em 0.1em #e60012;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
}
.spiral_hover .spiral_hover_in:after {
  transition: all linear 0.2s;
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background-color: #e60012;
  box-shadow: 0 0 0.5em 0.1em #e60012;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 0;
}
.spiral_hover:hover:before {
  width: 100%;
}
.spiral_hover:hover:after {
  width: 100%;
}
.spiral_hover:hover .spiral_hover_in:before {
  height: 100%;
}
.spiral_hover:hover .spiral_hover_in:after {
  height: 100%;
}

.site_footer {
  text-align: center;
  padding: 4vw;
  background-color: #000;
}
.site_footer figure {
  width: 18vw;
  margin: 0 auto;
}
.site_footer figure img {
  width: 100%;
}

@media screen and (max-width: 750px) {
  .site_footer figure {
    width: 36vw;
  }
}
.page_header nav img {
  width: 100%;
}

.nav_in_logo {
  margin-bottom: 2.5vw;
}
.nav_in_logo a {
  display: block;
  width: 28vw;
}

@media screen and (max-width: 750px) {
  .nav_in_logo a {
    width: 70vw;
  }
  .page_header nav > div h3 img {
    width: 70vw;
    height: auto;
  }
  .page_header nav > div ul {
    height: auto;
    width: auto;
    padding-left: 8vw;
    margin-bottom: 8vw;
  }
  .page_header nav .nav_in .sys_link {
    margin-left: 6.2vw;
    width: auto;
    font-size: 3.3vw;
    display: inline-block;
  }
  .page_header nav .nav_in .sys_link span {
    display: none;
  }
  .page_header nav .nav_in .sys_link img {
    width: 41vw;
    vertical-align: middle;
  }
  .nav_in > div:last-child {
    margin-top: 10vw;
  }
}
.ucbt {
  display: block;
  background-color: #020202;
  width: 18vw;
  position: relative;
  transition: all ease 0.3s;
  color: #fff;
  text-decoration: none;
  font-size: 1.5vw;
  text-align: center;
  padding: 1vw 1.2vw;
}
.ucbt span {
  display: block;
}
.ucbt span:after {
  content: "";
  display: block;
  width: 1.7vw;
  background-image: url(../img/commons/right.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0.4vw;
  top: 0;
  height: 100%;
  transition: all ease 0.3s;
}
.ucbt:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #020202;
  position: absolute;
  right: -0.4vw;
  bottom: -0.4vw;
  transition: all ease 0.3s;
  transform-origin: left top;
}
.ucbt:after {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background-color: #020202;
  position: absolute;
  right: -0.4vw;
  top: 0.4vw;
  transition: all ease 0.3s;
  transform-origin: left top;
}
.ucbt:hover {
  transform: translate3d(0.4vw, 0.4vw, 0);
}
.ucbt:hover span:after {
  transform: translate3d(0.5vw, 0, 0);
}
.ucbt:hover:before {
  transform: scaleX(0) scaleX(1);
}
.ucbt:hover:after {
  transform: scaleY(0) scaleY(1);
}

@media screen and (max-width: 750px) {
  .ucbt:before {
    right: -1vw;
    bottom: -1vw;
  }
  .ucbt:after {
    right: -1vw;
    top: 1vw;
  }
}/*# sourceMappingURL=common.css.map */