@charset "UTF-8";
/* ====================================
   Guide Page Sections
   ==================================== */

/* ==========================================================================
   Base & Common Settings (Service Page Specific)
   ========================================================================== */
main {
  padding-top: 225px;
}

.section-padding {
  padding-top: 0;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  main {
    padding-top: 100px;
  }
  .section-padding {
    padding-bottom: 80px;
  }
}

/* ==========================================================================
   Page Header (Title)
   ========================================================================== */
.page-header {
  padding-bottom: 130px;
  background-color: #fff;
}
.page-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: none;
  padding-bottom: 0;
}

.page-title {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: #333;
}
.page-title .ja {
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  font-size: 24px;
  color: #008fcc;
  margin-top: 25px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.breadcrumbs {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-left: 40px;
  margin-bottom: 10px;
}
.breadcrumbs a {
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
  font-weight: 700;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
.breadcrumbs .current {
  color: #333;
}
.breadcrumbs span:not(.current) {
  font-size: 0;
  display: inline-block;
  width: 75px;
  height: 1px;
  background-color: #000;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .page-header {
    padding-bottom: 50px;
  }

  .page-header__inner {
    flex-direction: column;
    align-items: flex-start; 
    gap: 20px;
  }
  
  .page-title {
    font-size: 60px;
  }
  
  .breadcrumbs {
    margin-left: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
  }
  
  .breadcrumbs span:not(.current) {
    width: 30px;
    margin: 0 10px;
  }
}


/* ====================================
   Guide Page Styles
   ==================================== */

/* ====================================
   Guide Flow Chart
   ==================================== */
.guide-top-flow {
  background-color: transparent;
  padding: 40px 0;
}

.guide-top-flow__inner {
  background-color: #eaf8ff;
  padding: 70px 30px;
  border-radius: 4px;
  text-align: center;
  overflow-x: auto;
}

.flow-chart-title {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
}

.flow-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: left;
  max-width: 100%;
}

.flow-chart-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  width: fit-content;
  max-width: 100%;
}

/* ------------------------------------
   Flow Item
   ------------------------------------ */
.flow-item {
  position: relative;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  background-color: #fff;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
  margin-left: -34px;
  padding: 4px;
}

.flow-item:first-child {
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
  margin-left: 0;
}

/* ------------------------------------
   Flow Content
   ------------------------------------ */
.flow-content {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 35px 50px;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 700;
  font-size: 20px;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
}

.flow-item:first-child .flow-content {
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
}

.flow-item:nth-child(-n+4) .flow-content {
  background-color: #00b4d8;
}

.flow-item:nth-child(n+5) .flow-content {
  background-color: #3751a5;
}

/* ------------------------------------
   Text Styles
   ------------------------------------ */
.flow-content .step {
  font-size: 28px;
  line-height: 1;
  margin-right: 2px;
  font-family: "Noto Sans JP", sans-serif;
}

.flow-chart-note {
  position: relative;
  font-size: 19px;
  color: #3751a5;
  font-weight: 700;
  margin: 0;
  padding-top: 15px;
  width: 380px;
  margin-right: 30px;
  text-align: center;
}

.flow-chart-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  border-bottom: 3px solid #3751a5;
  border-left: 3px solid #3751a5;
  border-right: 3px solid #3751a5;
}

/* ------------------------------------
   Responsive
   ------------------------------------ */
@media (max-width: 1200px) {
  .flow-content {
    padding: 30px 20px;
    font-size: 16px;
  }
  .flow-content .step {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .flow-wrap {
    display: block;
    width: 100%;
    text-align: center;
  }
  .guide-top-flow__inner {
    padding: 40px 20px;
  }
  .flow-chart-list {
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }

  .flow-item {
    flex: 0 0 calc(50% - 5px);
    width: auto;
    margin-left: 0;
    
    background-color: #fff;
    padding: 4px;
    border: none;
    border-radius: 0;
    
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
  }

  .flow-content {
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
    
    padding: 20px 35px 20px 10px;
    
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
  }
  
  .flow-content .step {
    font-size: 18px;
  }

  .flow-item:nth-child(-n+4) .flow-content {
    background-color: #00b4d8;
  }
  .flow-item:nth-child(n+5) .flow-content {
    background-color: #3751a5;
  }

  .flow-chart-note {
    width: auto;
    margin-right: 0;
    margin-top: 20px;
    padding-top: 0;
    display: block;
    text-align: center;
    font-size: 15px;
  }

  .flow-chart-note::before {
    display: none;
  }
}

/* ====================================
   Guide Content (Timeline)
   ==================================== */
.guide-content {
  padding-top: 80px;
  padding-bottom: 120px;
}

.guide-container {
  max-width: 1100px;
  margin: 0 auto;
}

.timeline-wrap {
  position: relative;
  padding-left: 0;
}

.timeline-wrap::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 0;
  left: 30px;
  width: 6px;
  background-color: #00b4d8;
  z-index: 0;
}

