/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */
:root {
  --color-text: #333333;
  --primary-color: #23a561;
  /* --primary-color: #1b7a48; */
  --accent-orange: #ef845c;
  --font-main: dnp-shuei-mgothic-std, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font-accent: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
html {
  font-size: 10px;
  overflow-x: hidden;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

@media screen and (max-width:768px) {
  html {
    scroll-padding-top: 0px;
    scroll-behavior: smooth;
  }

}

@media screen and (max-width: 374px) {
  html {
    font-size: 2.667vw;
  }
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

body {
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.71429;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

section {
  padding-bottom: 100px;
}

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: bold;
  padding: 15px 65px 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s;
  border: 1.5px solid var(--primary-color);
}

.btn-white:hover {
  background-color: #f0f0f0;
}

.btn-white::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-image: url('../img/btn.svg');
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.btn-white:hover::after {
  transform: translateY(-50%) translateX(5px);
}

@media screen and (max-width: 768px) {
  section {
    padding-bottom: 60px;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  .btn-white {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   ナビゲーション
   ========================================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-inner {

  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #333;
  font-size: 1.75rem;
  font-weight: bold;
  transition: color 0.3s;
}

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

/* ==========================================================================
   Fixed Buttons
   ========================================================================== */
.fixed-btn-area {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}

.btn-fixed {
  writing-mode: vertical-rl;
  padding: 20px 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 10px 0 0 10px;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.btn-fixed:hover {
  transform: translateY(-5px);
}

.info-session {
  background-color: var(--accent-orange);
}

.application-form {
  background-color: #1b73e0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 768px) {
  #header {
    top: 15px;
    left: unset;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }

  .hamburger {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
  }

  .hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    transition: 0.3s;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    top: 11px;
  }

  .hamburger span:nth-child(3) {
    bottom: 0;
  }

  .header-nav {
    display: none;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    transition: right 0.4s ease;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav.is-active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .nav-list a {
    color: #fff;
    font-size: 2rem;
  }

  .hamburger.is-active span {
    background-color: #fff;
  }

  .hamburger.is-active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
  }

  .fixed-btn-area {
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    flex-direction: row;
    gap: 0;
  }

  .btn-fixed {
    writing-mode: horizontal-tb;
    width: 50%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-size: 1.4rem;
    padding: 0;
  }

  /* ボタン削除に備えて、1つになった時に幅100%にする設定 */
  .btn-fixed:only-child {
    width: 100%;
  }

}

/* ==========================================================================
   MV
   ========================================================================== */
#mv {
  position: relative;
  width: 100%;
  background-color: #eefff5;
  overflow: hidden;
}

section#mv {
  padding-bottom: unset;
  margin-top: 80px;
}

.mv-container {
  display: flex;
  max-height: 650px;
}

.mv-left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  /* padding: 20px 0 100px 20px; */
  padding: 20px 0 20px 20px;
  background-image: url('../img/bg.svg');
  background-repeat: no-repeat;
  background-position: left center;
}

.mv-text-inner {
  text-align: center;
  font-family: var(--font-accent);
  z-index: 2;
}

.mv-sub-note {
  font-size: 1.75rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--color-text);
}

.mv-label-wrap {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.mv-label {
  background-color: var(--accent-orange);
  color: #fff;
  /* padding: 8px 24px; */
  padding: 10px 35px 15px;
  line-height: 1.3;
  border-radius: 50px;
  font-size: 2.5rem;
  display: inline-block;
  font-weight: bold;
}

.mv-label-wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: var(--accent-orange) transparent transparent transparent;
}

.mv-main-copy {
  font-size: 4.0rem;
  color: var(--primary-color);
  line-height: 1.2;
  font-weight: bold;
}

.mv-amp {
  font-size: 0.8em;
}

.mv-right {
  width: 50%;
  position: relative;
}

.mv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}


