/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Feb 22 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #37517e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #040404;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(255, 255, 255, 0);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.modal-content h1 {
  font-size: 18px;
  color: #0e2d89;
  font-weight: 600;
}

.modal-body {
  text-align: left;
}

.modal-body h4 {
  color: #0e2d89;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.modal-body p {
  font-size: 14px;
  color: #000000;
  font-style: normal;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2.midasi {
  padding: 1rem 3rem;
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#209cff), to(#68e0cf));
  background-image: -webkit-linear-gradient(left, #209cff 0%, #68e0cf 100%);
  background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title h3 {
  position: relative;
  font-size: 24px;
  padding: 10px 0;
  text-align: center;
  margin: 1.5em 0;
}
.section-title h3:before {
  content: "";
  justify-content: center;
  position: absolute;
  top: -8px;
  left: 50%;
  width: 200px;
  height: 58px;
  border-radius: 50%;
  border: 5px solid #47b2e4;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section-title h4 {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
  padding-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.section-title h5 {
  position: relative;
  font-size: 24px;
  padding: 10px 0;
  text-align: left;
}

.section-title p {
  margin-bottom: 0;
}

.section-title ul {
  padding: 20px 0;
  font-size: 20px;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  margin:0 0 32px;
}

@media (max-width: 767px) {
  .section-title p {
    text-align: left;
  }
  .section-title h3:before {
    top: -2px;
    height: 75px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 0 0 60px 0;
  display: flex;
  align-items: center;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.fv-hero {
  position: relative;
}

/* PC用：透明なクリックエリア */
.udemy-btn-pc {
  position: absolute;
  display: block;

  /* 位置は画像を見ながら微調整してください */
  top: 87%;      /* ボタンの縦位置（%なので画像に対する割合） */
  left: 80.2%;     /* 横位置 */
  width: 28%;    /* ボタンの横幅（感覚的なスタート値） */
  height: 14%;   /* ボタンの高さ */

  transform: translate(-50%, -50%);

  /* 見た目は完全に透明にする */
  background: transparent;
  border: none;
  color: transparent;

  /* テキストを画面外に追い出して見えなくする（スクリーンリーダー用に中身は残す） */
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}

/* スマホ用（SP表示専用） */
.udemy-btn-sm {
  position: absolute;
  display: block;

  /* 位置・サイズはスマホ画像に合わせて調整します */
  top: 94.8%;      /* ← ボタンの縦位置（%なので画像に対する割合） */
  left: 50%;     /* ← 中央寄せ */
  width: 100%;    /* ← ボタン横幅（感覚値、後で微調整OK） */
  height: 11%;   /* ← ボタン高さ */

  transform: translate(-50%, -50%);
  
  background: transparent;
  border: none;
  color: transparent;

  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}

/* BootstrapでPC/スマホを切り替え */
@media (min-width: 768px) {
  .fv-hero.d-md-none { display: none; }  /* スマホ画像を非表示 */
}

/* コードの右上にコピーボタンをつける */
.code-block {
  position: relative;
}

.code-block pre {
  background-color: #f8f9fa; /* Bootstrapのbg-lightっぽい色 */
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 0.9rem;
}

.code-block .copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
}

.pre-scrollable{
  max-height:340px;
  overflow-y:scroll;
}

/*--------------------------------------------------------------
# raise an issue Section
--------------------------------------------------------------*/
.raise-an-issue .process-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.raise-an-issue .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 1.5rem;
}

.raise-an-issuek .process-item:last-child {
  padding-bottom: 0;
}

.raise-an-issue .process-item .content {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.raise-an-issue .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.raise-an-issue .process-item .content:hover .step-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: rotate(10deg);
}

.raise-an-issue .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.raise-an-issue .process-item .step-number {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
  opacity: 0.2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.raise-an-issue .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.raise-an-issue .process-item .card-body-awk {
  padding: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.raise-an-issue .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.raise-an-issue .process-item .step-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.raise-an-issue .process-item .step-icon-awk {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.raise-an-issue .process-item .step-icon-awk i {
  font-size: 1rem;
  color: var(--contrast-color);
}

.raise-an-issue .process-item .step-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.raise-an-issue .process-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.raise-an-issue .process-item .step-content-awk h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-top: 0.2rem;
  font-weight: 500;
}

.raise-an-issue .process-item .step-content-awk p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.raise-an-issue .process-item .arrow {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  margin: 1rem 0;
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

.raise-an-issue .pic {
  width: 300px;
  flex-shrink: 0;
}

.raise-an-issue .pic img {
  transition: ease-in-out 0.3s;
}

@media (max-width: 767.98px) {
  .raise-an-issue .process-container {
    padding: 1rem 0;
  }

  .raise-an-issue .process-item {
    padding-bottom: 2rem;
  }

  .raise-an-issuek .process-item .content {
    border-width: 1px;
  }

  .raise-an-issue .process-item .content:hover {
    transform: translateY(-5px);
  }

  .raise-an-issue .process-item .step-number {
    font-size: 3rem;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }

  .raise-an-issue .process-item .step-number:hover {
    transform: translateX(-50%);
  }

  .raise-an-issue .process-item .card-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .raise-an-issue .process-item .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .raise-an-issue .process-item .step-icon i {
    font-size: 1.75rem;
  }

  .raise-an-issue .process-item .step-content h3 {
    font-size: 1.25rem;
  }

  .raise-an-issue .process-item .arrow {
    height: 60px;
    margin: 0.5rem 0;
  }
}

.showcase .showcase-text {
  padding: 3rem;
}
.showcase .showcase-img {
  background-color: antiquewhite;
  min-height: 20rem;
  background-size: cover;
}

@media (max-width: 767.98px) {
  .showcase .showcase-text {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
# Affinity Section
--------------------------------------------------------------*/
.affinity .affinity-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.affinity .affinity-item+.affinity-item {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .affinity .affinity-item+.affinity-item {
    margin-top: 40px;
  }
}

.affinity .affinity-item h3 {
  font-weight: 600;
  font-size: 28px;
  color:#214d9e;
  line-height: 1.5;
  padding: 0 0 20px 50px;
  text-align: center;
}
.affinity .affinity-item p {
  color:#080808;
  font-size: 24px;
  line-height: 1.5;
  padding: 0 30px 20px 10px;
  text-align: right;
}

.semittl h3 {
  font-size: 25px;
  font-weight: 600;
  padding-top: 20px;
  padding-left: 20px;
  color:#df1529;
}
.semittl p {
  color:#080808;
  font-size: 22px;
  line-height: 1.2;
  padding-left: 20px
}
p.label {
  font-size: 1rem;
  text-align: left;
  margin: 20px 0 30px;
}
.indent {
  text-indent: -1em;
  padding-left: 1em;
}

@media (max-width: 767.98px) {
  .no-wrap-md-down {
    white-space: normal !important;
  }
}

@media (max-width: 767.98px) {
  .affinity .affinity-item h3 {
    text-align: center;
  }
  .affinity .affinity-item p {
    text-align: center;
  }
  .semittl p {
    margin-top:30px;
    padding-left: 0;
    text-align: left;
  }
}

.affinity .affinity-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Solution Section
--------------------------------------------------------------*/
.solution .content-block .title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.solution .content-block p {
  margin-left: 3rem;
}

.solution .content-block ul.custom-list {
  list-style: none;
  padding: 0 0 0 30px;
  text-align: left;
  width: 70%;
}
.solution .content-block ul.custom-list li {
  padding: 5px;
}

.solution .content-block img {
  text-align: center;
}

@media (max-width: 992px) {
  .solution .content-block {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .solution .content-block p {
    margin-left: 0;
  }
  .solution .content-block ul.custom-list {
    list-style: none;
    padding: 5px;
    text-align: left;
    width: 90%;
  }
}

.solution .solution-list .solution-item {
  position: relative;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.solution .solution-list .solution-item:first-child {
  padding-top: 0;
}

.solution .solution-list .solution-item:hover .solution-icon {
  background-color: var(--accent-color);
}

.solution .solution-list .solution-item:hover .solution-icon i {
  color: var(--contrast-color);
}

.solution .solution-list .solution-item:hover .solution-content h4 a {
  color: var(--accent-color);
}

.solution .solution-list .solution-icon {
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.solution .solution-list .solution-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.solution .solution-list .solution-content {
  position: relative;
  width: 100%;
}

.solution .solution-list .solution-content h4 {
  font-size: 1.5rem;
  color:#214d9e;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.solution .solution-list .solution-content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .solution .solution-list .solution-item {
    padding: 1rem 0;
  }

  .solution .solution-list .solution-icon {
    height: 2rem;
    width: 2rem;
    margin-right: 1rem;
  }

  .solution .solution-list .solution-icon i {
    font-size: 2rem;
  }

  .solution .solution-list .solution-content h4 {
    font-size: 1.25rem;
  }

  .solution .solution-list .solution-content p {
    font-size: 0.9rem;
  }
}

.border-b {
  border-bottom: #47b2e4 1px dashed;
  padding-top: 0.5px;
  padding-bottom: 0.5px;
}

/*--------------------------------------------------------------
# Gradient Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Benefit Section
--------------------------------------------------------------*/
.benefit .benefit-content p {
  margin-bottom: 30px;
}

.benefit .benefit-content .timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 30px;
}

.benefit .benefit-content .timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.benefit .benefit-content .timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.benefit .benefit-content .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.benefit .benefit-content .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.benefit .benefit-content .timeline .timeline-item .timeline-content h4 {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.benefit .benefit-content .timeline .timeline-item .timeline-content p {
  margin-bottom: 0;
}

.benefit .benefit-image {
  position: relative;
}

.benefit .benefit-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit .benefit-image .mission-vision {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .benefit .benefit-image .mission-vision {
    grid-template-columns: 1fr;
  }
}

.benefit .benefit-image .mission-vision .mission,
.benefit .benefit-image .mission-vision .vision {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.benefit .benefit-image .mission-vision .mission h3,
.benefit .benefit-image .mission-vision .vision h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.benefit .benefit-image .mission-vision .mission h3:before,
.benefit .benefit-image .mission-vision .vision h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.benefit .benefit-image .mission-vision .mission p,
.benefit .benefit-image .mission-vision .vision p {
  margin-bottom: 0;
  font-size: 0.95rem;
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 40px 0 40px;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

.btn-gradient {
  background: linear-gradient(45deg, #50d8af, #02ac79);
  color:#fff;
  border:0;
  border-radius: .75rem;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn-gradient:hover{
  color:#fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  opacity: .95;
}
.btn-gradient:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(79,70,229,.35);
}
p.note {
  color: #fff;
  font-size: 13px;
  margin-left: 50px;
}

@media (max-width: 992px) {
  .call-to-action p {
    text-align: left;
    margin-left: 10px;
  }
}


/*--------------------------------------------------------------
# Narrowing-down Section
--------------------------------------------------------------*/
.narrowingdown .core-values {
  margin-top: 10px;
}

.narrowingdown .core-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.narrowingdown .core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.narrowingdown .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.narrowingdown .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.narrowingdown .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.narrowingdown .core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.narrowingdown .core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (max-width: 780px) {
  .narrowingdown .core-values .value-card .value-icon {
    max-width: 100%;
    height: auto;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 40px;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*reCAPTCHA v3 バッジを左下に移動*/
.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}

.sendbtn {
  background-color: #47b2e4;
  color:#ffffff;
  font-weight: 600;
  padding: 8px 24px;
}

.required-asterisk {
  color: red;
  font-weight: 600;
}

.custom-gradient {
  background: #833AB4;
  background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  padding: 8px 20px;
  color: #ffffff;
  font-weight: 600;
}

ul li, ol li {
  line-height: 1.5;
  font-size: 21px;
}

.indent-list {
  padding-left: 30px;
}

ul.custom-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
}
ul.custom-list li {
  padding: 5px;
}

.bullet-list {
  font-size: 1.5rem;
  margin: 0 auto;
  width: 100%;
  text-align: left;
  line-height: 1.5;
  padding: 0;
}

/*-----space----*/
.padTop80{padding-top:80px;}
.padTop50{padding-top:50px;}
.padTop55{padding-top:55px;}
.padTop40{padding-top:40px;}
.padTop30{padding-top:30px;}
.padTop25{padding-top:25px;}
.padTop12{padding-top:12px;}
.padBottom60{padding-bottom:60px;}