@charset "UTF-8";

/* ==========================================================================
   Fund LP Custom Styles
   ========================================================================== */

/* Main Container reset */
main {
  display: block;
  width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
}

/* LP Container for centering and fixed margins/padding as requested */
.lp-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

/* PC layout (769px and above): Content width 980px with 24px padding on both sides */
@media (min-width: 769px) {
  .lp-container {
    max-width: calc(980px + 24px + 24px);
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* SP layout (768px and below): responsive with 16px padding on both sides */
@media (max-width: 768px) {
  .lp-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* Sections inside main - Scoped to avoid breaking header/footer layouts */
main section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 56px 0; /* Add generous spacing between sections */
  padding: 0;
  border: none;
  box-sizing: border-box;
}

main section:last-of-type {
  margin-bottom: 0;
}

/* Header warning image margin override to connect with the fund name banner */
main #sec01 {
  margin-bottom: 0 !important;
}

/* Picture & Img styles for seamless flow, scoped inside main */
main picture {
  display: block;
  width: 100%;
  max-width: 1960px;
  margin: 0 auto;
}

main picture img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  border: none;
}

/* 2-Column Section ( 特徴 1, 2 / ShigenSovereignFund_03 and 04 ) */
main .section-cols {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1960px;
  margin: 0 auto;
  gap: 32px; /* Grid gap for a clean layout */
}

main .section-cols .col {
  flex: 1;
  width: 50%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .section-cols .col picture {
  max-width: 980px; /* half of 1960 */
}

/* Responsive adjustment for columns & breakpoint (769px) */
@media (max-width: 768px) {
  main .section-cols {
    flex-direction: column;
    gap: 40px;
  }
  
  main .section-cols .col {
    width: 100%;
  }
  
  main .section-cols .col picture {
    max-width: 780px; /* mobile width */
  }
}

/* Disclaimer section styling */
main .disclaimer-section {
  background-color: #f5f7fa; /* Matches --ui-common-background-2-default color */
  padding: 48px 16px;
  border-top: 1px solid #c3cddb;
  box-sizing: border-box;
}

main .disclaimer-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  color: #050f1a; /* matches --ui-common-main-text-default */
  font-family: inherit;
  text-align: left;
}

main .disclaimer-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 16px;
}

