/*Reset CSS*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Main Styles - Exact replica of reference images */
* {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
  color: #333;
  background-color: #fff;
}

main a {
  text-decoration: none;
}

.red-text {
  color: #c5372b;
}

.layout {
  display: grid;
  grid-template-columns: 20% 60% 20%;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* Header - Exact match to pc_01.png */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  background-color: #fff;
  padding: 20px 0;
}

.header-main-wrapper {
  display: flex;
  justify-content: space-between;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.logo:hover {
  color: #c5372b;
}

.logo img {
  height: 40px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  background: #333;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.menu-line {
  width: 20px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
}

/* Hamburger menu animation */
.menu-button.is-active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-button.is-active .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Menu Styles */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.3s,
    opacity 0.3s ease;
}

.nav-menu.is-active {
  visibility: visible;
  opacity: 1;
}

.nav-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.nav-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.nav-menu.is-active .nav-menu-content {
  transform: translateX(0);
}

.nav-close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  border-radius: 50%;
}

.nav-close-button:hover {
  background: #f5f5f5;
}

.close-icon {
  font-size: 36px;
  color: #333;
  line-height: 1;
}

.nav-menu-inner {
  padding: 80px 30px 30px;
}

.nav-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-list li {
  margin-bottom: 5px;
}

.nav-menu-list a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.nav-menu-list a:hover {
  background: #f5f5f5;
  border-left-color: #c5372b;
  padding-left: 25px;
}

.nav-menu-list .current-menu-item a,
.nav-menu-list .current_page_item a {
  background: #f5f5f5;
  border-left-color: #c5372b;
  font-weight: 500;
}

/* Submenu styles if needed */
.nav-menu-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 20px;
}

.nav-menu-list .sub-menu a {
  font-size: 16px;
  padding: 12px 20px;
}

.discover-img {
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  overflow: hidden;
  height: 200px;
}

.gallery-contents-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* PCでは左右2列 */
  gap: 10px;
  width: 75%;
  margin: 0 auto;
}

/* スマホ時は縦並び */
@media (max-width: 768px) {
  .gallery-contents-wrapper {
    grid-template-columns: 1fr;
  }
}

.gallery-contents-uno,
.gallery-contents-dos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-contents-unit {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-left: 1px solid #000;
  padding: 0 6px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-contents-unit img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .nav-menu-content {
    max-width: 300px;
  }

  .nav-menu-list a {
    font-size: 16px;
    padding: 12px 15px;
  }

  .nav-menu-list .sub-menu a {
    font-size: 14px;
    padding: 10px 15px;
  }
}

/* Hero Section - Exact match to pc_01.png */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 100px;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./assets/images/hero.png") center center;
  background-size: cover;
  z-index: -1;
}

.hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
}

.hero-title {
  font-size: 72px;
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 1px;
  font-style: italic;
}

.hero-description {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  max-width: 400px;
}

/* Navigation Section - Exact match to pc_01.png */
.nav-section {
  background: white;
  padding: 50px 0;
  border-bottom: solid 3px #eaeaea;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.nav-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item {
  display: flex;
  padding: 0 60px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border-right: 1px solid #eeeeee;
  text-decoration: none;
  transition: transform 0.3s;
}

.nav-item:hover {
  transform: translateY(-5px);
}

.nav-item:last-child {
  border-right: none;
}

.nav-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-item span {
  font-size: 14px;
  font-weight: normal;
  color: #666;
  letter-spacing: 0.5px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #333;
  color: white;
  padding: 15px 40px;
  border: none;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  letter-spacing: 1px;
}

.icon {
  width: 16px;
  padding-bottom: 4px;
}

/* Map Section - Exact match to pc_02.png */
.map-section {
  padding: 20px 0;
  background: #f5f5f5;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.map-container {
  gap: 0;
}

.section-title {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #333;
}

.section-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.map-image {
  height: 550px;
  position: relative;
}

.map-image img {
  position: absolute;
  top: 0%;
  right: -40%;
  width: 700px;
}

/* Content Sections - Exact match to pc_02.png */
.content-sections {
  padding: 80px 0;
}

.content-item {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  text-decoration: none;
}

.content-item.reverse {
  direction: rtl;
}

.content-item.reverse > * {
  direction: ltr;
}

.content-image {
  background-size: cover;
  background-position: center;
}