@media screen and (max-width: 768px) {
  section#mv {
    margin-top: unset;
  }

  .mv-wave-top.sp-only {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
  }

  .mv-wave-top img {
    width: 100%;
    height: auto;
    transform: scaleY(-1);
  }

  .mv-container {
    flex-direction: column;
  }

  .mv-left,
  .mv-right {
    width: 100%;
  }

  .mv-left {
    position: relative;
    padding: 40px 15px 20px;
    background-size: contain;
    justify-content: center;
    background-image: url('../img/bg.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 80%;
    z-index: 1;
  }

  .mv-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;

    background-image: url('../img/bg.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 80%;

    transform: scaleX(-1);

    z-index: -1;
    opacity: 1;
  }

  .mv-sub-note {
    font-size: 1.4rem;
  }

  .mv-label-wrap {
    margin-bottom: 18px;
  }

  .mv-label {
    font-size: 1.5rem;
  }

  .mv-main-copy {
    font-size: 2.1rem;
  }

  .mv-right {
    height: 250px;
  }

  .mv-img {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ==========================================================================
   問題提起
   ========================================================================== */
#problem {
  background-color: #fff;
  overflow: hidden;
}

section#problem {
  padding-bottom: unset;
}

.problem-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.problem-left {
  width: 35%;
  /* height: 500px; */
  height: 600px;
  line-height: 0;
  overflow: hidden;
  flex: 1;
}

.problem-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.problem-right {
  width: 65%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 40px 40px 40px 20px; */
  padding: 20px 40px 80px 20px;
  flex: 1.2;
}

.problem-title {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
}

.problem-list {
  list-style: none;
  padding: 0;
}

.problem-list li {
  position: relative;
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1.6;
  padding-left: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.problem-list li:last-child {
  margin-bottom: 0;
}

.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 25px;
  height: 25px;
  background-image: url('../img/check.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .problem-container {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .problem-left {
    width: 100%;
    height: 300px;
  }

  .problem-img {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
  }

  .problem-right {
    width: 100%;
    padding: 60px 15px 0px;
  }

  .problem-title {
    font-size: 2.4rem;
    text-align: center;
  }

  .problem-list li {
    font-size: 1.6rem;
    padding-left: 35px;
  }
}

/* ==========================================================================
   イントロ
   ========================================================================== */
#intro {
  background-color: #1b7a48;
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.intro-container {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.intro-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
  transform: translateY(calc(10px - 100%));
}

.intro-wave img {
  width: 100%;
  height: auto;
}

.intro-left {
  width: 20%;
  line-height: 0;
  margin-bottom: 100px;
}

.intro-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.intro-right {
  width: 70%;
  text-align: left;
}

.intro-title {
  font-size: 3.6rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff;
}

.intro-text {
  font-size: 1.75rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.intro-text .highlight {
  color: #fcee21;
  font-weight: bold;
}

.intro-btn-wrap {
  text-align: right;
}
.intro-btn-wrap .btn-white {
  scale: 1.15;
   transform-origin: bottom right;
}
.btn-white:hover::after {
  transform: translateY(-50%) translateX(5px);
}

@media screen and (max-width: 768px) {
  #intro {
    padding: 60px 0;
  }

  .intro-text {
    font-size: 1.6rem;
  }

  .intro-container {
    flex-direction: column;
  }

  .intro-left {
    display: none;
  }

  .intro-right {
    width: 100%;
  }

  .intro-title {
    font-size: 2rem;
  }

  .intro-btn-wrap {
    text-align: center;
  }
  .intro-btn-wrap .btn-white {
    scale: unset;
  }
}

/* ==========================================================================
   募集概要
   ========================================================================== */
#application {
  font-family: var(--font-main);
  background-color: #eefff5;
  padding-top: 80px;
}

#application h2 {
  font-size: 3.6rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--primary-color);
  table-layout: fixed;
  line-height: 1.5;
}

.custom-table th {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.8rem;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  width: 25%;
  border-bottom: 1px solid #fff;
}

.custom-table td {
  background-color: #fff;
  color: #333;
  font-size: 1.75rem;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--primary-color);
}

.custom-table tr:last-child th,
.custom-table tr:last-child td {
  border-bottom: none;
}

.table-btn-area {
  margin-top: 15px;
}

.table-btn-area .btn-white {
  padding: 12px 50px 12px 25px;
      color: #fff;
            background-color: #1b73e0;
            border: none;
}

