
/*スマホ対応*/
@media (max-width: 767px) {
	.smt_none{
		display: none;
	}

.tour-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.tour-box {
    width: 100%;
    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;
}
.nav-link-tel{
  text-align: center;
  background-color: #ff8100;
  color: #0E3B64;
  border: 1px solid #F0F0F0;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
/* 言語別のアイコン*/
    .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: 10px;
      width: 40%;
      text-align: center;
      transition: transform 0.3s ease;
    }
	.card__body{
		font-size: 11px;
	}
    .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: 30px 30px 0 0; /* 三角形のサイズを調整 */
      border-color: #865f3d transparent transparent transparent; /* 色を設定 */
      border-top-left-radius: 10px; /* 丸みを追加 */
    }

.card__image img{
	width: 100%;
}
/* 3列（既存相当） */
.cards--3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 4列（新規） */
.cards--4col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* 当店舗でできること*/
	.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 450px;
  margin: 0 auto;
  padding: 20px 0;
}

.service-item {
  border: 3px solid #cce4f6; /* 薄めの青 */
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.05); /* ほんのり影 */
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.1);
}

.service-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 14px;
  color: #333;
  margin: 0;
}
#service-grid-h2 {
    text-align: center;
    color: #525252;
    text-shadow: 1px 2px 3px #cde4f6;
}
.service-item p {
  position: relative;
  padding-bottom: 8px;
}

.service-item p::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #66bfff;
  margin: 6px auto 0;
}

.service-item img {
  background-color: rgba(102, 191, 255, 0.2);
  border-radius: 50%;
  padding: 10px;
}

}
/*スマホ対応終わり*/

/*PC対応*/
@media (min-width: 768px) {
.pc_none{
	display: none;
}
.tour-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
    max-width: 1210px;
    margin: 0 auto;
}

.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;
}
.nav-link-tel{
  position: absolute;
  /*top: 10px;*/
  right: 10px;
  background-color: #ff8100;
  color: #0E3B64;
  border: 1px solid #F0F0F0;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000; /* 他の要素より前に出す */
}
.address_dd{
	border: 1px solid #C4DCFF;
	background: #B5CFFC;
}
/* 言語別のアイコン*/

    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
	
    .card {
      position: relative; /* 青いアクセント用 */
      background: #fff;
      border-radius: 13px;
      /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
      padding: 20px;
      width: 260px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    /*.card:hover {
      transform: translateY(-10px);
    }*/

    .card h3 {
    color: #00569a;
    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: #00569a transparent transparent transparent; /* 色を設定 */
      border-top-left-radius: 10px; /* 丸みを追加 */
    }

.card__image img{
	width: 200px;
}
/* 3列（既存相当） */
.cards--3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 4列（新規） */
.cards--4col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* 当店舗でできること*/
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}

.service-item {
  border: 3px solid #cce4f6; /* 薄めの青 */
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.05); /* ほんのり影 */
  transition: transform 0.2s, box-shadow 0.2s;
}

/*.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.1);
}*/

.service-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 14px;
  color: #333;
  margin: 0;
}
#service-grid-h2 {
    text-align: center;
    color: #525252;
    text-shadow: 1px 2px 3px #cde4f6;
}
.service-item p {
  position: relative;
  padding-bottom: 8px;
}

.service-item p::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #66bfff;
  margin: 6px auto 0;
}

.service-item img {
  background-color: rgba(102, 191, 255, 0.2);
  border-radius: 50%;
  padding: 10px;
}
}
/*PC対応終わり*/

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: #00569a;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
}

.company {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
}
.company th, .company td {
  border: 2px solid #fff;
  background-color: #e6f1f6;
  padding: 1em;
}
.company th {
  background-color: #4d9bc1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 20%;
  min-width: 4em;
}
