/*
Theme Name: ramp
Theme URI: https://wordpress.org/themes/twentytwentythree
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself.
Requires at least: 6.1
Tested up to: 6.8
Requires PHP: 5.6
Version: 1.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: twentytwentythree
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/* アニメーション適用クラス */
.animate-fade-in {
    animation: fadeIn 1s ease-out; /* 基本のフェードイン */
}

.animate-fade-in-delay {
    animation: fadeInDelay 1s ease-out 0.3s both; /* 0.3秒遅延してフェードイン */
}

.animate-fade-in-delay-2 {
    animation: fadeInDelay2 1s ease-out 0.6s both; /* 0.6秒遅延してフェードイン */
}

/* 問題アイコンのスタイル */
.problem-icon {
    font-size: 3rem; /* サイズを大きく設定 */
    line-height: 1;
}

/* 特徴カードのホバー効果 */
.feature-card {
    transition: all 0.3s ease; /* 全てのプロパティにスムーズなトランジション */
    border: 2px solid transparent; /* 初期状態では透明なボーダー */
}

.feature-card:hover {
    border-color: #249084; /* ホバー時にボーダー色を変更 */
    transform: translateY(-5px); /* 上に少し移動 */
}

/* 特徴アイコンのスタイル */
.feature-icon {
    transition: transform 0.3s ease; /* 変形にスムーズなトランジション */
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1); /* ホバー時にアイコンを少し拡大 */
}

/* お客様の声カード */
.testimonial-card {
    transition: all 0.3s ease; /* 全てのプロパティにスムーズなトランジション */
    border-left: 4px solid #249084; /* 左側に太いボーダー */
}

.testimonial-card:hover {
    transform: translateY(-5px); /* 上に少し移動 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* 影を強調 */
}

/* フォームスタイル */
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    outline: none; /* デフォルトのアウトラインを削除 */
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1); /* フォーカス時に影を追加 */
}

/* スムーススクロール */
html {
    scroll-behavior: smooth; /* スムーズスクロールを有効にする */
}

/* ローディングアニメーション */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite; /* スピンアニメーション */
}

@keyframes spin {
    to { transform: rotate(360deg); } /* 360度回転 */
}

/* 成功メッセージ */
.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* エラーメッセージ */
.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* ナビゲーションのアクティブ状態 */
nav a.active {
    font-weight: 600; /* 太字 */
}

/* セクション間のスペーシング調整 */
section {
    scroll-margin-top: 80px; /* スムーススクロール時のオフセット */
}

/* カードの影効果 */
.card-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* デフォルトの影 */
}

.card-shadow:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* ホバー時の影を強調 */
}

/* アクセシビリティ対応 (アニメーション削減) */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto; /* スムーススクロールを無効化 */
    }
}

/* 印刷スタイル */
@media print {
    .no-print {
        display: none !important; /* 印刷時に非表示にする要素 */
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3 {
        page-break-after: avoid; /* 見出しの後に改ページしない */
    }

    .hero-section {
        background: none !important; /* 背景画像を非表示 */
        color: black !important; /* 文字色を黒に */
        height: 100vh;
    }

    .container1 {
        height: 100vh;
    }
}




/*手動記述　ファーストビューのスタイル*/

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    position: sticky;
}

.header-logo1 {
  display: flex;
  width: auto;
  font-weight: 400;
  color: #333333;
  font-size: 13px;
}

.header-logo2 {
  display: flex;
  width: auto;
  font-weight: 600;
  color: #249084;
  margin-top: -7px;
}



.header-logo img {
  margin-right: 3px;
}

.font {
    font-family: 'noto sans jp', sans-serif; 

}

