@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?Lato:wght@400;500;600;700;900&family=Noto+Sans+JP:wght@400;500;600;700;900&family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap");
/* 共通設定
======================================================= */
html {
  font-size: 62.5%;
}

body {
  color: #1e1e1e;
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
}
body p {
  margin: 0;
  line-height: 1.6;
}

.w-lg-100 {
  width: 100% !important;
}

.w-lg-auto {
  width: auto !important;
}

.inner {
  padding: 0 40px;
  width: 1200px;
  margin: 0 auto;
}

section {
  padding-top: 80px;
  margin-bottom: 80px;
}
section h2 {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  font-size: 3.2rem;
  padding: 0.5em 0;
  margin-bottom: 0.8em;
}
section .btn-area {
  margin: 64px auto;
}
section .btn-area .btn {
  width: 100%;
  min-width: 0;
  margin: 0;
}
section .btn-area .btn-cta-fill {
  background-color: #6b4a8c;
  border: none;
  color: #fff;
  padding: 14px 32px;
  font-size: 1.6rem;
  font-weight: 500;
  min-width: 280px;
  width: auto;
  transition: 0.3s;
}
section .btn-area .btn-cta-fill.sticky {
  min-width: 50%;
  font-size: 1.4rem;
  padding: 1.5em 1em;
}
section .btn-area .btn-cta-fill:hover {
  background-color: #bab9d9;
  color: #3b2559;
  transform: translateY(-2px);
}
section .btn-area .btn-cta-outline {
  border: 1px solid #9a8fbf;
  color: #9a8fbf;
  padding: 14px 32px;
  font-size: 1.6rem;
  font-weight: 500;
  min-width: 280px;
  width: auto;
  transition: 0.3s;
}
section .btn-area .btn-cta-outline.sticky {
  min-width: 50%;
  font-size: 1.4rem;
  padding: 1.5em 1em;
}
section .btn-area .btn-cta-outline:hover {
  background-color: rgba(186, 185, 217, 0.1);
  border-color: #6b4a8c;
  color: #6b4a8c;
  transform: translateY(-2px);
}

/* 汎用スタイル
======================================================= */
.text_dark-violet {
  color: #3b2559;
}

.text_light-violet1 {
  color: #bab9d9;
}

.text_light-violet2 {
  color: #9a8fbf;
}

.text_violet {
  color: #6b4a8c;
}

.bg_violet {
  background-color: #6b4a8c;
}

.bg_dark-violet {
  background-color: #3b2559;
}

.bg-light-violet {
  background-color: #bab9d9;
}

.align-indent {
  text-indent: -1em;
  margin-left: 1em;
}

.mt-1em {
  margin-top: 1em;
}

.mb-1em {
  margin-bottom: 1em;
}

.fit-content-l {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

/*角丸タグ*/
.session_tag {
  color: #fff;
  font-size: 0.8em;
  line-height: 1.6;
  display: inline-block;
  padding: 0.1em 0.5em;
  border-radius: 4px;
}
.session_tag.red {
  background-color: #c21c29;
}
.session_tag.blue {
  background-color: #0068b7;
}
.session_tag.yellow {
  background-color: #ffdc00;
  color: #000;
}
.session_tag.green {
  background-color: #00885a;
}
.session_tag.violet {
  background-color: #6b4a8c;
}
.session_tag.pink {
  background-color: #ff6f7a;
  color: #000;
}
.session_tag.gray {
  background-color: #8e8e8e;
}
.session_tag.orange {
  background-color: #f39800;
}
.session_tag.border {
  border: 1px solid #4a4a4a;
  color: #4a4a4a;
}
.session_tag.border-red {
  border: 1px solid #c21c29;
  color: #c21c29;
}

/* text */
.texts {
  font-size: 0.85em;
}

.textn {
  font-size: 1em;
}

.textl {
  font-size: 1.24em;
}

/*個別スタイル
======================================================= */
header {
  height: 68px;
}
header img.logo-image {
  height: 48px;
  margin-left: 64px;
}
header a.nav-link.hover-link {
  color: #fff;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}
header a.nav-link.hover-link:hover {
  color: #bab9d9;
  transform: translateY(-2px);
}
header a.nav-link.hover-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #bab9d9;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
header a.nav-link.hover-link:hover::after {
  width: 80%;
}
header a.nav-link.btn {
  color: #3b2559;
  border: 1px solid #bab9d9;
  background-color: #bab9d9;
}
header a.nav-link.btn:hover {
  color: #fff;
  background-color: initial;
  border: 1px solid #fff;
  transform: none !important;
}

/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -360px;
  bottom: 0;
  width: 360px;
  background: #3b2559;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 9999;
  opacity: 0;
}
nav .inner {
  padding: 68px 0 0;
  width: 100%;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  color: #fff;
  padding: 0 24px;
}
nav .inner ul li:hover {
  background: #6b4a8c;
}
nav .inner ul li a {
  display: block;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  padding: 1em 0;
  transition-duration: 0.2s;
}

.open nav {
  left: 0;
  opacity: 1;
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all 0.5s;
  z-index: 9998;
  cursor: pointer;
  display: none;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 11, 32, 0.9);
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 16px;
  left: 20px;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 10000;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}