main .disclaimer-text {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

main .disclaimer-text-small {
  font-size: 1.2rem;
  color: #050f1a99; /* matches --ui-common-sub-text-default */
  line-height: 1.5;
}


/* ==========================================================================
   Fund Name Connected Banner Styles (Background: #595959, White Text)
   ========================================================================== */
main .fund-name-banner {
  background-color: #595959; /* Gray background */
  color: #ffffff; /* White text */
  text-align: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 40px auto; /* Connected to warning header above, spacing below */
  padding: 40px 24px;
  /*border-radius: 0 0 12px 12px;  Seamless bottom rounding */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

main .category-tag {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15); /* Translucent accent */
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-align: center;
}

main .main-title {
  font-size: 2.8rem;
  color: #ffffff !important;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   Page Introduction Section Styles
   ========================================================================== */
main .intro-section {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 56px auto;
  text-align: center;
}

main .intro-paragraph {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
  max-width: 840px;
  margin: 0 auto 32px auto;
  text-align: center;
}

/* ==========================================================================
   Interactive Centered Buttons (Background: #8D3134)
   ========================================================================== */
main .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8D3134; /* Wine red color */
  color: #ffffff !important; /* White text */
  font-size: 1.6rem;
  font-weight: bold;
  padding: 16px 44px;
  border-radius: 30px;
  box-shadow: 0 6px 16px rgba(141, 49, 52, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  margin: 0 auto;
}

main .hero-btn:hover {
  background-color: #732124; /* Darker wine red on hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(141, 49, 52, 0.35);
}

main .inline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8D3134; /* Wine red color */
  color: #ffffff !important; /* White text */
  font-size: 1.6rem;
  font-weight: bold;
  padding: 14px 44px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(141, 49, 52, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  margin: 16px auto 0 auto;
}

main .inline-btn:hover {
  background-color: #732124; /* Darker wine red on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(141, 49, 52, 0.3);
}


/* ==========================================================================
   3 Points Section with Full-Width Wine Red Bar (Left-Aligned Text)
   ========================================================================== */
main .points-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 32px auto 48px auto;
  text-align: left;
}

main .points-heading {
  font-size: 2rem;
  color: #ffffff !important; /* White text */
  background-color: #8D3134; /* Wine red background */
  font-weight: bold;
  padding: 14px 24px;
  /* border-radius: 6px; */
  margin-bottom: 32px;
  text-align: left; /* Left aligned text */
  width: 100%; /* Stretch full content width */
  display: block;
  box-shadow: 0 4px 12px rgba(141, 49, 52, 0.15);
  box-sizing: border-box;
}

main .points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

main .point-card {
  background-color: #8D3134; /* Wine red background */
  color: #ffffff !important; /* White text */
  border: none;
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: 0 6px 18px rgba(141, 49, 52, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

main .point-num {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 16px;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.15);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

main .point-card h3 {
  font-size: 1.6rem;
  color: #ffffff !important;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: center;
}

main .point-card p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  main .points-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  main .point-card {
    padding: 24px 16px;
  }
}


/* ==========================================================================
   Section Title Full-Width Wine Red Bar (Left-Aligned Text)
   ========================================================================== */
main .section-header {
  text-align: left; /* Left aligned container */
  margin-bottom: 24px;
  width: 100%;
}

main .section-label {
  display: none; /* Point labels integrated into the title bar, hide separate label */
}

main .section-header h2 {
  font-size: 2rem;
  color: #ffffff !important; /* White text */
  background-color: #8D3134; /* Wine red background */
  font-weight: bold;
  padding: 14px 24px;
  /* border-radius: 8px; */
  margin: 0;
  text-align: left; /* Left aligned text */
  line-height: 1.4;
  display: block;
  width: 100%; /* Stretch full content width */
  box-shadow: 0 4px 12px rgba(141, 49, 52, 0.15);
  box-sizing: border-box;
}

main .section-paragraph {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
  max-width: 980px;
  margin: 0 auto 32px auto;
  text-align: center; /* Centering section descriptions */
}


/* ==========================================================================
   Image Titles & Captions Centering (Black Text)
   ========================================================================== */
main .chart-block-container {
  width: 100%;
  max-width: 980px;
  margin: 32px auto 0 auto;
  text-align: center; /* Center images and text inside containers */
  box-sizing: border-box;
}

main .chart-block-container.card-shadow {
  background-color: #ffffff;
  border: 1px solid #eaf0f6;
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

main .chart-title {
  font-size: 1.8rem;
  color: #000000 !important; /* Black text */
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
}

main .chart-title .date-text {
  font-size: 1.4rem;
  font-weight: normal;
  color: #5c687a;
  display: inline-block;
  margin-left: 8px;
}

main .col-header {
  text-align: center;
  margin-bottom: 16px;
  width: 100%;
}

main .col-header h3 {
  font-size: 1.6rem;
  color: #000000 !important; /* Black text */
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 6px;
  text-align: center;
}

main .col-header .subtext {
  font-size: 1.2rem;
  color: #5c687a;
  display: block;
}


/* ==========================================================================
   Definition Blocks, Lists & Notes
   ========================================================================== */
main .definition-block {
  text-align: left; /* Keep left alignment for definition lists */
  max-width: 800px;
  margin: 24px auto;
  padding: 20px 24px;
  background-color: #f5f7fa;
  border-radius: 8px;
  box-sizing: border-box;
}

main .definition-block p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333333;
}

main .definition-block p:last-child {
  margin-bottom: 0;
}

main .definition-block strong {
  color: #8D3134; /* Wine red accent */
}

main .indices-source-block {
  text-align: left; /* Left align detailed lists for readability */
  max-width: 840px;
  margin: 32px auto 20px auto;
  border-top: 1px dashed #c3cddb;
  padding-top: 24px;
  box-sizing: border-box;
}

main .indices-source-block .source-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #8D3134; /* Wine red accent */
  margin-bottom: 12px;
}

main .indices-source-block ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 0;
}