.section1 {
    animation: fall 10s infinite linear;
    background-color: #249084;
    max-width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.responsive-image {
  width: 90px;
  height: 90px;
  margin-bottom: 5px;
}
/* fallアニメーションの定義 */
@keyframes fall {
  0%   { background-position: 0 0; }          /* 背景画像の位置を左上に設定 */
  100% { background-position: -700px 700px; } /* 背景画像の位置を左上から700px右下に設定 */
}

.box0 {
    display: none;

}

.box1 {
    height: 620px;
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex; 
    overflow: hidden
    
    
    
}

.box2 {
    height: 100%;
    width: 50%;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-radius: 0 0 200px 0;
 
    
}




.box3 {
    position: relative;
    height: 100%;
    width: 50%;
    z-index: 10;
    text-align: center;
    margin: 0 auto;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding: 0px 80px;
    
}

.box3-img1 {

    position: absolute;
    z-index: 8;
    top: 0;
    left: 0;
}

.hc1 {
    z-index: 20;
    color: #ffffff;
    font-size: 50px;
    font-family: 'noto sans jp', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: inline-block;
    letter-spacing :3px
}

 .hc2 {
    z-index: 20;
    color: #ffffff;
    font-size: 50px;
    font-family: 'noto sans jp', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin: 10px 15px 0px 15px;
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: inline-block;
    letter-spacing :3px
}

.box4 {
    z-index: 10;
    margin-top: 40px;
}

.box5 {
    z-index: 10;

}

.box5-1 {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.box5-2 {
    padding: 40px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.box5-4 {
  width: 150px;
  height: auto;
  border-radius: 20px;
  background-color: #0f6c61;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;

}

.box5-3 {
  width: 150px;
  height: 150px;
  border-radius: 30px;
  background-color: #ffffff;
  border: #0f6c61 solid 3px;
  display: flex;
  justify-content: center;
  align-items: center;  
  flex-flow: column;

}

.box6-btn {
    background-color: #e68a00;
    color: white;
}


.h2-1 {
    color: #FDE047;
}

.box5-3 p {
    color: #249084;
    font-size: 17px;
    font-weight: 500;
    letter-spacing :1px;
    line-height: 1.7;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    margin-top: -10px;
    
}
.box5-4 p {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing :1px;
    line-height: 1.7;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    
}


.box6 {
    margin-top: 0px;
    padding: 0px 50px;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

/* スライドセクション */

/* スライドする要素 */
.content {
  width: 400px;
  height: 250px;
}
.content:nth-child(1) {
  background-color: tomato;
}
.content:nth-child(2) {
  background-color: orange;
}
.content:nth-child(3) {
  background-color: blue;
}
.content:nth-child(4) {
  background-color: green;
}
/* スライドレールの枠 */
.wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
}
/* content4つをまとめたスライドブロック */
.slideshow {
  display: flex;
  -webkit-animation: loop-slide 40s infinite linear 1s both;
  animation: loop-slide 40s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


/* プログラムセクション */


.Problemssection {
    background-color: #D8E8E6
}

.Problemsboxtop {
    padding: 20px 80px;
    width: 100%;
    max-width: 1280px;
}

.Problemsboxtop h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    color: #333;
    letter-spacing: 3px;
}

.Problemsbox {
    font-family: 'noto sans jp', sans-serif; 
    letter-spacing: 1px;
}

.Problemsbox1 {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.Problemsbox2 {
    gap: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items:stretch
}

.Problemsbox2 h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.Problemsbox3 p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.Problemsbox3 {
    gap: 20px;
    width: 100%;
    height: auto;
}

.Problemsbox4 {
    width: 100%;
    margin-top: 10px;
}

.Problemsbox5 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 400px;
    margin-top: 30px;
    position:  relative;
}

.Problemsbox5-img1 {
    margin-right: -20px;
}

.Problemsbox5-img3 {
    position: absolute;
    top: 25px;
    right: 5px;
}

.Problemsbox5-img4 {
    position: absolute;
    top: 70px;
    right: 10px;
}

.Problemsbox5-img5 {
    position: absolute;
    top: 35px;
    right: 260px;
}

.Problemsbox6 {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position:  relative;
}
.Problemsbox6-2 {
  position: relative;
  display: flex;
}

.Problemsbox7 {
    width: 50%;
}

.Problemsbox7 h3 {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    letter-spacing: 3.5px;
    line-height: 2.2;
    text-decoration: underline;
    text-decoration-color: #6eaf28;
    text-decoration-thickness: 5px;
    text-underline-offset: 6px;
}

.Problemsbox7 h3 span {
    color: #6eaf28;
}


        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap');

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 10px;
            overflow: hidden;
        }

        .comparison-table th, .comparison-table td {
            padding: 16px;
            text-align: left;
            border: 1px solid #e0e6ed;
            font-size: 0.9rem;
            line-height: 1.5;
            vertical-align: top;
        }

        .comparison-table th {
            background-color: #34495e;
            color: #ecf0f1;
            font-weight: 700;
            white-space: nowrap;
        }

        .comparison-table tbody th {
            background-color: #5c6c7c;
            color: #ecf0f1;
            font-weight: 700;
            white-space: nowrap;
        }

        .comparison-table tbody tr:nth-child(odd) {
            background-color: #f7f9fb;
        }

        .comparison-table td {
            background-color: #ffffff;
        }

        .comparison-table tbody tr:hover td {
            background-color: #eaf2f8;
        }



/* Features Section */
.Featuresbox {
    font-family: 'noto sans jp', sans-serif; 
    letter-spacing: 1px;
    padding: 20px 80px;
    width: 100%;
    max-width: 1280px;
    
}

.Featuressection {
}

.Featuresbox0 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items:stretch
}

.Featuresbox h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    color: #333;
    letter-spacing: 3px;
}

.Featuresbox h3 {
    font-size: 18px;
    color: #333;
}

.Featuresbox h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* 擬似要素でアニメーション下線 */
.Featuresbox h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #484848; /* 線の色 */
  transition: width 0.6s ease 0.3s; /* ← 遅延を0.3s追加 */
}

/* スクロールで表示されたら線を伸ばす */
.Featuresbox h3.active::after {
  width: 100%;
}

.Featuresbox p {
    font-size: 14px;
    color: #555;
}
.Featuresbox1 {
    background-color: #ffffff;
    overflow:hidden;
    border: 4px solid #249084;
    width: 30%;
}

.Featuresbox2 {
    padding: 5px 20px 20px 20px;
}



.Featuresbox2 i {
    margin-right: 5px;
}

/*skillセクション*/
.skillsection {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D8E8E6;

}

.skillsection2 {
    display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D8E8E6;
}


.skillbox1 {
    padding: 20px 80px;
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.curriculum-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    color: #333;
    letter-spacing: 3px;
}


/* 基本スタイルはそのまま */
.curriculum-box {
    padding: 20px 80px;
    width: 100%;
    max-width: 1280px;
}

.curriculum-wrapper {
  background-color: #D8E8E6;
  color: #fff;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.curriculum-wrapper2 {
  background-color: #D8E8E6;
  color: #fff;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.category-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.category-group2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}


.category-box {
  background-color: #fff;
  color: #333;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-box2 {
  background-color: #fff;
  color: #333;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 0;
  height: auto;
}

.category-group3 h3 {
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 30px;

}


.category-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.category-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.category-box2:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.category-box2.visible {
  opacity: 1;
  transform: translateY(0);
}

.category-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
  border-bottom: 2px solid #249084;
  padding-bottom: 4px;
  color: #249084;
}

.category-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-box li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}
.category-box2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-box2 li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.category-box2 li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.category-box li:last-child {
  border-bottom: none;
}

.category-box2 li:last-child {
  border-bottom: none;
}