.toggle_btn span:nth-child(2) {
  top: 14px;
}

.toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.open .toggle_btn {
  left: 330px;
  transform: rotate(360deg);
}

.open .toggle_btn span {
  background-color: #fff;
}

.open .toggle_btn span:nth-child(1),
.open .toggle_btn span:nth-child(3) {
  width: 16px;
}

.open .toggle_btn span:nth-child(1) {
  transform: translate(-1px, 4px) rotate(-45deg);
}

.open .toggle_btn span:nth-child(3) {
  transform: translate(-1px, -4px) rotate(45deg);
}

/*============
  KeyVisual
=============*/
.header-image {
  margin-top: 68px;
  background: url("../images/header_bg.jpg") no-repeat center/cover;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-image p {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/*============
  Our Mission
=============*/
#ourmission div.box-value {
  border: 1px solid #9a8fbf;
  border-radius: 16px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0px 4px 8px 0px #c8c8c8;
}
#ourmission div.box-value h3 {
  font-weight: bold;
  text-align: center;
}
#ourmission div.box-value .aligned-title {
  min-height: 4rem; /* 1.5rem * 2行 + α */
  display: flex;
  align-items: center;
  justify-content: center;
}
#ourmission div.box-value .icon-box {
  width: 100%;
  height: 72px;
  margin: 0 auto 1rem;
  color: #9a8fbf; /*icon color*/
}
#ourmission div.box-value .icon-box svg {
  text-align: center;
}

/*============
  activity
=============*/
#activity div.box-activity {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0px 4px 8px 0px #c8c8c8;
  transition: transform 0.3s ease;
}
#activity div.box-activity:hover {
  transform: translateY(-5px);
  border-color: #9a8fbf;
}
#activity div.box-activity .feature-icon {
  width: 100%;
  height: 72px;
}
#activity div.box-activity .feature-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#activity div.box-activity p.fs-3 {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  min-height: 4.8em;
}
#activity div.box-activity p.fs-3 a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
#activity div.box-activity p.fs-3 span.fs-5 {
  display: block;
}
#activity .modal-content {
  border-radius: 12px;
  border: 1px solid #c8c8c8;
}
#activity .modal-header h5 {
  font-size: 20px;
  font-size: 2rem;
}
#activity .modal-header {
  padding: 2.4rem 3rem;
  background-color: #fff;
  border-radius: 12px 12px 0 0;
}
#activity .modal-body {
  padding: 2.4rem;
  border-radius: 0 0 12px 12px;
}

.full-width {
  background-color: #6b4a8c;
  color: white;
  padding: 40px 0;
}
.full-width .inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.full-width .bar-item {
  flex: 1;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  text-decoration: none;
  color: white;
  position: relative;
}
.full-width .bar-item > span {
  position: relative;
  display: inline-block;
}
.full-width .bar-item > span::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0%;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.full-width .bar-item:hover {
  color: #fff;
}
.full-width .bar-item:hover span::before {
  transform: scaleX(1);
}
.full-width {
  /* 縦線の擬似要素 */
}
.full-width .bar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.4);
}

