
/*スマホ対応*/
@media (max-width: 767px) {
	.smt_none{
		display: none;
	}

.tour-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.tour-box {
    margin: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.tour-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tour-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-content {
    padding: 15px;
}

.tour-label {
    background-color: #ff6b6b;
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}
}

/*PC対応*/
@media (min-width: 768px) {
.pc_none{
	display: none;
}
.tour-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.tour-box {
    width: 300px;
    margin: 0 6px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.tour-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tour-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-content {
    padding: 15px;
}

.tour-label {
    background-color: #ff6b6b;
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}
}


body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        header {
            background: url('../img/italy.jpg') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        header h1 {
            margin: 0;
            font-size: 3rem;
            text-shadow: 2px 2px 4px black;
        }
        header p {
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px black;
            margin: 10px 0 0;
        }
        nav {
            background: #333;
            color: white;
            display: flex;
            justify-content: center;
            padding: 10px;
        }
        nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
        }
        nav a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 20px;
        }
        .tour-highlight {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .tour {
            background: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 20px;
            flex: 1;
            min-width: 300px;
        }
        .tour img {
            max-width: 100%;
            border-radius: 5px;
        }
        .tour h2 {
            margin-top: 10px;
        }
        .tour p {
            margin-top: 10px;
        }
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 10px 0;
        }

h3 {
    font-size: 1.2rem;
    margin: 10px 0;
}

p {
    font-size: 0.9rem;
    margin: 5px 0;
}

.tour-price {
    font-size: 1rem;
    font-weight: bold;
    color: #e8491d;
    margin-top: 10px;
}
#about{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}
.description{
	color: white;
    text-shadow: 2px 2px 4px black;
	
}
.clr_both{
	clear: both;
}

.course{
  background: #865f3d;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
}

    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .card {
      position: relative; /* 青いアクセント用 */
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      width: 300px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-10px);
    }
    .card h3 {
    color: #865f3d;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    }
    .card p {
      color: #555;
      margin-bottom: 10px;
    }

    /* 左上の三角形アクセント */
    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 50px 50px 0 0; /* 三角形のサイズを調整 */
      border-color: #865f3d transparent transparent transparent; /* 色を設定 */
      border-top-left-radius: 10px; /* 丸みを追加 */
    }