.icon-box {

}
.icon-box_E {
  width: 32px;
  height: 32px;
  background-color: #0F6835;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_W {
  width: 32px;
  height: 32px;
  background-color: #1C5CB9;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_P {
  width: 32px;
  height: 32px;
  background-color: #CA4620;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_ps {
  width: 32px;
  height: 32px;
  background-color: #31A8FF;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_C {
  width: 32px;
  height: 32px;
  background: linear-gradient(to bottom right, #00C4CC, #52037C);
  /* または、より正確な色を探すために微調整が必要な場合があります */
  /* background: linear-gradient(to bottom right, #00CCBF, #7700C2); */
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_ai {
  width: 32px;
  height: 32px;
  background-color: #FE9A00;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_Pr {
  width: 32px;
  height: 32px;
  background-color: #00005B;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_Ae {
  width: 32px;
  height: 32px;
  background-color: #00005B;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_F { 
  width: 32px;
  height: 32px;
  background-color: #393939;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_S { 
  width: 32px;
  height: 32px;
  background-color: #1E1E1E;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_W { 
  width: 32px;
  height: 32px;
  background-color: #00759D;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_H { 
  width: 32px;
  height: 32px;
  background-color: #E44F25;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_J { 
  width: 32px;
  height: 32px;
  background-color: #F7DF1E;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_P { 
  width: 32px;
  height: 32px;
  background-color: #7377AD;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_Py { 
  width: 32px;
  height: 32px;
  background-color: #F7C941;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_Ja { 
  width: 32px;
  height: 32px;
  background-color: #F0931C;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-box_Ru { 
  width: 32px;
  height: 32px;
  background-color: #AD0600;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.category-box li:hover .icon-box {
  transform: scale(1.1);
}
.category-box2 li:hover .icon-box {
  transform: scale(1.1);
}


/* プログラミングだけ2列に */
.category-box.programming .programming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.container-curriculum {
            padding: 30px;
        }

.curriculum-example {
   display: flex;
   justify-content: space-between;
}

.container-curriculum h3 {
            font-family: 'Noto Sans JP', sans-serif;
            font-weight: 700;
            font-size: 30px;
            color: #333;
            margin-top: 0;
            margin-bottom: 10px;
        }
        
        .subtitle {
            font-size: 1rem;
            color: #333;
            font-weight: 500;
        }
        
        .curriculum-table {
            width: 100%;
            border-collapse: collapse;
             border-radius: 12px;
             overflow: hidden;
             margin-top: 5px;
             border: #249084 5px solid;
        }
        
        .curriculum-table th, .curriculum-table td {
            padding: 25px 15px;
            text-align: center;
            border: 2px solid #c3c3c3;
            font-size: 0.95rem;
            line-height: 1.5;
            vertical-align: middle;
        }
        
        .curriculum-table thead th {
            background-color: #249084;
            color: #ffffff;
            font-weight: 700;
            white-space: nowrap;
        }

        .curriculum-table tbody tr:nth-child(even) {
            background-color: #f7f9fb;
        }

        .curriculum-table td {
            background-color: #ffffff;
            color: #333333;
        }

        .curriculum-table tbody tr:hover td {
            background-color: #eaf2f8;
        }

      

        .category-box3-img1 {
          width: 60%;
          height: auto;
        }

/* テキストボックス調整（右） */


        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .header-left h1 {
            font-family: 'Noto Sans JP', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            color: #249084;
            margin: 0;
        }
        
        .header-left h1 span {
            font-size: 2.5rem;
            margin-right: 10px;
        }

        .header-right {
            background-color: #e8f5e9;
            border: 1px solid #249084;
            border-radius: 8px;
            padding: 10px 15px;
            text-align: right;
            line-height: 1.6;
        }
        
        .header-right p {
            margin: 0;
            color: #249084;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .employment-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 8px;
            overflow: hidden;
        }

        .employment-table th, .employment-table td {
            padding: 15px;
            text-align: left;
            border: 1px solid #e0e6ed;
            font-size: 0.8rem;
            line-height: 1.5;
            vertical-align: middle;
        }

        .employment-table thead th {
            background-color: #249084;
            color: #ffffff;
            font-weight: 700;
            white-space: nowrap;
        }

        .employment-table tbody tr:nth-child(odd) {
            background-color: #f7f9fb;
        }

        .employment-table tbody tr:hover {
            background-color: #eaf2f8;
            transition: background-color 0.3s ease;
        }
.container-employment {
            margin-top: 100px;
}
        
/* 見出し文字サイズ（任意で調整可） */
.Featuresbox2-1 {
    font-family: 'noto sans jp', sans-serif; 
    letter-spacing: 1px;
    padding: 20px 80px;
    width: 100%;
    max-width: 1280px;
    
}


.Featuresbox2-1 h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #333;
    letter-spacing: 3px;
}


.Featuresbox {
    font-family: 'noto sans jp', sans-serif; 
    letter-spacing: 1px;
    padding: 20px 80px;
    width: 100%;
    max-width: 1280px;
    
}

.Featuressection {
}

.Featuresbox0 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items:stretch
}

.Featuresbox h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    color: #333;
    letter-spacing: 3px;
}

    
/* Staffセクション */
/* セクション全体 */
.staffsection {
  background-color: #D8E8E6;
  padding: 4rem 0;
  text-align: center;
}

.Staffbox1 {
  margin: 0 auto;
  padding: 40px;
}

.Staffbox1 h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 80px;
  text-align: center;
  color: #333333;
  letter-spacing: 3px;
}

/* カルーセルラッパー */
.staff-carousel-container {
  position: relative;
}

/* スライド横並び */
.staff-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 40px;
  padding: 10px 0;
}
.staff-carousel::-webkit-scrollbar {
  display: none;
}

/* スタッフカード */
.staff-card {
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: fadeInUp 1s ease both;
}
.staff-card:hover {
  transform: translateY(-4px);
}
.staff-card h4 {
  font-size: 18px;
  color: #333;
}
.staff-card p {
  font-size: 13px;
  color: #333;
}

/* アバター */
.staff-avatar {
  background-color: #ffffff;
  color: #249084;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 40px;
}

