.bg{
    background: linear-gradient(to bottom right, #b6e2b6, #8fcb8f, #5cae5c);
}

.title-img{
    position: relative;
    display: inline-block;
}

.title-img img{
    margin: 0 auto;
}

.centered-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: rgb(255, 0, 0);
      font-size: 100px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      text-align: center;
}

/* 小さい画面（ノートPCやスマホ）向けにフォントサイズを調整 */
@media (max-width: 1024px) {
  .centered-text {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .centered-text {
    font-size: 20px;
  }
}

/* .top-video video{
    width: 100%;
    height: 100%;
}

.story video{
    width: 100%;
} */

.story img{
    margin: 0 auto;
}

.concept-title{
    text-align: center;
    font-size: 32px;
}

.concept-text{
    text-align: center;
}

.concept-explanation{
    text-align: center;
    color: #5cae5c;
    font-size: 48px;
}

.point{
    background-color: red;
    padding-bottom: 30px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.point-title{
    text-align: center;
    font-size: 32px;
    color: #fff;
}

.point-text{
    text-align: center;
    color: #fff; 
    margin-bottom: 10px; 
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.experience-announcement{
    background-color: rgb(177, 202, 255);
    padding-bottom: 30px;
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.experience-announcement-title{
    text-align: center;
    font-size: 32px;
}

.experience-announcement-text{
    text-align: center;
    margin-bottom: 10px; 
}

/* ▼ ここを .card-point に変更 */
.card-point {
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.card-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.card-point h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.card-point p {
    color: #555;
    font-size: 0.95rem;
}


.calendar-card-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* 8列 */
  gap: 12px;
}

.calendar-card {
  background-color: #ffffff;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  line-height: 1.4;
}

.dayBox {
    font-weight: bold;
    font-size: 36px;
}

.cat {
    background: #34b3cb;
    padding: 5px 0;
    height: auto;
    font-size: 9px;
}

.pickup{
    background-color: rgb(248, 240, 167);
    padding-bottom: 30px;
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.pickup-explanation{
    display: flex;
    align-items: center;     /* 縦方向の中央揃え */
    justify-content: space-around;
    height: 300px;            /* 高さは任意で調整 */
}

.pickup-explanation-text{
    width: 40%;
}

.catchcopy-title1,
.catchcopy-title2,
.catchcopy-title3,
.catchcopy-title4,
.catchcopy-title5 {
    position: relative;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    color: #222;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
    text-align: center;
    display: inline-block; /* 下線と連動しやすく */
    margin: 1em auto;
}

.catchcopy-title1::after,
.catchcopy-title2::after,
.catchcopy-title3::after,
.catchcopy-title4::after,
.catchcopy-title5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  transition: width 1s ease-out;
}

/* アニメーション発動 */
.visible {
  opacity: 1;
  transform: translateY(0);
}

.visible::after {
  width: 100%;
}

.pickup-explanation-img img{
    width: 100%;
    height: 200px;
}

.interview{
    background-color: rgb(228, 186, 252);
    padding-bottom: 30px;
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.interview-explanation{
    display: flex;
    align-items: center;     /* 縦方向の中央揃え */
    justify-content: space-around;
    height: 400px;            /* 高さは任意で調整 */
}

.interview-explanation-img img{
    width: 100%;
    height: 250px;
}


.interview-explanation-text{
    width: 40%;
}

/* 偶数：画像左（通常方向） */
.interview-explanation.even {
  flex-direction: row;
}

/* 奇数：画像右（反転） */
.interview-explanation.odd {
  flex-direction: row-reverse;
}

.gallery-title{
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}
/* グリッドレイアウト用 */
.card-gallery-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* 各カードの見た目 */
.card-gallery {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 16px;
    transition: transform 0.2s;
}

.card-gallery img{
    width: 100%;
    height: 150px;
}

.card-gallery:hover {
    transform: translateY(-5px);
}

/* レスポンシブ対応 */
@media (max-width: 1000px) {
    .card-gallery-container {
    grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .card-gallery-container {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .card-gallery-container {
    grid-template-columns: 1fr;
    }
}


.contact {
    max-width: 600px;
    margin: 50px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-title {
    font-size: 28px;
    color: #2a7bbd;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.contact p::before {
    content: "📞";
    display: inline-block;
    margin-right: 8px;
    color: #2a7bbd;
}

.contact p:nth-of-type(2)::before {
    content: "✉️";
}