/* =======================================================
     activity > #program2026 modal
======================================================= */
#program2026 .modal-dialog {
  max-width: 1000px;
}
#program2026 .modal-content {
  border: none;
  border-radius: 12px;
  background-color: #f4f7f9;
}
#program2026 .modal-header {
  border-bottom: 2px solid #bab9d9;
  padding: 2.5rem 3rem;
  background-color: #fff;
  border-radius: 12px 12px 0 0;
}
#program2026 .modal-header .modal-title {
  font-weight: 700;
  color: #3b2559;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
#program2026 .modal-body {
  padding: 3rem;
}
#program2026 .program-card {
  background: #fff;
  border: 1px solid #dce4e9;
  border-radius: 12px;
  padding: 2.4rem;
  height: 100%;
  display: flex;
  gap: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
#program2026 .program-card:hover {
  transform: translateY(-3px);
  border-color: #9a8fbf;
}
#program2026 .program-card .icon-area {
  flex-shrink: 0;
  font-size: 3.2rem;
  color: #6b4a8c;
  line-height: 1;
}
#program2026 .program-card .text-area h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e1e1e;
  line-height: 1.4;
}
#program2026 .program-card .text-area p {
  font-size: 1.4rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}
#program2026 .program-card .text-area .schedule-date {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: #6b4a8c;
  font-weight: 600;
}

/*============
  Advisor's
=============*/
#advisor div .col:nth-child(n+2) {
  margin-top: 2.4rem;
}
#advisor .advisor-card {
  border: none;
  background: transparent;
  text-align: center;
}
#advisor {
  /* 1. 写真の大きさを共通化（円形トリミング & ホバー演出） */
}
#advisor .advisor-img-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: #e0e0e0;
  transition: transform 0.3s ease;
}
#advisor .advisor-img-wrapper:hover {
  transform: scale(1.05);
}
#advisor .advisor-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 0;
     object-position: center 0;
}
#advisor {
  /* hover */
  /* modal icon hover	*/
}
#advisor .advisor-img-wrapper .btn__img-plus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(59, 37, 89, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
}
#advisor .advisor-img-wrapper:hover .btn__img-plus {
  opacity: 1;
}
#advisor {
  /* 2. コメント部分の高さを揃える
  .advisor-comment {
  	font-size: 1.2rem;
  	color: $darkgray;
  	margin-bottom: 16px;
  	min-height: 5.4rem; //コメント文字数によって調整
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	padding: 0 10px;
  }
  */
  /* 3. 名前 */
}
#advisor .advisor-name {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 0.5em;
}
#advisor .advisor-name span {
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 0.5em;
}
#advisor {
  /* 4. 肩書部分の高さを揃える */
}
#advisor .advisor-position {
  font-size: 1.2rem;
  color: #4a4a4a;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1em;
}
#advisor {
  /* ---------------------------------------------------- */
  /* モーダル内スタイル */
  /* ---------------------------------------------------- */
}
#advisor .modal-content {
  border: 0;
  border-radius: 8px;
}
#advisor .modal-content .modal-header,
#advisor .modal-content .modal-body {
  padding: 2rem 2.4rem;
}
#advisor .modal-content .modal-backdrop.show {
  opacity: 0.8;
}
#advisor .modal-content .modal-header {
  position: relative;
  padding: 1.6rem 1rem 1rem 1.6rem;
}
#advisor .modal-content .modal-header .modal-title .name span {
  font-size: 2.2rem;
}
#advisor .modal-content .modal-header button.btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2rem;
}
#advisor .modal-content .modal-body {
  padding: 1rem 1.6rem;
  line-height: 1.8;
}
#advisor .modal-content .modal-footer {
  padding: 1rem 1.6rem 1.6rem;
}
#advisor .modal-content .modal-footer .cdo-comment h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
#advisor .modal-content .modal-footer .cdo-comment iframe {
  aspect-ratio: 16/9;
  height: 360px;
}
#advisor .modal-content .modal-title p {
  margin-bottom: 0;
}
#advisor .modal-content .modal-title p .name span {
  font-size: 1.6rem;
  margin-top: 4px;
}
#advisor .modal-content .modal-title .name span {
  font-weight: bold;
}

/*============
  Members' voices
=============*/
#voice iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/*============
  会員プラン
