@charset "UTF-8";
body {
  font-family: "Hiragino Kaku Gothic ProN,Helvetica Neue,arial,Hiragino Sans,BIZ UDPGothic,meiryo,sans-serif";
}

.navbar .navbar-brand {
  display: flex;
  align-items: center;
}
.navbar .navbar-brand .navbar-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .navbar .navbar-brand .navbar-logo {
    height: 40px;
    max-width: 150px;
  }
}
.navbar .navbar-brand .header-text {
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
  color: #333;
}
@media (max-width: 768px) {
  .navbar .navbar-brand .header-text {
    font-size: 16px;
  }
}
.navbar .nav-link {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.navbar .nav-link small {
  display: block;
  font-size: 10px;
  color: #666;
  margin-top: 2px;
}

.btn-view-all {
  display: inline-block;
  padding: 16px 60px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.btn-view-all:hover {
  background: #333;
  color: #fff;
}

.section-simple {
  padding: 70px 0;
  background: #fff;
}
.section-simple.bg-light {
  background: #f8f9fa;
}

.section-heading {
  margin-bottom: 40px;
}
.section-heading h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 12px;
}
.section-heading .subtitle {
  font-size: 16px;
  color: #666;
}

.section-divider {
  height: 30px;
  background: linear-gradient(90deg, transparent 0%, #e0e0e0 10%, #e0e0e0 90%, transparent 100%);
  margin: 40px 0;
}

.contact-section {
  background: #f8f9fa;
  padding: 100px 0;
}
.contact-section h2 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 10px;
}
.contact-section p {
  font-size: 18px;
  color: #666;
}

.home-page .hero-section {
  position: relative;
  height: 600px;
  background: #f2f2f2;
  overflow: hidden;
}
.home-page .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 10%;
  background: #fff;
  z-index: 1;
}
.home-page .hero-section .hero-background {
  position: absolute;
  top: 60px;
  left: 200px;
  right: 0;
  bottom: 60px;
  background: url("/images/top_background.jpg") center/cover no-repeat;
  z-index: 2;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .home-page .hero-section .hero-background {
    left: 0;
    top: 0;
    bottom: 0;
    background-position: 60% center;
  }
}
.home-page .hero-section .hero-text-wrapper {
  position: absolute;
  left: 85px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 600px;
}
@media (max-width: 768px) {
  .home-page .hero-section .hero-text-wrapper {
    left: 30px;
    right: 30px;
    max-width: none;
  }
}
.home-page .hero-section .hero-text-wrapper .hero-title {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #000;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .home-page .hero-section .hero-text-wrapper .hero-title {
    font-size: 36px;
    letter-spacing: 3px;
  }
}
.home-page .hero-section .hero-text-wrapper .hero-subtitle {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .home-page .hero-section .hero-text-wrapper .hero-subtitle {
    font-size: 16px;
  }
}
.home-page .hero-section .hero-text-wrapper .hero-description {
  font-size: 16px;
  color: #000;
}
@media (max-width: 768px) {
  .home-page .hero-section .hero-text-wrapper .hero-description {
    font-size: 13px;
  }
}
.home-page .news-section {
  padding: 112px 0;
  background: #f2f2f2;
}
.home-page .news-section .news-heading {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.home-page .news-section .news-heading h2 {
  font-size: 42px;
  font-weight: bold;
  margin-right: 28px;
}
.home-page .news-section .news-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #f2f2f2;
}
.home-page .news-section .news-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}
.home-page .news-section .news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .home-page .news-section .news-list {
    grid-template-columns: 1fr;
  }
}
.home-page .news-section .news-list .news-item {
  padding: 7px;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 4px;
}
.home-page .news-section .news-list .news-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
  transform: translateX(5px);
}
.home-page .news-section .news-list .news-item:hover .news-title {
  color: #333;
}
.home-page .news-section .news-list .news-item .news-date {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}
.home-page .news-section .news-list .news-item .news-title {
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}
.home-page .text-section {
  position: relative;
  background: #f2f2f2;
  padding: 0;
  min-height: 1000px;
}
.home-page .text-section .text-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 650px;
  background: #2b2b2b;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&w=1920");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-page .text-section .text-section-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(43, 43, 43, 0.7);
}
.home-page .text-section .text-section-content {
  position: absolute;
  top: 400px;
  right: 240px;
  background: white;
  padding: 70px 130px;
}
@media (max-width: 768px) {
  .home-page .text-section .text-section-content {
    left: 20px;
    right: 20px;
    padding: 40px 30px;
    top: 300px;
  }
}
.home-page .text-section h2 {
  font-size: 25.2px;
  line-height: 40px;
  letter-spacing: 1.26px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .home-page .text-section h2 {
    font-size: 20px;
    line-height: 32px;
  }
}
.home-page .text-section .subtitle {
  font-size: 14px;
  color: #2b2b2b;
  letter-spacing: 1.4px;
  margin-bottom: 40px;
  font-family: "Noto Serif JP", serif;
}
.home-page .text-section p {
  font-size: 15.4px;
  line-height: 27.72px;
  letter-spacing: 0.77px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 400;
}
.home-page .text-section strong {
  font-weight: bold;
  color: #000;
}
.home-page .service-section {
  background: linear-gradient(180deg, #000 0%, #333 100%);
  padding: 70px 0 100px;
  position: relative;
}
.home-page .service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&w=1920") center/cover no-repeat;
  opacity: 0.3;
}
.home-page .service-section .container {
  position: relative;
  z-index: 1;
  margin: 100px auto;
}
.home-page .service-section .service-heading {
  text-align: center;
  margin-bottom: 60px;
}
.home-page .service-section .service-heading h2 {
  font-size: 49px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
}
.home-page .service-section .service-heading .subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.home-page .service-section .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.home-page .service-section .service-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .home-page .service-section .service-grid.two-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .home-page .service-section .service-grid {
    grid-template-columns: 1fr;
  }
}
.home-page .service-section .service-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
}
.home-page .service-section .service-card:hover {
  transform: translateY(-5px);
}
.home-page .service-section .service-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.home-page .service-section .service-card .separator {
  width: 30px;
  height: 3px;
  background: #333;
  margin: 0 auto 20px;
}
.home-page .service-section .service-card .title-ja {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}
.home-page .service-section .service-card .description {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
}
.home-page .service-section .service-card .btn-more {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}
.home-page .service-section .service-card .btn-more:hover {
  background: #333;
  color: #fff;
}
.home-page .service-section .service-card .btn-more::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.business-page .service-section {
  background: white;
  padding: 0;
  position: relative;
}
.business-page .service-section .service-header {
  position: relative;
  height: 400px;
  background: #2b2b2b;
  border-bottom: 2px solid #2b2b2b;
}
.business-page .service-section .service-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 2px;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&w=1920") center 60%/cover no-repeat;
}
.business-page .service-section .service-header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 1px 1px 5px #000000;
}
.business-page .service-section .service-header-content h1 {
  font-size: 35px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 3.5px;
  line-height: 49px;
  margin-bottom: 8px;
  font-weight: 400;
}
.business-page .service-section .service-header-content .subtitle {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  letter-spacing: 1.4px;
  line-height: 19.6px;
}
.business-page .service-section .service-item {
  background: white;
  min-height: 435px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 85px 40px;
  box-sizing: border-box;
}
.business-page .service-section .service-item.tall {
  min-height: 533px;
  padding: 85px 40px 98px;
}
.business-page .service-section .service-item.tall .service-content::before {
  top: 50px;
}
.business-page .service-section .service-item::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  height: 100%;
  pointer-events: none;
}
.business-page .service-section .service-content {
  width: 590px;
  max-width: 45%;
  position: relative;
  z-index: 2;
}
.business-page .service-section .service-content.left {
  margin-left: calc(50% - 960px + 360px);
  margin-right: auto;
}
.business-page .service-section .service-content.right {
  margin-left: calc(50% - 960px + 970px);
  margin-right: auto;
}
.business-page .service-section .service-content::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: rgba(0, 0, 0, 0.5);
  top: 50px;
}
.business-page .service-section .service-content h3 {
  font-size: 21px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 0.63px;
  line-height: 29.4px;
  margin-bottom: 36px;
  color: #000;
}
.business-page .service-section .service-content p {
  font-size: 15.4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  line-height: 30.8px;
  letter-spacing: 0.462px;
  color: #282828;
  margin: 0;
}
.business-page .service-section .service-image {
  width: 590px;
  max-width: 45%;
  height: 350px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 12px 12px 0px 0px #282828;
  z-index: 1;
}
.business-page .service-section .service-image.left {
  left: calc(50% - 960px + 360px);
}
.business-page .service-section .service-image.right {
  left: calc(50% - 960px + 970px);
}
.business-page .service-section .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-page .service-section .contact-cta-section {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.business-page .service-section .contact-cta-section:hover {
  opacity: 0.85;
}
.business-page .service-section .contact-cta-section:hover .contact-cta-content {
  transform: translateY(-50%) scale(1.02);
}
.business-page .service-section .contact-cta-section:hover .arrow-line {
  width: 40px;
}
.business-page .service-section .contact-cta-section .contact-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 250px;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&w=1920") left top;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.business-page .service-section .contact-cta-section .contact-cta-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  background: black;
  height: 250px;
  width: calc(100% - 120px);
  max-width: 1200px;
  min-width: 300px;
  display: flex;
  align-items: center;
  padding: 0 80px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}