/* スタッフ画像 */
.staffimg {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

/* テキスト */
.staff-text {
  font-size: 14px;
  color: #555;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}



/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.staff-card2 {
  height: 60px;

}


/*workセクション*/  
.worksection {
  background-color: #F9FAFB;
}

/* メインラッパー */
.Workbox1 {
  padding: 20px 80px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトル */
.Workbox1 h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 80px;
  text-align: center;
  color: #333;
  letter-spacing: 3px;
}

/* 横並びの画像＋情報 */
.Workbox2 {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  align-items:stretch;
  justify-content: space-between;
}




/* 右側：情報ボックス */
.Workbox3 {
  display: flex;
  width: 50%;
  background-color: white;
  border-radius: 20px;
  padding: 30px;
}

.info-item {
  color: #555;
  margin-bottom: 12px;
  font-size: 16px;
}


.Workbox4 h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

/* ボタン */
.map-button-container {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}
.map-button {
  background-color: #249084;
  color: #ffffff;
  font-weight: bold;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.map-button i {
  margin-left: 4px;
}

/* モーダル基本 */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}


/* モーダル中身 */
.modal-content {
  background-color: #fff;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  padding: 20px;
  position: relative;
  animation: fadeIn 0.4s ease;
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  color: #249084;
  cursor: pointer;
}

/* 情報テーブル */
.info-table {
  width: 100%;
  margin-bottom: 30px;
}
.info-table th,
.info-table td {
  text-align: left;
  padding: 12px 16px;
  vertical-align: top;
  font-size: 16px;
}
.info-table th {
  width: 140px;
  background-color: #f4f4f4;
  color: #333;
  font-weight: 600;
  border-radius: 10px 0 0 10px;
}
.info-table td {
  background-color: #ffffff;
  color: #555;
  border-radius: 0 10px 10px 0;
  box-shadow: inset 0 0 0 1px #e0e0e0;
}

/* FAQセクション */
.FAQbox1 {
  width: 100%;
  max-width: 1280px;
    padding: 20px 120px;
}

.FAQbox1 h2 {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: 3px;
}

/* 全体ラップ */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;

  font-family: 'Segoe UI', sans-serif;
}

/* 各FAQ項目 */
.faq-item {
  background-color: #f8fdf4;
  border: 2px solid #249084;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(124, 179, 66, 0.2);
}

/* 質問見出し */
.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding: 20px;
  background-color: #249084;
  color: white;
  position: relative;
  transition: background 0.3s ease;
  letter-spacing: 1px;

}


/* 回答部分 */
.faq-answer {
  background-color: #fff;
  color: #555;
  font-size: 14px;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

/* アクティブ時 */
.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

/* アニメーション用に開閉アイコンも可（省略可能） */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}



/*IMGセクション*/
.IMGbox1 {
    background-size: cover;
    background-position: center;
    width: 100%;                             
    padding: 10px 20px;
    width: 100%;
    height:450px;
    background-image: url(http://ramphp.local/wp-content/uploads/2025/07/back_img_1-1.png);
}


/* Testimonialsセクション */
.testimonialssection {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F9FAFB;
}
.testimonialsbox1 {
    padding: 20px 80px;
    width: 100%;
    max-width: 1280px;
}

.testimonialsbox1 h2 {
    font-size: 32px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: 3px;
}


.testimonialsbox3 {
  position: absolute;
}


.testimonialsbox1-p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
    text-align: center;
    margin-top: 20px;
}
.testimonialsbox1-p2 {
    font-size: 12px;
    color: #555;
}
.testimonialsbox4 {
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonialsbox4 h4 {
  font-size: 16px;

}

.testimonialsbox4 p {
  font-size: 14px;

}

.Problemsbox-F strong {
  display: inline-block;
  color: white;
  background-color: #249084;
  border-radius: 20px;
  padding: 0 8px; /* 任意で追加：見た目が整います */
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  margin-right: 5px;
}

.testimonials-img {
  width: 60%;
  height: 60%;
}


.flow-container {
            background-color: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 1000px;
            width: 100%;
        }

        .flow-container h1 {
            font-size: 2.5rem;
            color: #249084;
            margin-bottom: 40px;
            font-weight: bold;
        }

        .steps2 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            align-items: stretch;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            border-radius: 10px;
            background-color: #e6f2f0;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
            width: 100%;
            transition: transform 0.3s ease;
        }

        .step-item:hover {
            transform: translateY(-5px);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background-color: #c0e1da;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
        }

        /* SVG icons */
        .step-icon svg {
            width: 36px;
            height: 36px;
            fill: #249084;
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #249084;
            margin-bottom: 5px;
        }

        .step-description {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }

        .arrow-S {
            width: 40px;
            height: 2px;
            background-color: #249084;
            flex-shrink: 0;
            margin-top: 110px;
        }

        .flow-container-h2 {
            margin-top: 104px;
        }

        /* Responsive design for mobile devices */
        @media (max-width: 768px) {
            .flow-container {
                padding: 20px;
            }
            .flow-container h1 {
                font-size: 2rem;
                margin-bottom: 20px;
            }
            .steps {
                flex-direction: column;
            }
            .arrow-S {
                width: 2px;
                height: 30px;
                transform: rotate(90deg);
                margin: 10px 0;
            }
        }

.pricing-box {
            display: flex;  
            flex-direction: column;
            align-items: center;
        }

        /* グローバルなスタイルとカラーパレット */
        :root {
            --main-color: #249084;
            --background-light: #f9fdf9;
            --background-dark: #ffffff;
            --border-color: #e0e0e0;
            --text-color: #333333;
            --accent-light: #e8f5e9;
        }

        /* コンテナのスタイル */
        .pricing-container {
            background-color: var(--background-dark);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 700px;
            overflow: hidden;
        }

        /* ヘッダーセクション */
        .pricing-header {
            text-align: center;
            padding: 0 0px 20px 0px;
        }

        .pricing-header h1 {
            color: var(--main-color);
            font-size: 2.2em;
            font-weight: bold;
            margin: 0;
            letter-spacing: 1px;
        }

        .pricing-note {
            background-color: var(--background-dark);

            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pricing-note p {
            color: var(--text-color);
            font-size: 1.5em;
            font-weight: normal;
            margin-bottom: 10px;
        }

        .pricing-note strong {
            color: var(--main-color);
            font-size: 1.2em;
            font-weight: bold;
            margin: 0 5px;
        }

        .lightbulb {
            font-size: 1.6em;
            margin-left: 10px;
            color: #ffc107; /* 電球のアイコンの色 */
        }

        /* テーブルのスタイル */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 1em;
        }

        .pricing-table thead {
            background-color: var(--main-color);
            color: #ffffff;
        }

        .pricing-table th {
            padding: 18px;
            font-weight: bold;
            text-align: center;
        }

        .pricing-table tbody tr {
            border-bottom: 1px solid var(--border-color);
        }

        .pricing-table tbody tr:last-child {
            border-bottom: none;
        }

        .pricing-table tbody tr:nth-child(odd) {
            background-color: var(--background-light);
        }

        .pricing-table tbody tr:nth-child(even) {
            background-color: var(--background-dark);
        }

        .pricing-table td {
            padding: 15px;
            text-align: center;
            color: var(--text-color);
        }


/* Finalセクション */
.Finalbox1 {
    padding: 20px 80px;
}