=============*/
#membersip-fee .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#membersip-fee .card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#membersip-fee .card .card-body > * {
  align-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 320px;
}
#membersip-fee .card .card-body .custom-check-list {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
#membersip-fee .custom-check-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
#membersip-fee .custom-check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  color: #1e1e1e;
}
#membersip-fee .custom-check-list li::before {
  content: "\f584";
  font-family: "bootstrap-icons" !important;
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #8e8e8e;
  font-size: 1em;
}
#membersip-fee .custom-check-list li::after {
  content: "\f26e";
  font-family: "bootstrap-icons" !important;
  position: absolute;
  left: -0.05em;
  top: -0.05em;
  color: #6b4a8c;
  font-size: 1.1em;
  font-weight: bold;
}
#membersip-fee .btn-area {
  margin: 24px auto 0;
}

/*============
  footer
=============*/
section#footer {
  background-color: #3b2559;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 80px 0;
  margin-bottom: 0;
}
section#footer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 540px;
  height: 540px;
  background: #6b4a8c;
  opacity: 0.4;
  border-radius: 50%;
  z-index: 1;
}
section#footer .inner {
  position: relative;
  z-index: 2;
}
section#footer .footer-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 3.5rem;
}
section#footer .btn-cta-fill {
  background-color: #9a8fbf;
  border: none;
  color: #fff;
  padding: 14px 32px;
  font-size: 2rem;
  font-weight: 500;
  min-width: 280px;
  width: auto;
  transition: 0.3s;
}
section#footer .btn-cta-fill:hover {
  background-color: #bab9d9;
  color: #3b2559;
  transform: translateY(-2px);
}
section#footer .btn-cta-outline-white {
  border: 1px solid #9a8fbf;
  color: #fff;
  padding: 14px 32px;
  font-size: 2rem;
  font-weight: 500;
  min-width: 280px;
  width: auto;
  transition: 0.3s;
}
section#footer .btn-cta-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

section#footer_nav {
  margin-top: 0 !important;
  background-color: #3b2559;
  padding: 60px 0;
}
section#footer_nav .foot_nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
section#footer_nav .foot_nav ul li {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
section#footer_nav .foot_nav ul li a {
  color: #bab9d9;
  text-decoration: none;
  padding: 0 15px;
  transition: 0.3s;
}
section#footer_nav .foot_nav ul li a:hover {
  text-decoration: underline;
  color: #fff;
}
section#footer_nav .foot_nav ul li:not(:last-child)::after {
  content: "|";
  color: #9a8fbf;
  font-size: 1.2rem;
}
section#footer_nav .foot_nav .p-mark-area {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 30px;
}
section#footer_nav .foot_nav .p-mark-area .p-mark-img {
  flex-shrink: 0;
}
section#footer_nav .foot_nav .p-mark-area .p-mark-img img {
  width: 64px;
  height: auto;
}
section#footer_nav .foot_nav .p-mark-area .p-mark-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
  text-align: left;
}

footer {
  background-color: #1a0b20;
  padding: 20px 0;
  text-align: center;
}
footer .copyright {
  margin: 0;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.05em;
}

/*============
  Premium Plan
=============*/
#premiumplan .section-title {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #1e1e1e;
  font-weight: 700;
  margin-bottom: 30px;
  border-left: 6px solid #6b4a8c;
  padding-left: 15px;
}
#premiumplan {
  /* 契約条件の帯 */
}
#premiumplan .info-bar-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
#premiumplan .info-bar {
  flex: 1;
  background-color: var(--light-blue);
  border-radius: 4px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
}
#premiumplan .info-bar i {
  font-size: 1.5em;
  color: #6b4a8c;
  margin-right: 0.5em;
}
#premiumplan .info-bar .material-icons-outlined {
  color: var(--main-blue);
  margin-right: 10px;
  font-size: 20px;
}
#premiumplan .content-block {
  display: flex;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  overflow: visible;
  box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.25);
  margin: 24px 24px 32px;
  position: relative;
}
#premiumplan .content-block.option .option-text {
  color: #bab9d9;
  margin-top: 16px;
}
#premiumplan .block-label {
  width: 200px;
  position: relative;
  padding: 40px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#premiumplan .block-label .label-text {
  font-size: 15px;
  margin-bottom: 15px;
}
#premiumplan .block-label .price-main {
  font-size: 32px;
  font-weight: 700;
  margin-top: 16px;
  color: #9a8fbf;
}
#premiumplan .block-label .price-unit {
  font-size: 14px;
  font-weight: 400;
  margin-left: 5px;
}
#premiumplan .block-label .option-label {
  font-size: 28px;
}
#premiumplan .block-label .ribbon-tag {
  position: absolute;
  top: 20px;
  left: -10px; /* 左側に少しはみ出す */
  background: #9a8fbf;
  color: #fff;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 700;
  z-index: 1;
  border-radius: 0 8px 8px 0;
  width: 12em;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
