@charset "UTF-8";
/* reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert; }

*,
*::before,
*::after {
  box-sizing: border-box; }

a,
button {
  cursor: revert; }

ol,
ul,
menu {
  list-style: none; }

img {
  max-inline-size: 100%;
  max-block-size: 100%; }

table {
  border-collapse: collapse; }

input,
textarea {
  -webkit-user-select: auto; }

textarea {
  white-space: revert; }

meter {
  -webkit-appearance: revert;
  appearance: revert; }

pre {
  all: revert; }

::placeholder {
  color: unset; }

::marker {
  content: initial; }

:where([hidden]) {
  display: none; }

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto; }

:where([draggable="true"]) {
  -webkit-user-drag: element; }

:where(dialog:modal) {
  all: revert; }

/*  reset */
/* config */
.col_white {
  color: white; }

.col_black {
  color: black; }

.col_red {
  color: #B30013; }

.bg_white {
  background: white;
  color: black; }

.bg_black {
  background: black;
  color: white; }

.bg_red {
  background: #B30013;
  color: white; }

.font-patua {
  font-family: 'Patua One','Noto Sans JP',sans-serif;
  font-weight: 400,500,500; }

.blink {
  animation: blinkAnime 1s infinite alternate; }

@keyframes blinkAnime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
section {
  display: block !important;
  overflow: hidden !important; }

body {
  font-family: 'Noto Sans JP','sans-serif';
  font-size: 110% !important;
  font-weight: 300, 300 !important;
  color: #333; }
  @media screen and (max-width: 768px) {
    body {
      font-size: 100% !important; } }
  body b, body strong {
    font-weight: 400 !important; }

html {
  scroll-behavior: smooth; }

a {
  text-decoration: none !important; }

.sp_only {
  display: none; }
  @media (max-width: 576px) {
    .sp_only {
      display: block; } }

.md_only {
  display: none; }
  @media screen and (max-width: 768px) {
    .md_only {
      display: block; } }

.pc_only {
  display: block; }
  @media (max-width: 576px) {
    .pc_only {
      display: none; } }

/* config */
/* layout */
/*---layout--*/
body {
  position: relative;
  background: #fff; }

header {
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  border-bottom: 1px solid #333; }

footer {
  background-color: #B30013;
  color: white;
  overflow: hidden; }
  @media screen and (max-width: 768px) {
    footer {
      width: 100%; } }

.l_top_jumbo {
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
  height: 70vh;
  position: relative;
  background-position: center center;
  background-size: cover; }
  .l_top_jumbo .logo {
    width: 90vw;
    max-width: 700px;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%); }
    .l_top_jumbo .logo img {
      width: 80%;
      display: block;
      max-width: 600px;
      margin: 0 auto; }
    .l_top_jumbo .logo .caption {
      display: block;
      text-align: center;
      padding: 2em 0 1em 0;
      color: #fff;
      line-height: 160%;
      font-size: 0.9em;
      font-weight: 300; }
      .l_top_jumbo .logo .caption span {
        display: inline-block;
        white-space: nowrap;
        padding: 0 0.5em; }

.l_other_jumbo {
  height: 60vh;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden; }
  .l_other_jumbo .logo {
    width: 70vw;
    max-width: 600px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); }
  .l_other_jumbo .caption {
    color: #fff;
    width: 90vw;
    max-width: 700px;
    position: absolute;
    padding: 1em 0;
    text-align: center;
    font-weight: 300;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%); }
    .l_other_jumbo .caption::before {
      content: '';
      display: block;
      width: 3000px;
      height: 100%;
      position: absolute;
      z-index: -1;
      background-color: rgba(0, 0, 0, 0.3);
      left: -50vw;
      top: 0; }

#btn_close {
  display: block;
  font-size: 1.5em;
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 20px; }

