/*------------------------------------------
  Import
------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&display=swap');

/*------------------------------------------
  Base
------------------------------------------*/
/* variable */
:root {
  /* Color */
  --c-primary: #E96020;
  --c-secondary: #F18D09;
  --c-tertiary: #20A4AF;
  --c-other01: #FF004E;
  --c-other02: #FFEF00;
  --c-other03: #FCF8D4;
  --c-other04: #FAC112;
  --c-white: #fff;
  --c-black: #000;
  --c-text: #333;
  /*
  #005497
  #C5DECA
  */
  
  /* Font Family */
  --ff-gothic: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --ff-mincho: 'Noto Serif JP', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  
  /* Font Weight */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 600;
  
  /* Font Size (Content) */
  --fs-regular: 16px;
  --fs-small: 14px;
  --fs-xsmall: 12px;
  --fs-xxsmall: 10px;
}

body {
  font-family: var(--ff-gothic);
  font-size: var(--fs-regular);
  font-weight: var(--fw-regular);
  background: var(--c-white);
  color: var(--c-text);
}

.gothic {
  font-family: var(--ff-gothic);
}
.mincho {
  font-family: var(--ff-mincho);
}

a {
  text-decoration: none;
  color: var(--c-text);
}
a.blue {
  color: #0000ff;
}
a.blue:not(:hover) {
  text-decoration: underline;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* デザインによって変更 */
.content {
  width: 100%;
  position: relative;
  /*margin-top: 100px;*/
  transition: transform .7s .3s cubic-bezier(0.25, 1, 0.5, 1);
}
.content.active {
  transform: translateX(-100%);
}
.inner {
  max-width: 1280px;
  width: 95%;
  margin: auto;
}

.disp-pc {
  display: block;
}
.disp-sp {
  display: none;
}
@media (max-width: 1280px) {
  .content {
    margin-top: 75px;
  }
}
@media (max-width: 767px) {
  .disp-sp {
    display: block;
  }
  .disp-pc {
    display: none;
  }
}

/*------------------------------------------
  Header
------------------------------------------*/
.cmn-header {
  width: 100%;
  height: auto;
}
.cmn-header .info {
  background: var(--c-white);
  padding: 20px 0;
}
.cmn-header .info .inner {
  max-width: 1400px;
  width: 95%;
}
.cmn-header .info .desc {
  font-size: var(--fs-xsmall);
  font-weight: var(--fw-medium);
  margin-bottom: 20px;
}
.cmn-header .info .flex {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 15px;
}
.cmn-header .info .logo .sp {
  display: none;
}
.cmn-header .info .tel {
  margin-left: auto;
  white-space: nowrap;
}
.cmn-header .info .contact a {
  width: 185px;
  height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--c-primary);
  color: var(--c-white);
}
.cmn-header .info .contact path {
  fill: var(--c-white);
}
.cmn-header .gnav {
  width: 100%;
  font-weight: var(--fw-bold);
  background: var(--c-primary);
}
.cmn-header .gnav.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.cmn-header .gnav .menu {
  max-width: 1400px;
  width: 95%;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cmn-header .gnav .menu:before {
  content: "";
  width: 2px;
  height: 40px;
  background: #CBCBCB;
  display: block;
  position: absolute;
  left: -1px;
  top: 7px;
}
.cmn-header .gnav .menu > li {
  flex: 1;
  text-align: center;
}
.cmn-header .gnav .menu .current {
  background: #BABABA;
}
.cmn-header .gnav .gitem {
  display: block;
  color: var(--c-white);
  height: 54px;
  line-height: 54px;
  position: relative;
}
.cmn-header .gnav .gitem:after {
  content: "";
  width: 2px;
  height: 40px;
  background: #CBCBCB;
  display: block;
  position: absolute;
  right: -1px;
  top: 7px;
}
.cmn-header .gnav .child-menu {
  display: flex;
  position: absolute;
  top: 54px;
  left: 0;
  width: 100%;
  background: var(--c-white);
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  padding: 1rem;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
.cmn-header .gnav .child-menu.active {
  opacity: 1;
  visibility: visible;
}
.cmn-header .sp-add-info {
  display: none;
}
.cmn-header .add-element {
  height: 54px;
  width: 100%;
}

/* Trigger */
.cmn-header .menu-trigger {
  width: 27px;
  height: 19px;
  display: none;
  position: absolute;
  right: 2.5%;
  top: 28px;
  z-index: 100;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: .4s;
}
.cmn-header .menu-trigger:hover {
  cursor: pointer;
}
.cmn-header .menu-trigger span {
  width: 100%;
  height: 3px;
  background: var(--c-white);
  border-radius: 3px;
  transition: .7s;
}
.cmn-header .menu-trigger span:nth-of-type(3) {
  width: 60%;
  margin-left: auto;
}
.cmn-header .menu-trigger.active {
  transform: rotate(180deg);
}
.cmn-header .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
.cmn-header .menu-trigger.active span:nth-of-type(2) {
  transform: translateY(0) rotate(45deg);
}
.cmn-header .menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}
@media (max-width: 1350px) {
  .cmn-header .info .contact {
    display: none;
  }
}
@media (max-width: 1280px) {
  .cmn-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    color: var(--c-white);
  }
  .cmn-header .info {
    background: var(--c-primary);
    color: #fff;
    padding: 16px 0;
  }
  .cmn-header .info .logo .sp {
    display: block;
  }
  .cmn-header .info .logo .pc {
    display: none;
  }
  .cmn-header .info .desc,
  .cmn-header .info .credit,
  .cmn-header .info .tel {
    display: none;
  }
  .cmn-header .gnav {
    width: 100%;
    height: 100dvh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    overflow: scroll;
    background: var(--c-primary);
    padding: 17px;
    transform: translateX(100%);
    transition: transform .7s .3s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
  }
  .cmn-header .gnav.open {
    transform: translateX(0);
  }
  .cmn-header .gnav .menu {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    gap: 10px 0;
    line-height: 1.5;
    margin: 2rem 0;
  }
  .cmn-header .gnav .menu:before,
  .cmn-header .gnav .gitem:after {
    content: none;
  }
  .cmn-header .gnav .menu > li {
    text-align: left;
  }
  .cmn-header .gnav .menu .current {
    background: none;
  }
  .cmn-header .gnav .gitem {
    height: auto;
    line-height: normal;
    font-size: 18px;
    font-weight: var(--fw-medium);
  }
  .cmn-header .gnav .child-menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px 0;
    position: static;
    background: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: .5rem 0 0 2rem;
  }
  .cmn-header .gnav .child-menu a {
    color: var(--c-white);
  }
  .cmn-header .gnav .sp-none {
    display: none;
  }
  .cmn-header .sp-add-info {
    display: block;
  }
  .cmn-header .sp-add-info .desc {
    font-size: var(--fs-xsmall);
    font-weight: var(--fw-medium);
    white-space: normal;
    line-height: 1.5;
    width: calc(100% - 50px);
    text-align: left;
  }
  .cmn-header .sp-add-info .credit {
    margin: 2rem 0;
  }
  .cmn-header .sp-add-info .cm-tel {
    text-align: center;
  }
  .cmn-header .sp-add-info .cm-tel a {
    color: var(--c-white);
  }
  .cmn-header .sp-add-info .cm-tel path {
    fill: var(--c-white);
  }
  .cmn-header .sp-add-info .btn a {
    max-width: 350px;
    width: 100%;
    margin: auto;
    height: 80px;
    background: var(--c-white);
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--c-primary);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 5px;
    padding: 0 1rem;
    box-shadow: 4px 5px 0 rgba(0, 0, 0, .16);
  }
  .cmn-header .menu-trigger {
    display: flex;
  }
}

