/* 全体のリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
    line-height: 1.6;
  }


/* コンセプトセクション */
.concept-all{
    margin: 20px;
}

.image-container {
    position: relative;
    width: 100%;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    opacity: 0.6; /* 画像の透明度を設定 */
  }
  
  .title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
  }

.cocept-main-title{
    margin-top: 25px;
}

.concept {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cocept-contents-title{
    margin-top: 40px;
}

/* PC表示時: 画像とテキストを横並び */
.concept-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 画像スタイル */
.concept-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

/* テキストスタイル */
.concept-text {
    flex: 1;
}

.concept-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.concept-text p {
    font-size: 16px;
    color: #333;
}


.course-title {
    background: #e74c3c;
    color: white;
    padding: 10px;
    text-align: center;
    margin: 0;
}

.course-title span {
  text-decoration: underline;
}


/* フッター */
footer {
    background-color: rgb(173, 231, 249);
    color: rgb(0, 0, 0);
    padding: 20px 10px;
    text-align: center;
  }
  
  .footer-menu-list {
    list-style: none;
    padding: 0;
  }
  
  .footer-menu-list li {
    display: inline-block;
    margin: 0 10px;
  }
  
  .footer-menu-list a {
    text-decoration: none;
    color: #333;
  }
  
  .copyright {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }

/* スマホ表示時: 画像が上、テキストが下 */
@media (max-width: 768px) {
    .concept-container {
        flex-direction: column;
        text-align: center;
    }

    .concept-image img {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .title-overlay h2 {
      font-size: 1.5rem;
    }
  }