.business-page .service-section .contact-cta-section .contact-cta-content .contact-text {
  flex: 1;
  min-width: 0;
}
.business-page .service-section .contact-cta-section .contact-cta-content .contact-text h3 {
  font-size: 26.3px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 2.94px;
  line-height: 29.4px;
  color: white;
  margin: 0 0 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.business-page .service-section .contact-cta-section .contact-cta-content .contact-text p {
  font-size: 15.4px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 1.54px;
  line-height: 15.4px;
  color: white;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.business-page .service-section .contact-cta-section .contact-cta-content .contact-arrow {
  position: relative;
  width: 50px;
  height: 20px;
  mix-blend-mode: difference;
  flex-shrink: 0;
}
.business-page .service-section .contact-cta-section .contact-cta-content .contact-arrow .arrow-line {
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 1px;
  background: white;
  transform: translateY(-50%);
  transition: width 0.3s ease;
}
.business-page .service-section .contact-cta-section .contact-cta-content .contact-arrow .arrow-head {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 1px;
  background: white;
  transform: translateY(-50%) rotate(35deg);
  transform-origin: right center;
}
.business-page .service-section .contact-cta-section .contact-cta-content .contact-arrow .arrow-head::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 1px;
  background: white;
  transform: rotate(-70deg);
  transform-origin: right center;
}
@media (max-width: 1200px) {
  .business-page .service-section .service-item {
    padding: 60px 40px;
    min-height: 400px;
  }
  .business-page .service-section .service-item.tall {
    min-height: 450px;
  }
  .business-page .service-section .service-content {
    width: 45%;
    max-width: 400px;
    min-width: 300px;
  }
  .business-page .service-section .service-content.left {
    margin-left: 5%;
  }
  .business-page .service-section .service-content.right {
    margin-left: 5%;
  }
  .business-page .service-section .service-content::before {
    left: 0;
  }
  .business-page .service-section .service-content h3 {
    font-size: 19px;
    margin-bottom: 24px;
  }
  .business-page .service-section .service-content p {
    font-size: 14px;
    line-height: 26px;
  }
  .business-page .service-section .service-image {
    width: 45%;
    max-width: 400px;
    min-width: 300px;
    height: 280px;
    right: 5%;
    left: auto;
  }
  .business-page .service-section .service-image.left, .business-page .service-section .service-image.right {
    right: 5%;
    left: auto;
  }
  .business-page .service-section .contact-cta-section .contact-cta-content {
    width: calc(100% - 80px);
    padding: 0 40px;
  }
  .business-page .service-section .contact-cta-section .contact-cta-content .contact-text h3 {
    font-size: 24px;
    letter-spacing: 2px;
  }
  .business-page .service-section .contact-cta-section .contact-cta-content .contact-text p {
    font-size: 14px;
    letter-spacing: 1.2px;
  }
  .business-page .service-section .contact-cta-section .contact-cta-content .contact-arrow {
    width: 40px;
  }
}
@media (max-width: 768px) {
  .business-page .service-section .service-header {
    height: 300px;
  }
  .business-page .service-section .service-header-content h1 {
    font-size: 28px;
  }
  .business-page .service-section .service-header-content .subtitle {
    font-size: 12px;
  }
  .business-page .service-section .service-item {
    height: auto;
    flex-direction: column;
    padding: 60px 20px;
    margin-top: 40px;
  }
  .business-page .service-section .service-item.tall {
    height: auto;
  }
  .business-page .service-section .service-content {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    order: 2;
  }
  .business-page .service-section .service-content.left, .business-page .service-section .service-content.right {
    margin-left: 0;
  }
  .business-page .service-section .service-content::before {
    left: 0;
    top: -10px;
  }
  .business-page .service-section .service-content h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .business-page .service-section .service-content p {
    font-size: 14px;
    line-height: 1.6;
  }
  .business-page .service-section .service-content p br {
    display: none;
  }
  .business-page .service-section .service-image {
    position: relative;
    width: 100%;
    height: 250px;
    top: 0;
    transform: translateY(-10%);
    right: 0;
    left: 0;
    margin-bottom: 20px;
    box-shadow: none;
    order: 1;
  }
  .business-page .service-section .service-image.left, .business-page .service-section .service-image.right {
    right: 0;
    left: 0;
  }
  .business-page .service-section .contact-cta-section {
    height: 250px;
  }
  .business-page .service-section .contact-cta-section .contact-cta-bg {
    height: 250px;
  }
  .business-page .service-section .contact-cta-section .contact-cta-content {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    background: rgba(0, 0, 0, 0.5333333333);
    height: 250px;
    width: calc(100% - 120px);
    max-width: 1200px;
    min-width: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
  }
  .business-page .service-section .contact-cta-section .contact-cta-content .contact-text {
    flex: 1;
    margin-bottom: 0;
    margin-right: 20px;
    min-width: 0;
  }
  .business-page .service-section .contact-cta-section .contact-cta-content .contact-text h3 {
    font-size: 20px;
    letter-spacing: 1.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .business-page .service-section .contact-cta-section .contact-cta-content .contact-text p {
    font-size: 13px;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .business-page .service-section .contact-cta-section .contact-cta-content .contact-arrow {
    width: 35px;
    flex-shrink: 0;
  }
}

.company-page .company-profile-section {
  position: relative;
  background-color: #e8e8e8;
  min-height: 1689px;
  padding: 0;
}
.company-page .company-profile-section .company-profile-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&w=1920");
  background-size: 137.55% 100%;
  background-position: top;
  background-repeat: no-repeat;
}
.company-page .company-profile-section .company-profile-overlay {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  min-height: 1689px;
  z-index: 1;
}
.company-page .company-profile-section .company-map {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  height: 400px;
  background: #f5f5f5;
}
.company-page .company-profile-section .company-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
  .company-page .company-profile-section .company-map {
    height: 300px;
  }
}
.company-page .company-profile-section .company-profile-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px 0px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  font-size: 15.4px;
  letter-spacing: 0.77px;
  color: #000;
}
@media (max-width: 768px) {
  .company-page .company-profile-section .company-profile-content {
    padding: 40px 20px;
  }
}
.company-page .company-profile-section .company-profile-content .profile-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.company-page .company-profile-section .company-profile-content .profile-header h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
}
@media (max-width: 768px) {
  .company-page .company-profile-section .company-profile-content .profile-header h2 {
    font-size: 24px;
  }
}
.company-page .company-profile-section .company-profile-content .profile-header .profile-subtitle {
  font-size: 16px;
  color: #666;
}
@media (max-width: 768px) {
  .company-page .company-profile-section .company-profile-content .profile-header .profile-subtitle {
    font-size: 14px;
  }
}
.company-page .company-profile-section .company-profile-content .profile-header::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #ccc;
}
.company-page .company-profile-section .company-profile-content .profile-table {
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.company-page .company-profile-section .company-profile-content .profile-table .profile-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  padding: 24px 0;
}
.company-page .company-profile-section .company-profile-content .profile-table .profile-row:first-child {
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .company-page .company-profile-section .company-profile-content .profile-table .profile-row {
    flex-direction: column;
    padding: 20px 0;
  }
}
.company-page .company-profile-section .company-profile-content .profile-table .profile-row .profile-label {
  width: 140px;
  min-width: 140px;
  font-weight: 500;
  color: #333;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .company-page .company-profile-section .company-profile-content .profile-table .profile-row .profile-label {
    width: auto;
    min-width: auto;
    padding-right: 0;
    margin-bottom: 8px;
    font-size: 14px;
  }
}
.company-page .company-profile-section .company-profile-content .profile-table .profile-row .profile-value {
  flex: 1;
  line-height: 1.8;
  color: #000;
}
.company-page .company-profile-section .company-profile-content .profile-table .profile-row .profile-value a {
  color: #000;
  text-decoration: underline;
}
.company-page .company-profile-section .company-profile-content .profile-table .profile-row .profile-value a:hover {
  color: #333;
}
@media (max-width: 768px) {
  .company-page .company-profile-section .company-profile-content .profile-table .profile-row .profile-value {
    font-size: 14px;
  }
}

.business-contents-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.business-contents-wrapper__images {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}
.business-contents-wrapper__text {
  flex: 1;
}
.business-contents-wrapper__text h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}
.business-contents-wrapper__text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .business-contents-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .business-contents-wrapper__images {
    width: 100%;
    height: 200px;
    margin: 0 auto 15px;
  }
}

/*# sourceMappingURL=main.css.map */