.table-btn-area .btn-white::after {
        background:#1b73e0 url(../img/btn-white.svg) no-repeat center / contain;
  width: 30px;
  height: 30px;
}

.custom-table td strong {
  display: block;
  font-size: 2rem;
}

.custom-table td strong.green {
  color: var(--primary-color);
}

/* .custom-table td span {
  font-size: 1.4rem;
} */

.custom-table td small {
  display: block;
  /* font-size: 1.4rem; */
  margin-top: 10px;
  position: relative;
  padding-left: 1em;
}

.custom-table td small+small {
  margin-top: 5px;
}

.custom-table td small::before {
  content: "※";
  position: absolute;
  left: 0;
}

.custom-table ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.custom-table li {
  position: relative;
  font-size: 1.75rem;
  padding-left: 1em;
  margin-bottom: 5px;
}

.custom-table li::before {
  content: "・";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 768px) {
  #application {
    padding: 60px 0;
  }

  #application h2 {
    font-size: 2.2rem;
  }

  .custom-table,
  .custom-table tbody,
  .custom-table tr,
  .custom-table th,
  .custom-table td {
    display: block;
    width: 100%;
  }

  .custom-table th {
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
  }

  .custom-table td {
    border-bottom: 1px solid var(--primary-color);
    box-sizing: border-box;
    padding: 10px 15px;
  }

  .custom-table tr:last-child td {
    border-bottom: none;
  }

  .custom-table th {
    padding: 10px 15px;
  }

  .table-btn-area {
    text-align: center;
  }

  .custom-table td strong {
    font-size: 1.8rem;
  }

  .custom-table td,
  .custom-table li {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   カリキュラム
   ========================================================================== */
#curriculum {
  padding-top: 80px;
}

.section-title {
  text-align: center;
  font-size: 3.6rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: bold;
}

.curriculum-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.curriculum-table th {
  padding: 15px;
  font-size: 1.75rem;
  color: #666;
  border-bottom: 2px solid var(--primary-color);
}

.curriculum-table td {
  padding: 15px 20px;
  vertical-align: middle;
  font-size: 1.75rem;
  border-bottom: 1px solid #eee;
}

.col-count {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 170px;
}

.col-date {
  width: 220px;
  font-weight: bold;
}

.col-type {
  width: 250px;
}

.col-content {
  line-height: 1.6;
}

/* ★強調したい日の行スタイル */
.highlight-row td {
  background-color: #edf6f0;
}

.highlight-row .col-count {
  background-color: #3aa78a !important;
}

.table-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-notes li {
  position: relative;
  padding-left: 1.2em;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 5px;
}

.table-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  color: inherit;
}

@media screen and (max-width: 850px) {
  #curriculum {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .curriculum-table thead {
    display: none;
  }

  .curriculum-table,
  .curriculum-table tbody,
  .curriculum-table tr,
  .curriculum-table td {
    display: block;
    width: 100%;
  }

  .curriculum-table tr {
    margin-bottom: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
  }

  .curriculum-table tr.highlight-row {
    border: 1px solid #3aa78a;
  }

  .curriculum-table td {
    border-bottom: 1px solid #eee;
    padding: 12px 15px;
    text-align: left;
  }

  .col-count {
    text-align: center !important;
  }

  .table-notes li {
    padding-left: 1.2em;
  }

  .curriculum-table td {
    font-size: 1.6rem;
  }

}

/* ==========================================================================
   よくあるご質問 (FAQ)
   ========================================================================== */
#faq h2 {
  font-size: 3.6rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
}

.qanda_item {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--primary-color);
}

.qanda_item li {
  border-bottom: 1px solid var(--primary-color);
}

/* 質問タイトル部分 */
.qanda_item .title {
  position: relative;
  padding: 20px 50px 20px 20px;
  font-size: 1.75rem;
  color: var(--primary-color);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.qanda_item .title:hover {
  background-color: #f9fffb;
}

.qanda_item .title span {
  margin-right: 15px;
  font-size: 2rem;
}

.qanda_item .title::before,
.qanda_item .title::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  background-color: var(--primary-color);
  transition: transform 0.3s;
}

