/* 共通 */
.pc.tb {
  display: inline-block
}
.tb {
  display: none;
}
.sp {
  display: none;
}

/* 変数 */
:root {
  --headerHight: 70px;
  --menuBarWidth: 70px;
  --primaryColor: #6a6a6a;
  --secondaryColor: #c79f62;
  --fontColor: #231815;
}
/* ここまで */


/* 全体 */
@media (min-width: 561px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
  }

/* リキャプチャ */
.grecaptcha-badge { visibility: hidden; }

/* フォント関係 */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: var(--fontColor);
}

a {
  color: var(--fontColor);
	text-decoration: none;
}

.gfontCrimson {
  font-family: "Crimson Text", serif;
  font-style: normal;
}
.gfontNoto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.gfontBiz {
  font-family: "BIZ UDMincho", serif;
  font-style: normal;
}
.gfontOs {
  font-family: "Oswald", sans-serif;
  font-style: normal;
}








/* imgアニメーション */
.imgWrap, .imgWrap2 {
  overflow: hidden;
  position: relative;
}

.imgWrap::before, .imgWrap2::before {
  background: #fff;
  content: '';
  inset: -1%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.imgAnimation.imgWrap::before {
  animation: imgAnimation 2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes imgAnimation {
  0% {transform: translateX(0);}
  100% {transform: translateX(-100%);}
}

.imgAnimation2.imgWrap2::before {
  animation: imgAnimation2 2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes imgAnimation2 {
  0% {transform: translateX(0);}
  100% {transform: translateX(100%);}
}




/* フェードイン */
.fadeinTopBottom {
  opacity : 0;
  transform: translateY(80px);
  transition: opacity 2s, transform 2s;
}
@media(max-width: 560px) {
  .fadeinTopBottom {
    opacity : 0;
    transform: translateY(40px);
    transition: opacity 2s, transform 2s;
  }
}

.fadein_bottom {
  opacity : 0;
  transform: translateY(80px);
  transition: opacity 2s, transform 2s;
}
@media(max-width: 560px) {
  .fadein_bottom {
    opacity : 0;
    transform: translateY(40px);
    transition: opacity 2s, transform 2s;
  }
}





/* ヘッダー */
header {
  width: 100%;
  height: 70px;
  padding-right: 20px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
}

#topMenuContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 12;
}

#menuBarContainer {
  width: 70px;
  height: 70px;
  margin-right: 10px;
  padding: 24px 0;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3;
}

#menuBarContainer span {
  width: 32px;
  height: 2px;
  margin: 8px auto 0 auto;
  background: var(--fontColor);
  border-radius: 3px;
  z-index: 5;
  display: block;
  transition: 1s;
}

#menuBarContainer > span:first-of-type {
  margin-top: 0;
}

#menuBarContainer.open > span:first-of-type {
  animation: open1 1s both;
}
#menuBarContainer.open > span:nth-of-type(2) {
  animation: open2 1s both;
}
#menuBarContainer.open > span:last-of-type {
  animation: open3 1s both;
}

#menuBarContainer.close > span:first-of-type {
  animation: close1 1s both;
}
#menuBarContainer.close > span:nth-of-type(2) {
  animation: close2 1s both;
}
#menuBarContainer.close > span:last-of-type {
  animation: close3 1s both;
}

@keyframes open1 {
  0% {transform: translateY(0px) rotate(0deg); background: var(--fontColor);}
  50% {transform: translateY(10px) rotate(0deg);}
  100% {transform: translateY(10px) rotate(45deg); background: #fff;}
}
@keyframes open2 {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg); background: var(--fontColor);}
  50% {transform: translateY(-10px) rotate(0deg);}
  100% {transform: translateY(-10px) rotate(-45deg); background: #fff;}
}

@keyframes close1 {
  0% {transform: translateY(10px) rotate(45deg); }
  50% {transform: translateY(10px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg); background: var(--fontColor);}
}
@keyframes close2 {
  0% {opacity: 0;}
  50% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes close3 {
  0% {transform: translateY(-10px) rotate(-45deg);}
  50% {transform: translateY(-10px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg); background: var(--fontColor);}
}

.headerLogo {
  width: 232.5229px;
  position: absolute;
  top: 27.5px;
  left: 50%;
  transform: translateX(-50%);
  transition: 1s;
}

.headerLogo img {
  display: block;
  transition: 1s;
}

.topMenu {
  display: flex;
  gap: 0 20px;
  transition: 1s;
}

.trans {
  height: 38px;
  padding: 28px 0;
}


.trans li {
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trans li a {
  font-size: 13.32px;
  line-height: 1;
}

/* メニュー表示時 */
#topMenuContainer.open .headerLogo {
  opacity: 0;
  visibility: hidden;
}

#topMenuContainer.open .topMenu {
  opacity: 0;
  visibility: hidden;
}