.timeline-row {
  display: flex;
  position: relative;
  z-index: 1;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

.timeline-row:nth-child(n+5)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 6px;
  height: calc(100% + 80px);
  background-color: #3751a5;
  z-index: -1;
}

.timeline-row:last-child::after {
  height: 100%;
}

/* ------------------------------------
   Timeline Number
   ------------------------------------ */
.timeline-num {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  background-color: #00b4d8;
  margin-right: 55px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
}

.timeline-row:nth-child(n+5) .timeline-num {
  background-color: #3751a5;
}

.timeline-num span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
  margin-top: -4px;
}

/* ------------------------------------
   Timeline Body
   ------------------------------------ */
.timeline-body {
  flex-grow: 1;
  padding-top: 5px;
  width: 100%;
}

.timeline-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  line-height: 1.4;
}

.timeline-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.text-link-wrap {
  margin-top: 20px;
}

/* ------------------------------------
   Buttons & Links
   ------------------------------------ */
.guide-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 400px;
  height: 60px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s;
  box-sizing: border-box;
}

.timeline-row:nth-child(-n+2) .guide-btn {
  height: 86px;
  max-width: 800px;
  font-size: 24px;
}

.timeline-row:nth-child(-n+2) .guide-btn .icon-mail {
}
.timeline-row:nth-child(-n+2) .guide-btn .icon-mail .white {
  display: inline;
}
.timeline-row:nth-child(-n+2) .guide-btn .icon-mail .black {
  display: none;
}
.timeline-row:nth-child(-n+2) .guide-btn:hover .icon-mail .white {
  display: none;
}
.timeline-row:nth-child(-n+2) .guide-btn:hover .icon-mail .black {
  display: inline;
}
.guide-btn:hover {
  opacity: 0.8;
}

.btn-black {
  background-color: #434343;
  color: #fff;
}

.btn-red {
  background-color: #eb6877;
  font-size: 24px;
  color: #fff;
}

.btn-red:hover {
  opacity: 0.8;
  transform: none;
  color: #fff;
}

.btn-white {
  background-color: #fff;
  color: #333;
  border: 1px solid #ccc;
}
.guide-btn.btn-white {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  max-width: 470px;
  height: 70px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .guide-btn.btn-white {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    max-width: 470px;
    height: 60px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
}

.guide-btn.btn-white .icon-arrow-circle {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid #000;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.guide-btn.btn-white .icon-arrow-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 1px;
  background-color: #000;
  transition: transform 0.3s ease;
}
.guide-btn.btn-white .icon-arrow-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 1px;
  background-color: #000;
  transform-origin: right bottom;
  transform: translate(0, -1px) rotate(45deg); 
  transition: transform 0.3s ease;
}
.guide-btn.btn-white:hover .icon-arrow-circle {
  border: 1px solid #fff;
}
.guide-btn.btn-white:hover .icon-arrow-circle::before {
  transform: translate(calc(-50% + 5px), -50%);
  background-color: #fff;
}
.guide-btn.btn-white:hover .icon-arrow-circle::after {
  transform: translate(calc(-0.5px + 5px), -1px) rotate(45deg);
  background-color: #fff;
}

.guide-btn.btn-white:hover {
  background-color: #000;
  color: #fff;
}

.btn-simple {
  display: inline-block;
  color: #008fcc;
  text-decoration: underline;
  font-weight: 700;
  margin-top: 10px;
}

.guide-btn [class^="icon-"] {
  font-size: 20px;
}

/* ------------------------------------
   Boxes & Tables
   ------------------------------------ */
.guide-box {
  width: fit-content;
  max-width: 100%;
  border: 1px solid #000;
  padding: 20px 30px;
  background-color: #fff;
  box-sizing: border-box;
}

.guide-box.box-yellow {
  background-color: #fff7cc;
  border: none;
}

.box-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  display: block;
}
.guide04 .guide-box .box-title {
  font-size: 16px;
}

.box-list {
  padding-left: 20px;
  margin: 0;
}