/*------------------------------------------
  Footer
------------------------------------------*/
/* Common */
.cmn-footer {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1280px) {
  .cmn-footer {
    margin-bottom: 100px;
  }
}

/* Banner */
.cmn-footer .banner-section {
  background: url(../images/common/footer_banner_bg.png) no-repeat center / cover;
  padding: 5rem 0;
  text-align: center;
  position: relative;
}
.cmn-footer .banner-section:after {
  content: "";
  width: 444px;
  height: 425px;
  display: block;
  background: url(../images/common/footer_banner_img@2x.png) no-repeat center / cover;
  position: absolute;
  bottom: -20px;
  left: 10%;
}
.cmn-footer .banner-section .text01 {
  font-size: 32px;
  font-weight: var(--fw-bold);
}
.cmn-footer .banner-section .text02 {
  font-size: 44px;
  font-weight: var(--fw-bold);
  margin-top: 1rem;
}
.cmn-footer .banner-section .text02 .small {
  font-size: 32px;
}
.cmn-footer .banner-section .text02 .color01 {
  color: #005497;
}
.cmn-footer .banner-section .text02 .color02 {
  color: var(--c-other01);
  position: relative;
}
.cmn-footer .banner-section .text02 .color02:after {
  content: "・・";
  position: absolute;
  left: 0;
  right: 0;
  top: -35px;
  margin: auto;
  font-weight: var(--fw-regular);
}
@media only screen and (max-width: 1700px) {
  .cmn-footer .banner-section:after {
    left: 0;
  }
}
@media only screen and (max-width: 1350px) {
  .cmn-footer .banner-section:after {
    width: 300px;
    height: 288px;
  }
}
@media only screen and (max-width: 1280px) {
  .cmn-footer .banner-section {
    background: url(../images/common/footer_banner_bg_sp.png) no-repeat center / cover;
    height: 353px;
    padding: 1.5rem 0 0;
  }
  .cmn-footer .banner-section:after {
    width: 170px;
    height: 162px;
    bottom: -10px;
    right: 0;
    margin: auto;
  }
  .cmn-footer .banner-section .text01 {
    font-size: 24px;
  }
  .cmn-footer .banner-section .text02 {
    font-size: 36px;
  }
  .cmn-footer .banner-section .text02 .small {
    font-size: 24px;
  }
  .cmn-footer .banner-section .text02 .color02:after {
    top: -28px;
  }
}
@media only screen and (max-width: 767px) {
  .cmn-footer .banner-section {
    background: url(../images/common/footer_banner_bg_sp.png) no-repeat center right -170px / cover;
  }
  .cmn-footer .banner-section .text01 {
    font-size: 20px;
  }
  .cmn-footer .banner-section .text02 {
    font-size: 32px;
    line-height: 1.2;
  }
  .cmn-footer .banner-section .text02 .small {
    font-size: 22px;
  }
  .cmn-footer .banner-section .text02 .color02:after {
    top: -20px;
  }
}