.qanda_item .title::before {
  width: 16px;
  height: 2px;
  margin-top: -1px;
}

.qanda_item .title::after {
  width: 2px;
  height: 16px;
  margin-left: 7px;
  margin-top: -8px;
  right: 27px;
}

.qanda_item .title.close::after {
  transform: rotate(90deg);
  opacity: 0;
}

.qanda_item .box {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #fcfcfc;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.answer_content {
  display: flex;
  align-items: flex-start;
  font-size: 1.75rem;
  color: var(--color-text);
  line-height: 1.8;
  padding: 20px;
}

.a_icon {
  color: #ef845c;
  font-weight: bold;
  font-size: 2rem;
  margin-right: 15px;
}

.answer_content p {
  margin: 0;
  flex: 1;
  font-size: 1.8rem;
  line-height: 1.6;
  padding-top: 4px;
}

@media screen and (max-width: 768px) {
  #faq {
    padding-top: 60px;
  }

  #faq h2 {
    font-size: 2.2rem;
  }

  .qanda_item .title {
    padding: 15px 45px 15px 15px;
    font-size: 1.5rem;
  }

  .answer_content {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   研修後インタビュー
   ========================================================================== */
.iv-section-wrapper {
  padding: 100px 0;
  background-color: #eefff5;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(#d1f0dd 2px, transparent 2px);
  background-size: 30px 30px;
}

.iv-section-wrapper::before,
.iv-section-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

.iv-section-wrapper::before {
  left: 0;
  background-image: url('../img/bg.svg');
  background-position: left center;
  opacity: 0.3;
}

.iv-section-wrapper::after {
  right: 0;
  background-image: url('../img/bg.svg');
  background-position: right center;
  transform: scaleX(-1);
  opacity: 0.3;
}

.iv-section-wrapper .wrapper {
  position: relative;
  z-index: 2;
}

.iv-banner-container {
  max-width: 900px;
  margin: 0 auto;
}

.iv-banner-link {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.iv-banner-link img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.iv-banner-link:hover {
  transform: scale(1.01);
}

.iv-btn-area {
  text-align: center;
}


@media screen and (max-width: 768px) {
  .iv-section-wrapper {
    padding: 60px 0;
  }

  .iv-banner-container {
    padding: 0 15px;
  }

  .iv-section-wrapper::before,
  .iv-section-wrapper::after {
    width: 50%;
  }
}

/* ==========================================================================
   紹介動画、実施報告書
   ========================================================================== */

#report {
  padding: 80px 0;
  background-color: #fff;
}

.report-container {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.report-box {
  width: 50%;
}

.report-title {
  font-size: 3.6rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.report-title span {
  font-size: 0.6em;
  padding-left: 0.6em;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.report-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.report-thumb {
  width: 100%;
  margin-bottom: 30px;
  line-height: 0;
}

.report-thumb img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.report-btn-area {
  text-align: center;
}


@media screen and (max-width: 768px) {
  #report {
    padding-top: 50px;
  }

  .report-container {
    flex-direction: column;
    gap: 0;
  }

  #report2 {
    padding-top: 60px;
  }

  .report-box {
    width: 100%;
  }

  .report-title {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   オンライン説明会
   ========================================================================== */
.briefing-section {
  padding: 80px 0;
  background-color: #fff;
}

.briefing-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 20px;
}

.briefing-lead {
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #444;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  .briefing-section {
    padding: 60px 0;
  }

  .briefing-lead {
    font-size: 1.6rem;
  }

}

/* ==========================================================================
   4つのポイント
   ========================================================================== */
#points {
  background-color: #fff4ef;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#points::before,
#points::after {
  content: "";
  position: absolute;
  width: 318px;
  height: 900px;
  background-image: url('../img/bg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  filter: sepia(1) saturate(3) hue-rotate(-30deg) brightness(1.1);
  opacity: 0.8;
}

#points::before {
  bottom: 0;
  left: 0;
}

#points::after {
  top: 0;
  right: 0;
  transform: scaleX(-1) scaleY(-1);
}

