/* =====================================================
   DAISO インターンシップ - カスタムスタイルシート
   ===================================================== */

/* ===== CSS変数 ===== */
:root {
  --color-primary: #e21782;
  --color-primary-hover: #bf0069;
  --color-primary-light: #fce4f1;
  --color-primary-pale: #fffafc;
  --color-bg-gray: #f2f2f2;
  --color-text: #4c4c4c;
  --color-text-light: #7a7a7a;
  --color-white: #ffffff;
  --border-radius-card: 12px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: 0.25s ease;
}

/* ===== ベース ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1216px;
}

.sec-title {
  color: var(--color-primary);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 2px;
}

.color-red {
  color: #e21782;
}

p {
  font-weight: 500;
}

/* ===== 共通ボタン ===== */
.btn-primary-pink {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-block;
  transition: background-color var(--transition), color var(--transition);
}

.btn-primary-pink:hover,
.btn-primary-pink:focus {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-white);
}

.btn-outline-pink {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-block;
  transition: background-color var(--transition), color var(--transition);
}

.btn-outline-pink:hover,
.btn-outline-pink:focus {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-white);
  border-radius: 30px;
  padding: 12px 40px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-block;
  transition: opacity var(--transition);
}

.btn-white:hover,
.btn-white:focus {
  opacity: 0.88;
  color: var(--color-primary);
}

.btn-more {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 1.125rem;
  font-weight: 700;
  transition: background-color var(--transition);
  width: 240px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  position: relative;
  line-height: 1;
}

.btn-more::before,
.btn-more::after {
  content: "";
  position: absolute;
  top: 45%;
  transform: rotate(-45deg) translate(0, -45%);
  width: 14px;
  height: 14px;
  transition: background-color var(--transition);
}

.btn-more::before {
  background: #fff;
  right: 16px;
}

.btn-more::after {
  background: var(--color-primary);
  right: 20px;
}

.btn-more:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
}

.btn-more:hover:after {
  background-color: var(--color-primary-hover);
}

/* ===== 共通セクションタイトル ===== */
.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.4;
}

.section-title-white {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.4;
}

.section-title-img {
  max-height: 50px;
  box-sizing: border-box;
  text-align: center;
  margin: auto;
}

.section-title-img img {
  height: auto;
  max-height: 50px;
}

/* ===== プレースホルダー（SVG差し替え前） ===== */
.illust-placeholder {
  background-color: var(--color-primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

/* =====================================================
   ヘッダー
   ===================================================== */
.site-header {
  position: fixed;
  top: 35px;
  left: 50%;
  transform: translateX(-50%) !important;
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  width: 0;
}

.site-header.show {
  width: 95%;
  left: 50%;
  transform: translateX(-50%) !important;
}

.site-header .container {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ロゴ */
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  display: block;
}

.logo-daiso {
  width: 100%;
  height: auto;
  max-width: 182px;
  min-width: 150px;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #cc0033;
  color: white;
  font-size: 0.6rem;
  font-weight: 900;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
}

/* ナビゲーション */
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}

.header-nav a:hover {
  color: var(--color-primary);
}

/* ===== ヘッダー追加要素 ===== */
.header-right {
  display: flex;
  align-items: center;
}

.header-mypage {
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  transition: color var(--transition);
  background: #808080;
  padding: 10px 28px;
  font-size: 0.875rem;
  font-weight: 700;
}

.header-right .btn-primary-pink {
  border-radius: 0;
  border: 0;
}

.header-mypage,
.header-right .btn-primary-pink {
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-mypage:hover {
  color: var(--color-primary);
}

.panf-btn {
  border: 2px solid #e21782;
  color: var(--color-primary);
  display: block;
  font-weight: bold;
  padding: 5px 15px;
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translate(-50%, 0);
  margin: auto;
  cursor: pointer;
  text-decoration: none;
  transition: .5s;
}

.panf-btn:hover {
  background: rgb(237 147 195/1);
  color: #fff;
  border: 2px solid rgb(237 147 195/1);
}

/* =====================================================
   ヒーローセクション
   ===================================================== */
.hero-section {
  position: relative;
  background: url("../images/hero_bg01.svg")no-repeat top right/1920px;
  background-color: #fef9fc;
  /* fixed header 35px + height ~60px + margin */
  padding-top: 80px;
  padding-bottom: 250px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyecatch {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.hero-desc {
  font-size: 1.5rem;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 3px;
}

.hero-illust-wrap {
  position: relative;
  z-index: 1;
}

.hero-illust-wrap .illust-placeholder {
  width: 100%;
  height: 360px;
}

/* 桜の装飾 */
.sakura-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 2;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  white-space: pre;
}

.sakura-left {
  top: 5%;
  left: 1%;
}

.sakura-right {
  bottom: 5%;
  right: 1%;
}

/* =====================================================
   未来のインターンシップには？
   ===================================================== */
.about-section {
  background: url("../images/about_bg01.svg")no-repeat top right/40%, url("../images/about_bg02.svg")no-repeat bottom left/25%;
  background-color: var(--color-white);
  position: relative;
  padding: 250px 0;
}

/* 右側の斜め背景 */
.about-section .design {
  content: '';
  position: absolute;
  left: 0;
  top: -37%;
  width: 45%;
  min-width: 200px;
  height: auto;
  z-index: 0;
}

.about-text {
  font-size: 1.25rem;
  color: #000000;
  line-height: 2;
  margin-bottom: 16px;
}

.about-illust-wrap {
  width: 100%;
  height: auto;
  max-width: 332px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  position: relative;
  bottom: -250px;
}

/* =====================================================
   3つの本気
   ===================================================== */
.honki-section {
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding: 250px 0 300px;
}

/* 背景の装飾円 */
.honki-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  top: -150px;
  left: -100px;
  pointer-events: none;
}

.honki-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  bottom: -80px;
  right: -60px;
  pointer-events: none;
}

.honki-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-card);
  padding: 36px 24px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.honki-card:hover {
  transform: translateY(-4px);
}

