@charset "UTF-8";

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* ----------------------------------------------------------------------
タイトル&背景

-------------------------------------------------------------------------*/








#lp_bg2 h3{
	text-align: center;
	padding: 20px 0px;
}

#lp_bg2 {
	background-color: #f7eec0;
	padding: 15px 10px;
}


#lp_bg3 h3{
	text-align: center;
	padding: 20px 0px;
}

#lp_bg3 {
	background-color: #a9c15d;
	padding: 15px 10px;
}





/* Information Section */
#information {
	background-image: url("images/heroimage-min.jpg"); 
	background-size: cover;        
	 background-position: center;     
  background-repeat: no-repeat;   
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

#information::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.information-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.information-container img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2));
    animation: fadeInDown 0.8s ease-out;
}

.information-container p {
	color:#39395f;
    font-size: 1.4rem;
     font-family: 'Noto Sans JP', sans-serif;
    line-height: 2.2;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.information-container p br {
    display: block;
    content: "";
    margin-top: 8px;
}







/* ----------------------------------------------------------------------
ナビ

-------------------------------------------------------------------------*/
#student_nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

#student_nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

#student_nav ul li {
    flex: 1 1 auto;
    min-width: 200px;
}

#student_nav ul li a {
    display: block;
    padding: 20px 15px;
    text-decoration: none;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

#student_nav ul li a:hover {
    background: #f8f9fa;
    border-bottom-color: #aac25e;
    color: #aac25e;
}






/* ----------------------------------------------------------------------
全般　（フォント、クリアなど）

-------------------------------------------------------------------------*/

.clear {
	clear: both;
}

	
	



h1 { 
    font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	font-size: 1.5em;
	color: #000;
	padding: 30px 120px;
}


/* ----------------------------------------------------------------------
フェードイン　アニメーション

-------------------------------------------------------------------------*/
.fadein{
  -webkit-transition: all 2s linear;
  -o-transition: all 2s linear;
  transition: all 1s linear;
  opacity: 0;
}
.fadein.active{
  opacity: 1;
}






/* ----------------------------------------------------------------------
商品　共通部分

-------------------------------------------------------------------------*/
/* 見出し */
.heading {
  display: flex;
  align-items: center;
  justify-content: center; /* centers content horizontally */
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap; /* allows wrapping on small screens */
}

  .heading img {
    width: 100px; /* smaller to match text size */
    height: 100px;
    object-fit: contain;
  }

  .heading h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
     font-family: 'Noto Sans JP', sans-serif;  
  }