.g-address {
  width: calc( 100% );
  margin: 0 auto;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: calc((100% - 40px) / 3) calc((100% - 40px) / 3) calc((100% - 40px) / 3); }
  @media (max-width: 576px) {
    .g-address {
      grid-template-columns: auto; } }
  .g-address img {
    max-width: 300px;
    display: block;
    margin: 0 auto; }
  .g-address .address1 {
    grid-row: 1;
    grid-column: 1; }
    @media (max-width: 576px) {
      .g-address .address1 {
        grid-row: 1;
        grid-column: 1; } }
  .g-address .address2 {
    grid-row: 1;
    grid-column: 2; }
    @media (max-width: 576px) {
      .g-address .address2 {
        grid-row: 2;
        grid-column: 1; } }
  .g-address .address3 {
    grid-row: 1;
    grid-column: 3; }
    @media (max-width: 576px) {
      .g-address .address3 {
        grid-row: 4;
        grid-column: 1; } }
  .g-address .address4 {
    grid-row: 2;
    grid-column: 1 / 3;
    padding-left: 2em;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .g-address .address4 {
        padding-left: 0; } }
    @media (max-width: 576px) {
      .g-address .address4 {
        grid-row: 3;
        grid-column: 1; } }
  .g-address .address5 {
    grid-row: 2;
    grid-column: 3;
    text-align: center; }
    @media (max-width: 576px) {
      .g-address .address5 {
        grid-row: 5;
        grid-column: 1; } }
  .g-address .address6 {
    grid-row: 3;
    grid-column: 1/4; }
    .g-address .address6 table {
      max-width: 600px;
      text-align: left;
      font-size: 90%;
      margin: auto; }
    @media (max-width: 576px) {
      .g-address .address6 {
        grid-row: 6;
        grid-column: 1;
        text-align: center; }
        .g-address .address6 table {
          width: calc(100% - 30px) !important;
          max-width: 350px;
          text-align: left;
          font-size: 90%;
          margin: auto; } }

.l-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 99vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  overflow-y: auto; }
  .l-modal iframe {
    display: block;
    width: 100%;
    max-width: 500px;
    height: calc(100vh - 20px);
    max-height: 720px;
    z-index: 101;
    border-radius: 10px;
    position: absolute;
    top: 100vh;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    background-color: #fff;
    color: #000;
    overflow-y: auto; }
  .l-modal.active {
    display: block; }
    .l-modal.active iframe {
      top: 50%;
      transform: translateY(-50%) translateX(-50%);
      animation: moveTop 0.5s alternate; }
@keyframes moveTop {
  0% {
    top: 100%; }
  100% {
    top: 50%; } }
