/* CSS Document */
#base {
  width: 1220px;
  word-break: break-all;
}

div#c3_lrr {
  margin: 20px auto 96px;
  width: 1200px;
  line-height: 1.75;
  overflow: hidden;
  margin-top: 20px;
}

.mainCont_wrap {
  display: flex;
  justify-content: space-between;
}

.l_wrap {
  width: 970px;
  order: 2;
}

@media screen and (max-width: 768px) {
  #base {
    width: 100%;
  }

  div#c3_lrr {
    width: 100%;
  }

  .l_wrap {
    width: 100%;
    order: 2;
  }
}

.mainCont_wrap a {
  transition: .3s opacity;
  color: #333333;
}

.mainCont_wrap a:hover {
  opacity: .7;
}


/* サイドナビ */
#sideNav {
  order: 1;
  width: 200px;
}

.m_internbusSideNavs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.m_internbusSideNavs__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 200px;
  flex-shrink: 0;
  align-self: flex-start;
  max-height: none;
  overflow-y: visible;
}

.m_internbusSideNavs .m_solutionBaseSideNavs__item {
  margin-left: 0;
}

.latestissue-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.internbus-nav-item + .internbus-nav-item {
  margin-top: 4px;
}

.internbus-nav-link {
  display: block;
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  line-height: 1.3;
}

.internbus-nav-link::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.related-banner-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.related-wrap .related-title {
  border-color: #59A7A2;
}

.related-title {
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 8px;
  border-left: 9px solid;
  font-weight: bold;
  letter-spacing: 0;
  color: inherit;
  font-size: 14px;
  background: #F5F5F5;
}

.related-banner-item img {
  width: 200px;
  height: auto;
}


/* =========================================================
   2. Variables
========================================================= */
:root {
  --color-primary: #E35449;
  --color-line: #EBE8E4;
  --color-bullet: #A39C70;
  --color-card-bg: #FDFAF7;
  --color-text-main: #333;
  --color-text-sub: #707070;
}


/* =========================================================
   3. Base
========================================================= */
body {
  font-family: Arial, 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: var(--color-text-main);
  line-height: 1.7;
}


/* =========================================================
   4. Layout (l-)
========================================================= */


/* =========================================================
   5. Module (m-)
========================================================= */


.m_herosArea__keyvisual img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

/* ----- Section ----- */
.m-section {
  /* display: flex;
  flex-direction: column;
  gap: 32px; */
}

.m-section+.m-section {
  margin-top: 72px;
}

/* ----- Heading ----- */
.m-heading {
  font-size: 28px;
  font-weight: bold;
  border-bottom: 2px solid var(--color-line);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

/* ----- Text ----- */
.m-lead-text {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 16px;
}

.m-text {
  margin-bottom: 16px;
}

/* ----- List Bullet ----- */
.m-list-bullet__item {
  position: relative;
  padding-left: 14px;
}

.m-list-bullet:not(.m-list-bullet--grid6) .m-list-bullet__item + .m-list-bullet__item {
  margin-top: 8px;
}

.m-list-bullet__item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-bullet);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.7em;
}

/* Grid Modifier */
.m-list-bullet--grid6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

@media screen and (max-width: 768px) {
  .m-list-bullet--grid6 {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ----- Card Group ----- */
.m-card-group {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .m-card-group {
    flex-direction: column;
  }
}

.m-info-card {
  flex: 1;
  background: var(--color-card-bg);
  padding: 32px 24px;
  border-radius: 8px;
}

.m-info-card__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
  display: block;
}

.m-info-card__ast {
  font-size: 12px;
}

.m-info-card__note {
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 8px;
  text-align: left;
}


/* ----- Button ----- */
.l-button-container {}

.l-button-container--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.l-button-container__caption {
  text-align: center;
  width: 100%;
}

.l-button-container__caption {
  font-size: 15px;
  margin-bottom: 8px;
}

.m-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 272px;
  height: 56px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--color-text-main);
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all .3s ease;
}