.img1 {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.img2 {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: auto;
    height: auto;

}



.Finalbox2 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.Finalbox2 h2 {
 font-size: 32px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 3px;
}

.Finalbox2_p1 {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 1px;
}

.Finalbox2_btn i {
  margin-left: 8px;
}

.Finalbox4 {
  margin-top: 60px;
}

.Finalbox5 {
  padding: 10px;
  border-radius: ;
}

/* Footerセクション */
.footerbox1 {
    padding: 20px 80px 0px 80px;
    position: relative;
}

.footerbox2 i {
    font-size: 20px;
    margin-right: 20px;
    color: #32cab8;
}

.footerbox3 P {
    font-size: 14px;
    color: #ffffff;
    margin-top: 10px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.footerbox2-i2 {
      font-size: 14px;
    color: #333333;
    margin-top: 10px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.sns2 {
    position: absolute;
    top: 140px;
    left: 80px;
    display: flex;
    gap: 20px;
    z-index: 30;
    color: #32cab8;
    font-size: 40px;
}

/*cssアニメーション*/

/* スライドスキューアニメーション */
.anim-box.slide-skew.is-animated {
  animation: slide-skew 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes slide-skew {
  0% {
    transform: translate(180px,0px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
  20%,100% {
    opacity: 1;
  }
 
}


/* スクロールダウンを促すアニメーション（左端・英語テキスト下） */
.scroll-indicator {
      position: fixed;
      right: 20px;
      bottom: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      font-family: sans-serif;
      z-index: 999;
    }

    .scroll-text {
      font-size: 14px;
      margin-bottom: 10px;
      letter-spacing: 2px;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }

    .arrow {
      width: 2px;
      height: 20px;
      background: white;
      position: relative;
      animation: scroll-down 1.2s ease-in-out infinite;
    }

    .arrow::after {
      content: '';
      position: absolute;
      top: 100%;
      left: -4px;
      width: 10px;
      height: 10px;
      border-right: 2px solid white;
      border-bottom: 2px solid white;
      transform: rotate(45deg);
    }

    @keyframes scroll-down {
      0% {
        opacity: 0;
        transform: translateY(0);
      }
      50% {
        opacity: 1;
        transform: translateY(6px);
      }
      100% {
        opacity: 0;
        transform: translateY(12px);
      }
    }


/* 星のアニメーション */
.img-animate {
  animation: scalePulse 1.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes scalePulse {
  0%, 100% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.2);
  }
}




/*調整追加CSS*/
.aboutbox {
    padding: 20px 80px;
    width: 100%;
    max-width: 1280px;
}

.aboutbox1 {
    display: flex;
}

.aboutbox2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.aboutbox3 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.aboutbox4 {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.aboutbox4 p {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
  letter-spacing: 2.5px;
}

    .buttonbox2 {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-top: 0px;
      width: 100%;
    }

    .more-button2 {
      margin-top: 30px;
      align-self: flex-start;
      padding: 8px 16px;
      background-color: #249084;
      color: #ffffff;
      font-size: 14px;
      text-decoration: none;
      border-radius: 20px;
      transition: background 0.3s;
      display: block;
    }

     .more-button2 i {
      margin-left: 6px;
    }

    .more-button2:hover {
      background-color: 
    }


    /* Custom animation for fade-in-down */
        @keyframes fade-in-down {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fade-in-down {
            animation: fade-in-down 0.8s ease-out forwards;
        }

        /* Custom animation for fade-in-up */
        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fade-in-up {
            animation: fade-in-up 0.8s ease-out forwards;
            animation-delay: 0.2s; /* Delay for a staggered effect */
        }

 .aboutbox6 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

.aboutbox5 {
  margin-top: 6rem;
}

/* 上段3つのグラフ */
.aoutbox7 {
  flex: 1 1 calc(33.333% - 40px); /* gapの影響を考慮 */
  max-width: calc(33.333% - 40px);
}

/* 下段2つのグラフ */
.aoutbox8 {
  flex: 1 1 calc(50% - 30px); /* gapの影響を考慮 */
  max-width: calc(50% - 30px);
}

/*追加*/
.curriculum-wrapper2 {
  color: #333333;
  font-family: sans-serif;
  gap: 40px;
}

.category-group3 {
  display: flex;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  margin-top: 120px;
}

.category-box3 {
  margin-top: 120px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;

}

.category-box4 {
  width: 50%;
  display: flex;
  
flex-flow: column;
} 

.category-box5 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-left: 30px;
flex-flow: column;
} 

.category-box5 img {
  border-radius: 30px;
}

.category-box6 {
  width: 100%;
  display: flex;
  margin-left: 10px;
  margin-top: 10px;
}

.category-box7 {
  width: 100%;
  display: flex;
  justify-content: right;
  margin-right: 10px;
  margin-top: -100px;
}

.category-box8 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
} 

.text-box h3 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: #249084;
    letter-spacing: 4px;
    line-height: 1.6;
}

.text-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  color: #333;
  text-align: center;
}

.illust-skill2 {
  border-radius: 50%;
  background-color: #ffffff;
  overflow: hidden;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #249084 solid 4px;

}

/* src/input.css または適切なCSSファイル */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --color-my-border: #249084;
}

/* カルーセルナビゲーションボタン */
.carousel-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px; /* カルーセルとの間隔 */
  gap: 20px; /* ボタン間の間隔 */
  padding: 0 80px;
}

.carousel-btn {
  background-color: #ffffff;
  color: #249084;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
}

.carousel-btn:active {
  transform: scale(0.95);
}


.Finalsection {
  background-color: #249084;

}

.Workbox-image img {
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.Workbox-image {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 40px;
  
}

.Workbox-image2 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  
}

.Workbox-image3 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  
}

 .MAPtable-container {
            width: 100%;
            max-width: 600px;
            background-color: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            line-height: 2;
        }
        .MAPtable-row {
            display: flex;
            border-bottom: 1px solid #e2e8f0;
        }
        .MAPtable-row:last-child {
            border-bottom: none;
        }
        .MAPtable-header {
            width: 35%;
            padding: 1rem;
            background-color: #249084;
            color: #ffffff;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .MAPtable-data {
            width: 65%;
            padding: 1rem;
            display: flex;
            align-items: center;
        }