.content-image img {
  width: 100%;
}

.content-text {
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.content-text h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #333;
}

.content-text h3::first-letter {
  color: red;
  font-size: 2em;
}

.content-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.arrow-button {
  width: 40px;
  height: 40px;
  background: #e74c3c;
  padding: 5px;
  cursor: pointer;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}
.arrow-button img {
  width: 100%;
}

/* About Hamamatsu Section - Exact match to pc_03.png */
.about-hamamatsu {
  background: #c5372b;
  color: white;
  position: relative;
  padding: 0;
}

.about-container {
  margin: 100px auto 0;
  display: grid;
  justify-content: space-between;

  grid-template-columns: 1fr 1fr;
  background-image: url("/assets/images/map_people_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.hamamap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hamamap img {
  width: 100%;
}

.location-info {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}

.location-info p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
  font-weight: 300;
}

.access-info {
  padding: 15px;
  border-radius: 4px;
}

.access-info h4 {
  font-size: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.access-item {
  margin-bottom: 8px;
  font-size: 10px;
  line-height: 1.4;
}

.access-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 1px;
  font-size: 11px;
}

/* About Us Section - Exact match to pc_03.png */
.about-us {
  padding: 80px 0;
  background: #f5f5f5;
  background-image: url("./assets/images/kankitsu_arch.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.about-us-car {
  text-align: right;
}

.about-us-car img {
  width: 100%;
}

.about-us-fun-people {
}

.about-us-fun-people img {
  width: 100%;
}

.about-us-container {
  margin: 0 auto;
  padding: 0 20px;
}

.about-us-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-us-content {
  padding-top: 250px;
}

.about-us-content h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #333;
}

.company-logos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.company-logos img {
  width: 100%;
}

.logo-item {
  background: #333;
  color: white;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 15px;
}