.honki-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.honki-icon .illust-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.honki-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 0;
}

/* =====================================================
   プログラムセクション
   ===================================================== */
.program-section {
  background: url("../images/program_bg01.svg")no-repeat top center/1400px, url("../images/program_bg02.svg")no-repeat bottom center/1400px;
  background-color: #f2f2f2;
  padding: 300px 0 200px;
}

.program-script-heading {
  font-family: 'Dancing Script', 'Pacifico', cursive;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--color-primary);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.program-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.program-card.coming-soon {
  opacity: 0.65;
}

.program-title {
  align-items: center;
  border-bottom: 4px solid #e21782;
  color: #4c4c4c;
  display: inline-flex;
  line-height: 1.4;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-left: 60px;
  padding-bottom: 15px;
  position: relative;
}

.program-title::before {
  content: '';
  position: absolute;
  background: url("../images/program-icon.svg")no-repeat top center/100%;
  width: 45px;
  height: 45px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.program-img-wrap {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.program-img-wrap .illust-placeholder {
  width: 100%;
  height: 100%;
}

.program-img-coming {
  background-color: #e8e8e8;
  border-radius: 8px;
  color: #aaa;
  font-size: 2.5rem;
  font-weight: 300;
}

.program-desc {
  font-size: 1.25rem;
  color: #000000;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 16px;
  text-align: center;
}

.coming-soon-label {
  background: #999999;
  color: #b2b2b2;
  text-align: center;
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 4px;
}

.coming-soon-label:hover {
  background: #999999;
  color: #b2b2b2;
}

.coming-soon-label::before,
.coming-soon-label:hover:before {
  background: #b2b2b2;
}

.coming-soon-label::after,
.coming-soon-label:hover:after {
  background: #999999;
}

/* =====================================================
   参加の流れ
   ===================================================== */
.flow-section {
  background: url("../images/flow_bg01.svg")no-repeat bottom center/800px;
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding: 200px 0 300px;
}

.flow-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 0;
}

.flow-illust-wrap {
  text-align: center;
  margin-top: 40px;
}

.flow-illust-wrap .illust-placeholder {
  width: 100%;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

/* タイムラインステップ */
.flow-steps {
  position: relative;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  position: relative;
  margin-bottom: 4rem;
}

.flow-step:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.flow-step::after {
  content: '';
  position: absolute;
  left: 53px;
  top: 110px;
  width: 4px;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
}

.flow-step:last-child:after {
  display: none;
}

.step-circle {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--color-primary);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: var(--color-white);
  line-height: 1.2;
}

.step-step {
  font-size: 18px;
}

.step-num {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  flex-shrink: 0;
  z-index: 1;
}

.step-content {
  padding-top: 8px;
  width: calc(100% - 130px);
}

.step-content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.step-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  line-height: 1.7;
}