.header_btn:hover {
  background-color: white;
  box-shadow: inset 0 0 0 2px #249084;
  color: #249084;
}

.sns1 a:hover {
  transform: scale(1.08);
  transition: transform 0.1s ease;
}

.FV_btn:hover {
  background-color: #249084;
  box-shadow: inset 0 0 0 2px #ffffff;
  color: #ffffff;
}

.Problemsbox1 img {
    /* デフォルトのサイズとトランジション */
    transform: scale(1); /* 初期サイズを1倍に設定 */
    transition: transform 0.3s ease-in-out; /* 変形が0.3秒かけてゆっくり変化する設定 */
    display: block; /* 余白のずれを防ぐため */
    max-width: 100%; /* 親要素からはみ出さないように */
    height: auto; /* 比率を維持 */
}

.Problemsbox1 img:hover {
    /* ホバー時の拡大効果 */
    transform: scale(1.1); /* ホバー時に1.05倍に拡大 */
}

.c-btn.press {
  box-shadow: 0 4px 0 #114640; 
}
.c-btn.press:hover {
  transform: translateY(4px);
  box-shadow: none;
}

/* 修正*/
.CTAbox1 {
      position: relative;
      /* 内部要素の配置基準 */
      overflow: hidden;
      /* 背景のスクロールアニメーションがはみ出さないように隠す */
      width: 100%;
      padding: 30px 20px;
      display: flex;
      /* 子要素を柔軟に配置 */
      align-items: center;
      /* 垂直方向中央揃え */
      justify-content: center;
      /* 水平方向中央揃え */
      text-align: center;
      /* テキストを中央揃え */
      background-color: #249084;
      /* 明示的に背景色を設定 */
    }

    .CTAbox2 {
      position: relative;
      /* 内部の円形要素の配置基準 */
      padding: 50px 20px;
      max-width: 700px;
      /* 最大幅を設定 */
      width: 100%;
      /* 親要素の幅いっぱいに広がる */
      z-index: 1;
      /* 背景の擬似要素より手前に表示 */
    }

    /* CTAbox2内の見出し（h2）のスタイル */
    .CTAbox2 h2 {
      font-size: 35px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.4;
      letter-spacing: 3px;
      color: #ffffff;
    }

    /* 見出し内のハイライト部分（「無料見学」）のスタイル */
    .CTA-h2 {
      color: #fde047;
      /* 強調色 */
      font-weight: 600;
    }

    /* CTAbox2内の段落テキストのスタイル */
    .CTAbox2 p {
      font-size: 18px;
      margin-bottom: 32px;
      color: #ffffff;
      line-height: 1.8;
    }

    /* 段落テキスト内のFont Awesomeアイコンのスタイル */
    .CTAbox2 p i {
      margin-right: 5px;
      /* アイコンとテキストの間隔 */
    }

    /* CTAボタンのスタイル */
    .CTAbox2 a {
      width: 70%;
      display: inline-block;
      /* インライン要素だが、幅や高さ、パディングを設定可能に */
      padding: 14px 32px;
      font-size: 20px;
      font-weight: 600;
      background-color: #E68A00;
      /* 白い背景 */
      color: white;
      /* テキスト色をメインカラーに */
      border-radius: 9999px;
      /* 角を非常に大きくしてカプセル型に */
      text-decoration: none;
      /* 下線をなくす */
      transition: all 0.3s ease;
      /* ホバー効果の滑らかな変化 */
      letter-spacing: 1px;
    }

    /* CTAbox2内の装飾的な白い円の共通スタイル */
    .CAT-circle1,
    .CAT-circle2,
    .CAT-circle3,
    .CAT-circle4 {
      width: 8px;
      height: 8px;
      background-color: #ffffff;
      border-radius: 50%;
      /* 円形にする */
      position: absolute;
      /* 親要素を基準に絶対配置 */
      top: 43px;
      /* 上からの位置 */
    }

    /* 各円の横方向の位置 */
    .CAT-circle1 {
      left: 197px;
    }

    .CAT-circle2 {
      left: 229px;
    }

    .CAT-circle3 {
      left: 262px;
    }

    .CAT-circle4 {
      left: 295px;
    }