#menuContents {
  width: 100%;
  height: 100dvh;
  padding: 150px 8% 50px;
  box-sizing: border-box;
  background: var(--primaryColor);
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  transition: 1s;
}
#menuContents.open {
  visibility: visible;
  opacity: 1;
}

.menuLogo {
  width: 180px;
}

#menuContents nav {
  margin-top: 100px;
}

#menu-1 > li {
  margin-bottom: 15px;
}

#menu-1 > li a {
  font-size: 19px;
  color: #fff;
}

.exLinkContainer {
  position: fixed;
  bottom: 50px;
  right: 60px;
  display: flex;
  gap: 0 30px;
}

.exLinkContainer > li:first-of-type {
  width: 36px;
}

.exLinkContainer > li:first-of-type a {
  height: 100%;
  display: flex;
  align-items: center;
}

.menuContentsReserve {
  width: 180px;
  height: 50px;
  background: #fff;
  font-size: 18px;
  letter-spacing: 10px;
  font-weight: 600;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
}

.menuContentsReserve ul {
  width: 100%;
  padding: 20px 26px 10px;
  box-sizing: border-box;
  position: absolute;
  bottom: calc(100% - 28px);
  background: #fff;
  border-radius: 10px 10px 0 0;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: -1;
}
.menuContentsReserve:hover ul {
  bottom: calc(100% - 8px);
  opacity: 1;
  visibility: visible;
}


.menuContentsReserve ul li {
  margin: 2px 0;
}

.menuContentsReserve ul li a {
  font-size: 15px;
  letter-spacing: 0px;
}

.menuContentsTrans ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menuContentsTrans a {
  display: block;
  height: 100%;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
}










/* フッター */
footer {
  width: 100%;
  padding: 40px 50px 10px 60px;
  box-sizing: border-box;
  background: var(--primaryColor);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footerInfo {
  flex: 0 1 490px;
  display: flex;
  gap: 0 60px;
  color: #fff;
}

.footerLogo {
  width: 124.7px;
}

.footerInfo p {
  font-size: 17px;
}

.footerInfo p a {
  color: #fff;
}

.footerMenu {
  margin-left: auto;
  text-align: right;
}

.footerExLinkContainer {
  display: flex;
  justify-content: flex-end;
  gap: 0 20px;
  align-items: center;
}

.footerExLinkContainer > li:first-of-type {
  width: 25px;
}

.footerExLinkContainer > li:first-of-type a img {
  display: block;
}

.footerTrans {
  font-size: 17px;
  line-height: 1.2;
  color: #fff;
}

#menu-2 {
  width: 440px;
  margin-top: 20px;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0px 30px;
}

#menu-2 a {
  font-size: 16px;
  color: #fff;
}

.copy {
  flex: 0 1 100%;
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}











@media (max-width: 1024px) {
/* 共通 */
.pc {
  display: none;
}
.tb {
  display: inline-block;
}
.tb.sp {
  display: inline-block;
}






/* ヘッダー */
header {
  /* width: 100%; */
  height: 70px;
  padding-right: 0px;
  /* box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--primaryColor); */
}

/* #topMenuContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 12;
} */

#menuBarContainer {
  width: 70px;
  height: 70px;
  /* margin-right: 10px; */
  padding: 24px 0;
  /* box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3; */
}

/* #menuBarContainer span {
  width: 39px;
  height: 2px;
  margin: 10px auto 0 auto;
  background: #fff;
  border-radius: 3px;
  z-index: 5;
  display: block;
  transition: 1s;
}

#menuBarContainer > span:first-of-type {
  margin-top: 0;
}

#menuBarContainer.open > span:first-of-type {
  animation: open1 1s both;
}
#menuBarContainer.open > span:nth-of-type(2) {
  animation: open2 1s both;
}
#menuBarContainer.open > span:last-of-type {
  animation: open3 1s both;
}

#menuBarContainer.close > span:first-of-type {
  animation: close1 1s both;
}
#menuBarContainer.close > span:nth-of-type(2) {
  animation: close2 1s both;
}
#menuBarContainer.close > span:last-of-type {
  animation: close3 1s both;
}

@keyframes open1 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(12px) rotate(0deg);}
  100% {transform: translateY(12px) rotate(45deg);}
}
@keyframes open2 {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(-12px) rotate(0deg);}
  100% {transform: translateY(-12px) rotate(-45deg);}
}

@keyframes close1 {
  0% {transform: translateY(12px) rotate(45deg);}
  50% {transform: translateY(12px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}
@keyframes close2 {
  0% {opacity: 0;}
  50% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes close3 {
  0% {transform: translateY(-12px) rotate(-45deg);}
  50% {transform: translateY(-12px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
} */