/* ---------- Card Container ---------- */
  .tour-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .tour-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .tour-container {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* ---------- Individual Card ---------- */
  .tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
        justify-content: space-between; /* 上部コンテンツとボタンを上下に分ける */
  height: 100%; /* カードの高さを揃える場合は、親の高さを指定 */
  }

  .tour-card:hover {
    transform: translateY(-5px);
  }

  .tour-image {
    position: relative;
    overflow: hidden;
  }

  .tour-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .tour-card:hover .tour-image img {
    transform: scale(1.05);
  }

  /* ---------- Small Badge ---------- */
  .small-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
      font-family: 'Noto Sans JP', sans-serif;
  }

  .cycling { background-color: #7a8e39; }
  .walking { background-color: #965d3a; }
  .foodie { background-color: #344273; }
  .culture { background-color: #986082; }
.sightseeing { background-color: #99760d; }
  .ticket { background-color: #426a59; }

  /* ---------- Card Content ---------- */
  .tour-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
  flex-grow: 1; /* 中身が伸びてもボタンは下に固定 */
       font-family: 'Noto Sans JP', sans-serif;
  }

  .tour-type {
      font-size: 12px;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
     font-family: 'Noto Sans JP', sans-serif;  
  }

  .tour-title {
    font-weight: bold;
    margin: 5px 0;
      font-family: 'Noto Sans JP', sans-serif;  
  }




  .tour-description {
    color: #666;
    margin-bottom: 10px;
      font-family: 'Noto Sans JP', sans-serif;  
  }

  .features {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0 0 15px;
    color: #555;
  }

  .price-section {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Noto Sans JP', sans-serif;  
  }

  .btn {
    display: inline-block;
    background-color: #39385f;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
       margin-top: auto; 
       font-family: 'Noto Sans JP', sans-serif;
  }

  .btn:hover {
    background-color: #4c4a7c;
  }

/* ----------------------------------------------------------------------
UAセクション

-------------------------------------------------------------------------*/


/* ===== 見出しセクション ===== */
  .ua-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .ua-heading h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
     font-family: 'Noto Sans JP', sans-serif;  
  }

  /* ===== メイン画像エリア ===== */
  .ua-image {
    width: 100%;
    max-width: 900px;
    height: 220px;
	background-image: url("images/UA-4-min.jpg"); 
	background-size: cover;        
	 background-position: center;                 
  background-repeat: no-repeat;   
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
  }

  /* ===== テキストエリア ===== */
  .intro-text {
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #555;
       font-family: 'Noto Sans JP', sans-serif;
  }

  /* ===== 3カラムセクション ===== */
  .info-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .info-section {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .info-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .info-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }

  .info-content {
    padding: 15px;
    flex: 1;
  }

  .info-content h3 {

    font-weight: bold;
    margin-bottom: 10px;
font-family: 'Noto Sans JP', sans-serif;      
  }

  .info-content p {
    color: #666;
    line-height: 1.6;
      font-family: 'Noto Sans JP', sans-serif;
  }




.button-wrapper {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
}

.main-button {
  display: inline-block;
  background-color: #426b59;
  color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.main-button:hover {
  background-color: #005c99;
  transform: translateY(-2px);

/* ----------------------------------------------------------------------


media Queries


-------------------------------------------------------------------------*/

/* スマホに適用するCSS */
@media screen and ( max-width:920px ) {

.tours{
	float:none;
}
	
}


/* スマホに適用するCSS */
@media screen and ( max-width:640px ) {

	
	

	
.sliding{ display:none;
}
	
	
h1 {
	padding: 30px 30px;
	font-size:1.2em; 
}

	
.lp-title div{
padding: 90px auto;
}


.lp-title div img {
  width: 50%;
  margin: auto;
}

	#student_nav {
	height: 50px;
}

.navi_link a {
	width: 200px;
    padding: 15px 0px 25px 0px;
font-size:70%;
}
	
#information{
	margin: auto;
	padding: 10px 10px 50px 10px;
background-size:400px auto; 
		height: 350px;
background-color: #c3e4fb;
}	

	
#information h4 {
  margin: 15px;
  font-size: 1.2em;
  text-align: center;
  color: #000;
}


	
	

	
.information-container p{
	margin: 10px 0px 0px 0px;
	padding: 10px 0px;
	font-size: 0.8em;
	line-height: 1.8em;

}	
	


	
	
.information-container img 	{
	float: none;
	
}
	
	

	
	

	


}


		
/* タブレットに適用するCSS */
@media screen and (max-width: 1024px){

	
	



#title_image {
	width: 40%;
	margin: 0;
}	
	
	

	
	
.navi ul {
  position: relative;
  left: 50%;
  float:none;
}

.navi li {
  position: relative;
  right: 50%;
  float: none;
}	
		
	
.navi_link {
  float:none;
  margin: 0px 0px;
text-align: center;
 border-right: none;
}

.navi_link_opt {
  float:none;
  text-align: center;
  margin: 0px 0px;
}

	
	
.navi_link a {
	display: inline-block; 
    text-align: center;
    text-decoration: none; 
	width:100%; 
    padding: 10px;
	font-weight: bolder;
}


.navi_link_opt a {
	display: inline-block; 
    text-align: center;
    text-decoration: none; 
    width:100%; 
    padding: 10px;
	font-weight: bolder;
}
	
	
	

		


			
	}


