@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  translate: 0.5s all;
  font-family: "Noto Sans JP", sans-serif;
}

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

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

.c-container {
  width: 1100px;
  margin: auto;
}

td {
  padding: 10px 10px !important;
}

th {
  padding: 15px 10px !important;
  background-color: #BFBFBF !important;
}

@media screen and (max-width: 1101px) {
  .c-container {
    width: 920px;
  }
}
@media screen and (max-width: 993px) {
  .c-container {
    width: 720px;
  }
}
@media screen and (max-width: 769px) {
  .c-container {
    width: 520px;
  }
}
@media screen and (max-width: 577px) {
  .c-container {
    width: auto;
    margin: 0px 15px;
  }
}
.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.pagination li:not(:first-child) {
  margin-left: 7px;
}
.pagination li i {
  font-size: 24px;
  color: #4d4d4d;
}
.pagination li.disabled i {
  color: #CBCBCB;
}
.pagination li.page a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 35px;
  background-color: white;
  border: 1px solid #E0E0E0;
  color: black;
  font-size: 12px;
  border-radius: 5px;
  padding: 5px;
}
.pagination li.page.active a {
  background-color: #004EA2;
  color: white;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
}

section.login.admin {
  background-color: #010d2b;
}
section.login.admin .__content .auth__content h1 {
  color: white;
}

.bills {
  margin-bottom: 20px;
}
.bills .print-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.bills .print-wrap .btn-print {
  position: relative;
  min-width: 120px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px 10px 50px;
  background-color: #004EA2;
  color: white;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.5s;
}
.bills .print-wrap .btn-print::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background-image: url("../images/icon-print.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: 10px;
  top: calc(50% - 13px);
}
.bills .print-wrap .btn-print:hover {
  background-color: #004186;
}
.bills .print-wrap .btn-print.btn-y {
  background-color: #F8B62D;
}
.bills .print-wrap .btn-print.btn-y:hover {
  background-color: #da9814;
}

.page-bill {
  position: relative;
}
.page-bill .total-bill {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #E2E2E2;
  padding: 10px 30px;
  right: 0;
  top: -20px;
  border-radius: 10px;
}
.page-bill .total-bill .bill-item {
  display: grid;
  grid-template-columns: 100px auto;
  gap: 10px;
}
.page-bill .total-bill .bill-item p {
  font-size: 28px;
  color: #004EA2;
  font-weight: bold;
}

section.login.shop {
  background-color: #F8B62D;
}
section.login.shop .__content .auth__content h1 {
  color: black;
}