/* =====================================================
   よくある質問
   ===================================================== */
.faq-section {
  background-color: var(--color-white);
  padding: 300px 0 200px;
}

.faq-subtitle {
  text-align: center;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 48px;
}

/* アコーディオン上書き */
.faq-accordion .accordion-item {
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  width: 100%;
}

.faq-accordion .accordion-item:first-of-type {}

.faq-accordion .accordion-button {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  background-color: transparent;
  box-shadow: none;
  border: 2px solid #b2b2b2;
  padding: 22px 16px;
  margin-top: 1rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background-color: var(--color-primary-pale);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  /* Bootstrapのデフォルト矢印を非表示にして+/-に置き換え */
  background-image: none;
  content: '+';
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-left: auto;
  width: auto;
  height: auto;
  transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '−';
  transform: none;
}

.faq-q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b2b2b2;
  border-radius: 50%;
  font-size: 2.25rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  top: -2px;
}

.faq-accordion .accordion-body {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 16px 16px 24px 16px;
  font-size: 1.125rem;
  color: #4c4c4c;
  line-height: 1.85;
}

.faq-a-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 2.25rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  top: -2px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-radius: 0;
}

/* =====================================================
   その他のご質問
   ===================================================== */
.other-contact-section {
  background: url("../images/faq_img01.svg")no-repeat bottom center/500px;
  padding: 0 0 250px;
}

.other-contact-section h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #4c4c4c;
  letter-spacing: 1.6px;
  text-align: center;
  margin-bottom: 50px;
}

.other-contact-section p {
  font-size: 1.25rem;
  color: #4c4c4c;
  margin-bottom: 28px;
  text-align: center;
}

/* =====================================================
   フッター
   ===================================================== */
.site-footer {
  background-color: #f5f5f5;
  padding: 200px 0 28px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #4c4c4c;
}

.footer-nav-list li {
  margin-bottom: 20px;
}

.footer-nav-list a {
  font-size: 1.25rem;
  color: #4c4c4c;
  transition: color var(--transition);
  display: inline-block;
  font-weight: bold;
  position: relative;
}

.footer-nav-list a:hover {
  color: var(--color-primary);
}

.footer-nav-list a.out {}

.footer-nav-list a.out::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url("../images/link_icon.svg")no-repeat top left/100%;
  top: 10px;
  right: -20px;
}

.disable-link {
  color: #e0e0e0 !important;
}

.footer-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 22px 28px;
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  transition: background-color var(--transition);
  width: 100%;
}

.footer-entry-btn:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
}

.footer-entry-btn::before {
  content: '';
  position: absolute;
  background: url(../images/footer_icon.svg) no-repeat top center / 100%;
  width: 36px;
  height: 36px;
  top: 54%;
  right: 20px;
  transform: translate(0, -50%);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.footer-privacy {
  font-size: 0.75rem;
  color: var(--color-text-light);
  transition: color var(--transition);
}

.footer-privacy:hover {
  color: var(--color-primary);
}

.footer-copyright {
  font-size: 0.75rem;
  color: #aaa;
  margin: 0;
}

/* ===== ヒーロー パンフレットCTA ===== */
.hero-pamphlet-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 12px;
  transition: background-color var(--transition);
}

.hero-pamphlet-btn:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
}

/* ===== 3つの本気カードタイトル ===== */
.honki-card-title {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.5;
}


/* =====================================================
   レスポンシブ
   ===================================================== */