.box-list li {
  margin-bottom: 8px;
  font-weight: 500;
}

.box-text {
  line-height: 1.8;
  font-weight: 500;
}

.guide-table {
  width: 100%;
  max-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.guide-table th, .guide-table td {
  border: 1px solid #ccc;
  padding: 10px 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.guide-table th {
  background-color: #eee;
  width: 50%;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .guide-box {
    width: fit-content;
    max-width: 100%;
    border: 1px solid #000;
    padding: 20px;
    background-color: #fff;
    box-sizing: border-box;
  }
}

/* ------------------------------------
   Step 3: Data Format
   ------------------------------------ */
.sub-head {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.sub-desc {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.guide05 .sub-desc {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

.icon-row {
  border: 2px solid #000;
  padding: 0;
  background-color: #fff;
  display: block;
  max-width: 880px;
}

.icon-row-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  margin: 0;
  border-bottom: 2px solid #000;
  background-color: #fff;
  line-height: 1;
}

.icon-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  padding: 50px 30px 40px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: auto;
}

.icon-item img {
  width: 86px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
}

.icon-item .item-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
  color: #000;
}

.icon-item .item-text {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}

.small-note {
  font-size: 16px;
  color: #000;
  line-height: 2;
  text-align: left;
  padding: 0 40px 30px;
  margin: 0;
}

/* ------------------------------------
   Responsive (max-width: 768px)
   ------------------------------------ */
@media (max-width: 768px) {
  .sub-head {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }

  .sub-desc {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
  }

  .guide05 .sub-desc {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
  }

  .icon-row {
    border: 2px solid #000;
    padding: 0;
    background-color: #fff;
    display: block;
    max-width: 880px;
  }

  .icon-row-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    margin: 0;
    border-bottom: 2px solid #000;
    background-color: #fff;
    line-height: 1;
  }
  .icon-list {
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
  }

  .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 33%;
  }

  .icon-item img {
    width: 45px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
  }

  .icon-item .item-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
    color: #000;
  }

  .small-note {
    text-align: left;
    padding: 0 20px 20px;
  }
}

/* ------------------------------------
   Step 3: Data Size Box
   ------------------------------------ */
.data-size-mainbox {
  text-align: left;
}
.data-size-box-wrap {
  display: flex;
  gap: 40px;
  max-width: 880px;
}

.data-size-box {
  width: 50%;
}
.ds-wrap {
  flex: 1;
  padding: 50px 20px 40px;
  text-align: center;
}
.box-ok {
  background-color: #eaf8ff;
}

.box-ng {
  background-color: #fff0f2;
}

.ds-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.ds-icons .icon-f {
  display: block;
  width: 50px;
}