/* Staff */
.cmn-footer .staff-section {
  padding: 10rem 0 8rem;
}
.cmn-footer .staff-section .inner {
  position: relative;
}
.cmn-footer .staff-section .title {
  text-align: center;
  font-weight: var(--fw-bold);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
  margin-bottom: 7rem;
}
.cmn-footer .staff-section .title .txt01 {
  font-size: 34px;
  color: var(--c-other01);
  display: inline-block;
  position: relative;
  line-height: 1;
}
.cmn-footer .staff-section .title .txt01:before,
.cmn-footer .staff-section .title .txt01:after {
  content: "";
  width: 5px;
  height: 30px;
  display: block;
  background: var(--c-other01);
  position: absolute;
  top: 50%;
  border-radius: 3px;
}
.cmn-footer .staff-section .title .txt01:before {
  transform: translateY(-50%) rotate(-35deg);
  left: -30px;
}
.cmn-footer .staff-section .title .txt01:after {
  transform: translateY(-50%) rotate(35deg);
  right: -20px;
}
.cmn-footer .staff-section .title .txt02 {
  font-size: 44px;
  display: inline-block;
  background: linear-gradient(transparent 70%, var(--c-other02) 70%)
}
.cmn-footer .staff-section .title .txt03 {
  font-size: 32px;
}
.cmn-footer .staff-section .flex01,
.cmn-footer .staff-section .flex02 {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.cmn-footer .staff-section .flex01:before {
  content: "";
  width: 231px;
  height: 372px;
  display: block;
  background: url(../images/common/footer_staff_img01@2x.png) no-repeat center / cover;
  position: absolute;
  left: -30px;
  top: -370px;
  z-index: -1;
}
.cmn-footer .staff-section .flex01 .left {
  width: 56.719%;
  border: 5px solid #C5DECA;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  padding: 1rem 1rem 1.5rem;
  background: var(--c-white);
}
.cmn-footer .staff-section .flex01 .left p {
  font-size: 34px;
  text-align: center;
}
.cmn-footer .staff-section .flex01 .left .list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  font-size: 22px;
  margin-top: 2rem;
}
.cmn-footer .staff-section .flex01 .left ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: .5rem 0;
}
.cmn-footer .staff-section .flex01 .right {
  width: 41%;
  font-size: 32px;
  font-weight: var(--fw-bold);
}
.cmn-footer .staff-section .flex02 {
  margin-top: -3rem;
  z-index: -1;
}
.cmn-footer .staff-section .flex02:before {
  content: "";
  width: 336px;
  height: 446px;
  display: block;
  background: url(../images/common/footer_staff_img02@2x.png) no-repeat center / cover;
  position: absolute;
  right: -90px;
  top: -410px;
  z-index: -2;
}
.cmn-footer .staff-section .flex02 .left {
  width: 48%;
  font-size: 32px;
  font-weight: var(--fw-bold);
}
.cmn-footer .staff-section .flex02 .right {
  width: 50%;
  position: relative;
  z-index: -1;
}
.cmn-footer .staff-section .cm-button-round {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .cmn-footer .staff-section .title {
    margin-bottom: 5rem;
  }
  .cmn-footer .staff-section .title .txt03 {
    font-size: 28px;
  }
  .cmn-footer .staff-section .flex01 .right,
  .cmn-footer .staff-section .flex02 .left {
    font-size: 22px;
  }
  .cmn-footer .staff-section .flex01 .left {
    padding: 1rem .5rem 1.5rem;
  }
  .cmn-footer .staff-section .flex01 .left p {
    font-size: 28px;
  }
  .cmn-footer .staff-section .flex01 .left .list {
    font-size: var(--fs-small);
  }
  .cmn-footer .staff-section .flex01:before {
    width: 150px;
    height: 241px;
  }
  .cmn-footer .staff-section .flex02:before {
    width: 220px;
    height: 291px;
    top: -270px;
  }
  .cmn-footer .staff-section .cm-button-round {
    position: static;
    margin-top: 2rem;
  }
  .cmn-footer .staff-section .cm-button-round a {
    margin: auto;
  }
}
@media only screen and (max-width: 767px) {
  .cmn-footer .staff-section {
    padding: 5rem 0;
  }
  .cmn-footer .staff-section .title .txt01,
  .cmn-footer .staff-section .title .txt03 {
    font-size: 20px;
  }
  .cmn-footer .staff-section .title .txt02 {
    font-size: 24px;
  }
  .cmn-footer .staff-section .title {
    margin-bottom: 3rem;
  }
  .cmn-footer .staff-section .flex01 {
    flex-flow: wrap column-reverse;
    gap: 1rem 0;
  }
  .cmn-footer .staff-section .flex01:before {
    width: 130px;
    height: 209px;
    left: 2px;
    top: -10px;
  }
  .cmn-footer .staff-section .flex01 .left {
    width: 100%;
    padding: 1rem 1rem 1.5rem;
  }
  .cmn-footer .staff-section .flex01 .left .list {
    flex-direction: column;
    gap: .5rem 0;
    font-size: var(--fs-regular);
    margin-top: 1rem;
  }
  .cmn-footer .staff-section .flex01 .left p {
    font-size: 24px;
  }
  .cmn-footer .staff-section .flex01 .right {
    width: calc(100% - 140px);
    margin-left: auto;
    font-size: 18px;
  }
  .cmn-footer .staff-section .flex01 .right p {
    display: inline-block;
    text-align: left;
  }
  .cmn-footer .staff-section .flex02 {
    margin-top: 5rem;
    flex-flow: wrap column;
    gap: 1rem 0;
  }
  .cmn-footer .staff-section .flex02:before {
    width: 200px;
    height: 265px;
    top: -78px;
  }
  .cmn-footer .staff-section .flex02 .left {
    width: 100%;
    font-size: 18px;
  }
  .cmn-footer .staff-section .flex02 .right,
  .cmn-footer .staff-section .flex02 .right img {
    width: 100%;
  }
}

