:root {
  /* ----- Font Family ----- */
  --main-font-family: "Noto Serif JP", serif;
  /* ----- font size ----- */
  font-size: 10px; /* -> 62.5% */
  --main-font-size: 1.7rem;
  /* ----- Font Color ----- */
  --main-txt-color: #000;
  /* ----- White Color Theme Palette ----- */
  --white-primary: #fffefa;
  --white-pure: #ffffff;
  /* ----- Gray Palette ----- */
  --dark: rgba(0, 0, 0, 0.85);
  --gray-primary: #232f3e;
  --gray-secondary: #b4b9b9;
  --gray-accent: #35363a;
  --gray-dark: #7f837f;
  --gray-medium: #999999;
  --gray-light: lightgray;
  --gray-lightest: #eaeaea;
  --gray-border: #d6d9db;
  --gray-bg: #f7f7f7;
  /* ----- height ----- */
  --main-nav-height: 8.5rem;
  --main-footer-height: 4.25rem;
  --ios-height: "";
  --main-image-container-height: "";
  --main-image-container-width: "";
}

* {
  text-decoration: none;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--main-nav-height));
}

ul,
ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

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

p {
  margin: 0;
}

/***********************************************/
/*            Page Loading Animation           */
/***********************************************/
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--dark);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                   Body Structures                 */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
body {
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  height: auto;
  min-height: -webkit-fill-available;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--white-pure);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body.active {
  overflow: clip;
  touch-action: none;
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                    Top Navigation                 */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
.top-navigation {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  width: 100%;
  background-color: var(--white-pure);
  background-color: #000;
  z-index: 100;
}

.main-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 100%;
  height: var(--main-nav-height);
  border-bottom: 0.5px solid #636363;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
  padding: 0 2.5rem;
  transition: all 0.3s ease-in-out;
}

.web-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.company-logo {
  width: 140px;
  filter: brightness(100%);
  transition: all 0.3s ease-in-out;
}

.company-logo:hover {
  filter: brightness(65%);
}

/*****************************************************/
/*          Nav Menu Wrapper & Dropdown Items        */
/*****************************************************/
.nav-menu-wrapper {
  display: flex;
  gap: 3rem;
  align-items: center;
  color: #000;
}

.nav-menu-wrapper .company,
.nav-menu-wrapper .contact {
  color: white;
}

.nav-menu-wrapper .dropdown-menu-wrapper a {
  color: #000;
}

.dropdown-item {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

/*****************************************************/
/*               none dropdown links                 */
/*****************************************************/
/*****************************************************/
/*                dropdown-item-button               */
/*****************************************************/
.dropdown-item-button {
  font-family: var(--main-font-family);
  font-size: inherit;
  color: white;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

/* Rotate icon when button is active */
.dropdown-item-button.active .la-angle-down {
  transform: rotateX(180deg);
}

.dropdown-item-button .la-angle-down {
  transition: transform 0.3s ease;
}

/*****************************************************/
/*               dropdown-menu-wrapper               */
/*****************************************************/
.dropdown-menu-wrapper {
  position: absolute;
  top: var(--main-nav-height);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  width: 100%;
  min-height: 45vh;
  opacity: 0;
  visibility: hidden;
  background-color: var(--white-pure);
  transition: all 0.3s ease-in-out;
  transform: translateY(5%);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
}

.dropdown-menu-wrapper.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*****************************************************/
/*            dropdown-menu-section-wrapper          */
/*****************************************************/
.dropdown-menu-section-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10rem;
  width: 100%;
}

.dropdown-menu-title-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.sub-tree-title {
  color: #6f6f6f;
  font-size: 80%;
}

/*****************************************************/
/*           dropdown-menu-section main-title        */
/*****************************************************/
.dropdown-menu-section.main-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 0;
}

.dropdown-menu-section.main-title a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/*****************************************************/
/*           dropdown-menu-section item-lists        */
/*****************************************************/
.dropdown-menu-section.item-lists {
  font-size: 1.35rem;
}

/*****************************************************/
/*             dropdown-menu-section right           */
/*****************************************************/
.dropdown-menu-section-title {
  display: inline-block;
  font-size: inherit;
  padding: 5px 7px;
  background-color: #000;
  color: white;
  margin-bottom: 1.5rem;
}

.dropdown-menu-section h3 {
  margin: 0;
  font-size: inherit;
  transition: all 0.3s ease;
}

.dropdown-menu-section ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.dropdown-menu-section ul li a p {
  color: #969696;
  font-size: 80%;
  transition: all 0.3s ease;
}