.headerLogo {
  width: 200px;
  /* position: absolute; */
  top: 28.5px;
  /* left: 50%;
  transform: translateX(-50%);
  transition: 1s; */
}

/* .headerLogo img {
  display: block;
  transition: 1s;
}

.topMenu {
  display: flex;
  gap: 0 20px;
  transition: 1s;
}

.trans {
  height: 38px;
  padding: 28px 0;
}


.trans li {
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trans li a {
  font-size: 13.32px;
  line-height: 1;
} */

/* メニュー表示時 */
/* #topMenuContainer.open .headerLogo {
  opacity: 0;
  visibility: hidden;
}

#topMenuContainer.open .topMenu {
  opacity: 0;
  visibility: hidden;
} */









#menuContents {
  /* width: 100%;
  height: 100dvh; */
  padding: 100px 5% 100px;
  /* box-sizing: border-box;
  background: var(--primaryColor);
  position: fixed;
  inset: 0;
  z-index: 10; */
  opacity: 0;
  visibility: hidden;
  /* overflow: scroll;
  transition: 1s; */
}
/* #menuContents.open {
  visibility: visible;
  opacity: 1;
} */

.menuLogo {
  width: 120px;
  margin: 0 auto;
}

.menuAddress {
  margin-top: 40px;
  font-size: 16px;
  color: #fff;
}

.menuAddress a {
  color: #fff;
}

.menuNavContainer {
  margin: 30px 0 0 0;
  padding-top: 25px;
  border-top: 1px solid #fff;
  display: flex;
  justify-content: space-between;
}

#menuContents nav {
  margin: 0;
}

#menu-1 > li {
  margin-bottom: 15px;
}

#menu-1 > li a {
  font-size: 19px;
  /* font-weight: bold;
  color: #fff; */
}

.exLinkContainer {
  position: static;
  /* bottom: 50px;
  right: 60px; */
  /* display: flex; */
  flex-direction: column-reverse;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px 0;
}

.exLinkContainer > li:first-of-type {
  width: 34px;
  margin-top: 6px;
}

/* .exLinkContainer > li:nth-of-type(2) {
  width: 348px;
  height: 80px;
}
.exLinkContainer > li:nth-of-type(2) a {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: #fff;
  font-size: 31.1px;
  letter-spacing: 18px;
  color: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
} */

.exLinkContainer li ul {
  display: flex;
  flex-direction: row;
  gap: 0 24px;
}

.exLinkContainer li li {
  /* margin: 2px 0; */
  position: relative;
}
.exLinkContainer li li:first-of-type::after {
  content: "";
  width: 1px;
  height: 30px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-40%);
}

.exLinkContainer li li a {
  font-size: 20px;
  font-weight: 500;
}

#menuContents .menuSiteLink {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 0 60px;
}

.menuSiteLink a {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}








/* フッター */
footer {
  width: 100%;
  padding: 40px 5% 10px 5%;
  box-sizing: border-box;
  background: var(--primaryColor);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footerInfo {
  flex: 0 1 100%;
  /* display: flex; */
  gap: 30px 0;
  /* color: #fff; */
  flex-direction: column;
}

.footerLogo {
  width: 120px;
  margin: 0 auto;
}

.footerInfo p {
  font-size: 16px;
}

.footerMenu {
  flex: 0 1 100%;
  margin: 25px auto 0;
  padding-top: 20px;
  border-top: 1px solid #fff;
  text-align: right;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.footerExLinkContainer {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 30px 0;
  align-items: flex-end;
  flex-direction: column-reverse;
}

.footerExLinkContainer > li:first-of-type {
  width: 28.8px;
}

.footerExLinkContainer > li:first-of-type a img {
  display: block;
}

.footerExLinkContainer > li:nth-of-type(2) {
  width: 242px;
  height: 55.6px;
}

.footerExLinkContainer > li:nth-of-type(2) a {
  height: 100%;
  border-radius: 8px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21.6px;
  letter-spacing: 10px;
  font-weight: bold;
  color: var(--primaryColor);
}

.footerExLinkContainer > li ul {
  display: flex;
  gap: 0 24px;
}

.footerExLinkContainer > li li {
  font-size: 18px;
  line-height: 1.2;
  position: relative;
  /* color: #fff; */
}
.footerExLinkContainer li li:first-of-type::after {
  content: "";
  width: 1px;
  height: 30px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-40%);
}


#menu-2 {
  width: auto;
  margin-top: 0px;
  /* font-weight: bold;
  display: flex; */
  /* justify-content: flex-start; */
  align-items: flex-start;
  flex-direction: column;
  /* flex-wrap: wrap; */
  /* gap: 0px 30px; */
}