/*---layout--*/
/*---menu--*/
.menu-main {
  display: block;
  background-color: #B30013;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100; }
  .menu-main .menu-list {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0; }
    .menu-main .menu-list li {
      display: block;
      width: 100%;
      border-right: 1px solid rgba(255, 255, 255, 0.5);
      font-family: 'Patua One','Noto Sans JP',sans-serif;
      font-weight: 400,500,500; }
      .menu-main .menu-list li:first-child {
        border-left: 1px solid rgba(255, 255, 255, 0.5); }
      .menu-main .menu-list li a {
        display: table-cell;
        margin: 0;
        height: 80px;
        vertical-align: middle;
        text-align: center !important;
        color: white;
        font-size: 1.2em;
        font-weight: 700;
        min-width: 100%;
        width: 500px; }
        @media (max-width: 576px) {
          .menu-main .menu-list li a {
            height: 60px;
            font-size: 1em; } }
      .menu-main .menu-list li small {
        display: block;
        font-weight: 300;
        font-size: 0.6em; }

/*---menu--*/
.foot-container {
  display: flex;
  padding: 2em 0;
  margin: 0 auto;
  max-width: 800px; }
  @media (max-width: 576px) {
    .foot-container {
      max-width: none;
      display: block;
      padding: 2em; } }
  .foot-container .logo {
    display: block;
    padding: 0 1em 0 3em;
    width: 400px; }
    .foot-container .logo img {
      width: 100%; }
    @media (max-width: 576px) {
      .foot-container .logo {
        width: 80vw;
        max-width: 300px;
        margin: 0 auto;
        padding: 2em 0; } }
  .foot-container .caption {
    font-size: 0.8em;
    font-weight: 300 !important;
    color: #000; }
    @media (max-width: 576px) {
      .foot-container .caption {
        text-align: center; } }
    .foot-container .caption .name {
      font-weight: 500;
      font-size: 1.2em;
      line-height: 100%;
      margin-bottom: 0.3em; }
      .foot-container .caption .name small {
        font-size: 0.7em;
        font-weight: 300 !important; }
    .foot-container .caption .address {
      line-height: 100%;
      margin-bottom: 0.3em; }
    .foot-container .caption .eigyo span {
      display: inline-block;
      white-space: nowrap; }
      @media (max-width: 576px) {
        .foot-container .caption .eigyo span {
          display: block;
          text-align: center; } }

.footbtn {
  display: flex;
  position: fixed;
  bottom: 1px;
  right: 1px;
  width: 300px;
  max-width: 300px;
  height: 50px;
  z-index: 100; }
  @media (max-width: 576px) {
    .footbtn {
      width: 100vw;
      max-width: none; } }
  .footbtn div {
    border: 1px solid #fff;
    width: 50%;
    height: 150px;
    border-collapse: collapse; }
    .footbtn div a {
      display: block;
      width: 100%;
      height: 100%;
      text-align: center;
      padding-top: 14px;
      font-size: 14px;
      background-color: #000;
      color: #fff; }

/*---box--*/
.box-thum {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  margin: 0;
  padding: 0; }
  .box-thum > div.card {
    display: block;
    width: calc((100% - 60px) / 4);
    border: 1px solid #ABABAB;
    border-radius: 10px;
    position: relative; }
    @media screen and (max-width: 1000px) {
      .box-thum > div.card {
        width: calc((100% - 40px) / 3); } }
    @media screen and (max-width: 768px) {
      .box-thum > div.card {
        width: calc((100% - 20px) / 2); } }
    @media (max-width: 576px) {
      .box-thum > div.card {
        width: 100%; } }

.box-thumleft {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  margin: 0;
  padding: 0; }
  .box-thumleft dd {
    display: block;
    width: calc((100% - 60px) / 4);
    border: 1px solid #ABABAB;
    border-radius: 10px;
    position: relative; }
    @media screen and (max-width: 1000px) {
      .box-thumleft dd {
        width: calc((100% - 40px) / 3); } }
    @media screen and (max-width: 768px) {
      .box-thumleft dd {
        width: calc((100% - 20px) / 2); } }
    @media (max-width: 576px) {
      .box-thumleft dd {
        width: 100%; } }
    .box-thumleft dd img {
      width: 100%;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      object-position: center center; }
    .box-thumleft dd.w2x {
      width: calc((100% - 60px) / 2 + 20px ); }
      @media screen and (max-width: 1000px) {
        .box-thumleft dd.w2x {
          width: calc((100% - 40px) / 1.5); } }
      @media screen and (max-width: 768px) {
        .box-thumleft dd.w2x {
          width: calc((100% - 20px) / 1); } }
      @media (max-width: 576px) {
        .box-thumleft dd.w2x {
          width: 100%; } }
      .box-thumleft dd.w2x img {
        aspect-ratio: 2 / 1.5; }
    .box-thumleft dd .box_caption {
      display: block;
      padding: 1em; }
      .box-thumleft dd .box_caption h5.machineName {
        display: block;
        padding: 0.2em 0;
        border-top: 2px solid #B30013;
        border-bottom: 2px solid #B30013;
        font-family: 'Patua One', sans-serif;
        font-weight: 400;
        text-align: center;
        margin-bottom: 0.5em; }
        .box-thumleft dd .box_caption h5.machineName small {
          margin-top: 0.3em;
          display: block;
          font-size: 0.5em; }
        .box-thumleft dd .box_caption h5.machineName small::before {
          content: '- '; }
        .box-thumleft dd .box_caption h5.machineName small::after {
          content: ' -'; }

.box-square-svg {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0; }
  .box-square-svg li {
    display: block;
    width: calc((100% - 80px) / 5);
    border: 1px solid #00539B;
    background: #ffffff;
    border-radius: 10px;
    position: relative;
    padding: 1em;
    z-index: 5; }
    @media screen and (max-width: 768px) {
      .box-square-svg li {
        width: calc((100% - 60px) / 4); } }
    @media (max-width: 576px) {
      .box-square-svg li {
        width: calc((100% - 40px) / 3); } }
    @media (max-width: 414px) {
      .box-square-svg li {
        width: calc((100% - 20px) / 2); } }
    .box-square-svg li svg {
      display: block;
      max-width: 30%;
      max-height: 30%;
      margin: 1em auto;
      fill: #00539B;
      object-fit: contain;
      object-position: center center; }
    .box-square-svg li p {
      text-align: center;
      font-size: 90%;
      color: #00539B;
      margin-bottom: 0; }

.box_2ndbackcolor {
  position: relative; }
  .box_2ndbackcolor.blue {
    color: #00539B; }
    .box_2ndbackcolor.blue:before {
      content: '';
      display: block;
      background-color: #E1E9F3;
      width: 100vw;
      height: 100%;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: -1; }

.box-list-yakkan {
  font-size: 0.9em; }
  .box-list-yakkan > li strong {
    margin-top: 0.5em;
    margin-bottom: 0.3em;
    display: inline-block;
    border-bottom: 1px solid #B30013; }
  .box-list-yakkan > blockquote {
    padding-left: 1em; }
    .box-list-yakkan > blockquote ul {
      padding-left: 1.0em; }
      .box-list-yakkan > blockquote ul li {
        margin-top: 0.3em;
        text-indent: -1em; }

/*---box--*/
/*---format------*/
h1 {
  font-weight: 400;
  margin-bottom: 20px; }
  h1 small {
    font-size: 70%; }

h2 {
  font-weight: 400;
  margin-bottom: 20px; }

.container, .container-fluid {
  max-width: 1200px;
  width: calc( 100vw - 6em);
  margin: 3em auto;
  padding: 3em 2em;
  position: relative; }
  @media screen and (max-width: 768px) {
    .container, .container-fluid {
      width: calc( 100vw - 4em) !important; } }
  @media (max-width: 576px) {
    .container, .container-fluid {
      padding: 2em 1em;
      width: calc( 100vw - 2em) !important; } }
  .container h1, .container h2, .container h3, .container-fluid h1, .container-fluid h2, .container-fluid h3 {
    font-family: 'Patua One','Noto Sans JP',sans-serif;
    font-weight: 400,500,500; }
  .container h1:not([class]), .container-fluid h1:not([class]) {
    display: block;
    text-align: center;
    padding: 0.8rem 0;
    margin-bottom: 0.2rem;
    background-image: linear-gradient(109.6deg, #B30013 11.2%, black 91.1%);
    background-repeat: no-repeat;
    background-size: 100% 10px;
    background-position: bottom; }
  .container h2:not([class]), .container-fluid h2:not([class]) {
    text-align: center;
    display: block;
    font-size: 1.7rem;
    position: relative;
    margin: 2em 0 1.5em 0;
    padding-bottom: 0.3em;
    border-bottom: 2px solid #cbd1d7; }
    .container h2:not([class]):after, .container-fluid h2:not([class]):after {
      content: '';
      position: absolute;
      width: 30%;
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
      bottom: -4px;
      border-bottom: 4px solid #B30013; }
      @media (max-width: 576px) {
        .container h2:not([class]):after, .container-fluid h2:not([class]):after {
          width: 50%; } }
  .container h3:not([class]), .container-fluid h3:not([class]) {
    text-align: left;
    display: block;
    font-size: 1.5rem;
    position: relative;
    margin: 2em 0 1em 0;
    padding-left: 5px;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #cbd1d7; }
    .container h3:not([class]):after, .container-fluid h3:not([class]):after {
      content: '';
      position: absolute;
      width: 30%;
      left: 0;
      bottom: -2px;
      border-bottom: 2px solid #B30013; }
      @media (max-width: 576px) {
        .container h3:not([class]):after, .container-fluid h3:not([class]):after {
          width: 50%; } }

.card h5.card-title {
  display: block;
  padding: 0.2em 0;
  border-top: 2px solid #B30013;
  border-bottom: 2px solid #B30013;
  font-weight: 400;
  text-align: center; }
.card .card-body .price {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 1.3em;
  margin-top: 1em;
  margin-bottom: 0.3em; }
  .card .card-body .price small {
    font-weight: 300;
    font-size: 0.75em;
    padding-left: 0.2em; }
.card .card-body .caption {
  text-align: center;
  line-height: 200%; }
.card .card-body .caption:not(+ dl) {
  margin-bottom: 0; }
.card .card-body dl {
  display: flex;
  text-align: left;
  font-size: 0.85em;
  margin: 0.5em 0 0 0;
  padding: 0.3em 0.5em;
  border: 1px dotted #B30013; }
  @media (max-width: 576px) {
    .card .card-body dl {
      display: block; } }
  .card .card-body dl dt {
    min-width: 40px;
    max-width: 40px;
    white-space: nowrap;
    padding-bottom: 0.3em; }
  .card .card-body dl dd {
    width: 100%;
    white-space: normal;
    word-break: break-all; }

/*アニメーション要素のスタイル*/
.fadescroll {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(50px); }

/*アニメーション要素までスクロールした時のスタイル*/
.fadeacrive {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }

.badge.badge-full {
  width: 100% !important; }

/*---format------*/