#premiumplan .block-label .ribbon-tag::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  border-top: 10px solid #3b2559;
  border-left: 10px solid transparent;
}
#premiumplan .block-label .ribbon-tag.option {
  background-color: #bab9d9;
}
#premiumplan .block-label .ribbon-tag.option::before {
  border-top: 10px solid #6b4a8c;
}
#premiumplan .block-body {
  flex: 1;
  padding: 30px 40px;
  background-color: #fff;
}
#premiumplan {
  /* リストスタイル */
}
#premiumplan .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#premiumplan .service-item {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
}
#premiumplan .service-item i {
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 20px;
}
#premiumplan .service-item:last-child {
  margin-bottom: 0;
}
#premiumplan .service-name {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}
#premiumplan .service-note {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
  display: inline;
  font-weight: 500;
  padding-left: 1em;
}
#premiumplan .premium-hero-title {
  background-color: #3b2559;
  border-radius: 12px;
  padding: 40px 20px;
  border: 1px solid #3b2559;
  color: #fff !important;
  background: url("../images/backgroundimage_p001.png") no-repeat right bottom/contain #3b2559;
}
#premiumplan .premium-hero-title h2 {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
}
#premiumplan .premium-hero-title .premium-hero-text {
  font-size: 1.6rem;
  line-height: 1.8;
}
#premiumplan .price-overview-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
}
#premiumplan .price-overview-box i {
  color: #9a8fbf;
  font-size: 4.8rem;
}
#premiumplan .price-display .price-value {
  font-size: 4.8rem;
  line-height: 1;
}
#premiumplan .price-display-dark {
  background-color: #3b2559;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 16px;
}
#premiumplan .price-display-dark .price-value-white {
  font-size: 6.4rem;
  color: #fff;
  line-height: 1;
  font-weight: 900;
}
#premiumplan .feature-divider-group .feature-item {
  text-align: center;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#premiumplan .feature-divider-group .feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background-color: #c8c8c8;
}
#premiumplan .feature-divider-group .feature-item .feature-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 8px;
}
#premiumplan .feature-divider-group .feature-item p {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0;
  color: #1e1e1e;
}
#premiumplan .feature-divider-group .feature-item p span.text-muted {
  font-size: 1.2rem;
}
#premiumplan .section-title-left {
  font-size: 2.2rem;
  color: #3b2559;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-left: 4px solid #6b4a8c;
  padding-left: 12px;
  text-align: left;
}
#premiumplan .reason-card {
  height: 100%;
  border: 0;
  border-radius: 10px;
  background-color: #fff;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
#premiumplan .reason-card .card-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 16px;
}
#premiumplan .reason-card .card-icon .icon-box {
  width: 100%;
  height: 100px;
  color: #9a8fbf;
}
#premiumplan .reason-card h4 {
  font-weight: 700;
  font-size: 1.7rem;
  color: #1e1e1e;
  margin-bottom: 8px;
}
#premiumplan .reason-card p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4a4a4a;
}
#premiumplan .opportunity-card {
  padding: 16px;
  height: 100%;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #c8c8c8;
}
#premiumplan .opportunity-card .feature-icon {
  width: 120px;
  height: 120px;
}
#premiumplan .opportunity-card .feature-icon img {
  width: auto;
  height: 100%;
}
#premiumplan .opportunity-card h5 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #1e1e1e;
  border-bottom: 1px dotted #c8c8c8;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
