@charset "UTF-8";


/********************************************************************************
base layout
********************************************************************************/


/* 基本設定 */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
}

.header-bar {
    background-color: #d71920;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-top: 4px solid #000;
    padding: 30px 15px 0;
    margin-bottom: -20px;
}

.header-bar .logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
    width: 137px;
}

.pc {
  display: none !important;
}


.main {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

h3 {
    color: #ffffff;
    font-size: 15px;
    background: #000000;
    display: inline-block;
    padding: 7px;
    min-width: 121px;
}

table.table {
  border-top: 1px solid #c8c8c8;
  border-color: #C8C8C8;
}

.page-copy {
  font-weight: bold;
}


/*************************
left-panel
**************************/
.left-panel {
    flex-shrink: 0;
    flex-grow: 0;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    background-color: #f8f9fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* SVGのサイズ調整 */
.left-panel svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hover-circle {
  transition: opacity 0.3s ease;
}

.svg-link:hover .hover-circle {
  opacity: 1;
}


[data-name="icon-move"] > g {
  transform: scale(0.8);
  transform-box: fill-box;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

a:hover [data-name="icon-move"] > g {
  transform: scale(1);
}


[data-name="icon-move"] {
  animation: tiltShake 3s ease-in-out infinite;
  transform-origin: center bottom;
  transform-box: fill-box;
}
@keyframes tiltShake {
  0%, 66.66% { transform: rotate(0deg); }
  70%  { transform: rotate(2deg); }
  76%  { transform: rotate(-1.5deg); }
  82%  { transform: rotate(1deg); }
  88%  { transform: rotate(-0.5deg); }
  94%  { transform: rotate(0.2deg); }
  100% { transform: rotate(0deg); }
}



[data-name="on"] {
  opacity: 0;
}


.left-panel path {
  transition: fill 0.3s ease;
  cursor: pointer;
}

.illustration {
  max-width: 100%;
  height: auto;
  display: block;
}



#area-car:hover [data-name="on"],
#area-oa:hover [data-name="on"],
#area-office:hover [data-name="on"],
#area-medi:hover [data-name="on"],
#area-kaden:hover [data-name="on"],
#area-doboku:hover [data-name="on"],
#area-munekata:hover [data-name="on"],
#area-kojo:hover [data-name="on"],
#area-house:hover [data-name="on"] {
  opacity: 1;
  fill: #f99 !important; /* ホバー時の色 */
  cursor: pointer;
  transition: 0.3s ease;
}

.a:hover [data-name="icon-move"] {
  transform: scale(1.05);
}


/*************************
right-panel
**************************/
.right-panel {
  background-color: #d71920;
  padding: 20px 20px 0;
}

.nav-menu {
    position: absolute;
    right: 0;
    top: 2px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    z-index: 20;
}

.nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    min-height: 45px;
    text-align: center;
    text-decoration: none;
    text-orientation: mixed;
    color: #ffffff;
    background: #FF5050;
    font-weight: bold;
    border: 2px solid #000000;
    padding: 2px;
}

.nav-menu a:last-child {
  border-left: none ;
} 

.nav-menu a.bg-navbase {
  background: linear-gradient(to right, 
      #ebebeb 0%, 
      #ebebeb 20%, 
      #ffffff 20%, 
      #ffffff 100%);
}

.nav-menu a.bg-navrec {
    border-color: #000000;
    color: #ffffff;
    background: linear-gradient(to right, #eb4a4a 0%, #eb4a4a 20%, #ff5050 20%, #ff5050 100%);
}


.menu-toggle {
  background: none;
  border: none;
  z-index: 1000;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.menu-toggle .bar {
  display: block;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
}

.bar-long {
  width: 30px;
}

.bar-medium {
  width: 20px;
}

.bar-short {
  width: 12px;
}

.bottom-menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 180px);
    background: #FFDBDB;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 20px 40px;
    transition: bottom 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.bottom-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin: 0 auto;
}

.bottom-menu-inner a {
    padding: 5px 15px;
    color: #000000;
    font-weight: 700;
    text-decoration: none;
    background: #ffffff;
    text-align: center;
}


.bottom-menu.active {
  bottom: 0;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

body.scroll-lock {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  display: none;
}

.menu-overlay.active {
  display: block;
}

.menu-close-btn {
  padding: 0;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100;
  transition: background-color 0.2s ease;
}

.menu-close-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 601px) {
  .bottom-menu {
    width: 500px;
    left: auto;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}

/*************************
modal
**************************/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 10;
    padding: 90px 20px 20px;
    overflow-y: auto;
    animation: fadeIn 0.4s ease-out;
    background: #d71920;
}

.modal.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.btn-box {
    position: fixed;
    top: 72px;
    right: 32px;
    background: #d71920;
    width: 32px;
    height: 32px;
    z-index: 5;
}

.close-button {
    line-height: 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border: 2px solid #000000;
    padding: 5px;
}

.close-button::before,
.close-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 3px;
    background-color: #000000;
    transform-origin: center;
}

.close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-container {
    position: relative;
    background: rgba(255, 255, 255, 1);
    border: 2px solid #000;
    max-width: 680px;
    margin: 0 auto;
}

#modal-content {
    min-height: 100vh;
}