/*  Works*/
.cmn-footer .works-section {
  background: url(../images/common/footer_works_bg.png) repeat;
  text-align: center;
  padding: 5rem 0 10rem;
}
.cmn-footer .works-section .title {
  font-size: 34px;
  font-weight: var(--fw-bold);
  display: inline-block;
  position: relative;
  line-height: 1.5;
}
.cmn-footer .works-section .title .en {
  color: var(--c-other01);
  font-size: 22px;
  font-weight: var(--fw-bold);
  position: absolute;
  left: -35px;
  top: 55px;
  transform: rotate(-28deg);
}
.cmn-footer .works-section .title .jp span {
  font-size: 105px;
  color: var(--c-other01);
  letter-spacing: -5px;
  margin: 0 .5rem;
}
.cmn-footer .works-section .title-img {
  display: block;
  margin: auto;
}
.cmn-footer .works-section .catch {
  font-size: 34px;
  font-weight: var(--fw-bold);
  margin: 2rem 0 1rem;
}
.cmn-footer .works-section .overview {
  font-size: 22px;
}
.cmn-footer .works-section .last {
  font-size: 32px;
  font-weight: var(--fw-bold);
}
.cmn-footer .works-section .cm-works-list {
  margin: 3rem 0;
}
.cmn-footer .works-section .cm-button-round {
  margin-top: 3rem;
}
.cmn-footer .works-section .cm-button-round a {
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .cmn-footer .works-section .title {
    font-size: 24px;
  }
  .cmn-footer .works-section .title .en {
    font-size: 18px;
    left: 30px;
    top: -20px;
  }
  .cmn-footer .works-section .title .jp span {
    font-size: 50px;
    letter-spacing: 1px;
  }
  .cmn-footer .works-section .title-img {
    width: 220px;
  }
  .cmn-footer .works-section .catch {
    font-size: 20px;
  }
  .cmn-footer .works-section .overview {
    text-align: left;
    font-size: var(--fs-regular);
  }
  .cmn-footer .works-section .last {
    font-size: 24px;
  }
}