main .indices-source-block ul li {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #5c687a;
  margin-bottom: 8px;
}

main .indices-source-block ul li:last-child {
  margin-bottom: 0;
}

main .note-block {
  text-align: left; /* Keep left aligned for footnotes */
  max-width: 840px;
  margin: 16px auto 0 auto;
  box-sizing: border-box;
}

main .note-block p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5c687a;
  margin: 0;
}


/* ==========================================================================
   Section 07-Video: YouTube Video styles
   ========================================================================== */
main .video-section-wrapper {
  background-color: #f5f7fa; /* Light gray background to give a clear division */
  padding: 56px 16px;
  width: 100%;
  box-sizing: border-box;
}

main .video-card {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

main .video-heading {
  font-size: 2rem;
  color: #ffffff !important; /* White text */
  background-color: #8D3134; /* Wine red background */
  font-weight: bold;
  padding: 14px 24px;
  border-radius: 6px;
  margin-top: 0;
  margin-bottom: 24px;
  text-align: left; /* Left aligned to match other title bars */
  display: block;
  width: 100%;
  box-shadow: 0 4px 12px rgba(141, 49, 52, 0.15);
  box-sizing: border-box;
}

main .video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #8D3134 0%, #a63d40 100%); /* Wine red theme gradient */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(141, 49, 52, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 24px;
}

main .video-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  z-index: 1;
}

main .video-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(141, 49, 52, 0.25);
}

main .video-play-btn {
  width: 68px;
  height: 68px;
  background-color: #ff0000; /* YouTube Red */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
  z-index: 2;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

main .video-thumbnail:hover .video-play-btn {
  transform: scale(1.1);
  background-color: #e60000;
}

main .play-icon {
  color: #ffffff;
  font-size: 2.2rem;
  margin-left: 4px; /* offset slightly for perfect center centering */
}

main .video-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 2;
  text-align: left;
}

main .video-subtext {
  font-size: 1.2rem;
  color: #5c687a; /* matches --ui-common-sub-text-default */
  margin-top: 16px;
  margin-bottom: 24px;
  text-align: center;
}