.manual-list {
  margin-left: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.manual-list .manual-item h2 {
  font-size: 24px;
  line-height: 175%;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
.manual-list .manual-item .item_wrap {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}
.manual-list .manual-item .item_wrap .item {
  width: 250px;
}
.manual-list .manual-item .item_wrap .item .item-mv {
  width: 100%;
  aspect-ratio: 16/9;
}
.manual-list .manual-item .item_wrap .item .item-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.manual-list .manual-item .item_wrap .item .link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.manual-list .manual-item .item_wrap .item .link .link-btn {
  display: flex;
  padding: 15px 15px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #004EA2;
  border-radius: 5px;
}
.manual-list .manual-item .item_wrap .item .link .link-btn:hover {
  background-color: #004186;
}
.manual-list .manual-item .item_wrap .item .link .link-btn.btn-cancle {
  background-color: #AFAFAF;
}
.manual-list .manual-item .item_wrap .item .link .link-btn.btn-cancle:hover {
  background-color: #a3a3a3;
}

section.news {
  margin-top: 50px;
}
section.news .content {
  margin: auto;
  max-width: 1000px;
}
section.news .content ul.news_wrap {
  display: grid;
  grid-template-columns: 1fr;
}
section.news .content ul.news_wrap > li a {
  padding: 10px 10px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  border-bottom: 1px solid #ccc;
}
section.news .content ul.news_wrap > li a .img {
  width: 100%;
  aspect-ratio: 4/3;
}
section.news .content ul.news_wrap > li a .img .non-img {
  width: 100%;
  height: 100%;
  background-color: rgb(226, 226, 226);
}
section.news .content ul.news_wrap > li a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.news .content ul.news_wrap > li a .item-content {
  margin: 10px 0px;
}
section.news .content ul.news_wrap > li a .item-content .post-date {
  font-size: 14px;
  color: #004EA2;
  line-height: 175%;
}
section.news .content ul.news_wrap > li a .item-content .title {
  font-size: 18px;
  font-weight: bold;
  color: #666;
  line-height: 175%;
  margin-top: 10px;
}
section.news .content ul.news_wrap > li a .item-content .item-content {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 200%;
  color: #666;
}
section.news .content .news-detail {
  margin: auto;
  max-width: 700px;
}
section.news .content .news-detail a {
  text-decoration: underline;
  color: #004EA2;
}
section.news .content .news-detail .post-date {
  font-size: 16px;
  color: #004EA2;
}
section.news .content .news-detail h1 {
  font-size: 24px;
  line-height: 175%;
  font-weight: bold;
  margin-top: 10px;
}
section.news .content .news-detail .img {
  margin-top: 20px;
  width: 100%;
}
section.news .content .news-detail .img img {
  width: 100%;
}
section.news .content .news-detail .content {
  margin-top: 30px;
  font-size: 16px;
  line-height: 200%;
}
section.news .content .news-detail .link-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
section.news .content .news-detail .link-content .m-blue-btn {
  color: white;
  text-decoration: none;
}

.footer-top-menu {
  position: relative;
  padding: 20px 0px 20px 0px;
  background-color: #1c344c;
  z-index: 50;
}
.footer-top-menu .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-top-menu .content a {
  color: white;
}
.footer-top-menu .content a:hover {
  color: #F3A251;
}

footer {
  position: relative;
  background-image: url("../images/footer-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 10px;
  padding-bottom: 30px;
  z-index: 50;
}
footer .footer .footer-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
}
footer .footer .footer-main .logo {
  color: white;
  font-family: respective;
  font-weight: normal;
  width: 200px;
}
footer .footer .footer-main .logo img {
  width: 100%;
}
footer .footer .footer-main .menu {
  display: flex;
  flex-direction: row;
}
footer .footer .footer-main .menu > li {
  width: -moz-fit-content;
  width: fit-content;
}
footer .footer .footer-main .menu > li:not(:first-child) {
  margin-left: 80px;
}
footer .footer .footer-main .menu > li .title {
  font-size: 16px;
  color: white;
  padding-bottom: 12px;
  border-bottom: 1px solid #666;
}
footer .footer .footer-main .menu > li .sub-menu > li {
  margin-top: 20px;
}
footer .footer .footer-main .menu > li .sub-menu > li a {
  position: relative;
  font-size: 14px;
  color: white;
  padding-left: 23px;
}
footer .footer .footer-main .menu > li .sub-menu > li a::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: white;
  left: 0;
  top: 50%;
}
footer .copyright {
  margin-top: 50px;
  font-size: 14px;
  color: #aaa;
}

@media only screen and (max-width: 992px) {
  .footer-top-menu .content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer .footer-main {
    flex-direction: column;
  }
  footer .footer .footer-main .menu {
    justify-content: flex-end;
    margin-top: 40px;
  }
  footer .footer .footer-main .menu > li:not(:first-child) {
    margin-top: 0;
  }
  footer .footer .footer-main .logo {
    display: block;
    width: 140px;
    line-height: normal;
  }
  footer .copyright {
    text-align: center;
    font-size: 12px;
  }
  section.archive .link .menu-list li a {
    font-size: 12px;
  }
  .footer-top-menu {
    padding: 15px 10px;
  }
}
@media only screen and (max-width: 576px) {
  footer .footer .footer-main .menu > li .sub-menu > li {
    margin-top: 15px;
  }
  footer .footer .footer-main .menu > li .sub-menu > li a {
    font-size: 12px;
  }
  footer .footer .footer-main .menu > li:not(:first-child) {
    margin-left: 40px;
  }
  footer .copyright {
    font-size: 11px;
  }
}
section.login {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
section.login .__content {
  max-width: 460px;
  padding: 0px 20px;
  width: 100%;
}
section.login .__content .site-logo {
  width: 100%;
}
section.login .__content .site-logo img {
  width: 100%;
}
section.login .__content .auth__content {
  margin-top: 15px;
}
section.login .__content .auth__content h1 {
  font-size: 37px;
  font-weight: bold;
  text-align: center;
}
section.login .__content .auth__content .form-content {
  margin-top: 50px;
}
section.login .__content .auth__content .form-content .__main {
  background-color: white;
  border-radius: 20px;
  padding: 20px 10px;
}
section.login .__content .auth__content .form-content .__main .form-wrap {
  width: 100%;
}
section.login .__content .auth__content .form-content .__main .form-wrap:not(:first-child) {
  border-top: 1px solid #efefef;
}
section.login .__content .auth__content .form-content .__main .form-wrap .form-input {
  width: -webkit-fill-available;
  height: 45px;
  font-size: 18px;
  padding: 0px 15px;
  border: none;
}
section.login .__content .auth__content .form-content .submit-wrap {
  margin-top: 30px;
}
section.login .__content .auth__content .form-content .submit-wrap button.submit {
  width: 100%;
  height: 50px;
  background-color: #004EA2;
  color: white;
  border-radius: 25px;
  transition: all 0.5s;
}
section.login .__content .auth__content .form-content .submit-wrap button.submit:hover {
  background-color: #004186;
}

.dashboard__wrap {
  display: flex;
  flex-direction: row;
}
.dashboard__wrap .nav {
  position: sticky;
  top: 0;
  background-color: #F8B62D;
  width: 300px;
  height: 100vh;
}
.dashboard__wrap .nav .main__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dashboard__wrap .nav .main__wrap .menu-main {
  height: calc(100% - 55px);
}
.dashboard__wrap .nav .main__wrap .menu-main .logo-content {
  padding: 50px 30px 30px 30px;
}
.dashboard__wrap .nav .main__wrap .menu-main h1 {
  font-size: 19px;
  font-weight: bold;
  color: black;
  text-align: center;
}
.dashboard__wrap .nav .main__wrap .menu-main ul.menu-content {
  margin-top: 50px;
}
.dashboard__wrap .nav .main__wrap .menu-main ul.menu-content li a {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}
.dashboard__wrap .nav .main__wrap .menu-main ul.menu-content li a .icon {
  width: 20px;
  color: white;
  text-align: center;
}
.fa-file-alt:before, .fa-file-lines:before, .fa-file-text:before{
  font-size: 20px;
}
.fa-microchip:before{
  font-size: 20px;
}
.dashboard__wrap .nav .main__wrap .menu-main ul.menu-content li a:hover {
  background-color: #e2a01c;
}
.dashboard__wrap .nav .main__wrap .menu-main ul.menu-content li a.active {
  background-color: #da9e27;
}
.dashboard__wrap .nav .main__wrap a.logout {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.dashboard__wrap .nav .main__wrap a.logout .icon {
  width: 20px;
  color: white;
}
.dashboard__wrap .nav .main__wrap a.logout:hover {
  background-color: #e2a01c;
}
.dashboard__wrap .nav .main__wrap a.active {
  background-color: #da9e27;
}
.dashboard__wrap .nav .main__wrap .res {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 20px;
  width: 100%;
  height: 55px;
  background-color: #ED6D0F;
}
.dashboard__wrap .nav .main__wrap .res.admin {
  background-color: #00071a;
}
.dashboard__wrap .nav .main__wrap .res span {
  cursor: pointer;
  font-size: 24px;
  color: white;
}
.dashboard__wrap .nav.admin-nav {
  background-color: #010d2b;
  color: white;
}
.dashboard__wrap .nav.admin-nav h1 {
  color: white !important;
}
.dashboard__wrap .nav.admin-nav ul.menu-content {
  margin-top: 50px;
}
.dashboard__wrap .nav.admin-nav ul.menu-content li a:hover {
  background-color: #011341 !important;
}
.dashboard__wrap .nav.admin-nav ul.menu-content li a.active {
  background-color: #01174e !important;
}
.dashboard__wrap .nav.admin-nav a.logout:hover {
  background-color: #011341 !important;
}
.dashboard__wrap .main--content {
  flex-grow: 1;
  padding: 100px 50px;
}
.dashboard__wrap .main--content h1 {
  font-size: 32px;
  font-weight: bold;
}
.dashboard__wrap .main--content .status-fixed {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 20px;
  bottom: 0;
  right: 0;
  width: calc(100% - 300px);
  background-color: rgba(219, 218, 218, 0.9);
  padding: 10px 50px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 10;
}

.dashboard--inner {
  max-width: 650px;
}
.dashboard--inner .__wrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.dashboard--inner .__wrap .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: #004EA2;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
}
.dashboard--inner .__wrap .item:hover {
  background-color: #004186;
}
.dashboard--inner .__wrap .item .icon {
  width: 60px;
  height: 48px;
}
.dashboard--inner .__wrap .item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.dashboard--inner .__wrap .item span {
  margin-top: 10px;
}

.m-btn {
  display: block;
  min-width: 150px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #004EA2;
  border: none;
  text-align: center;
  border-radius: 10px;
}
.m-btn:hover {
  background-color: #004186;
}

form label {
  font-size: 16px;
}

.m-input {
  width: 100%;
  height: 50px;
  border-radius: 2px;
  border: 1px solid #D0D0D0;
  padding: 0px 15px;
}

.m-select {
  width: 100%;
  height: 50px;
  border-radius: 2px;
  border: 1px solid #D0D0D0;
  padding: 0px 15px;
}

.m-text {
  width: 100%;
  height: auto;
  border-radius: 2px;
  border: 1px solid #D0D0D0;
  padding: 15px 15px;
}

.m-search-btn {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 15px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #004EA2;
  border: none;
  text-align: center;
  border-radius: 10px;
  padding-left: 40px;
}
.m-search-btn::before {
  position: absolute;
  content: "";
  width: 19px;
  height: 19px;
  top: 17px;
  left: 12px;
  background-image: url("../images/icon-search.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.m-search-btn:hover {
  background-color: #004186;
}

.m-icon-btn {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #004EA2;
  border: none;
  text-align: center;
  border-radius: 2px;
  min-width: 42px;
}
.m-icon-btn:hover {
  background-color: #004186;
}

.m-icon-btn.trash {
  background-color: #dc2626;
}
.m-icon-btn.trash:hover {
  background-color: #ce1e1e;
}

.form-input-content {
  max-width: 900px;
}

.input__wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  margin: 30px 0px;
}
.input__wrap label {
  font-size: 16px;
  margin-top: 15px;
  font-weight: bold;
}
.input__wrap label.required {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.input__wrap label.required::before {
  position: absolute;
  content: "必須";
  font-size: 10px;
  color: white;
  padding: 3px 5px;
  border-radius: 3px;
  background-color: #ce1e1e;
  right: -40px;
  top: 2px;
}

.input-bg-gray {
  background-color: #f1f1f1;
}

.submit__wrap {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.submit__wrap .submit-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #004EA2;
  border-radius: 5px;
}
.submit__wrap .submit-btn:hover {
  background-color: #004186;
}
.submit__wrap .submit-btn.btn-cancle {
  background-color: #AFAFAF;
}
.submit__wrap .submit-btn.btn-cancle:hover {
  background-color: #a3a3a3;
}

.m-blue-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #004EA2;
  border-radius: 5px;
}
.m-blue-btn:hover {
  background-color: #004186;
}
.m-blue-btn.btn-cancle {
  background-color: #AFAFAF;
}
.m-blue-btn.btn-cancle:hover {
  background-color: #a3a3a3;
}
.user-name-display {
  margin-top: 10px;
  text-align: center;
}