.m-button:hover {
  border-color: var(--color-primary);
  background: var(--color-card-bg);
}

.m-button--sidenav {
  max-width: 200px;
  height: auto;
  min-height: 48px;
  padding: 8px 12px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .l-button-container {
    margin: 0 auto;
  }
}

/* ----- icon ----- */
.m-icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.m-icon-circle--white {
  background-color: #FFF;
}

.m-icon-circle__img {
  width: auto;
  height: auto;
  display: block;
}


/*＝＝＝＝＝＝＝
インターンバスとは
＝＝＝＝＝＝＝*/
.m-about {
  display: grid;
  grid-template-columns: 1fr 306px;
  gap: 24px;
}

.m-about__image {
  width: 306px;
  height: 183px;
}

.m-about__image img {
  width: 100%;
  display: block;
}

.m-about-cardwrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.m-about-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--color-text-main);
  border-radius: 8px;
  background: #fff;
  width: 307px;
  height: 116px;
}

.m-about-card:hover {
  border-color: var(--color-primary);
  background: var(--color-card-bg);
}

.m-about-card__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.m-about-card__body {
  display: flex;
  gap: 11px;
}

.m-about-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-about-card__icon img {
  max-width: 100%;
}

.m-about-card__sub-text {
  font-size: 12px;
}

.m-about-card__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .m-about {
    grid-template-columns: 1fr;
  }
  .m-about-cardwrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .m-about-cardwrap a {
    width: 100%;
  }
}


/*＝＝＝＝＝＝＝
サービス詳細
＝＝＝＝＝＝＝ */
.m-text-heading {
  margin-bottom: 12px;
  font-size: 18px;
}

.m-service-detail {
  display: flex;
  gap: 25px;
  margin-top: 32px;
}

.m-service-detail__block+.m-service-detail__block {
  margin-top: 24px;
}

.m-service-detail__content {
  flex: 1;
}

.m-service-detail__image {
  width: 307px;
  height: 307px;
}

.m-service-detail__image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
    .m-service-detail {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .m-service-detail__content {
        display: flex;
        flex-direction: column;
    }

    .m-service-detail__image {
        order: 1; 
        margin: 0 auto;
    }

    .m-button-area {
        order: 2; 
        margin-top: 24px;
    }
}

/* ＝＝＝＝＝＝＝
配布・発行概要 
＝＝＝＝＝＝＝ */
.m-school-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-school-list__caption {
  font-size: 14px;
}


/* ＝＝＝＝＝＝＝
バックナンバー
＝＝＝＝＝＝＝ */
.m-backnumber__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.m-backnumber__item {
  flex: 1;
  max-width: 174px;
}

.m-magazine-card__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.m-magazine-card__img {
  width: 100%;
  height: auto;
  display: block;
}

@media  screen and (max-width: 768px) {
  .m-backnumber__list {
    flex-direction: column;
    align-items: center;
  }
}

/* ＝＝＝＝＝＝＝
運営会社 インソースについて
＝＝＝＝＝＝＝*/
.m-company-box {
  border: 2px solid var(--color-line);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.m-company-box__title {
  margin-bottom: 16px;
  font-size: 22px;
}

.m-company-img {
  max-width: 376px;
}

.m-link-area {}
.m-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .m-company-box {
    flex-direction: column
    }
}

/* ＝＝＝＝＝＝＝
  ナビ 
＝＝＝＝＝＝＝＝＝*/
.m-internbus-nav {}

.m-internbus-nav__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 48px;
}

.m-internbus-nav__list li {
  flex: 1;
  border: 1px solid #333;
  border-radius: 4px;
}

.m-internbus-nav__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 59px;
}

.m-heading_sub {
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  .m-internbus-nav__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
    padding: 0 16px; 
  }
  .m-internbus-nav__list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto;
    min-height: 48px;
    padding: 8px 4px;
    font-size: 14px;
    line-height: 1.3;
    color: #333;
    text-decoration: none;
    word-break: keep-all;
  }
}