.points-title {
  text-align: center;
  font-size: 3.6rem;
  color: var(--color-text);
  margin-bottom: 60px;
  font-weight: bold;

}

.points-title span {
  color: var(--accent-orange);
  font-size: 1.5em;
  margin-right: 5px;
  vertical-align: baseline;
}

.points-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.point-card {
  width: calc((100% - 30px) / 2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.point-num-wrap {
  width: 100px;
  height: 50px;
  background-color: #fff;
  border-radius: 100px 100px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.point-num-wrap .num {
  font-size: 3.6rem;
  color: var(--accent-orange);
  font-weight: bold;
  line-height: 1;
  margin-bottom: -5px;
}

.point-icon {
  max-width: 120px;
  margin: 0 auto;
}

.point-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  flex-grow: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.point-content h3 {
  font-size: 2.0rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: bold;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-content p {
  font-size: 1.75rem;
  color: var(--color-text);
  line-height: 1.8;
  text-align: left;
}

.point-content p span {
  font-weight: bold;
}

/* .plus-icon-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.plus-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcee21;
  font-size: 8rem;
  line-height: 1;
}

.follow-up-box {
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fff;
}

.follow-up-image {
  width: 120px; 
  flex-shrink: 0;
}

.follow-up-image img {
  width: 100%;
  height: auto;
}

.follow-up-text {
  flex: 1;
}

.follow-up-text h3 {
  font-size: 1.9rem;
  color: #fcee21; 
  margin-bottom: 15px;
  font-weight: bold;
}

.follow-up-text p {
  font-size: 1.6rem;
  line-height: 1.8;
} */

@media screen and (max-width: 768px) {
  #points {
    padding: 60px 0;
  }

  .points-title {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }

  .points-flex {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .point-card {
    width: 100%;
    max-width: 500px;
  }

  .point-content h3 {
    font-size: 1.8rem;
  }

  .point-content p {
    font-size: 1.6rem;
  }

  /* .follow-up-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .follow-up-image {
    width: 80px;
  }

  .follow-up-text h3 {
    font-size: 1.8rem;
  }
  .follow-up-text p {
    text-align: left;
  } */
}

/* ==========================================================================
   CVエリア
   ========================================================================== */
/* .points-cv-area {
  margin: 60px 15px;
  border-radius: 15px;
  text-align: center;
}

.cv-flex {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cv-flex a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 450px;
  padding: 20px 40px 20px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
  position: relative;
}

.btn-sub-text {
  font-size: 1.4rem;
  margin-bottom: 5px;
  display: block;
}

.btn-main-text {
  font-size: 2rem;
  font-weight: bold;
}

.btn-cv-sub {
  background-color: var(--accent-orange);
  color: #fff;
}

.btn-cv-main {
  background-color: #1b73e0;
}

.cv-flex a::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url('../img/btn-white.svg') no-repeat center/contain;
  transition: all 0.3s ease;
}

.cv-flex a:hover::after {
  right: 20px;
}

@media screen and (max-width: 768px) {
  .btn-main-text {
    font-size: 1.8rem;
  }

  .cv-flex {
    flex-direction: column;
    align-items: center;
  }

  .cv-flex a {
    max-width: 100%;
  }

  .cv-flex a::after {
    width: 30px;
    height: 30px;
  }
} */
/* ==========================================================================
   CVエリア（アレンジ版）
   ========================================================================== */
.points-cv-area {
  margin: 60px auto;
  max-width: 900px;
  background-color: #F3F7F7;
  border: 1px solid #E2ECEC;
  border-radius: 20px;
  padding: 40px;
  text-align: left; 
}

.cv-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cv-info-side {
  flex: 1;
}

.points-cv-area h2 {
    font-size: 3.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }

.cv-info-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333333;
}

.cv-info-datetime {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #E2ECEC;
}

.cv-date-tag {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.6rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.cv-info-datetime strong {
  font-size: 1.8rem;
  color: #2F2F2F;
}

.cv-info-detail {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  text-indent: -3.3em;
  padding-left: 3em;
}

.u-fw-bold {
  font-weight: bold;
  color: #2F2F2F;
}

.cv-btn-side {
  flex-shrink: 0;
  width: 100%;
  max-width: 320px; 
}

.cv-flex .btn-cv-sub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 25px 50px 25px 30px; 
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  /* box-shadow: 0 6px 20px rgba(255, 100, 115, 0.2); */
  color: #fff;
  position: relative;
  background-color: var(--accent-orange); 
}

/* .cv-flex .btn-cv-sub:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 100, 115, 0.3);
} */

.btn-main-text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.cv-flex .btn-cv-sub::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; 
  height: 24px;
  background: url('../img/btn-white.svg') no-repeat center/contain;
  transition: all 0.3s ease;
}

.cv-flex .btn-cv-sub:hover::after {
  right: 18px;
}

@media screen and (max-width: 768px) {
  .points-cv-area {
    padding: 30px 15px;
    margin: 40px 15px;
  }
.points-cv-area h2 {
  font-size: 2.2rem;
}
  .cv-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
  }

  .cv-info-title {
    font-size: 1.8rem;
  }

  .cv-info-datetime strong {
    font-size: 1.6rem;
  }

  .cv-btn-side {
    max-width: 100%;
  }

  .cv-flex .btn-cv-sub {
    padding: 20px;
  }

  .cv-flex .btn-cv-sub::after {
    display: none; 
  }
}
/* ==========================================================================
   個人情報
   ========================================================================== */
.privacy-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  border-top: 1px solid #eee;
}