.tags {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.tag {
  background: #e74c3c;
  color: white;
  padding: 6px 15px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.about-content h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #333;
}

.about-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

/* Journey Section - Exact match to pc_04.png */
.journey {
  background: white;
}

.journey-header {
  text-align: center;
  margin: 0 auto 60px;
  background-image: url("./assets/images/journey_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: white;
}

.journey-header h2 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
}

.journey-header p {
  font-size: 14px;
  line-height: 1.6;
}

.journey-options {
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.journey-option {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.option-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.touching-tradition {
  background-image: url("./assets/images/udegumi.png");
}

.nature-fullest {
  background-image: url("./assets/images/kankitsurui.png");
}

.option-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  font-size: 18px;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.journey-package {
  height: 300px;
  text-align: center;
  margin-bottom: 60px;
  background: #333;
  color: white;
  padding: 20px;
  background-image: url("./assets/images/noren.png");
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  justify-content: center;
}

.journey-package h3 {
  font-size: 20px;
  font-weight: 300;
}

.journey-package span {
  font-size: 40px;
  font-weight: 600;
}

.timeline {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline-img-wrapper img {
  width: 100%;
}

.dont-forget-wrapper {
  background-image: url("./assets/images/journey_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.dont-forget {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow-x: hidden;
}

.dont-forget-carimg {
  width: 30%;
}

.dont-forget-carimg img {
  width: 100%;
}

.dont-forget-text {
  width: 40%;
  color: #fff;
  padding: 15px;
  font-size: 24px;
}

.time {
  font-size: 14px;
  font-weight: bold;
  color: #e74c3c;
}

.activity {
  font-size: 12px;
  font-weight: normal;
  color: #333;
  line-height: 1.4;
}

.timeline-image {
  height: 60px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

.station-image {
  background-image: url("./assets/images/グループ 43.png");
}

.lunch-image {
  background-image: url("./assets/images/hmnkb_unagi.png");
}

.soy-image {
  background-image: url("./assets/images/soysauce.png");
}

.sushi-image {
  background-image: url("./assets/images/グループ 44.png");
}

.camp-image {
  background-image: url("./assets/images/グループ 45.png");
}

.timeline-content p {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 10px;
}

.timeline-content h4 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.detail-images {
  grid-column: 2 / -1;
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.detail-image {
  width: 60px;
  height: 45px;
  background: url("./assets/images/soysauce.png") center center;
  background-size: cover;
  border-radius: 3px;
}

.timeline-description {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 20px;
  border-radius: 5px;
}

.timeline-description p {
  font-size: 12px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 15px;
}

.details-button-wrapper {
  text-align: center;
}

.details-button {
  width: 60%;
  display: inline-block;
  background: transparent;
  color: #333;
  padding: 16px 40px;
  border: 1px solid #333;
  font-size: 24px;
  cursor: pointer;
}

.details-button img {
  filter: invert(1) brightness(0);
}

.package-map-wrapper {
  background-image: url("./assets/images/kotira_section.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.package-map {
  display: flex;
  justify-content: space-between;
}

.package-map img {
  width: 100%;
}

.total-badget-wrapper {
  padding-bottom: 40px;
}

.total-badget h4 {
  text-align: center;
  font-size: 24px;
  padding: 60px 0;
}

.total-badget-center {
  display: flex;
  justify-content: space-between;
}

.total-badget-left {
  width: 60%;
  border-left: 1px solid #000;
  padding: 20px 20px 20px 40px;
  margin: 20px 20px 20px 40px;
}

.total-badget-img img {
  width: 100%;
}

.total-badget-price {
  font-size: 40px;
  padding: 20px 0;
}

.total-badget-price span {
  font-size: 18px;
}

.total-badget-right {
  width: 40%;
  padding: 20px 0;
  margin: 20px 0;
}

.total-badget-right p {
  line-height: 2;
}

.total-badget-button-wrapper {
  text-align: center;
}

.total-badget-button {
  display: inline-block;
  background: transparent;
  color: #333;
  padding: 16px 40px;
  border: 1px solid #333;
  font-size: 24px;
  cursor: pointer;
  margin: 60px 0;
  text-decoration: none;
}

.total-badget-button img {
  filter: invert(1) brightness(0);
}

.nature-package {
  height: 300px;
  text-align: center;
  margin-bottom: 60px;
  background: #333;
  color: white;
  padding: 20px;
  background-image: url("./assets/images/package2-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  justify-content: center;
}

.nature-package h3 {
  font-size: 20px;
  font-weight: 300;
}

.nature-package span {
  font-size: 40px;
  font-weight: 600;
}

.package2-timeline-main {
  position: relative;
  padding-bottom: 60px;
}

.package2-timeline-main img {
  width: 100%;
}

.package2-button-wrapper {
  text-align: center;
  position: absolute;
  top: 43%;
  right: 6%;
}

.package2-button-wrapper img {
  width: 16px;
}

.package2-button {
  width: 100%;
  display: inline-block;
  background: transparent;
  color: #333;
  padding: 16px 40px;
  border: 1px solid #333;
  font-size: 24px;
  cursor: pointer;
}

.package2-button img {
  filter: invert(1) brightness(0);
}

.discover-more-main h4 {
  font-size: 32px;
  padding: 30px;
  text-align: center;
}

.discover-more-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.discover-more-imgs img {
  width: 100%;
}

.gallery h4 {
  text-align: center;
  font-size: 30px;
  padding: 30px 0;
}

.gallery img {
  width: 100%;
}

/* Footer - Exact match to pc_05.png */
.footer {
  background: white;
  padding: 60px 0 30px;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #333;
}

.footer-menu {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.footer-nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-nav a {
  display: block;
  width: 25%;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  border-left: 1px solid #000;
  padding: 20px;
  text-align: center;
}

.footer-nav a:last-child {
  border-right: 1px solid #000;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 10px;
  color: #999;
}

/* Category Page Styles */
.category-page {
  background: #f5f5f5;
}

.category-hero {
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.category-hero-background {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.category-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.category-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.category-hero-title {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.category-hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.category-intro-section {
  padding: 80px 0;
  background: white;
}

.category-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.category-intro h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #333;
}

.category-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.featured-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.featured-content h2 {
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.featured-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.featured-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  padding: 40px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-item.reverse {
  direction: rtl;
}

.featured-item.reverse > * {
  direction: ltr;
}

.featured-image img {
  width: 100%;
  height: auto;
}

.featured-text h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #333;
}

.featured-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.featured-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #c5372b;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-experience-section {
  padding: 80px 0;
  background: white;
}

.experience-content h2 {
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.experience-intro {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.experience-card {
  background: #f5f5f5;
  padding: 40px 30px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.experience-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #333;
}

.experience-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 24px;
}

.experience-link {
  color: #c5372b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.experience-link:hover {
  color: #e74c3c;
}

.category-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #c5372b 0%, #e74c3c 100%);
  color: white;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  color: white;
  opacity: 0.95;
}

.cta-button-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #333;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-large img {
  width: 18px;
  filter: brightness(0);
}

/* Category Page Responsive */
@media (max-width: 768px) {
  .category-hero {
    height: 350px;
  }

  .category-hero-title {
    font-size: 40px;
    top: 40%;
  }

  .category-hero-subtitle {
    font-size: 14px;
    top: 60%;
  }

  .category-intro-section {
    padding: 40px 0;
  }

  .category-intro h2 {
    font-size: 28px;
  }

  .category-intro p {
    font-size: 14px;
  }

  .featured-section {
    padding: 40px 0;
  }

  .featured-content h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .featured-grid {
    gap: 40px;
  }

  .featured-item {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .featured-item.reverse {
    direction: ltr;
  }

  .featured-text h3 {
    font-size: 22px;
  }

  .category-experience-section {
    padding: 40px 0;
  }

  .experience-content h2 {
    font-size: 28px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-card {
    padding: 30px 20px;
  }

  .category-cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-button-large {
    padding: 16px 40px;
    font-size: 16px;
  }
}

/* Contact Page Styles */
.contact-page {
  background: #f5f5f5;
}

.contact-hero {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #c5372b 0%, #e74c3c 100%);
}

.contact-hero-background {
  width: 100%;
}

.contact-hero-content {
  text-align: center;
  color: white;
}

.contact-hero-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.contact-hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.contact-form-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.contact-content {
  width: 100%;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-intro h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #333;
}

.contact-intro h2::first-letter {
  color: #c5372b;
  font-size: 1.5em;
}

.contact-intro p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.contact-main-wrapper {
  display: grid;
  gap: 40px;
  align-items: start;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.contact-form .required {
  color: #c5372b;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  font-size: 14px;
  transition: border-color 0.3s;
  background: #fff;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #c5372b;
}

.contact-form select.form-control {
  cursor: pointer;
}

.contact-form .textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #333;
  color: white;
  padding: 16px 50px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-button:hover {
  background: #c5372b;
}

.submit-button img {
  width: 16px;
  filter: brightness(0) invert(1);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card,
.contact-support-card {
  background: white;
  padding: 30px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #333;
}

.info-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.info-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.info-item a {
  color: #c5372b;
  text-decoration: none;
  transition: color 0.3s;
}

.info-item a:hover {
  color: #e74c3c;
}

.contact-support-card {
  background: #c5372b;
  color: white;
}

.contact-support-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.contact-support-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.support-phone {
  text-align: center;
  font-size: 20px;
  margin-top: 16px;
}

.contact-faq-section {
  padding: 80px 0;
  background: white;
}

.faq-content h2 {
  font-size: 32px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.faq-content h2::first-letter {
  color: #c5372b;
  font-size: 1.5em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.faq-item {
  background: #f5f5f5;
  padding: 30px;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #333;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.faq-item a {
  color: #c5372b;
  text-decoration: none;
}

.faq-cta {
  text-align: center;
}

.faq-cta p {
  font-size: 18px;
  margin-bottom: 16px;
  color: #333;
}

.btn-link {
  color: #c5372b;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.btn-link:hover {
  color: #e74c3c;
}

.contact-map-section {
  padding: 80px 0 120px;
  background: #f5f5f5;
}

.map-wrapper {
  text-align: center;
}

.map-wrapper h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 16px;
  color: #333;
}

.map-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

.map-placeholder {
  max-width: 600px;
  margin: 0 auto;
}

.map-placeholder img {
  width: 100%;
  height: auto;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-hero {
    height: 300px;
  }

  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-subtitle {
    font-size: 14px;
  }

  .contact-form-section {
    padding: 40px 0;
  }

  .contact-intro {
    margin-bottom: 40px;
  }

  .contact-intro h2 {
    font-size: 24px;
  }

  .contact-main-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-item {
    padding: 20px;
  }

  .contact-map-section {
    padding: 40px 0 60px;
  }

  .map-wrapper h2 {
    font-size: 24px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .layout {
    display: grid;
    grid-template-columns: 0% 100% 0%;
    margin: 0 auto;
  }

  .hero {
    padding-left: 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .map-image {
  }

  .map-image img {
    right: -60%;
    width: 500px;
  }

  .map-content {
    margin-left: auto;
  }

  .map-container {
    padding: 0;
    overflow: hidden;
    height: 450px;
  }

  .location-info {
    padding: 0;
  }

  .about-us {
  }

  .about-us-content {
    padding: 0;
  }

  .about-us-sp-header {
    display: flex;
    justify-content: space-evenly;
  }

  .about-us-title {
  }

  .about-us-wrapper {
    display: block;
  }

  .company-logos {
    margin: 20px 0;
  }
  .about-us-car {
    width: 30%;
  }

  .about-content {
    text-align: left;
  }

  .section-title {
    font-size: 22px;
    text-align: left;
  }

  .section-description {
    font-size: 12px;
    text-align: left;
  }

  .hero-background {
    background: url("./assets/images/hero.png") left center no-repeat;
    background-size: cover;
    height: 100%;
  }

  .hero-content {
    text-align: left;
  }

  .nav-section {
    padding: 0;
  }

  .nav-container {
    padding: 0;
    gap: 0;
    align-items: unset;
  }

  .nav-icons {
  }

  .nav-item {
    padding: 5px;
    width: 100%;
  }

  .nav-icon {
    width: 100%;
    height: auto;
  }

  .content-text h3 {
    font-size: 16px;
  }

  .about-container,
  .content-item,
  .about-us-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-item {
    width: 90%;
    margin: 0 auto;
    border-left: 1px solid #000;
    padding: 0 10px;
  }

  .about-container {
    margin: 10px auto 0;
  }

  .total-badget-left {
    padding: 0;
    margin: 0;
  }

  .content-text {
    top: -100px;
    background: #fff;
    width: 90%;
  }

  .content-item.reverse {
    direction: ltr;
  }

  .journey-options {
  }

  .journey-option {
    height: 100px;
  }

  .journey-package {
    height: auto;
  }

  .details-button {
    width: 100%;
  }

  .dont-forget {
    position: relative;
  }

  .dont-forget .sp-left {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
  }

  .dont-forget .sp-right {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(50%, -50%);
  }

  .dont-forget-text {
    width: 75%;
    margin: 0 auto;
    font-size: 20px;
  }

  .dont-forget-wrapper {
    padding: 0;
  }

  .package-map {
    height: 150px;
    align-items: flex-end;
  }

  .total-badget h4 {
    padding: 20px 0;
  }

  .total-badget-center {
    display: flex;
    flex-direction: column; /* 縦並びにする */
  }

  .total-badget-left,
  .total-badget-right {
    width: 100%; /* 横幅いっぱい */
    margin: 0;
    padding: 0 20px;
    border: none; /* PC版の線は消す */
  }

  .total-badget-img {
    order: 1;
  }

  .total-badget-price {
    order: 2;
    text-align: center;
  }

  .total-badget-right {
    order: 3;
    text-align: left;
  }

  .total-badget-button-wrapper {
    order: 4;
  }

  .total-badget-button {
    width: 100%;
    max-width: 320px;
    margin: 0;
    font-size: 16px;
  }

  .package2-button-wrapper {
    position: unset;
    margin: 15px 25px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .discover-more-imgs {
    display: grid;
    grid-template-columns: 1fr;
    width: 75%;
    margin: 0 auto;
    padding: 0 0 20px;
  }

  .discover-more-imgs img {
    width: 100%;
  }

  .discover-more-main h4 {
    font-size: 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .footer-nav a {
    width: 50%;
    border: none;
    font-size: 12px;
  }

  .footer-nav a:nth-child(2),
  .footer-nav a:nth-child(4) {
    border-left: 1px solid #000;
  }
  .footer-nav a:nth-child(1),
  .footer-nav a:nth-child(2) {
    border-bottom: 1px solid #000;
  }

  .footer-nav a:last-child {
    border-right: none;
  }
}

/* Posts Section Styles */
.category-posts-section {
  padding: 80px 0;
  background-color: #fff;
}

.posts-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.posts-content h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 50px;
  text-align: center;
  color: #333;
}

.posts-content h2::first-letter {
  color: #c5372b;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.post-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.post-card-content {
  padding: 25px;
}

.post-card-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}

.post-card-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-card-title a:hover {
  color: #c5372b;
}

.post-card-meta {
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
}

.post-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.post-card-link {
  display: inline-block;
  color: #c5372b;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.post-card-link:hover {
  color: #a02c22;
}

.no-posts {
  text-align: center;
  font-size: 18px;
  color: #666;
  padding: 60px 20px;
  font-weight: 300;
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: #c5372b;
  color: #fff;
  border-color: #c5372b;
}

.pagination .current {
  background-color: #c5372b;
  color: #fff;
  border-color: #c5372b;
}

/* Responsive Styles for Posts */
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .category-posts-section {
    padding: 50px 0;
  }

  .posts-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .post-card-image {
    height: 200px;
  }

  .post-card-content {
    padding: 20px;
  }

  .post-card-title {
    font-size: 18px;
  }

  .pagination a,
  .pagination span {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Single Post Styles */
.single-post {
  background-color: #fff;
}

.post-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.post-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.post-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.post-categories {
  margin-bottom: 20px;
}

.post-category {
  display: inline-block;
  padding: 8px 20px;
  background-color: #c5372b;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  margin: 0 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
}

.post-hero .post-meta {
  font-size: 16px;
  opacity: 0.9;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.post-content p {
  margin-bottom: 25px;
}

.post-content h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 50px 0 25px;
  color: #333;
}

.post-content h2::first-letter {
  color: #c5372b;
}

.post-content h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 40px 0 20px;
  color: #333;
}

.post-content h4 {
  font-size: 22px;
  font-weight: 500;
  margin: 30px 0 15px;
  color: #333;
}

.post-content ul,
.post-content ol {
  margin: 25px 0 25px 30px;
}

.post-content li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}

.post-content blockquote {
  border-left: 4px solid #c5372b;
  padding: 20px 30px;
  margin: 30px 0;
  background-color: #f5f5f5;
  font-style: italic;
  color: #666;
}

.post-info-box {
  background-color: #f9f9f9;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin: 40px 0;
}

.post-info-box h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 20px 0;
  color: #333;
}

.post-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-info-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
}

.post-info-list li:last-child {
  border-bottom: none;
}

.post-info-list strong {
  color: #c5372b;
  font-weight: 500;
  margin-right: 10px;
}

.related-posts-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.related-posts-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.related-posts-content h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 50px;
  text-align: center;
  color: #333;
}

.related-posts-content h2::first-letter {
  color: #c5372b;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.post-cta-section {
  padding: 80px 0;
  background-color: #fff;
}

.post-cta-section .cta-content {
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 40px;
  background-color: #fff;
  color: #c5372b;
  border: 2px solid #c5372b;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background-color: #c5372b;
  color: #fff;
}

/* Responsive Styles for Single Post */
@media (max-width: 1024px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .post-hero {
    min-height: 400px;
  }

  .post-title {
    font-size: 32px;
  }

  .post-hero .post-meta {
    font-size: 14px;
  }

  .post-content-section {
    padding: 50px 0;
  }

  .post-content {
    font-size: 16px;
    padding: 0 15px;
  }

  .post-content h2 {
    font-size: 26px;
    margin: 40px 0 20px;
  }

  .post-content h3 {
    font-size: 22px;
  }

  .post-info-box {
    padding: 20px;
    margin: 30px 0;
  }

  .related-posts-section {
    padding: 50px 0;
  }

  .related-posts-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .post-cta-section {
    padding: 50px 0;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-button-secondary,
  .cta-button-large {
    width: 100%;
    max-width: 320px;
  }
}

/* Discover Hamamatsu Page Styles */
.location-map {
  text-align: center;
  margin: 40px 0;
}

.location-map img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.access-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.access-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.access-card:hover {
  border-color: #c5372b;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(197, 55, 43, 0.1);
}

.access-from {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.access-time {
  font-size: 24px;
  font-weight: 500;
  color: #c5372b;
  margin-bottom: 10px;
}

.access-method {
  font-size: 16px;
  color: #666;
}

.featured-link {
  display: inline-block;
  color: #c5372b;
  text-decoration: none;
  font-weight: 500;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.featured-link:hover {
  color: #a02c22;
}

/* Site Map Page Styles */
.sitemap-content-section {
  padding: 80px 0;
  background-color: #fff;
}

.sitemap-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.sitemap-section {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
}

.sitemap-section h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #333;
  padding-bottom: 15px;
  border-bottom: 2px solid #c5372b;
}

.sitemap-section h2::first-letter {
  color: #c5372b;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-list > li {
  margin-bottom: 15px;
}

.sitemap-list > li > a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 10px 0;
}

.sitemap-list > li > a:hover {
  color: #c5372b;
}

.sitemap-sublist {
  list-style: none;
  margin: 10px 0 0 20px;
  padding: 0;
}

.sitemap-sublist li {
  margin-bottom: 8px;
}

.sitemap-sublist li a {
  color: #666;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.sitemap-sublist li a:hover {
  color: #c5372b;
}

/* Responsive Styles for Discover and Sitemap Pages */
@media (max-width: 1024px) {
  .access-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .access-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .access-card {
    padding: 20px;
  }

  .access-from {
    font-size: 18px;
  }

  .access-time {
    font-size: 20px;
  }

  .sitemap-content-section {
    padding: 50px 0;
  }

  .sitemap-section {
    padding: 20px;
  }

  .sitemap-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .sitemap-list > li > a {
    font-size: 16px;
  }

  .sitemap-sublist li a {
    font-size: 14px;
  }
}

/* Reservation Pages Styles */
.reservation-step1-page,
.reservation-step2-page {
  background: #f5f5f5;
}

.reservation-hero {
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #c5372b 0%, #e74c3c 100%);
}

.reservation-hero-background {
  width: 100%;
}

.reservation-hero-content {
  text-align: center;
  color: white;
}

.reservation-hero-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.reservation-hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

/* Reservation Step 1 Specific Styles */
.reservation-main-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.reservation-main-content {
  background: white;
  padding: 60px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.reservation-date-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.date-input-group {
  display: flex;
  flex-direction: column;
}

.date-input-group label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}

.date-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  font-size: 16px;
  transition: border-color 0.3s;
  background: #fff;
}

.date-input:focus {
  outline: none;
  border-color: #c5372b;
}

.reservation-package-header {
  margin-bottom: 40px;
}

.reservation-package-header h2 {
  font-size: 28px;
  font-weight: 400;
  color: #333;
}

.reservation-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.reservation-section:last-of-type {
  border-bottom: none;
}

.section-heading {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #333;
}

.campervan-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  align-items: center;
}

.campervan-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.campervan-info h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}

.campervan-model {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.campervan-specs p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
}

.campervan-specs strong {
  font-weight: 600;
  color: #c5372b;
}

.campervan-description p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.experience-image {
  margin-bottom: 30px;
}

.experience-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.experience-description p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.experience-notes,
.experience-details {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.experience-notes h4,
.experience-details h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.experience-notes ul,
.experience-details ul {
  list-style: disc;
  margin-left: 25px;
}

.experience-notes li,
.experience-details li {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 10px;
}

.experience-details li strong {
  color: #c5372b;
  font-weight: 500;
}

.reservation-price-section {
  margin-bottom: 40px;
}

.price-summary {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
}

.total-price {
  font-size: 48px;
  font-weight: 600;
  color: #c5372b;
  text-align: center;
  margin-bottom: 30px;
}

.tax-label {
  font-size: 20px;
  font-weight: 400;
  color: #666;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
}

.price-item:last-child {
  border-bottom: none;
}

.price-label {
  color: #666;
}

.price-value {
  font-weight: 600;
  color: #333;
}

.reservation-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.reservation-next-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #333;
  color: white;
  padding: 18px 60px;
  border: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.reservation-next-button:hover {
  background: #c5372b;
}

.reservation-next-button img {
  width: 18px;
  filter: brightness(0) invert(1);
}

/* Reservation Step 2 Specific Styles */
.reservation-form-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.reservation-form-content {
  background: white;
  padding: 60px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
}

.reservation-form .form-group {
  margin-bottom: 30px;
}

.reservation-form label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}

.reservation-form .required {
  color: #c5372b;
}

.reservation-form .form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  font-size: 16px;
  transition: border-color 0.3s;
  background: #fff;
}

.reservation-form .form-control:focus {
  outline: none;
  border-color: #c5372b;
}

.reservation-form select.form-control {
  cursor: pointer;
}

.reservation-form .textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}

.experience-dates-section {
  margin: 40px 0;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
}

.experience-dates-section .section-heading {
  font-size: 24px;
  margin-bottom: 25px;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.reservation-confirm-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #333;
  color: white;
  padding: 18px 60px;
  border: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.reservation-confirm-button:hover {
  background: #c5372b;
}

.reservation-confirm-button img {
  width: 18px;
  filter: brightness(0) invert(1);
}

/* Reservation Pages Responsive */
@media (max-width: 768px) {
  .reservation-hero {
    height: 215px;
  }

  .reservation-hero-title {
    font-size: 32px;
  }

  .reservation-hero-subtitle {
    font-size: 14px;
  }

  .reservation-main-section,
  .reservation-form-section {
    padding: 40px 0;
  }

  .reservation-main-content,
  .reservation-form-content {
    padding: 30px 20px;
  }

  .date-inputs {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reservation-package-header h2 {
    font-size: 22px;
  }

  .section-heading {
    font-size: 24px;
  }

  .campervan-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .campervan-info h4 {
    font-size: 20px;
  }

  .total-price {
    font-size: 36px;
  }

  .tax-label {
    font-size: 16px;
  }

  .price-item {
    font-size: 14px;
  }

  .reservation-next-button,
  .reservation-confirm-button {
    width: 100%;
    max-width: 320px;
    padding: 16px 40px;
    font-size: 16px;
  }

  .form-title {
    font-size: 24px;
  }

  .experience-dates-section {
    padding: 20px;
  }

  .experience-dates-section .section-heading {
    font-size: 20px;
  }
}

/* Reservation Form Messages */
.reservation-success-message,
.reservation-error-message {
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  border-left: 5px solid;
}

.reservation-success-message {
  background-color: #d4edda;
  border-color: #28a745;
  color: #155724;
}

.reservation-success-message h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #155724;
}

.reservation-success-message p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.reservation-error-message {
  background-color: #f8d7da;
  border-color: #c5372b;
  color: #721c24;
}

.reservation-error-message p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Reservation Completion Page Styles */
.reservation-completion-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.reservation-completion-hero .page-title {
  font-size: 56px;
  font-weight: 300;
  margin: 0;
  letter-spacing: 2px;
}

.reservation-completion-content {
  padding: 80px 0;
  background: #f5f5f5;
}

.completion-message-box {
  background: white;
  padding: 60px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.completion-heading {
  font-size: 36px;
  font-weight: 400;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.completion-info {
  text-align: center;
  margin-bottom: 50px;
}

.confirmation-text {
  font-size: 18px;
  color: #28a745;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
}

.check-icon {
  color: #28a745;
  flex-shrink: 0;
}

.response-time {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.important-notice-box {
  background: #fff9e6;
  border: 2px solid #ffc107;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
}

.notice-heading {
  font-size: 24px;
  font-weight: 600;
  color: #856404;
  margin-bottom: 25px;
  text-align: center;
}

.notice-content {
  color: #333;
}

.notice-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.contact-companies {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}

.contact-companies li {
  font-size: 15px;
  line-height: 2;
  color: #333;
  padding-left: 20px;
  position: relative;
}

.contact-companies li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffc107;
  font-size: 20px;
  line-height: 1.8;
}

.contact-companies strong {
  color: #c5372b;
  font-weight: 600;
}

.spam-reminder {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #ffc107;
  font-style: italic;
  color: #856404;
}

.completion-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #333;
  color: white;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
  border-radius: 4px;
}

.btn-primary:hover {
  background: #c5372b;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #333;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #333;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn-secondary:hover {
  background: #333;
  color: white;
}

/* Responsive Styles for Completion Page */
@media (max-width: 768px) {
  .reservation-completion-hero .page-title {
    font-size: 36px;
  }

  .reservation-completion-content {
    padding: 40px 0;
  }

  .completion-message-box {
    padding: 30px 20px;
  }

  .completion-heading {
    font-size: 26px;
  }

  .confirmation-text {
    font-size: 16px;
  }

  .important-notice-box {
    padding: 25px 20px;
  }

  .notice-heading {
    font-size: 20px;
  }

  .notice-text {
    font-size: 14px;
  }

  .contact-companies li {
    font-size: 14px;
  }

  .completion-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