/* Apology */
.cmn-footer .apology-section {
  margin-top: -70px;
  background: url(../images/common/footer_apology_bg.png) no-repeat center bottom;
}
.cmn-footer .apology-section .inner {
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
  padding: 5rem 0 12rem;
}
.cmn-footer .apology-section .line {
  width: 100%;
  height: 400px;
  background: url(../images/common/footer_apology_title@2x.png) no-repeat center / cover;
}
.cmn-footer .apology-section .line .sp-bg {
  display: none;
}
.cmn-footer .apology-section strong {
  color: var(--c-primary);
}
.cmn-footer .apology-section .flex {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: center;
}
.cmn-footer .apology-section .text {
  width: 55.556%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
.cmn-footer .apology-section .img {
  width: 42%;
  text-align: center;
}
.cmn-footer .apology-section .img .sp {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .cmn-footer .apology-section .line {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .cmn-footer .apology-section .line {
    height: auto;
    background: none;
  }
  .cmn-footer .apology-section .line .sp-bg {
    display: block;
  }
  .cmn-footer .apology-section .line img {
    width: 100%;
  }
  .cmn-footer .apology-section .inner {
    padding: 3rem 0 10rem;
  }
  .cmn-footer .apology-section .flex01 .text,
  .cmn-footer .apology-section .flex02 .text {
    width: 100%;
    order: 2; 
  }
  .cmn-footer .apology-section .flex01 .img,
  .cmn-footer .apology-section .flex02 .img {
    width: 60%;
    order: 1;
    margin-left: auto;
  }
  .cmn-footer .apology-section .flex03 .text {
    width: 100%;
    order: 1;
  }
  .cmn-footer .apology-section .flex03 .img {
    width: 100%;
    order: 2;
    margin-top: 2rem;
  }
  .cmn-footer .apology-section .img .sp {
    display: block;
    width: 100%;
  }
  .cmn-footer .apology-section .img .pc {
    display: none;
  }
}

/* Information */
.cmn-footer .information-section {
  background: url(../images/common/footer_information_bg.png) no-repeat center / cover;
  padding: 5rem 0;
}
.cmn-footer .information-section .title {
  text-align: center;
  font-weight: var(--fw-bold);
  display: flex;
  flex-direction: column;
  gap: .5rem 0;
  margin-bottom: 5rem;
}
.cmn-footer .information-section .title .en {
  color: var(--c-other01);
  font-size: 22px;
}
.cmn-footer .information-section .title .jp {
  font-size: 34px;
}
.cmn-footer .information-section .cm-button-round {
  margin-top: 3rem;
}
.cmn-footer .information-section .cm-button-round a {
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .cmn-footer .information-section .title {
    margin-bottom: 2rem;
  }
  .cmn-footer .information-section .title .en {
    font-size: 18px;
  }
  .cmn-footer .information-section .title .jp {
    font-size: 24px;
  }
}

/* Menu */
.cmn-footer .menu-section {
  padding: 3rem 0 .5rem;
}
.cmn-footer .menu-section .parent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.cmn-footer .menu-section .child {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  margin-top: .5rem;
}
.cmn-footer .menu-section .child > li {
  position: relative;
  padding-left: 1rem;
}
.cmn-footer .menu-section .child > li:before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
.cmn-footer .menu-section .privacy {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 1280px) {
  .cmn-footer .menu-section {
    text-align: center;
  }
  .cmn-footer .menu-section .parent {
    display: inline-flex;
    flex-direction: column;
    gap: 5px 0;
    text-align: left;
  }
  .cmn-footer .menu-section .privacy {
    font-size: var(--fs-xsmall);
  }
}

/* Copy */
.cmn-footer .copy {
  font-size: var(--fs-xsmall);
  text-align: center;
  background: #F2F2F2;
  height: 35px;
  line-height: 35px;
}