html{
  height: 100%;
  font-size: 65%;
  scroll-behavior: smooth;
}
body{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  color:#787878;
}

/* ヘッダー */
header{
  background: #2ccaff;
  color: #fff;
  padding: 2rem 2rem;
  text-align: center;
  font-size: large;
}

nav .nav-list {
  list-style: none;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0;
}
nav .nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);

}

/* ファーストビュー */
#fv{
  position: relative;
  max-width: 100%;
  height: 600px;
  background: url(../img/top_bread.jpg) no-repeat;
  background-size: cover;
  color: #555; 
}

#fv .catchcopy-layout{
  justify-content: center;
}

#fv .catchcopy{
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 0;
  left: 0;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 20px 20px;
  margin: 60px;
}



/* メイン */
h2{
  text-align: center;
  font-size: 30px;
  color: #2ccaff;
  font-style: bold;
}

h3{
  font-style: bold;
}

.pantabi-set{
  display: flex;
  margin-top: 50px;
  gap: 30px;
  justify-content: center;
  padding: 0;
}

.pantabi-items{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.photosize{
  width: 250px;
  img {
    width: 100%;
  }
}

.oshirase{
  justify-content: center;
}

#oshirase{
  text-align: center;
  padding: 40px 20px;
}

#campaign{
  justify-content: center;
  padding: 40px 20px;
}

/* 購入から頂きますまで（横並び） */

.step-flex {
  display: flex;
  justify-content: center;
}

.iconsize{
  display: flex;
  max-height: 50px;
  align-items: flex-start;
  justify-content: center;
  width: 50px;
    img{
        width: 100%;
    }
}

.step-text{
  max-width: 400px;
  width: 100%;
  margin: 20px;
}

.step-text2{
  font-style: bold;
  width: 500px;
}

.step-flex-all{
  display: center;
}

  /* ぱん旅便とは（about） */

#pantabi-about{
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pantabi-about-img {
  width: 700px;
  img {
    width: 100%;
}
}

/* content1 （セット概要） */

#pantabi-set-summary{
  background-color: #fff;
  justify-content: center;
  margin: 20px;
  padding: 1rem;
}

/* content2 （セット詳細ページ） */

.details-section{
  padding: 4rem 0;
  display: flex;
}

.wrapper{
  max-width: 700px;
  padding: 0 20px;
  margin: 0 auto;
}

.details-img{
    width: 500px;
  img {
    width: 100%;
  }
}

.details-inner{
  display: flex;
  gap: 30px;
  margin: 20px 20px;
}

.details-title{
  font-size: 1.4rem;
  font-weight: bold;
}



/* 問い合わせページ */

.notice-text {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 1rem;
} 

form{
  background: #fff;
  width: 800px;
  align-items: center;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 4px 6px
    rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

label{
  display: block;
  margin: 1rem 0 0.5rem 0;
  font-weight: 600;
  color: #2ccaff;
}


input, textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #c5c6c7;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}


button {
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  background-color: #2ccaff;
  }

  button:hover {
  background-color: #0fbff9;
}


  /* フッター */
  footer {
    background: #2ccaff;
    color: #fff;
    text-align: center;
    font-size: 0.8 rem;
    padding: 1rem;
  }