.dropdown-menu-section ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-menu-section ul li a i {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.dropdown-menu-section ul li a:hover p {
  color: #000;
}

/*****************************************************/
/*           Top Navigation Hamburger Menu           */
/*****************************************************/
.hamburger.main {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
  z-index: 999;
}

.bar {
  display: block;
  width: 35px;
  height: 2.5px;
  margin: 8.5px auto;
  transition: all 0.2s ease-in-out;
  background-color: #000;
  background-color: white;
}

.hamburger.main.active .bar {
  background-color: #fff;
}

.hamburger.main.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.main.active .bar:nth-child(1) {
  transform: translateY(11px) rotate(44deg);
}

.hamburger.main.active .bar:nth-child(3) {
  transform: translateY(-11px) rotate(-44deg);
}

.hamburger.hide .bar {
  display: none;
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                  Mobile Navigation                */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
#mobile-nav {
  display: none;
}

.mobile-nav-contents {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  font-size: var(--mobile-nav-font-size);
  height: var(--ios-height);
  overflow-y: auto;
  overflow-x: hidden; /* Prevent horizontal scroll */
  background-color: #000;
  width: 100%;
  transform: translate(100%);
  transition: all 0.2s ease-in-out;
  overscroll-behavior: contain;
}

.mobile-nav-contents.open {
  visibility: visible;
  transform: translate(0);
}

/*****************************************************/
/*               mobile-nav-menu-wrapper             */
/*****************************************************/
.mobile-nav-menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  height: 100%;
  padding-top: calc(var(--main-nav-height) * 1.5);
  margin: 0 2rem;
}

.mobile-dropdown-menu-wrapper {
  visibility: hidden;
  position: absolute; /* Position relative to the .mobile-nav-wrapper */
  top: 0;
  left: 0;
  font-size: var(--mobile-nav-font-size);
  overflow-y: auto;
  background-color: var(--white-pure);
  height: 100%;
  width: 100%;
  padding: 1.5rem;
  transform: translate(100%);
  transition: all 0.2s ease-in-out;
  overscroll-behavior: contain;
}

.mobile-dropdown-menu-wrapper.open {
  visibility: visible;
  transform: translate(0);
}

.mobile-dropdown-item-button {
  font-family: var(--main-font-family);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 3rem;
  padding: 0;
  color: var(--white-pure);
}

.mobile-nav-menu-wrapper a {
  color: #000;
}

.mobile-nav-menu-wrapper .company,
.mobile-nav-menu-wrapper .contact {
  color: var(--white-pure);
  font-size: 3rem;
}

.mobile-dropdown-menu-button {
  font-family: var(--main-font-family);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  padding: 0;
  color: #000;
  font-weight: 900;
}

.mobile-dropdown-menu-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: 5rem 0;
}

.mobile-dropdown-menu-image-wrapper {
  display: flex;
  width: 100%;
}

.mobile-dropdown-menu-image-wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
}

.mobile-dropdown-menu-image-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.mobile-dropdown-menu-section-title {
  display: inline-block;
  font-size: inherit;
  padding: 5px 7px;
  background-color: #000;
  color: white;
  margin-bottom: 1.5rem;
}

.mobile-dropdown-menu-section h2 {
  display: inline-block;
  font-size: inherit;
  padding: 5px 7px;
  background-color: #000;
  color: var(--white-pure);
}

.mobile-dropdown-menu-section h3 {
  margin: 0;
  font-size: inherit;
  transition: all 0.3s ease;
}

.mobile-dropdown-menu-section ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.2rem;
}

.mobile-dropdown-menu-section ul li a p {
  color: #969696;
  font-size: 80%;
  transition: all 0.3s ease;
}

.mobile-dropdown-menu-section ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
}

.mobile-dropdown-menu-section ul li a i {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                    Body Content                   */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                    Body Content                   */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
.main-contents-body {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - (var(--main-nav-height) + var(--main-footer-height)));
}

/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*                        Footer                     */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*****************************************************/
.footer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  background-color: #000;
  color: white;
  height: var(--main-footer-height);
  margin: auto;
}

/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/***************************     Smaller Screens      ***************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/*******************************************************/
/*                  Screen Size 930 px                 */
/*******************************************************/
@media (max-width: 930px) {
  .main-nav {
    padding: 0 15px;
  }
  .nav-menu-wrapper {
    display: none;
  }
  .hamburger.main {
    display: block;
  }
  #mobile-nav {
    display: block;
  }
}
h1 {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  border-bottom: 0.5px solid black;
}

table {
  width: 90%;
  max-width: 850px;
  border-top: 0.5px solid #bcbcbc; /* was 0.5px */
  border-collapse: separate; /* avoid Safari's collapsed-row bug */
  border-spacing: 0;
  margin: 0 auto;
}

tbody th,
tbody td {
  border-bottom: 0.5px solid #bcbcbc; /* simulate hairline */
}

/* keep your paddings etc. */
tbody th {
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
  min-width: 10rem;
  padding: 3rem 3rem 3rem 0;
}

tbody td {
  padding: 3rem;
  vertical-align: top;
}

.business-type:first-child,
.contact-info:first-child {
  margin-bottom: 2rem;
}

.business-type ul li {
  margin: 0.5rem 0;
}

tbody tr {
  border-bottom: 0.5px solid #bcbcbc;
}

section.sub.company-info .section-contents-wrapper {
  padding: 7rem 0;
}

/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/***************************     Smaller Screens      ***************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/*******************************************************/
/*                  Screen Size 930px                  */
/*******************************************************/
@media (max-width: 930px) {
  h1 {
    padding: 3rem;
  }
  section.sub.company-info .section-contents-wrapper {
    padding: 6rem 0;
  }
  tbody td {
    padding: 3rem 0;
  }
}/*# sourceMappingURL=company.css.map */