#menu-2 a {
  color: #fff;
}
}







/* スマホ */
@media (max-width: 560px) {
/* 共通 */
.pc.tb {
  display: none;
}
.tb {
  display: none;
}
.sp {
  display: inline-block;
}


/* 変数 */
:root {
  --headerHight: 40px;
  --menuBarWidth: 40px;
}
/* ここまで */






/* ヘッダー */
header {
  /* width: 100%; */
  height: 40px;
  /* padding-right: 20px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--primaryColor); */
}

/* #topMenuContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 12;
} */

#menuBarContainer {
  width: 40px;
  height: 40px;
  /* margin-right: 10px; */
  padding: 12px 0;
  /* box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 1s;
  z-index: 3; */
}

#menuBarContainer span {
  width: 24px;
  /* height: 2px; */
  margin: 5px auto 0 auto;
  /* background: #fff;
  border-radius: 3px;
  z-index: 5;
  display: block;
  transition: 1s; */
}

#menuBarContainer > span:first-of-type {
  margin-top: 0;
}

#menuBarContainer.open > span:first-of-type {
  animation: open1 1s both;
}
#menuBarContainer.open > span:nth-of-type(2) {
  animation: open2 1s both;
}
#menuBarContainer.open > span:last-of-type {
  animation: open3 1s both;
}

#menuBarContainer.close > span:first-of-type {
  animation: close1 1s both;
}
#menuBarContainer.close > span:nth-of-type(2) {
  animation: close2 1s both;
}
#menuBarContainer.close > span:last-of-type {
  animation: close3 1s both;
}

@keyframes open1 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(7px) rotate(0deg);}
  100% {transform: translateY(7px) rotate(45deg);}
}
@keyframes open2 {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes open3 {
  0% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(-7px) rotate(0deg);}
  100% {transform: translateY(-7px) rotate(-45deg);}
}

@keyframes close1 {
  0% {transform: translateY(12px) rotate(45deg);}
  50% {transform: translateY(12px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}
/* @keyframes close2 {
  0% {opacity: 0;}
  50% {opacity: 0;}
  100% {opacity: 1;}
} */
@keyframes close3 {
  0% {transform: translateY(-12px) rotate(-45deg);}
  50% {transform: translateY(-12px) rotate(0deg);}
  100% {transform: translateY(0px) rotate(0deg);}
}

.headerLogo {
  width: 120px;
  /* position: absolute; */
  top: 16.25px;
  /* left: 50%;
  transform: translateX(-50%);
  transition: 1s; */
}

/* .headerLogo img {
  display: block;
  transition: 1s;
} */

/* .topMenu {
  display: flex;
  gap: 0 20px;
  transition: 1s;
} */

.researveBtn {
  /* width: 168px;
  height: 38px;
  margin-top: 28px;
  border-radius: 8px;
  background: var(--secondaryColor);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.3s; */
  display: none;
}
/* .researveBtn:hover {
  height: 200px;
} */

/* .researveBtn li:first-of-type {
  height: 38px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 6px;
}
.researveBtn li.gfontZen {
  font-weight: bolder;
}

.researveBtn li {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.researveBtn li a {
  display: block;
  padding: 2px 15px;
  box-sizing: border-box;
  font-size: 18.72px;
}

.researveBtn li:last-of-type {
  padding-bottom: 10px;
}

.trans {
  height: 38px;
  padding: 28px 0;
}


.trans li {
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trans li a {
  font-size: 12.8px;
  line-height: 1;
  color: #fff;
} */

/* メニュー表示時 */
/* #topMenuContainer.open .headerLogo {
  opacity: 0;
  visibility: hidden;
}

#topMenuContainer.open .topMenu {
  opacity: 0;
  visibility: hidden;
} */







#menuContents {
  /* width: 100%;
  height: 100dvh; */
  padding: 60px 30px 100px;
  /* box-sizing: border-box;
  background: var(--primaryColor);
  position: fixed;
  inset: 0;
  z-index: 10; */
  /* opacity: 0;
  visibility: hidden; */
  /* overflow: scroll;
  transition: 1s; */
}
/* #menuContents.open {
  visibility: visible;
  opacity: 1;
} */

.menuLogo {
  width: 70px;
  margin: 0 auto;
}

.menuAddress {
  margin-top: 40px;
  font-size: 12px;
  /* color: #fff; */
}

.menuNavContainer {
  margin: 20px 0 0 0;
  padding-top: 10px;
  border-top: 1px solid #fff;
  display: flex;
  justify-content: space-between;
}

#menuContents nav {
  margin: 0;
}

