@charset "UTF-8";
/*======================================================
Reset
======================================================*/
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/*======================================================
Foundation
======================================================*/
body {
  color: #000;
  background-color: #f5f5f7;
  line-height: 1;
  position: relative;
  font-family: sans-serif;
  word-wrap: break-word;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}

del {
  text-decoration: line-through;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

section + section {
  margin-top: 50px;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.l-header {
  background-color: #494846;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  position: relative;
  z-index: 9990;
}
.l-header h1 {
  position: relative;
  z-index: 9992;
}
.l-header__wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
@media (min-width: 1201px) {
  .l-header__wrap {
    display: flex !important;
  }
}
@media (max-width: 1200px) {
  .l-header__wrap {
    display: block;
    max-width: 320px;
    width: 100%;
    height: 100vh;
    padding: 120px 20px 20px;
    position: fixed;
    top: 0;
    right: -320px;
    z-index: 9991;
    transition: right 0.3s;
    background-color: #494846;
  }
}
.l-header__gmenu {
  display: flex;
  gap: 15px;
}
@media (max-width: 1200px) {
  .l-header__gmenu {
    flex-direction: column;
    gap: 0;
  }
}
.l-header__gmenu li a {
  color: #fff;
}
@media (max-width: 1200px) {
  .l-header__gmenu li {
    border-bottom: 1px solid #fff;
  }
  .l-header__gmenu li:first-child {
    border-top: 1px solid #fff;
  }
  .l-header__gmenu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
  }
  .l-header__gmenu li a::after {
    content: "►";
    margin-right: 10px;
    font-size: 20px;
  }
}
.l-header__lang {
  max-width: 370px;
  width: 100%;
  display: flex;
}
@media (max-width: 1200px) {
  .l-header__lang {
    margin-top: 20px;
    flex-direction: column;
  }
}
.l-header__lang li {
  width: 30%;
  border: 1px solid #fff;
  background-color: #fff;
  padding: 5px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .l-header__lang li {
    width: 100%;
    padding: 15px 5px;
  }
}
.l-header__lang li:not(:first-child) {
  margin-left: -1px;
}
@media (max-width: 1200px) {
  .l-header__lang li:not(:first-child) {
    margin-left: 0;
    margin-top: -1px;
  }
}
.l-header__lang li a {
  transform: translateY(-1px);
  display: block;
  width: 100%;
  font-weight: bold;
  position: relative;
  color: #171C8F;
}
.l-header__lang li a::after {
  content: "►";
  font-size: 20px;
}
.l-header__lang .active {
  width: 40%;
  background-color: #171C8F;
  color: #fff;
}
@media (max-width: 1200px) {
  .l-header__lang .active {
    width: 100%;
  }
}
.l-header__lang .active::before {
  content: "✓";
}
.l-header__sp-btn {
  display: none;
  width: 50px;
  height: 50px;
  padding: 10px;
  background-color: #002d56;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  position: fixed;
  right: 20px;
  z-index: 9993;
}
.l-header__sp-btn span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.l-header__sp-btn span:nth-child(1) {
  top: 7px;
  font-size: 10px;
  text-align: center;
}
.l-header__sp-btn span:nth-child(2) {
  top: 23px;
  width: 30px;
  height: 2px;
  background-color: #fff;
}
.l-header__sp-btn span:nth-child(3) {
  top: 31px;
  width: 30px;
  height: 2px;
  background-color: #fff;
}
.l-header__sp-btn span:nth-child(4) {
  top: 39px;
  width: 30px;
  height: 2px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .l-header__sp-btn {
    display: block;
  }
}
.l-header__sp-btn-border {
  display: block;
  width: 12px;
  height: 12px;
  position: relative;
}
.l-header__open .l-header__wrap {
  right: 0;
}
.l-header__open .l-header__sp-btn span:nth-child(2) {
  top: 31px;
  transform: translateX(-50%) rotate(45deg);
}
.l-header__open .l-header__sp-btn span:nth-child(3) {
  display: none;
}
.l-header__open .l-header__sp-btn span:nth-child(4) {
  top: 31px;
  transform: translateX(-50%) rotate(-45deg);
}

.l-footer {
  margin-top: 90px;
  padding: 60px 0 30px;
  background-color: #d9d9d9;
}
@media (max-width: 768px) {
  .l-footer {
    margin-top: 45px;
    padding: 40px 0 20px;
  }
}
.l-footer__inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.l-footer__logo {
  text-align: center;
}
.l-footer__menu {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 30px;
}
@media (max-width: 768px) {
  .l-footer__menu {
    gap: 0 20px;
  }
}
@media (max-width: 530px) {
  .l-footer__menu {
    margin: 30px 20px 0;
  }
}
.l-footer__menu a {
  color: #000;
  position: relative;
  display: block;
}
.l-footer__menu a::before {
  content: "";
  position: absolute;
  top: 51%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}
.l-footer__menu > li {
  max-width: 480px;
  width: 100%;
}
.l-footer__menu > li > a {
  display: block;
  font-size: 18px;
  padding: 20px;
  border-bottom: 1px solid #000;
}
@media (max-width: 960px) {
  .l-footer__menu .sp_mt {
    margin-top: 20px;
  }
}
.l-footer__menu__child {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 530px) {
  .l-footer__menu__child {
    flex-direction: column;
  }
}
.l-footer__menu__child > li {
  width: calc((100% - 20px) / 2);
}
@media (max-width: 530px) {
  .l-footer__menu__child > li {
    width: 100%;
  }
}
.l-footer__menu__child > li > a {
  display: block;
  width: 100%;
  padding-left: 15px;
  line-height: 1.5;
}
@media (max-width: 530px) {
  .l-footer__menu__child > li > a br {
    display: none;
  }
}
.l-footer__menu__child > li > a.arrow_top::before {
  top: 10px;
  transform: rotate(-45deg);
}
.l-footer__menu__child02 {
  margin-top: 15px;
  margin-left: 1em;
}
.l-footer__menu__child02 li + li {
  margin-top: 15px;
}
.l-footer__menu__child02 li > a {
  padding-left: 12px;
}
.l-footer small {
  margin-top: 60px;
  display: block;
  text-align: center;
}
@media (max-width: 768px) {
  .l-footer small {
    margin-top: 40px;
  }
}

.l-wrapper {
  display: flex;
  max-width: 1400px;
  margin-inline: auto;
  gap: 15px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .l-wrapper {
    flex-direction: column;
  }
}

main {
  max-width: calc(68% - 15px);
  width: 100%;
}
@media (max-width: 768px) {
  main {
    max-width: none;
  }
}

.l-sidebar {
  max-width: 32%;
  width: 100%;
}
@media (max-width: 768px) {
  .l-sidebar {
    max-width: none;
    margin: 30px auto 0;
  }
}
.l-sidebar__youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.l-sidebar__banners {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.l-sidebar__banners li a img {
  width: 100%;
}
.l-sidebar__sns {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.l-sidebar__sns li {
  width: 25%;
}
.l-sidebar__sns li a img {
  width: 100%;
}

.c-heading {
  color: #494846;
  font-weight: bold;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 25px;
}

.c-machine_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  list-style: none;
}
@media (max-width: 1400px) {
  .c-machine_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 530px) {
  .c-machine_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-machine_list > li {
  border-radius: 8px;
  min-height: 100px;
  background: #fff;
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.c-machine_list > li .bg {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.c-machine_list > li .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-machine_list > li.large {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 200px;
}
.c-machine_list > li.large .bg {
  width: 150px;
  height: 150px;
}
@media (max-width: 768px) {
  .c-machine_list > li.large a {
    min-height: 150px;
  }
}
.c-machine_list > li.wide {
  grid-column: span 2;
}
.c-machine_list > li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.c-machine_list > li a .name .jp {
  font-weight: bold;
  padding-bottom: 2px;
  margin-bottom: 2px;
  position: relative;
}
.c-machine_list > li a .name .jp::after {
  content: "";
  display: block;
  width: 170px;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #cccccc;
}
.c-machine_list > li a .name .en {
  max-width: 170px;
  font-size: 0.8em;
  color: #999999;
}
.c-machine_list > li a .labels {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  list-style: none;
}
.c-machine_list > li a .labels li {
  font-weight: bold;
}
.c-machine_list > li a .labels li.zn {
  color: #595959;
}
.c-machine_list > li a .labels li.mg {
  color: #bf1a21;
}
.c-machine_list > li a .labels li.sn {
  color: #c04f15;
}
.c-machine_list > li a .labels li.al {
  color: #000;
}
.c-machine_list > li a .labels li.etc {
  color: #7f7f7f;
}

.l-top__mv {
  background-color: #fff;
}
.l-top__mv__wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px 60px;
  position: relative;
}
@media (max-width: 530px) {
  .l-top__mv__wrap {
    padding: 30px 0 40px;
  }
}
.l-top__mv__bg {
  display: block;
  width: 100%;
  height: 240px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  background-image: url("../images/top_new/mv_logo.png");
  background-size: 100%;
  background-position: top 25px center;
  background-repeat: no-repeat;
  opacity: 0.3;
}
@media (max-width: 1000px) {
  .l-top__mv__bg {
    height: 24vw;
  }
}
.l-top__mv__catch {
  margin-top: 20px;
  font-size: 28px;
  color: #494846;
  line-height: 1.5;
}
@media (max-width: 520px) {
  .l-top__mv__catch {
    font-size: 20px;
  }
}
.l-top__mv__pickup {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .l-top__mv__pickup {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.l-top__mv__pickup li {
  width: 31%;
}
@media (max-width: 960px) {
  .l-top__mv__pickup li {
    width: calc(50% - 20px);
  }
}
.l-top__mv__pickup li a .image_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/0.9;
}
@media (max-width: 960px) {
  .l-top__mv__pickup li a .image_wrap {
    aspect-ratio: 1/0.8;
  }
}
.l-top__mv__pickup li a .image_wrap img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-top__mv__pickup li a .wrap {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .l-top__mv__pickup li a .wrap {
    flex-direction: column;
    gap: 5px;
  }
}
.l-top__mv__pickup li a .wrap .name {
  font-size: 23px;
  font-weight: bold;
  color: #000;
}
@media (max-width: 520px) {
  .l-top__mv__pickup li a .wrap .name {
    font-size: 19px;
  }
}
.l-top__mv__pickup li a .wrap .subname {
  font-size: 12px;
  color: #000;
  line-height: 1.25;
}
.l-top__news__list li a {
  display: flex;
  gap: 16px;
}
@media (max-width: 520px) {
  .l-top__news__list li a {
    flex-direction: column;
    gap: 10px;
  }
}
.l-top__news__list li a .time {
  color: #000;
}
.l-top__news__list li a .title {
  color: #0070c0;
}/*# sourceMappingURL=style.css.map */