@media screen and (max-width:840px) {
    /*　画面サイズが540pxから840pxまではここを読み込む　*/
.header {
    position: sticky; /* タブレットでは削除されたが、PCには存在 */
    color: #249084; /* タブレットで追加 */
}
.header-logo {
    font-weight: 600; /* タブレットでは色の指定が削除 */
}
.sns1 {
    color: #249084; /* PCの#ffffffから変更 */
    font-size: 50px; /* PCの60pxから変更 */
}
.section1 {
    animation: fall 10s infinite linear;
    background-color: #249084;
    max-width: auto;
    display: flex;
    justify-content: center;
    align-items:flex-start;
    
}



.box0 {
    display: block; /* PCのnoneから変更 */
    position: relative; /* タブレットで追加 */
    z-index: 10; /* タブレットで追加 */
    width: 100%; /* タブレットで追加 */
    height: 20%; /* タブレットで追加 */
}
.box1 {
    flex-flow: column; /* PCにはなかったflex-flowを追加 */
    align-items:flex-start;
    height: 100vh;
}
.box2 {
    height: 35%; /* PCの100%から変更 */
    width: 100%; /* PCの50%から変更 */
    border-radius: 0 0 100px 0;
}


.box3 {
    height: 50%; /* PCの100%から変更 */
    width: 100%; /* PCの50%から変更 */
    margin-top: -30px; /* タブレットで追加 */
     padding: 0px 40px;
}
.hc0-1 { /* タブレットで新規追加 */
    z-index: 20;
    color: #ffffff;
    font-size: 35px;
    font-family: 'noto sans jp', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin: 15px;
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 3px
}
.hc0-2 { /* タブレットで新規追加 */
    z-index: 20;
    color: #ffffff;
    font-size: 35px;
    font-family: 'noto sans jp', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin: 15px;
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 3px
}
.hc1 {
    font-size: 35px; /* PCの55pxから変更 */
    display: inline-block; /* タブレットで追加 */
}
.hc2 {
    font-size: 35px; /* PCの55pxから変更 */
    display: inline-block; /* タブレットで追加 */
}
.box4 p {
    font-size: 16px; /* PCの20pxから変更 */
    display: inline-block; /* タブレットで追加 */
}

.box5-2 {
    padding: 20px 0px;
}



.box6 {
    margin-top: 10px; /* PCの50pxから変更 */
    display: flex; /* タブレットで追加 */
}
.topic-box0 {
    padding: 40px 40px; /* PCの40px 80pxから変更 */
    max-width: 100%; /* PCの1280pxから変更 */
    gap: 50px; /* PCの100pxから変更 */
    flex-flow: column; /* タブレットで追加 */
}
.topic-box {
    width: 100%; /* PCの450pxから変更 */
    box-sizing: content-box; /* タブレットで追加 */
}
.content {
    width: 350px; /* PCの400pxから変更 */
    height: 200px; /* PCの250pxから変更 */
}
.Problemsboxtop {
    padding: 20px 40px; /* PCの20px 80pxから変更 */
}
.Problemsboxtop h2 {
    font-size: 26px; /* PCの32pxから変更 */
}
.Problemsbox1 {
    margin: 0 auto; /* タブレットで削除 */
    margin-bottom: 20px; /* タブレットで削除 */
}
.Problemsbox2 {
    flex-flow: column; /* タブレットで追加 */
    gap: 40px; /* タブレットで追加 */
}
.Problemsbox3 {
    display: flex; /* タブレットで追加 */
    align-items: center; /* タブレットで追加 */
    justify-content: center; /* タブレットで追加 */
}
.Problemsbox5 {
    border-radius: 120px; /* PCの400pxから変更 */
    flex-direction: column-reverse; /* タブレットで追加 */
}
.Problemsbox6 {
    width: 100%; /* PCの50%から変更 */
    justify-content: center; /* PCのflex-endから変更 */
}
.Problemsbox7 {
    width: 100%; /* PCの50%から変更 */
    display: flex; /* タブレットで追加 */
    justify-content: center; /* タブレットで追加 */
    align-items: center; /* タブレットで追加 */
    text-align: center; /* タブレットで追加 */
    margin-right: 40px; /* タブレットで追加 */
}
.Problemsbox7 h3 {
    margin-top: 20px; /* タブレットで追加 */
    font-size: 20px; /* PCの26pxから変更 */
}


.comparison-table th, .comparison-table td {
            padding: 16px;
            text-align: left;
            border: 1px solid #e0e6ed;
            font-size: 0.6rem;
            line-height: 1.5;
            vertical-align: top;
        }
/* Features Section */
.Featuresbox {
    padding: 20px 20px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}

.Featuresbox0 {
    gap: 20px; /* コード1: 40px */
}

.Featuresbox h2 {
    font-size: 26px; /* コード1: 32px */
}

.Featuresbox2-1 h2 {
    font-size: 26px;
}

.Featuresbox1 {
    width: 45%; /* コード1: 30% */
}


.Featuresbox2-1 {
    padding: 20px 20px; /* コード1: 20px 80px */
}
/* skillセクション */
.skillbox1 {
    padding: 20px 40px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}

.curriculum-box h2 {
    font-size: 26px; /* コード1: 32px */
}

.curriculum-box {
    padding: 20px 40px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}

/* 資格セクション3カラムレイアウト */
.text-box { /* コード2で追加 */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    color: #333;
    text-align: center;
}

.curriculum-box h3 { /* コード2で追加 */
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    letter-spacing: 8px;
    line-height: 1.6;
}

.illust-skill2 { /* コード2で追加 */
    border-radius: 50%;
    background-color: #ffffff;
    overflow: hidden;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #C3EB98 solid 6px;
}

.category-box3-img1 {
          width: 100%;
          height: auto;
        }


.header-left h1 {
            font-size: 1.2rem;
        }

.employment-table th, .employment-table td {
            padding: 5px;
            font-size: 0.8rem;
}

.pricing-note p {
            font-size: 1.2em;
        }

.steps2 {
            display: flex;
            flex-direction: column;
}        

.Staffbox1 h2 {
  font-size: 26px;
}

/* workセクション */
.Workbox1 {
    padding: 20px 40px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}

.Workbox1 h2 {
    font-size: 26px; /* コード1: 32px */
}

.Workbox2 {
    justify-content: space-between; /* コード1: center */
}

.Workbox-image { /* コード2で追加 */
    flex: 1;
    min-width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.Workbox3-img1 { /* コード2で追加 */
    width: 90%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    margin-right: 60px;
}

.Workbox3-img2 { /* コード2で追加 */
    width: 90%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    margin-left: 60px;
}

.Workbox3 {
    width: auto; /* コード1: 60% */
    min-width: 300px; /* コード2で追加 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* コード1: border: #249084 solid 4px; */
}

        
/* FAQセクション */
.FAQbox1 {
    padding: 20px 40px; /* コード1: 20px 120px */
    /* max-width: 1280px; */ /* コード2で削除 */
}

.FAQbox1 h2 {
    font-size: 26px; /* コード1: 32px */
}

/*IMGセクション*/
.IMGbox1 {
    height: 300px; /* コード1: 450px */
}

/* Testimonialsセクション */
.testimonialsbox1 {
    padding: 20px 40px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}

.testimonialsbox1 h2 {
    font-size: 26px; /* コード1: 32px */
}

.testimonials-img {
  width: 80%;
  height: 80%;
}

/* Finalセクション */
.Finalbox1 {
    padding: 20px 40px; /* コード1: 20px 80px */
}
.Finalbox2 {
    padding: 0px;
}

.Finalbox2 h2 {
 font-size: 26px;
}

.Finalbox2_p1 {
  margin-bottom: 20px;
  font-size: 14px;
}

/* Footerセクション */
.footerbox1 {
    padding: 20px 40px 0px 40px; /* コード1: 20px 80px 0px 80px */
}

.footerbox2 i {
    color: #249084; /* コード1: #32cab8 */
}

.sns2 {
    top: 12px; /* コード1: 140px */
    right: 20px; /* コード1: left: 80px; */
}

/*フェードインアニメーション*/
.fade-in {
    animation-delay: 0s; /* コード1: 2.5s */
}

.fade-in2 {
    animation-delay: 0.5s; /* コード1: 3s */
}

.fade-in3 {
    animation-delay: 1s; /* コード1: 3.5s */
}

/*調整追加CSS*/
.aboutbox {
    padding: 20px 40px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}

.aboutbox1 {
    flex-flow: column; /* コード1で削除 */
    justify-content: center; /* コード2で追加 */
    align-items: center; /* コード2で追加 */
}

.aboutbox2 {
    width: 100%; /* コード1: 50% */
}

.aboutbox3 {
    width: 100%; /* コード1: 50% */
    justify-content: flex-start;
}

.aboutbox6 {
    flex-flow: column; /* コード1で削除 */
    justify-content: center; /* コード2で追加 */
    align-items: center; /* コード2で追加 */
}

/* 上段3つのグラフ */
.aoutbox7 {
    flex: 1 1 calc(100% - 40px); /* コード1: flex: 1 1 calc(33.333% - 40px); */
    max-width: calc(100% - 40px); /* コード1: max-width: calc(33.333% - 40px); */
}

/* 下段2つのグラフ */
.aoutbox8 {
    flex: 1 1 calc(100% - 30px); /* コード1: flex: 1 1 calc(50% - 30px); */
    max-width: calc(100% - 30px); /* コード1: max-width: calc(50% - 30px); */
}

/*追加*/
.category-group3 {
    /* max-width: 1280px; */ /* コード2で削除 */
}

.category-box3 {
    flex-flow: column; /* コード1で削除 */
}

.category-box4 {
    width: 100%; /* コード1: 50% */
}

.category-box5 {
    width: 100%; /* コード1: 50% */
    margin-left: 0px; /* コード2で追加 */
}

.category-box6 {
    margin-top: 40px; /* コード1: 10px */
}

.carousel-navigation {
    padding: 0 80px; /* コード2で追加 */
}

.Workbox-image {
    width: 30%; /* コード1で削除 */
}

/* Testimonialsセクション */
.testimonialsbox1 {
    padding: 20px 40px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}

.testimonialsbox1 h2 {
    font-size: 26px; /* コード1: 32px */
}

.testimonialsbox3 {
    display: flex; /* コード2で追加 */
}

/* testimonialsbox2 はコード1に存在せず、コード2で追加されているため差分として記述 */
.testimonialsbox2 { /* コード2で追加 */
}


.CTAbox2 {
  padding: 40px 20px;
  max-width: 500px;
}

.CTAbox2 h2 {
  font-size: 26px;
  letter-spacing: 2px;
}

.CTAbox2 p {
  font-size: 14px;
}

.CTAbox2 a {
  padding: 12px 28px;
  font-size: 18px;
}

/* タブレット用の円の位置調整 */
.CAT-circle1 {
  left: 150px;
}

.CAT-circle2 {
  left: 180px;
}

.CAT-circle3 {
  left: 210px;
}

.CAT-circle4 {
  left: 240px;
}
}

@media screen and (max-width:540px) {
.header-logo1 {
  font-size: 11px;
}

.header-logo2 {
  font-size: 20px;
}

.box2 {
    height: 30%; /* PCの100%から変更 */
}

  .Featuresbox1 {
    width: 100%; /* コード1: 30% */
}
  .Problemsboxtop {
    padding: 20px 20px; /* PCの20px 80pxから変更 */
}
.Featuresbox {
    padding: 20px 20px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}
.skillbox1 {
    padding: 20px 20px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}
.curriculum-box {
    padding: 20px 20px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */

}
.Workbox1 {
    padding: 20px 20px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}
.FAQbox1 {
    padding: 20px 20px; /* コード1: 20px 120px */
    /* max-width: 1280px; */ /* コード2で削除 */
}
.testimonialsbox1 {
    padding: 20px 20px; /* コード1: 20px 80px */
    /* max-width: 1280px; */ /* コード2で削除 */
}
/* Finalセクション */
.Finalbox1 {
    padding: 20px 20px; /* コード1: 20px 80px */
}

/* Footerセクション */
.footerbox1 {
    padding: 20px 20px 0px 20px; /* コード1: 20px 80px 0px 80px */
}

}

@media screen and (max-width:540px) {
    /*　画面サイズが540pxからここを読み込む　*/
    .box3 {
       padding: 0px 10px;
    }
    .box5-3 {
  width: 100px;
  height: 100px;
}
.responsive-image {
    width: 60px;
    height: 60px;
  }
.box5-3 p {
    font-size: 12px;
}

.hc1 {
    font-size: 30px; /* PCの55pxから変更 */
    display: inline-block; /* タブレットで追加 */
}
.hc2 {
    font-size: 30px; /* PCの55pxから変更 */
    display: inline-block; /* タブレットで追加 */
}


.Problemsbox5 {
    border-radius: 60px; /* PCの400pxから変更 */
}
.IMGbox1 {
    height: 200px; /* コード1: 450px */
}
.aboutbox4 p {
  font-size: 14px;
}

.testimonials-img {
  width: 100%;
  height: 100%;
}

.employment-table th, .employment-table td {
            padding: 5px;
            font-size: 0.6rem;
}

.comparison-table th, .comparison-table td {
            padding: 10px 6px;
}

.pricing-table th {
            padding: 8px;
}
.pricing-table {
            font-size: 0.8em;
        }
.faq-question {
  font-size: 14px;
}

.faq-answer {
  font-size: 12px;
}

.CTAbox1 {
  flex-direction: column;
  /* 要素を縦に並べる */
  padding: 0;
}

.CTAbox2 {
  padding: 30px 15px;
}

.CTAbox2 h2 {
  font-size: 20px;
  letter-spacing: 1px;
}

.CTAbox2 p {
  font-size: 12px;
}

.CTAbox2 a {
  padding: 10px 24px;
  font-size: 16px;
}

/* スマートフォン用の円の位置調整 */
.CAT-circle1 {
  left: 100px;
}

.CAT-circle2 {
  left: 130px;
}

.CAT-circle3 {
  left: 160px;
}

.CAT-circle4 {
  left: 190px;
}

.CTAbox2 a {
  width: 80%;
}

.box5-1 {
    gap: 20px;
    margin-top: 10px;
}

}