/* --------------------------------
common
-------------------------------- */
.content-carousel {
    background: #F8F1F1;
    border-radius: 16px;
    border: 1px solid #000000;
    padding: 30px;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
  position: absolute;
  top: 66px;
  bottom: auto;
  height: 236px;
  transform: translateX(-50%);
}

.carousel-control-next img,
.carousel-control-prev img {
  width: 60px;
  height: auto;
}

.carousel-control-next {
    left: calc(50% + 145px);
}

.carousel-control-prev {
  left: calc(50% - 145px);
}

.carousel-item-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-item-box-img {
    height: 270px;
    display: flex;
    align-items: center;
    margin: 0 auto 30px;
}

.carousel-item-box-content {
    width: 100%;
    display: block;
}

.carousel-item-box-text {
    font-size: 23px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.carousel-item-box-title {
    color: #AD0306;
    font-size: 19px;
    font-weight: 500;
}

.icon-link-s {
    margin: 0 5px;
    display: inline-block;
    background: url(../img/share/icon-link-s.svg) no-repeat center center;
    height: 17px;
    width: 15px;
}


.place-box {
  margin-bottom: 60px;
}

.place-top {
    font-size: 14px;
    padding: 10px 20px 20px;
    background: #FFFDEE;
    border-radius: 16px 16px 0 0;
    border: 1px solid #000;
    border-bottom: none;
    margin-top: -50px;
}


.place-top-btm {
    font-size: 14px;
    padding: 10px 20px 20px;
    background: #FFFDEE;
    border-radius: 16px;
    border: 1px solid #000;
    margin-top: -50px;
}


.place-btm {
    font-size: 14px;
    padding: 20px;
    background: #FBE4E4;
    border-radius: 0 0 16px 16px;
    border: 1px solid #000;
}

.place-top p,
.place-btm p {
  margin-bottom: 0;
}

.place-header {
    position: relative;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    gap: 15px;
    z-index: 1;
}

.place-header span {
  font-size: 12px;
  display: block;
  font-weight: normal;
}

.place-top-add {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 16px;
    padding-left: 93px;
}


/*************************
index-block
**************************/
.content.index-block {
    width: 100%;
    max-width: 480px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index-block-link {
    display: flex;
    gap: 20px;
}

.index-block .btn-link {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  border: 1px dashed #ffffff;
  border-radius: 32px;
  padding: 11px;
  text-decoration: none;
  min-width: 120px;
  text-align: center;
  line-height: 1.5;
  transition: border-style 0.2s ease, border-color 0.2s ease;
}

.index-block .btn-link:hover {
  border-style: solid;
}

/*************************
aboutus-block
**************************/
.title-rbn {
    margin-left: -2px;
}

.about-block table th {
    min-width: 8rem;
    vertical-align: middle;
}

.about-rec-block {
    display: flex;
    padding: 60px 20px;
    background: #FFF2F2;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bdr-gray-b,
.bdr-gray-tb {
  border-bottom: 5px solid #F5F5F5;
}


.bdr-gray-tb {
  border-top: 5px solid #F5F5F5;
}

/*************************
career
**************************/
.col-s4 {
    color: #FF0000;
    background: #FFEFC3;
    padding-top: 15px;
}
.col-s3 {
    color: #FF0000;
    background: #FFE1C3;
    padding-top: 15px;
}
.col-s2 {
    color: #FF0000;
    background: #FFD3C3;
    padding-top: 15px;
}

/*************************
automobile
**************************/
h1.modal-header-title {
    position: absolute;
    left: -6px;
    top: -20px;
}
.connect-header {
  position: relative;
    z-index: 1;
    margin-bottom: 0px;
}

.img-bdr-red img {
    border: 2px solid #ff0000;
    border-radius: 15px;
}

@media (min-width: 769px) {

  .mt-md-n {
      margin-top: -130px;
  }

}
/*************************
footer
**************************/
.sp-footer.text-center {
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
}
.sp-copy {
    color: #ffffff;
    font-size: 10px;
}


/*************************
scroll
**************************/

::-webkit-scrollbar {
  width: 12px;
  height: 12px; 
}

::-webkit-scrollbar-track {
  background: #ff8c90;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #d71920;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d71920;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #ff8c90 #d71920;
}


/* --------------------------------
accordion
-------------------------------- */

.accordion-item {
  border: none;
}

.accordion-button {
  border: none;
  background-color: transparent;
  box-shadow: none;
  padding: 1rem;
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  content: "▶";
  display: inline-block;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  font-size: 1rem;
  width: 1em; 
  text-align: center;
  line-height: 1;
  background: none;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
  background: none;
}

/* --------------------------------
data
-------------------------------- */
.graph-svg-group svg {
  max-width: 100%;
  height: auto;
  display: block;
}

#graph-group-block path {
  opacity: 0;
  transition: opacity 0.5s ease;
}
#graph-group-block path.revealed {
  opacity: 1;
}

body.is-ios #graph-group-block path {
  animation: fadeInPath 0.5s ease forwards;
}