/* ＝＝＝＝＝＝＝
インターンバスと一般的な就職ナビサイトの違い
＝＝＝＝＝＝＝＝＝*/
/* 表 */
.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison {
  display: grid;
  grid-template-columns: 174px 1fr 1fr;
  gap: 0 8px;
  max-width: 1100px;
  margin: 32px auto;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}

.comparison--rows-6 {
  grid-template-rows: auto repeat(5, 1fr);
}

.comparison--rows-6 .comparison__col {
  grid-row: span 6;
}

.comparison--rows-5 {
  grid-template-rows: auto repeat(4, 1fr);
}

.comparison--rows-5 .comparison__col {
  grid-row: span 5;
}

.comparison__col {
  display: grid;
  grid-template-rows: subgrid;
  border-radius: 12px;
  overflow: hidden;
}

.comparison__col--card {
  border: 3px solid var(--theme-color);
}

.comparison__col--card .comparison__head {
  background: var(--theme-color);
  color: var(--text-color, #333);
}

.comparison__col--card .comparison__cell:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 4px;
  background-image: radial-gradient(circle at center, var(--dot-color) 2px, transparent 2px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
}

/* インターンバス（赤） */
.comparison__col--red {
  --theme-color: #8F1E35;
  --dot-color: #BFA2A8;
  --text-color: #fff;
  font-weight: bold;
}

/* 一般ナビ（グレー） */
.comparison__col--gray {
  --theme-color: #ccc;
  --dot-color: #ccc;
  --text-color: #333;
  font-weight: normal;
}

.comparison__col--label {
  background: transparent;
}

.comparison__col--label .comparison__cell {
  background: #EEEFEE;
  justify-content: center;
  margin-bottom: 4px;
  font-size: 15px;
}

.comparison__col--label .comparison__head {
  background: transparent;
}

.comparison__head {
  padding:16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison__cell {
  padding: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.comparison__price {
  font-size: 32px;
  display: inline-block;
}

.comparison__yen {
  font-size: 20px;
  margin-right: 2px;
}

.comparison__tax {
  font-size: 14px;
}

.comparison__price-large {
  font-size: 25px;
}

.comparison__note {
  font-weight: normal;
  font-size: 15px;
  display: block;
  color: #707070;
}

.comparison__head-size {
  font-size: 36px;
  margin: 0 4px;
}

.comparison__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  white-space: nowrap;
}

.comparison__list-item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #8F1E35;
  border-radius: 50%;
  flex-shrink: 0;
}

.m-inner + .m-inner {
  margin-bottom: 16px;
}


/* 就職活動におけるインターンの重要性 */
.l-info-box {
  display: block;
  border-radius: 8px;
  line-height: 1.8;
  box-sizing: border-box;
  background-color: #FDFAF7;
  padding: 40px;
}

.l-info-box__title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #EBE8E4;
  color: #333;
}

.l-info-box__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.l-info-box__text {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
}

.l-info-box__text:last-child {
  margin-bottom: 0;
}

.l-info-box__sup {
  font-size: 10px;
  vertical-align: super;
  margin-left: 2px;
}

.l-info-box__sources {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.l-info-box__source-item {
  font-size: 12px;
  color: #707070;
  margin: 0;
  line-height: 1.4;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
    .comparison-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; 
        padding-bottom: 15px; 
    }

    .comparison {
        min-width: 800px; 
        margin: 16px 0; /* 左右中央寄せを解除してスクロールしやすく */
        font-size: 15px; /* 文字サイズを少し調整 */
    }
}


/* ＝＝＝＝＝＝＝
掲載イメージ 
＝＝＝＝＝＝＝＝*/
.m-sample_img-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.m-sample_img {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.m-sample_img img {
  width: 100%;
  height: auto;
}

/* --- お問合せボタン --- */
.m-btn-common {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E35449; 
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    box-sizing: border-box;
    transition: opacity 0.3s, background-color 0.3s;
    line-height: 1.4;
}

.m-btn-common:hover {
    opacity: 0.8;
}

/* アイコン部分 */
.m-btn-common__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #e5534b; 
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: auto; 
}