.privacy-title {
  text-align: center;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}

.privacy-content {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.privacy-content p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .privacy-section {
    padding: 40px 0;
  }

  .privacy-title {
    font-size: 1.8rem;
  }

  .privacy-content {
    padding: 15px;
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   お問い合わせセクション
   ========================================================================== */
/* .contact-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.contact-title {
  font-size: 3.6rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: bold;
}

.contact-box {
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 40px;
}

.contact-project-name {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}

.contact-project-name strong {
  display: block;
  font-size: 2.1rem;
  margin-top: 10px;
  color: var(--primary-color);
}

.contact-details {
  font-size: 1.9rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.tel-number {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 10px 0 0;
}

.reception-time {
  font-size: 1.4rem;
  color: #666;
}

.contact-btn-area {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .contact-project-name {
    font-size: 1.6rem;
  }
  .contact-details {
    font-size: 1.8rem;
  }
} */
.contact-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.contact-title {
  font-size: 3.2rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.contact-box {
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 0 0 50px;
  /* max-width: 900px;
  margin: 0 auto; */
}

.contact-project-name {
  background-color: var(--primary-color);
  padding: 30px 20px;
  border-radius: 17px 17px 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #fff;
}

.contact-project-name strong {
  display: block;
  font-size: 2.2rem;
  margin-top: 15px;
  color: #fff;
}

.contact-unit {
  margin-bottom: 20px;
}

.u-mt-30 {
  margin-top: 30px;
}

.contact-label {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.5rem;
  padding: 2px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: bold;
  min-width: 450px;
}

.contact-details {
  font-size: 1.9rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.tel-number {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 10px 0 5px;
  letter-spacing: 0.05em;
}

.tel-number a {
  color: inherit;
}

.reception-time {
  font-size: 1.5rem;
  color: #666;
}

.contact-btn-area {
  margin-top: 40px;
}


@media screen and (max-width: 768px) {
  .contact-title {
    font-size: 2.4rem;
  }

  .contact-box {
    padding: 0 0 30px;
  }

  .contact-label {
    min-width: 100%;
  }

  .contact-details {
    padding: 0 15px;
  }

  .contact-project-name {
    font-size: 1.5rem;
  }

  .contact-project-name strong {
    font-size: 1.8rem;
  }

  .contact-unit .company-name,
  .contact-unit .staff-name {
    font-size: 1.6rem;
  }

  .tel-number {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   フッター
   ========================================================================== */
#footer {
  background-color: #5f5f5f;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.8;
}

.copyright {
  font-size: 1.2rem;
  opacity: 0.6;
}

@media screen and (max-width: 768px) {

  #footer {
    padding-bottom: 120px;
  }
}