body.is-ios #graph-group-block path:nth-of-type(1) { animation-delay: 0.3s; }
body.is-ios #graph-group-block path:nth-of-type(2) { animation-delay: 0.6s; }
body.is-ios #graph-group-block path:nth-of-type(3) { animation-delay: 0.9s; }
body.is-ios #graph-group-block path:nth-of-type(4) { animation-delay: 1.2s; }
body.is-ios #graph-group-block path:nth-of-type(5) { animation-delay: 1.5s; }
body.is-ios #graph-group-block path:nth-of-type(6) { animation-delay: 1.8s; }
body.is-ios #graph-group-block path:nth-of-type(7) { animation-delay: 2.1s; }
body.is-ios #graph-group-block path:nth-of-type(8) { animation-delay: 2.4s; }
body.is-ios #graph-group-block path:nth-of-type(9) { animation-delay: 2.7s; }
body.is-ios #graph-group-block path:nth-of-type(10) { animation-delay: 3.0s; }

@keyframes fadeInPath {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* --------------------------------
margin fix 5 10 15 20 30 45 60
-------------------------------- */
.mt0  { margin-top: 0px; }
.mt5  { margin-top: 5px; }
.mt10 {	margin-top: 10px; }
.mt15 {	margin-top: 15px; }
.mt20 {	margin-top: 20px; }
.mt30 {	margin-top: 30px; }
.mt45 {	margin-top: 45px; }
.mt60 {	margin-top: 60px; }

.mb0  { margin-bottom: 0px; }
.mb5  { margin-bottom: 5px; }
.mb10 {	margin-bottom: 10px; }
.mb15 {	margin-bottom: 15px; }
.mb20 {	margin-bottom: 20px; }
.mb30 {	margin-bottom: 30px; }
.mb45 {	margin-bottom: 45px; }
.mb60 {	margin-bottom: 60px; }

.mr0  { margin-right: 0px; }
.mr5  { margin-right: 5px; }
.mr10 {	margin-right: 10px; }
.mr15 {	margin-right: 15px; }
.mr20 {	margin-right: 20px; }
.mr30 {	margin-right: 30px; }
.mr45 {	margin-right: 45px; }
.mr60 {	margin-right: 60px; }

.ml0  { margin-left: 0px; }
.ml5  { margin-left: 5px; }
.ml10 {	margin-left: 10px; }
.ml15 {	margin-left: 15px; }
.ml20 {	margin-left: 20px; }
.ml30 {	margin-left: 30px; }
.ml45 {	margin-left: 45px; }
.ml60 {	margin-left: 60px; }

.mh0  { margin-top: 0px; margin-bottom: 0px; }
.mh5  { margin-top: 5px; margin-bottom: 5px; }
.mh10 { margin-top: 10px; margin-bottom: 10px; }
.mh15 { margin-top: 15px; margin-bottom: 15px; }
.mh20 { margin-top: 20px; margin-bottom: 20px; }
.mh30 { margin-top: 30px; margin-bottom: 30px; }
.mh45 { margin-top: 45px; margin-bottom: 45px; }
.mh60 { margin-top: 60px; margin-bottom: 60px; }

.mw0  { margin-right: 0px; margin-left: 0px; }
.mw5  { margin-right: 5px; margin-left: 5px; }
.mw10 { margin-right: 10px; margin-left: 10px; }
.mw15 { margin-right: 15px; margin-left: 15px; }
.mw20 { margin-right: 20px; margin-left: 20px; }
.mw30 { margin-right: 30px; margin-left: 30px; }
.mw45 { margin-right: 45px; margin-left: 45px; }
.mw60 { margin-right: 60px; margin-left: 60px; }

.mt-15 { margin-top: -15px; }
.mt-30 { margin-top: -30px; position:relative; z-index: 99;}
.mh-30 { margin-top: -30px; margin-bottom: -30px; }

.row.nm0 {
  margin-right: 0px;
  margin-left: 0px;
}

/* --------------------------------
padding fix 5 10 15 20 30 45 60
-------------------------------- */
.pt0  { padding-top: 0px; }
.pt5  { padding-top: 5px; }
.pt10 {	padding-top: 10px; }
.pt15 {	padding-top: 15px; }
.pt20 {	padding-top: 20px; }
.pt30 {	padding-top: 30px; }
.pt45 {	padding-top: 45px; }
.pt60 {	padding-top: 60px; }

.pb0  { padding-bottom: 0px; }
.pb5  { padding-bottom: 5px; }
.pb10 {	padding-bottom: 10px; }
.pb15 {	padding-bottom: 15px; }
.pb20 {	padding-bottom: 20px; }
.pb30 {	padding-bottom: 30px; }
.pb45 {	padding-bottom: 45px; }
.pb60 {	padding-bottom: 60px; }

.pr0  { padding-right: 0px; }
.pr5  { padding-right: 5px; }
.pr10 {	padding-right: 10px; }
.pr15 {	padding-right: 15px; }
.pr20 {	padding-right: 20px; }
.pr30 {	padding-right: 30px; }
.pr45 {	padding-right: 45px; }
.pr60 {	padding-right: 60px; }

.pl0  { padding-left: 0px; }
.pl5  { padding-left: 5px; }
.pl10 {	padding-left: 10px; }
.pl15 {	padding-left: 15px; }
.pl20 {	padding-left: 20px; }
.pl30 {	padding-left: 30px; }
.pl45 {	padding-left: 45px; }
.pl60 {	padding-left: 60px; }

.ph0  { padding-top: 0px; padding-bottom: 0px; }
.ph5  { padding-top: 5px; padding-bottom: 5px; }
.ph10 { padding-top: 10px; padding-bottom: 10px; }
.ph15 { padding-top: 15px; padding-bottom: 15px; }
.ph20 { padding-top: 20px; padding-bottom: 20px; }
.ph30 { padding-top: 30px; padding-bottom: 30px; }
.ph45 { padding-top: 45px; padding-bottom: 45px; }
.ph60 { padding-top: 60px; padding-bottom: 60px; }

.pw0  { padding-right: 0px; padding-left: 0px; }
.pw5  { padding-right: 5px; padding-left: 5px; }
.pw10 { padding-right: 10px; padding-left: 10px; }
.pw15 { padding-right: 15px; padding-left: 15px; }
.pw20 { padding-right: 20px; padding-left: 20px; }
.pw30 { padding-right: 30px; padding-left: 30px; }
.pw45 { padding-right: 45px; padding-left: 45px; }
.pw60 { padding-right: 60px; padding-left: 60px; }

.row .np0 {
    padding-right: 0px;
    padding-left: 0px;
}

.mauto {
    margin-left: auto;
    margin-right: auto;
}

.row.bdr {
  border: 1px solid #fff;
}

.maxh400 {
	max-height: 400px;
	overflow: hidden;
}
.maxh500 {
	max-height: 500px;
	overflow: hidden;
}


/* --------------------------------
font-size fix
-------------------------------- */
.text-xxl { font-size: 28px; font-size: 1.75rem; }
.text-xl  { font-size: 24px; font-size: 1.5rem; }
.text-l   { font-size: 22px; font-size: 1.375rem; }
.text-m   { font-size: 18px; font-size: 1.125rem; }
.text-s   { font-size: 14px; font-size: .875rem; }
.text-xs  { font-size: 12px; font-size: .75rem; }

/* --------------------------------
svgicon-size fix
-------------------------------- */
.icon-l { max-width: 100px; }
.icon-m { max-width: 50px; }
.icon-s { max-width: 25px; }

/* --------------------------------
mobile display setting
-------------------------------- */
.xs-block { display: block; }
.xs-inline{ display: inline; }
.xs-absolute { position: absolute; }
.xs-relative{ position: relative; }

.xs-lg-block { display: block; }

/* --------------------------------
txt-hidden
-------------------------------- */
.txt-hidden {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-image: none;
}

/* --------------------------------
text-wrap
-------------------------------- */

/* md以上で左側のみ角丸を解除 */
@media (min-width: 768px) {
  .rounded-md-remove-left {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  /* md以上で右側のみ角丸を解除 */
  .rounded-md-remove-right {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}

/* --------------------------------
text-wrap
-------------------------------- */
.text-wrap {
    overflow-wrap: break-word;
    word-wrap: break-word;
}



.mt-n1 { margin-top: -0.25rem !important; }
.mt-n2 { margin-top: -0.5rem !important; }
.mt-n3 { margin-top: -1rem !important; }
.mt-n4 { margin-top: -1.5rem !important; }
.mt-n5 { margin-top: -3rem !important; }

.mb-n1 { margin-bottom: -0.25rem !important; }
.mb-n2 { margin-bottom: -0.5rem !important; }
.mb-n3 { margin-bottom: -1rem !important; }
.mb-n4 { margin-bottom: -1.5rem !important; }
.mb-n5 { margin-bottom: -3rem !important; }


/********************************************************************************
PC 
********************************************************************************/
@media (min-width: 1400px) {
.sp {
  display: none;
}
.pc {
  display: block !important;
}  
 /* --------------------------------
common
-------------------------------- */
.header-bar .logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
    width: 164px;
}

.modal {
    position: absolute;
    top: 4px;
    left: 0px;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 10;
    padding: 90px 20px 20px;
    overflow-y: auto;
    animation: fadeIn 0.4s ease-out;
    background: #d71920;
}

.modal-header-margin {
  margin-top: -60px;
}


.layout {
  display: flex;
  height: 100vh;
  border-top: 4px solid #000;
}

.main {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: row;
}

.btn-box {
    position: fixed;
    top: 32px;
    right: 100px;
    background: #d71920;
    width: 48px;
    height: 48px;
    padding: 8px;
    z-index: 2;
}

h1.modal-header-title {
    position: absolute;
    left: -6px;
    top: -50px;
}

.header-bar {
  width: 83px;
  background-color: #d71920;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: none;
  border-right: 4px solid #000;
  padding: 1rem 0;
  margin-bottom: 0;
}

.header-bar .header-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 8rem;
}

.header-bar .footer-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.5rem;
  text-align: center;
}

.left-panel {
    flex-shrink: 0;
    flex-grow: 0;
    aspect-ratio: 601.805 / 768.725;
    height: calc(100vh - 4px);
    border: none;
    border-right: 4px solid #000;
    background-color: #f8f9fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.right-panel {
    position: relative;
    flex: 1;
    background-color: #d71920;
    padding: 20px;
    overflow-y: hidden;
}

.nav-menu {
    position: absolute;
    right: 0;
    top: 50px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 60px;
    font-size: 12px;
    background-color: #fff;
    border-left: 4px solid #000;
    z-index: 20;
}

.nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70px;
    text-align: center;
    text-decoration: none;
    text-orientation: mixed;
    color: #000;
    font-weight: bold;
    border: none;
    border-top: 4px solid;
}

.nav-menu a:last-child {
  border-bottom: 4px solid ;
} 


.carousel-control-next img,
.carousel-control-prev img {
  width: 80px;
  height: auto;
}

.carousel-control-next {
    left: calc(50% + 166px);
}

.carousel-control-prev {
  left: calc(50% - 166px);
}


}