#menu-1 > li {
  height: 34px;
  margin-bottom: 0px;
}

#menu-1 > li a {
  font-size: 13px;
  /* font-weight: bold;
  color: #fff; */
}

.exLinkContainer {
  position: static;
  /* bottom: 50px;
  right: 60px; */
  /* display: flex; */
  flex-direction: column-reverse;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px 0;
}

.exLinkContainer > li:first-of-type {
  width: 24px;
}

/* .exLinkContainer > li:nth-of-type(2) {
  width: 348px;
  height: 80px;
}
.exLinkContainer > li:nth-of-type(2) a {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: #fff;
  font-size: 31.1px;
  letter-spacing: 18px;
  color: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
} */

.exLinkContainer li ul {
  display: flex;
  gap: 0 24px;
}

.exLinkContainer li li {
  /* margin: 2px 0; */
  position: relative;
}
.exLinkContainer li li:first-of-type::after {
  content: "";
  width: 1px;
  height: 30px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-40%);
}

.exLinkContainer li li a {
  font-size: 13px;
  font-weight: 500;
}

#menuContents .menuSiteLink {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 0 40px;
}

.menuSiteLink a {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}








/* フッター */
footer {
  width: 100%;
  padding: 20px 5% 15px 5%;
  box-sizing: border-box;
  background: var(--primaryColor);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footerInfo {
  flex: 0 1 100%;
  /* display: flex; */
  gap: 30px 0;
  /* color: #fff; */
  flex-direction: column;
}

.footerLogo {
  width: 60px;
  /* margin: 0 auto; */
}

.footerInfo p {
  font-size: 13px;
}

.footerMenu {
  /* flex: 0 1 100%; */
  margin: 15px auto 0;
  padding-top: 10px;
  /* border-top: 1px solid #fff;
  text-align: right;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between; */
}

.footerExLinkContainer {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 30px 0;
  align-items: flex-end;
  flex-direction: column-reverse;
}

.footerExLinkContainer > li:first-of-type {
  width: 20px;
}

/* .footerExLinkContainer > li:first-of-type a img {
  display: block;
}

.footerExLinkContainer > li:nth-of-type(2) {
  width: 242px;
  height: 55.6px;
} */

/* .footerExLinkContainer > li:nth-of-type(2) a {
  height: 100%;
  border-radius: 8px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21.6px;
  letter-spacing: 10px;
  font-weight: bold;
  color: var(--primaryColor);
} */

/* .footerExLinkContainer > li ul {
  display: flex;
  gap: 0 24px;
}

.footerExLinkContainer > li li {
  font-size: 18px;
  line-height: 1.2;
  position: relative;
  /* color: #fff; */
/* } */
.footerExLinkContainer li li:first-of-type::after {
  content: "";
  width: 1px;
  height: 30px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-40%);
} */


#menu-2 {
  width: auto;
  margin-top: 0px;
  /* font-weight: bold;
  display: flex; */
  /* justify-content: flex-start; */
  align-items: flex-start;
  flex-direction: column;
  /* flex-wrap: wrap; */
  /* gap: 0px 30px; */
}

#menu-2 li {
  height: 20px;
  margin-bottom: 10px;
}

#menu-2 a {
  font-size: 13px;
  /* color: #fff; */
}

.footerSiteLink {
  /* flex: 0 1 100%; */
  margin-top: 20px;
  /* display: flex;
  justify-content: center; */
  gap: 0 30px;
}

.footerSiteLink a {
  font-size: 13px;
  /* font-weight: bold;
  color: #fff; */
}

}