@media (max-width: 991.98px) {

  /* COMMON */
  .sec-title {
    font-size: 2rem;
  }

  .section-title-img img {
    max-height: 40px;
  }

  .honki-section,
  .program-section,
  .about-section,
  .faq-section,
  .other-contact-section,
  .footer-cta-section {
    padding: 56px 0;
    overflow: hidden;
  }

  .flow-section {
    padding: 56px 0 150px;
  }

  /* header */
  .site-header {
    top: 16px;
    width: calc(100% - 24px);
    border-radius: 8px;
  }

  /*.site-header.show {
    width: 95%;
    left: 2.5%;
  }*/

  .hero-section::before {
    display: none;
  }

  .hero-section {
    background:
      url(../images/hero_bg01.svg) no-repeat top right / 1920px,
      url(../images/hero_bg02.svg) no-repeat bottom left / 750px;
    background-color: var(--color-primary-pale);
    padding-top: 130px;
    padding-bottom: 150px;
  }

  /* About */
  .about-section {
    background:
      url(../images/about_bg01.svg) no-repeat top right 60% / 120%,
      url(../images/about_bg02.svg) no-repeat bottom left / 60%;
  }

  .about-section .design {
    display: none;
  }

  .about-illust-wrap {
    bottom: -56px;
    max-width: 50%;
  }

  .panf-btn {
    bottom: -20%;
    background: #fff;
    margin-right: 0;
    transform: translate(0, 0);
  }

  .hero-illust-wrap {
    margin-top: 36px;
  }

  /* Flow */
  .flow-section {
    background: url(../images/flow_bg01.svg) no-repeat bottom center / 60%;
    background-color: var(--color-primary);
  }

  .flow-section .row>div:first-child {
    margin-bottom: 40px;
  }

  .flow-title {
    text-align: center;
  }

  /* other-contact-section */
  .other-contact-section {
    background: url(../images/faq_img01.svg) no-repeat bottom center / auto 160px;
    padding-bottom: 160px;
  }

  /* FOOTER */
  .site-footer {
    padding: 56px 0 28px;
  }

  .logo-daiso {
    margin: auto;
    text-align: center;
    min-width: 100px;
  }
}

@media (max-width: 767.98px) {

  /* HERO */
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-desc {
    font-size: 1.15rem;
    letter-spacing: 2px;
  }

  /* Header-NAVI */
  .header-right {
    margin-left: 1.5rem;
  }

  .header-mypage,
  .header-right .btn-primary-pink {
    padding: 10px 15px;
    min-width: 120px;
  }

  /* About */
  .about-section {
    background:
      url(../images/about_bg01.svg) no-repeat top right 100% / 200%,
      url(../images/about_bg02.svg) no-repeat bottom left / 80%;
  }

  .about-section {
    overflow: inherit;
  }

  /* Program */
  .program-section {
    background:
      url("../images/program_bg01.svg")no-repeat top center/180%,
      url("../images/program_bg02.svg")no-repeat bottom center/180%;
    background-color: #f2f2f2;
  }

  .program-section .col-6 {
    display: flex;
    height: 100%;
  }

  .program-card {
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .program-title {
    padding-left: 35px;
    font-size: 1.15rem;
  }

  .program-title::before {
    width: 30px;
    height: 30px;
  }

  .program-desc {
    font-size: .875rem;
  }

  .btn-more {
    width: 100%;
    height: 45px;
    font-size: .875rem;
    margin-top: auto;
  }

  .btn-more::after {
    right: 14px;
  }

  .btn-more::before {
    right: 10px;
  }

  /* Flow */
  .flow-section {
    background: url(../images/flow_bg01.svg) no-repeat bottom -1px center / 95%;
    background-color: var(--color-primary);
  }

  .step-content h4 {
    font-size: 1.75rem;
  }

  .step-content p {
    font-size: 1rem;
  }

  /* FAQ */
  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-accordion .accordion-button {
    font-size: 1.275rem;
  }

  .faq-accordion .accordion-body {
    font-size: 1rem;
  }

  /* Other */
  .other-contact-section {
    background: url(../images/faq_img01.svg) no-repeat bottom center / auto 130px;
  }

  .other-contact-card {
    padding: 46px 24px;
  }

  /* Footer */
  .sec-title {
    font-size: 2rem;
    line-height: 1.4;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
  }

  .footer-nav-list a {
    font-size: 1.15rem;
  }

  .footer-entry-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }

  .logo-daiso {
    width: 80%;
    min-width: 80px;
  }

  .footer-entry-btn::before {
    width: 26px;
    height: 23px;
    top: 51%;
  }
}


.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 413px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* HERO */
  .hero-title {
    font-size: 2rem;
    letter-spacing: 0px;
  }

  /* NAVI */
  .site-header.show {
    width: 95%;
    left: 2.5%;
    transform: translateX(0) !important;
  }

  .header-logo {
    width: 30%;
  }

  .header-right {
    width: 60%;
    margin-left: 0;
    overflow: hidden;
  }

  .btn-primary-pink {
    width: 50%;
  }

  .header-mypage {
    width: 50%;
  }

  .header-mypage,
  .header-right .btn-primary-pink {
    min-width: inherit;
  }

  /* Footer */
  .footer-entry-btn {
    font-size: 1rem;
    padding: 18px 28px;
  }
}

/* MOVE */
.sa {
  opacity: 0;
  transition: all .5s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}