.ds-text-wrap {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.ds-text {
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 22px;
  text-align: left;
}

.ds-text02 {
  display: flex;
  align-items: center;
}

.ds-text02 .text-sm {
  font-size: 32px;
  display: block;
  margin: 5px 0;
}
.ds-text02 .text-lg {
  font-size: 32px;
  display: block;
  margin: 5px 0;
}
.ds-sub {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

.ds-sub a {
  color: #008fcc;
  font-weight: 700;
}

@media (max-width: 768px) {
  .data-size-mainbox {
    text-align: left;
  }
  .data-size-box-wrap {
    display: flex;
    gap: 40px;
    max-width: 880px;
  }

  .data-size-box {
    width: 100%;
  }
  .ds-wrap {
    flex: 1;
    padding: 50px 20px 40px;
    text-align: center;
  }
  .box-ok {
    background-color: #eaf8ff;
  }

  .box-ng {
    background-color: #fff0f2;
  }

  .ds-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
  }

  .ds-icons .icon-f {
    display: block;
    width: 50px;
  }

  .ds-text-wrap {
    display: block;
    max-width: 300px;
    margin: 0 auto;
  }

  .ds-text {
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 22px;
    text-align: left;
  }

  .ds-text02 {
    display: flex;
    align-items: center;
  }

  .ds-text02 .text-sm {
    font-size: 32px;
    display: block;
    margin: 5px 0;
  }
  .ds-text02 .text-lg {
    font-size: 32px;
    display: block;
    margin: 5px 0;
  }
  .ds-sub {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
  }

  .ds-sub a {
    color: #008fcc;
    font-weight: 700;
  }
}


/* ------------------------------------
   Step 4: Memo
   ------------------------------------ */
.box-memo {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
  border-left: 4px solid #ccc;
}

.memo-head {
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.memo-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ------------------------------------
   Step 5: Highlight
   ------------------------------------ */
.highlight-area {
  background-color: #fffbe6;
  padding: 20px;
  border-left: 5px solid #fff799;
  margin-bottom: 25px;
  font-weight: 500;
}

.marker-yellow {
  background-color: #fff799;
  font-weight: 700;
  padding: 0 2px;
}

.box-simple {
  margin-top: 30px;
  padding: 20px;
  background-color: #f5f5f5;
}

.box-simple .title {
  font-weight: 700;
  margin-bottom: 5px;
}

.box-simple .text {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.box-simple .text:last-child {
  margin-bottom: 0;
}

.guide-exbox {
  width: 100%;
  max-width: 600px;
  height: 70px;
  border: 2px solid #000;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 66px;
  padding: 0 20px;
}

/* ------------------------------------
   Responsive
   ------------------------------------ */
@media (max-width: 768px) {
  .guide-content {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .timeline-wrap::before {
    left: 20px;
    top: 10px;
  }

  .timeline-row {
    flex-direction: column;
    margin-bottom: 50px;
    padding-left: 55px;
  }

  .timeline-row:nth-child(n+5)::after {
    left: 20px;
    top: 10px;
  }

  .timeline-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    height: 46px;
    margin-right: 0;
  }

  .timeline-num span {
    font-size: 24px;
    margin-top: -2px;
  }

  .timeline-body {
    padding-top: 0;
  }

  .timeline-title {
    font-size: 24px;
    margin-top: 5px;
  }

  .data-size-box-wrap {
    flex-direction: column;
  }

  .guide-btn {
    max-width: 100%;
    margin: 20px 0;
    height: 60px;
  }

  .timeline-row:nth-child(-n+2) .guide-btn {
    height: 60px;
    font-size: 16px;
  }

  .guide-exbox {
    width: 100%;
    max-width: 600px;
    height: 60px;
    border: 2px solid #000;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 56px;
    padding: 0 15px;
  }
}


/* ====================================
   Guide Footer Links (Q&A / Column)
   ==================================== */
.guide-footer-links {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 0 160px 0;
  background-color: #fff;
}

.footer-links-wrap {
  display: flex;
  border: 1px solid #000;
}

.footer-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  padding: 60px 0px 60px 50px;
  background-color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  box-sizing: border-box;
  color: #000;
}
.footer-link-item:first-child {
  border-right: 1px solid #000;
}

.footer-link-item:hover {
  background-color: #f5f5f5;
  opacity: 1;
  color: #000;
}

.link-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.link-icon {
  display: block;
  width: 60px;
  height: 60px;
}

.link-text-group {
  display: flex;
  flex-direction: column;
}

.sub-text {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1;
}

.main-text {
  font-size: 20px;
  color: #000;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.main-text .font-lg {
  display: inline;
  font-size: 30px;
}
.main-text .font-llg {
  display: inline;
  font-size: 39px;
  line-height: 0.8;
}

.footer-link-item .icon-arrow-circle {
  display: block;
  position: relative;
  margin-right: 7%; 
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50%;
  transition: border-color 0.3s ease;
}
.footer-link-item .icon-arrow-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 1px;
  background-color: #000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.footer-link-item .icon-arrow-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 6px - 0.5px), -0.5px) rotate(45deg);
  transform-origin: right bottom;
  width: 7px;
  height: 1px;
  background-color: #000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-link-item:hover .icon-arrow-circle::before {
  transform: translate(calc(-50% + 3px), -50%);
}
.footer-link-item:hover .icon-arrow-circle::after {
  transform: translate(calc(-50% + 6px - 0.5px + 3px), -0.5px) rotate(45deg);
}

/* ------------------------------------
   Responsive (max-width: 768px)
   ------------------------------------ */
@media (max-width: 768px) {
  .guide-footer-links {
    padding: 40px 0;
  }

  .footer-links-wrap {
    flex-direction: column;
  }

  .footer-link-item {
    width: 100%;
    padding: 15px 20px;
  }

  .footer-link-item:first-child {
    border-right: none;
    border-bottom: 1px solid #000;
  }

  .link-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .sub-text {
    font-size: 11px;
  }

  .main-text {
    font-size: 16px;
  }

  .footer-link-item .icon-arrow-circle {
    width: 40px;
    height: 40px;
  }

  .main-text .font-lg {
    font-size: 20px;
  }
  .main-text .font-llg {
    font-size: 30px;
  }
}