.m-btn-common__icon svg {
    width: 100%;
    height: 100%;
}

.m-btn-common--large {
    width: 276px;
    height: 94px;
    font-size: 16px;
    padding: 0 16px;
}

.m-btn-common--sticky {
    width: 300px;
    height: 56px;
    font-size: 15px;
    padding: 0 12px;
}

.m-contact-button-area {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
}

@media screen and (max-width: 599px) {
  .m-contact-button-area {
    flex-direction: column;
    align-items: center;
  }
}

.m-btn-common__txt {
  color: #FFF;
}

.l-sticky-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9999;
    transform: translateY(100%);
    visibility: hidden;
    transition: transform 0.4s ease, visibility 0.4s;
}

.l-sticky-nav--is-visible {
    transform: translateY(0);
    visibility: visible;
}

.l-sticky-nav__inner {
    display: flex;
    justify-content: center;
    gap: 11px; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
掲載までの流れ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.l-flow-container {
  display: flex;
  gap: 5px;
  margin-bottom: 32px;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.m-step-card {
  background-color: #FDFAF7;
  border-radius: 8px;
  padding: 16px 12px;
  width: 100%;
  height: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.m-step-card__number {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 23px;
}

.m-step-card__label-container {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  font-weight: bold;
}

.m-step-card__label {
  font-size: 10px;
  border: 1px solid #3e3a39;
  border-radius: 20px;
  padding: 4px 10px;
  line-height: 1;
  background-color: #FFF;
}

.m-step-card__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 1.4;
}

.m-step-card__description {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.l-flow-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.m-arrow {
  width: 12px;
  height: 20px;
  background-color: #A39C70;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.m-step-card__icon {
  width: 40px;
  height: 40px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.m-step-card__icon img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-flow-container {
    flex-direction: column;
    align-items: center;
  }
  .m-arrow {
    width: 20px;
    height: 12px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}


/* ＝＝＝＝＝＝＝＝＝
よくあるご質問
＝＝＝＝＝＝＝＝＝＝*/
.qa-list {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "sans-serif";
}

.qa-item {
  background-color: #fdfaf5;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.qa-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  user-select: none;
}

.qa-item__question-text {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.qa-item__question-text::before {
  content: "Q";
  color: #C40D17;
  margin-right: 0.5em;
}

.qa-item__icon {
  width: 24px;
  height: 24px;
  background-color: #e66b5b;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.qa-item__icon::before,
.qa-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.qa-item__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.qa-item__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.qa-item__answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.qa-item__answer-content {
  overflow: hidden;
}

.qa-item__answer-inner {
  padding: 0 30px 24px 30px;
}

.qa-item__answer-text {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.qa-item.is-open .qa-item__answer-wrapper {
  grid-template-rows: 1fr;
}

.qa-item.is-open .qa-item__icon {
  transform: rotate(180deg);
}

.qa-item.is-open .qa-item__icon::after {
  opacity: 0;
}

/* =============================================
   追従ナビ
   ============================================= */
.l-floating-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}


.l-floating-nav--is-visible {
  opacity: 1;
  visibility: visible;
}

.l-floating-nav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-floating-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 280px;
  padding: 12px 20px;
  background-color: #E35449;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}


.c-floating-button:hover {
  opacity: 0.8;
}

.c-floating-button__text {
  flex-grow: 1;
  text-align: center;
}

.c-floating-button__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-left: 10px;
  flex-shrink: 0;
}

.c-floating-button__svg {
  width: 12px;
  height: 12px;
  color: #E35449;
}


@media (max-width: 768px) {
  .l-floating-nav__inner {
    flex-direction: column;
    gap: 10px;
  }

  .c-floating-button {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   utility
========================================================= */

.u-mt32 {
  margin-top: 32px;
}

.u-mt12 {
  margin-top: 12px;
}