@charset "UTF-8";

/* =====================================================
   MUSUBU CTA Shortcode
   [cta_entry] / [cta_line] 用スタイル
   headlineはボタンの外（上）、ボタンは__button-box
   ===================================================== */

.musubu-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
  margin: 32px auto;
  text-decoration: none !important;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
}

/* common.css の body a:hover { opacity:0.6 } を抑制 */
.musubu-cta:hover {
  opacity: 1;
}

/* ボタン外のheadline（煽り文） */
.musubu-cta__headline {
  display: block;
  margin: 0 0 8px;
  font-size: 3.5vw;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
}

.musubu-cta-entry .musubu-cta__headline,
.musubu-cta-eeasy .musubu-cta__headline {
  color: #EA580C;
}

.musubu-cta-line .musubu-cta__headline {
  color: #06A647;
}

/* オレンジ/緑のボタンボックス */
.musubu-cta__button-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 56px;
  border-radius: 999px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.musubu-cta-entry .musubu-cta__button-box,
.musubu-cta-eeasy .musubu-cta__button-box {
  background: #EA580C;
  box-shadow: 0 4px 2px rgba(234, 88, 12, 0.5);
}

.musubu-cta-line .musubu-cta__button-box {
  background: #06C755;
  box-shadow: 0 4px 2px rgba(6, 199, 85, 0.5);
}

/* ボタン内のコメント（例: 面接が不安な方へ） */
.musubu-cta__sub {
  display: block;
  font-size: 3.5vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

/* メインのボタンテキスト */
.musubu-cta__main {
  display: block;
  font-size: 4.5vw;
  font-weight: 700;
  color: #fff;
}

/* 右端の矢印 */
.musubu-cta__arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

/* hover: ボタンだけ浮かす */
.musubu-cta:hover .musubu-cta__button-box {
  transform: translateY(-2px);
}

.musubu-cta-entry:hover .musubu-cta__button-box,
.musubu-cta-eeasy:hover .musubu-cta__button-box {
  box-shadow: 0 6px 3px rgba(234, 88, 12, 0.6);
}

.musubu-cta-line:hover .musubu-cta__button-box {
  box-shadow: 0 6px 3px rgba(6, 199, 85, 0.6);
}

/* PC: vwだと大きくなりすぎるので固定サイズに */
@media (min-width: 769px) {
  .musubu-cta__main {
    font-size: 18px;
  }

  .musubu-cta__sub,
  .musubu-cta__headline {
    font-size: 15px;
  }
}

/* タブレット以下: パディングだけ詰める */
@media (max-width: 768px) {
  .musubu-cta {
    margin: 24px auto;
  }

  .musubu-cta__button-box {
    padding: 16px 48px;
    border-radius: 999px;
  }

  .musubu-cta__arrow {
    right: 16px;
  }
}

/* =====================================================
   記事末尾CTA [cta_last]
   白背景＋ティール枠＋オレンジべた塗りボタン
   ===================================================== */

.musubu-cta-last {
  background: transparent;
  border: 3px solid #7ebfbb;
  outline: 3px solid #7ebfbb;
  outline-offset: 6px;
  border-radius: 12px;
  padding: 40px 32px;
  margin: 48px 0;
  text-align: center;
}

.musubu-cta-last__title {
  font-size: 22px;
  font-weight: 700 !important;
  color: #555;
  margin: 0 0 4px !important;
  line-height: 1.5;
}

.musubu-cta-last__desc {
  font-size: 15px;
  font-weight: 700 !important;
  color: #555;
  margin: 0 0 20px !important;
  line-height: 1.7;
}

.musubu-cta-last__button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background: #EA580C;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 4.5vw;
  font-weight: 700;
  padding: 18px 56px;
  border-radius: 999px;
  box-shadow: 0 4px 2px rgba(234, 88, 12, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
}

.musubu-cta-last__button:hover {
  opacity: 1 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 3px rgba(234, 88, 12, 0.6);
}

/* LINE版ボタン（緑） */
.musubu-cta-last__button--line {
  background: #06C755;
  border-color: #06C755;
  box-shadow: 0 4px 2px rgba(6, 199, 85, 0.5);
}

.musubu-cta-last__button--line:hover {
  box-shadow: 0 6px 3px rgba(6, 199, 85, 0.6);
}

.musubu-cta-last__button-arrow {
  position: absolute;
  right: 24px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

@media (min-width: 769px) {
  .musubu-cta-last__button {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .musubu-cta-last {
    padding: 32px 20px;
    margin: 32px 0;
  }

  .musubu-cta-last__title {
    font-size: 20px;
  }

  .musubu-cta-last__desc {
    font-size: 14px;
  }

  .musubu-cta-last__button {
    padding: 16px 48px;
  }

  .musubu-cta-last__button-arrow {
    right: 16px;
  }
}