#premiumplan .opportunity-card p {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #4a4a4a;
}
#premiumplan .recommend-container {
  margin-top: 30px;
}
#premiumplan .recommend-layout {
  display: flex;
  align-items: stretch;
  gap: 30px;
  margin-bottom: 40px;
  background: url("../images/backgroundimage_p002.png") no-repeat right center/contain;
}
#premiumplan .recommend-layout .check-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#premiumplan .recommend-layout .check-list li {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
#premiumplan .recommend-layout .check-list li:last-child {
  margin-bottom: 0;
}
#premiumplan .recommend-layout .check-list li i {
  color: #6b4a8c;
  font-size: 2rem;
  margin-right: 15px;
  flex-shrink: 0;
}
#premiumplan .features-three-col {
  background-color: rgba(186, 185, 217, 0.25);
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 40px;
  margin-bottom: 50px;
}
#premiumplan .features-three-col .info-item {
  display: flex;
  align-items: center;
  padding: 30px 40px;
  position: relative;
  height: 100%;
}
#premiumplan .features-three-col .info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background-color: rgba(59, 37, 89, 0.16);
}
#premiumplan .features-three-col .info-item i {
  font-size: 4.8rem;
  color: #3b2559;
  line-height: 1;
  margin-right: 20px;
  flex-shrink: 0;
}
#premiumplan .features-three-col .info-item .info-content {
  text-align: left;
}
#premiumplan .features-three-col .info-item .info-content h5 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3b2559;
  margin-bottom: 8px;
}
#premiumplan .features-three-col .info-item .info-content p {
  font-size: 1.35rem;
  line-height: 1.6;
  color: #1e1e1e;
  margin: 0;
}
#premiumplan .cta-container {
  text-align: center;
  border-radius: 12px;
  margin-top: 50px;
}
#premiumplan .cta-container .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
#premiumplan .cta-container .cta-buttons .btn {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
#premiumplan .cta-container .cta-buttons .btn i {
  font-size: 1.2rem;
  margin-left: 10px;
}
#premiumplan .cta-container .cta-buttons .btn.btn-primary {
  background-color: #6b4a8c;
  border-color: #6b4a8c;
  color: #fff;
}
#premiumplan .cta-container .cta-buttons .btn.btn-primary:hover {
  background-color: #3b2559;
  border-color: #3b2559;
}
#premiumplan .cta-container .cta-buttons .btn.btn-secondary {
  background-color: #fff;
  border: 1px solid #6b4a8c;
  color: #6b4a8c;
}
#premiumplan .cta-container .cta-buttons .btn.btn-secondary:hover {
  background-color: #fdfbfe;
  color: #3b2559;
}
#premiumplan .cta-container .cta-note {
  font-size: 1.3rem;
  color: #4a4a4a;
  margin: 0;
}

/*============
  termsofservice
=============*/
#termsofservice .section-title {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #1e1e1e;
  font-weight: 700;
  margin-bottom: 30px;
  border-left: 6px solid #6b4a8c;
  padding-left: 15px;
}