main .video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8D3134; /* Wine red color */
  color: #ffffff !important; /* White text */
  font-size: 1.6rem;
  font-weight: bold;
  padding: 14px 40px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(141, 49, 52, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

main .video-btn:hover {
  background-color: #732124;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(141, 49, 52, 0.3);
}

main .video-btn-arrow {
  margin-left: 8px;
  font-size: 1.2rem;
}


/* ==========================================================================
   Section 07-CTA: Call To Action styles
   ========================================================================== */
main .cta-section-wrapper {
  padding: 64px 16px;
  width: 100%;
  box-sizing: border-box;
}

main .cta-card {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 2px solid #8D3134; /* Wine red border */
  border-radius: 16px;
  padding: 40px 24px;
  box-shadow: 0 10px 30px rgba(141, 49, 52, 0.08);
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .cta-badge {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #8D3134; /* Wine red badge */
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

main .cta-title {
  font-size: 2.4rem;
  color: #8D3134; /* Wine red title */
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: center;
}

main .cta-subtitle {
  font-size: 1.8rem;
  color: #333333;
  font-weight: bold;
  margin-bottom: 36px;
  line-height: 1.4;
  text-align: center;
}

main .cta-btn-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  width: 100%;
  max-width: 640px;
}

main .cta-btn {
  flex: 1;
  max-width: 320px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

main .cta-btn:hover {
  transform: translateY(-2px);
}

main .cta-btn-details {
  background-color: #8D3134; /* Wine red background */
  color: #ffffff !important; /* White text */
  border: 2px solid #8D3134;
  box-shadow: 0 4px 14px rgba(141, 49, 52, 0.25);
  margin: 0 auto; /* Center single details button perfectly */
}

main .cta-btn-details:hover {
  background-color: #732124;
  box-shadow: 0 6px 18px rgba(141, 49, 52, 0.35);
}

main .cta-arrow {
  font-size: 1.2rem;
}

main .cta-subtext {
  font-size: 1.3rem;
  color: #5c687a;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}


/* ==========================================================================
   Responsive tweaks
   ========================================================================== */
@media (max-width: 768px) {
  main section {
    margin-bottom: 40px;
  }

  main .fund-name-banner {
    padding: 32px 16px;
  }
  
  main .main-title {
    font-size: 2rem;
  }
  
  main .intro-section {
    margin-bottom: 40px;
  }
  
  main .intro-paragraph {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
  
  main .hero-btn {
    font-size: 1.4rem;
    padding: 14px 28px;
  }
  
  main .inline-btn {
    font-size: 1.4rem;
    padding: 12px 28px;
  }
  
  main .points-heading {
    font-size: 1.6rem;
    padding: 12px 16px;
    margin-bottom: 20px;
  }
  
  main .section-header h2 {
    font-size: 1.6rem;
    padding: 12px 16px;
  }
  
  main .section-paragraph {
    font-size: 1.4rem;
  }
  
  main .chart-title {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }
  
  main .chart-block-container.card-shadow {
    padding: 20px 16px;
  }
  
  main .definition-block {
    padding: 16px;
  }
  
  main .indices-source-block {
    padding-top: 16px;
    margin-top: 20px;
  }
  
  main .video-section-wrapper {
    padding: 36px 16px;
  }
  
  main .video-heading {
    font-size: 1.6rem;
    padding: 12px 16px;
  }
  
  main .video-play-btn {
    width: 54px;
    height: 54px;
  }
  
  main .play-icon {
    font-size: 1.8rem;
  }
  
  main .cta-section-wrapper {
    padding: 40px 16px;
  }
  
  main .cta-card {
    padding: 24px 16px;
  }
  
  main .cta-title {
    font-size: 1.8rem;
  }
  
  main .cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
  
  main .cta-btn-group {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
  }
  
  main .cta-btn {
    width: 100%;
    max-width: none;
  }
}

/* ==========================================================================
   Disclaimer Custom Styling & Responsive Tables
   ========================================================================== */
main .disclaimer-sub-title {
  font-size: 1.5rem;
  font-weight: normal;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #050f1a;
  border-left: 4px solid #8D3134;
  padding-left: 12px;
}

main .disclaimer-section p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333333;
}

/* Disclaimer Text Decorations */
main .disclaimer-text-red {
  color: #D32F2F;
}

main .disclaimer-text-red-underline {
  color: #D32F2F;
  text-decoration: underline;
}

main .disclaimer-text-underline {
  text-decoration: underline;
}

main .disclaimer-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 16px;
  margin-bottom: 24px;
  border: 1px solid #c3cddb;
  border-radius: 6px;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

main .disclaimer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.25rem;
  line-height: 1.6;
  background-color: #ffffff;
}

main .disclaimer-table th,
main .disclaimer-table td {
  border: 1px solid #c3cddb;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

main .disclaimer-table th {
  background-color: #eaeef3;
  font-weight: bold;
  color: #050f1a;
  width: 25%;
  min-width: 130px;
}

main .disclaimer-table td {
  color: #333333;
}

main .disclaimer-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 24px;
}

main .disclaimer-list li {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  padding-left: 14px;
}

main .disclaimer-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

main .disclaimer-table .table-note {
  font-size: 1.15rem;
  color: #5c687a;
  margin-top: 6px;
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  main .disclaimer-sub-title {
    font-size: 1.4rem;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  main .disclaimer-section p,
  main .disclaimer-list li {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  main .disclaimer-table {
    font-size: 1.15rem;
    table-layout: fixed;
    width: 100%;
  }

  main .disclaimer-table th,
  main .disclaimer-table td {
    padding: 10px 12px;
    word-break: break-all;
    overflow-wrap: break-word;
    box-sizing: border-box;
  }

  main .disclaimer-table th {
    width: 32%;
  }

  main .disclaimer-table td {
    width: 68%;
  }

  main .disclaimer-table-wrapper {
    overflow-x: hidden;
  }
}