/* =======================================================
     PC設定ここから
======================================================= */
@media (992 <= width) {
  /*  全体・共通設定
  ======================================================= */
  .d-none-l {
    display: none;
  }
  .w-lg-auto {
    width: auto !important;
  }
  /*  個別スタイル
  ======================================================= */
  /*============
    header
  =============*/
  /*============
    nav
  =============*/
  #navArea nav {
    position: fixed;
    top: 0;
    left: -100%; /* 最初は左に隠す */
    width: 80%;
    height: 100%;
    background: #3b2559;
    transition: all 0.5s; /* スライドのアニメーション */
    z-index: 9999;
    opacity: 1 !important; /* 透明度で見えなくなるのを防ぐ */
    display: block !important;
  }
  #navArea {
    /* openクラスがついた時 */
  }
  #navArea.open nav {
    left: 0; /* 画面内にスライドイン */
  }
  #navArea.open #mask {
    display: block !important;
    opacity: 1;
  }
  #navArea.open {
    /* ハンバーガーを×にする */
  }
  #navArea.open .toggle_btn span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  #navArea.open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  #navArea.open .toggle_btn span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
  }
  #mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    cursor: pointer;
  }
}
/* =======================================================
     タブレット設定ここから (Medium-md- ～ Large - lg)
======================================================= */
@media (768px <= width < 992px) {
  /*  全体・共通設定
  ======================================================= */
  .d-none-s {
    display: none;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .inner {
    padding: 0 24px;
    width: 100%;
    max-width: 100vw;
    margin: 0;
  }
  section {
    padding-top: 40px;
    margin-bottom: 40px;
  }
  section h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  section .btn-area .btn:first-child {
    margin-bottom: 0;
  }
  /*  個別スタイル
  ======================================================= */
  /*============
    header
  =============*/
  /*============
    nav
  =============*/
  #navArea nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: #3b2559;
    transition: all 0.4s;
    z-index: 999;
    overflow-y: auto;
    padding-top: 60px;
    opacity: 1 !important;
  }
  #navArea nav ul {
    flex-direction: column;
  }
  #navArea nav ul li a {
    color: #fff;
    text-align: center;
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(26, 11, 32, 0.1);
  }
  #navArea.open nav {
    left: 0;
    width: 50vw;
  }
  #navArea.open #mask {
    display: block;
    opacity: 1;
  }
  #navArea.open .toggle_btn span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  #navArea.open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  #navArea.open .toggle_btn span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
  }
  #mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    cursor: pointer;
    transition: opacity 0.4s;
  }
  header img.logo-image {
    height: 40px;
    margin: 0 auto;
  }
  /*============
    activity
  =============*/
  #ourmission h3.card-title {
    font-size: calc(1.6rem + 0.6vw);
  }
  .full-width {
    padding: 0;
  }
  .full-width .bar-item {
    width: 100%;
    text-align: center;
    padding: 16px;
  }
  .full-width .bar-item:not(:last-child)::after {
    right: 16px;
    left: 16px;
    bottom: 0;
    top: auto;
    width: calc(100% - 32px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }
  /*============
    advisor
  =============*/
  /* ---------------------------------------------------- */
  /* モーダル内のカスタムスタイル */
  /* ---------------------------------------------------- */
  #advisor .advisor-img-wrapper {
    width: 150px;
    height: 150px;
  }
  #advisor {
    /*
    .advisor-comment {
    	min-height: auto;
    	margin-bottom: 10px;
    }
    */
  }
  #advisor .advisor-position {
    min-height: auto;
  }
  /*============
    footer
  =============*/
  section#footer {
    padding: 40px 0;
  }
  section#footer::before {
    width: 128vw;
    height: 128vw;
  }
  section#footer_nav {
    padding: 0 0 32px;
  }
  section#footer_nav .foot_nav ul {
    flex-direction: column;
  }
  section#footer_nav .foot_nav ul li {
    font-size: 1.2rem;
    justify-content: center;
    margin-bottom: 10px;
  }
  section#footer_nav .foot_nav ul li::after {
    display: none;
  }
  section#footer_nav .foot_nav .p-mark-area {
    text-align: center;
    gap: 16px;
  }
  section#footer_nav .foot_nav .p-mark-area .p-mark-text {
    font-size: 1rem;
  }
  footer .copyright {
    white-space: nowrap;
    font-size: 2.9vw;
  }
  .copyright {
    font-size: clamp(10px, 2.9vw, 14px);
  }
}
/* =======================================================
     スマホ設定ここから (Small -sm ～ Medium - md)
======================================================= */
@media (max-width: 767px) {
  /*  全体・共通設定
  ======================================================= */
  body {
    padding-bottom: 80px !important;
  }
  .d-none-s {
    display: none;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .inner {
    padding: 0 24px;
    width: 100%;
    max-width: 100vw;
    margin: 0;
  }
  section {
    padding-top: 40px;
    margin-bottom: 40px;
  }
  section h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  /*  個別スタイル
  ======================================================= */
  /*============
    header
  =============*/
  /*============
    nav
  =============*/
  #navArea nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: #3b2559;
    transition: all 0.4s;
    z-index: 999;
    overflow-y: auto;
    padding-top: 60px;
    opacity: 1 !important;
  }
  #navArea nav ul {
    flex-direction: column;
  }
  #navArea nav ul li a {
    color: #fff;
    text-align: center;
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(26, 11, 32, 0.1);
  }
  #navArea.open nav {
    left: 0;
    width: 100vw;
  }
  #navArea.open #mask {
    display: block;
    opacity: 1;
  }
  #navArea.open .toggle_btn span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  #navArea.open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  #navArea.open .toggle_btn span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
  }
  #mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    cursor: pointer;
    transition: opacity 0.4s;
  }
  header img.logo-image {
    height: 40px;
    margin: 0 auto;
  }
  /*============
    OurMission 
  =============*/
  #ourmission h3.card-title {
    font-size: calc(1.6rem + 0.6vw);
  }
  /*============
    activity
  =============*/
  .full-width {
    padding: 0;
  }
  .full-width .bar-item {
    width: 100%;
    text-align: center;
    padding: 16px;
  }
  .full-width .bar-item:not(:last-child)::after {
    right: 16px;
    left: 16px;
    bottom: 0;
    top: auto;
    width: calc(100% - 32px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }
  /*============
    advisor
  =============*/
  /* ---------------------------------------------------- */
  /* モーダル内のカスタムスタイル */
  /* ---------------------------------------------------- */
  #advisor .advisor-img-wrapper {
    width: 150px;
    height: 150px;
  }
  #advisor {
    /*
    .advisor-comment {
    	min-height: auto;
    	margin-bottom: 10px;
    }
    */
  }
  #advisor .advisor-position {
    min-height: auto;
  }
  #advisor .modal-content .modal-footer .cdo-comment h3 {
    white-space: nowrap;
    padding: 0 1vw;
    font-size: 5.2vw;
    margin-bottom: 0.75em;
  }
  #advisor .modal-content .modal-footer .cdo-comment iframe {
    aspect-ratio: 16/9;
    height: initial;
  }
  /*============
    footer
  =============*/
  section#footer {
    padding: 40px 0;
  }
  section#footer::before {
    width: 128vw;
    height: 128vw;
  }
  section#footer_nav {
    padding: 0 0 32px;
  }
  section#footer_nav .foot_nav ul {
    flex-direction: column;
  }
  section#footer_nav .foot_nav ul li {
    font-size: 1.2rem;
    justify-content: center;
    margin-bottom: 10px;
  }
  section#footer_nav .foot_nav ul li::after {
    display: none;
  }
  section#footer_nav .foot_nav .p-mark-area {
    text-align: center;
    gap: 16px;
  }
  section#footer_nav .foot_nav .p-mark-area .p-mark-text {
    font-size: 1rem;
  }
  footer .copyright {
    white-space: nowrap;
    font-size: 2.9vw;
  }
  .copyright {
    font-size: clamp(10px, 2.9vw, 14px);
  }
  /*============
    Terms of Service
  =============*/
  section#termsofservice {
    padding-top: 80px;
  }
  /*============
    Premium Plan
  =============*/
  #premiumplan .info-bar-wrapper {
    flex-direction: column;
  }
  #premiumplan .content-block {
    flex-direction: column;
  }
  #premiumplan .block-label {
    width: auto;
    padding: 50px 20px 20px;
  }
  #premiumplan .ribbon-tag {
    left: 10px;
  }
  #premiumplan .ribbon-tag::before {
    display: none;
  }
  #premiumplan .block-body {
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
  #premiumplan .premium-hero-title {
    font-size: 2.2rem;
    background-size: cover;
    margin-top: 64px;
  }
  #premiumplan .premium-hero-text {
    font-size: 1.4rem;
  }
  #premiumplan .price-display .price-value {
    font-size: 5rem;
  }
  #premiumplan .recommend-layout {
    flex-direction: column;
    background: none;
  }
  #premiumplan .features-three-col {
    padding: 10px 0;
    margin-bottom: 0;
  }
  #premiumplan .features-three-col .info-item {
    padding: 24px 20px;
  }
  #premiumplan .features-three-col .info-item:not(:last-child)::after {
    display: none;
  }
  #premiumplan .features-three-col .info-item:not(:last-child) {
    border-bottom: 1px solid rgba(59, 37, 89, 0.15);
  }
  #premiumplan .features-three-col .info-item i {
    font-size: 3rem;
    margin-right: 15px;
  }
  #premiumplan .features-three-col .info-item .info-content h5 {
    font-size: 1.5rem;
  }
  #premiumplan .cta-container .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  #premiumplan .cta-container .cta-buttons .btn {
    width: 100%;
    max-width: 400px;
  }
}/*# sourceMappingURL=style.css.map */