@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  background-image: url(../images/bg.png);
  background-repeat: repeat-y;
  background-size: contain;
  color:#666;

  font-family: "Noto Sans JP","Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
button{
  color:#666;
}
img{
  width:100%;
}
.pt20{
  padding-top:20px;
}
.pl30{
  padding-left:30px;
}
.pc{
  display: block;
}
.sp{
  display: none!important;
}
h2.ttl {
  position: relative;
  background: #eff4ff;
  padding: 2px 5px 2px 20px;
  font-size: 20px;
  color: #474747;
  border-radius: 0 10px 10px 0;
}
h2.ttl:before {
  font-family: "Font Awesome 5 Free";
  content: "\f041";
  display: inline-block;
  line-height: 40px;
  position: absolute;
  padding: 0em;
  color: white;
  background: #81a1e4;
  font-weight: 900;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  left: -1.35em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.29);
  border-bottom: solid 2px #4967b4;
}
.section {
  padding: 80px 0;
  text-align: left;
}
.container {
  width: 90%;
  margin: 0 auto;
  max-width: 960px;
}
.container-wide {
  width: 100%;
  margin: 0 auto;
}
.section-title {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom:20px;
  font-family: Avenir Next Condensed;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02;
}
.section-title span{
  font-weight: 500;
  font-size: 1rem;
   margin-left: 10px;  
}
.bg-gray{
 background-color: #F5F5F5;
}
.bg-green{
 background-color: #e3ffe7;
}
.bg-blue{
 background-color: #eff4ff;
}
.bg-black{
 background-color: #000;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
ul {
  list-style-position: outside; /* デフォルトでもOK */
  padding-left: 20px; /* 通常の20px + ずらしたい20px */
}
.attention{
  color:rgb(170, 53, 53);
}
.titlep{
    text-align: center;
    font-size: 36px;
    font-family: "Zen Maru Gothic", sans-serif;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top:20px;
}
.title{
   border-bottom: double 5px #eb6101;
    text-align: center;
    font-size: 36px;
    font-family: "Zen Maru Gothic", sans-serif;
}
.title span{

  font-size:1rem;
  display: block;
}
.daytitle{
    text-align: center;
    font-size: 36px;
    font-family: "Zen Maru Gothic", sans-serif;
    margin-bottom: 50px;
    background: #7c88b2;
    color: #fff;
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
.desc{
  text-align: center;
  line-height: 2;
  font-size: 1.1rem;
  margin-bottom:50px;
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 24px;
  border-radius: 10px;
  max-width: 90%;
  width: 1000px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  z-index: 9999;
}
.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 14px;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-buttons button {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}
.accept {
  background-color: #e74c3c;
}
.decline {
  background-color: #888;
}
.close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* 半透明の白 */
  backdrop-filter: blur(6px);                /* 背景ぼかしで視認性UP */
  -webkit-backdrop-filter: blur(6px);        /* Safari対応 */
  padding: 20px 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* ← これがポイント */
  width:90%;
  margin:0 auto;
}
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
}
.main-nav .nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .nav-list li a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  height: 40px; 
}
.main-nav .nav-list li a:hover {
  color: #ffd40b;
}
.reservation{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 12px 5px;
gap: 10px;

width: 104px;
height: 40px;

background: #FF7DA9;
border-radius: 20px;
}
.date{
margin: 0 auto;
    font-size: 2.4rem;
    color: #01438d;
    font-weight: bold;
display: block;
    margin: 0 auto;
    text-align: center;
}
.date span {
    display: block;
    font-size: 1.8rem;
}
.reservation a:hover{
  color: #000;
  opacity: 0.5;
}
.hero {
  /*background: url('hero-bg.jpg') no-repeat center/cover;*/
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-img{
  width: 100%;
  object-fit: cover; /* 画像の切り取り調整 */
  display: block;
}
.about-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.button-wrapper{
  position: sticky;   /* ← これだけで「その位置まで来たら上に固定」 */
  top: 0;             /* 画面上端に吸着 */
  z-index: 9999;      /* 前面に */
  display: flex;
  margin-top:50px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,.08); /* 固定時の見切れ対策に薄い影 */
}
.button-wrapper .btn{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
  padding: 16px 0;
  color: #fff;
  transition: opacity .2s ease;
}
.button-wrapper .btn:hover{ opacity: .85; }
.button-wrapper .left {
  border-right: none;
}
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  border-bottom: 5px solid #b84c00;
}
a.btn--orange:hover {
  margin-top: 3px;
  color: #fff;
  background: #f56500;
  border-bottom: 2px solid #b84c00;
}
a.btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}
a.btn--navy {
  color: #fff;
  background-color: #0d2e73;
  border-bottom: 5px solid #090909;
}
a.btn--red:hover {
  margin-top: 3px;
  color: #fff;
  background: #0d2e73;
  border-bottom: 2px solid #090909;
}
a.btn--orange,
a.btn--navy {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
a.btn--orange { background:#eb6100; border-bottom:5px solid #b84c00; }
a.btn--navy   { background:#0c2e6e; border-bottom:5px solid #051a46; }
a.btn--orange::before,
a.btn--navy::before {
  content:"";
  position:absolute; inset:0 auto 0 -75%;
  width:50%; height:100%;
  background:linear-gradient(120deg, rgba(255,255,255,0) 0%,
                                      rgba(255,255,255,.6) 50%,
                                      rgba(255,255,255,0) 100%);
  transform:skewX(-25deg);
  pointer-events:none;
  will-change:left;
  animation: shine 1.2s ease-out .6s 1; /* 読み込み後に1回 */
}
a.btn--navy::before { animation-delay: .8s; }
a.btn--orange::after,
a.btn--navy::after {
  content:"";
  position:absolute; inset:0 auto 0 -75%;
  width:50%; height:100%;
  background:linear-gradient(120deg, rgba(255,255,255,0) 0%,
                                      rgba(255,255,255,.6) 50%,
                                      rgba(255,255,255,0) 100%);
  transform:skewX(-25deg);
  pointer-events:none;
  will-change:left;
  /* 初期状態はアニメなし */
}
a.btn--orange:hover::after,
a.btn--navy:hover::after {
  animation: shine 1s ease-out 0s 1; /* ホバーのたびに毎回再生 */
}
a.btn--orange:hover,
a.btn--navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
@keyframes shine {
  0%   { left:-75%; }
  100% { left:125%; }
}
@media (prefers-reduced-motion: reduce){
a.btn--orange::before, a.btn--navy::before,
  a.btn--orange::after,  a.btn--navy::after {
    animation: none !important;
  }
}
@media (max-width: 768px){
.about-inner {
    flex-direction: column;
  }
}
.box26 {
    position: relative;
    margin: 5em 0;
    padding: 2em;
    border: solid 3px #888;
    border-radius: 10px;
    background-color: #fff;
}
.box26 h2{
  text-align: center;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -24px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 96px;
    width:300px;
    z-index: 99;
}
.box26 .box-title img{
  position: absolute;
  top:-80px;
}
.box26 p {
    margin: 0; 
    padding: 0;
}
h2 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}
.swiper {
  width: 100%;
  margin: auto ;
}
.swiper-slide {
  background: #fff;
  padding: 0;
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.3);
  font-family: 'Switzer', sans-serif;
  height: auto;
  width:100%;
}
.slide-day {
  font-size: 15px;
  font-weight: 500;
  text-indent: 14px;
  color: #333;
  display: flex;
  align-items: center;
  padding:8px 0 ;
  border-left:8px solid #6CD378;
  word-spacing: -1%;
}
.slide-container {
  padding:0 24px;
}
.slide-thumb {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.slide-text {
  flex: 1;
}
.slide-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.slide-description {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0;
  color: #444;
}
.tourist-spots {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCで4列 */
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.tourist-spots .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tourist-spots .card img {
  width: 100%;
  aspect-ratio: 4 / 3;       /* 画像比率：横長 */
  object-fit: cover;          /* 枠に合わせてトリミング */
  object-position: center;    /* 中央寄せ */
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.tourist-spots .card figcaption {
  padding: 10px 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  color: #222;
  background-color: #fff;
}
.tourist-spots .card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.tourist-spots .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px){
.tourist-spots {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px;
  }
.tourist-spots .card figcaption {
    font-size: 0.9rem;
    padding: 8px;
  }
}
.pickup {
  display: grid;
  width: 60%;
  grid-template-columns: repeat(1, 1fr); /* PCで4列 */
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.pickup .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pickup .card img {
  width: 100%;
  aspect-ratio: 3 / 2;       /* 画像比率：横長 */
  object-fit: cover;          /* 枠に合わせてトリミング */
  object-position: center;    /* 中央寄せ */
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.pickup .card figcaption {
  padding: 10px 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  color: #222;
  background-color: #fff;
}
.pickup .card figcaption span{
      font-weight: bold;
  display: block;
  text-align: center;
    font-size: 1.4rem;
    font-family: "Zen Maru Gothic", sans-serif;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;

}
.pickup .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px){
.pickup {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    padding: 10px;
    width:100%;
  }
.pickup .card figcaption {
    font-size: 0.9rem;
    padding: 8px;
  }
}
.hotel{
  margin: auto;
}
.hotel-card {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}
.hotel-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.hotel-info {
  flex: 1;
}
.hotel-night {
    font-size: 15px;
    font-weight: 500;
    text-indent: 14px;
    color: #333;
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-left: 8px solid #eb6101;
    border-bottom: 2px solid #eb6101;
}
.hotel-title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}
.hotel-title span{
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}
.hotel-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}
.hotelgallery {
      width: 300px;
      margin: 0 auto;
      text-align: center;
    }
.mainwrap{
      width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: 6px;
      flex-shrink: 0;
      margin-bottom: 10px;
      position: relative;
      overflow: hidden;
    }
.hotelgallery .main-image {
      position: absolute; 
      top: 50%; 
      left: 50%; 
      bottom: unset; 
      right: unset; 
      -webkit-transform: translate(-50%, -50%); 
      -ms-transform: translate(-50%, -50%); 
      transform: translate(-50%, -50%); 
      width: 100%; 
      height: auto; 
      max-width: unset!important; 
      display: block; 
      transition-duration: 0.3s; 
      border-radius: 6px;
    }
.hotelgallery .thumbnails {
      display: flex;
      justify-content: flex-start;
      gap: 10px; /* 要素の間隔 */
    }
.hotelgallery .thumbnail {
      width: 22%;
      cursor: pointer;
      opacity: 0.6;
      transition: opacity 0.3s;
      height: 50px;

    }
.hotelgallery .thumbnail:hover {
      opacity: 1;
    }
.btn{
  width:50%;
  max-width:800px;
  display: block;
  margin:0 auto;
}
.btn:hover {
  transform: translateY(2px);
 }
.accordion {
  width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
}
.accordion-item {
  margin-top:30px;
}
.accordion-title {
  width: 100%;
  background: #0e2e73;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 48px 16px 16px; /* 右に矢印ぶんの余白 */
  cursor: pointer;
  position: relative;           /* 矢印の絶対配置用 */
  transition: background .2s ease;
  border:5px solid #eb6101;
  color:#fff;
}
.accordion-title dl { margin:0; padding:0; }
.accordion-title dl{
  display: flex;
  gap: 16px;
  align-items: center;
  gap:16px;
}
.accordion-title dt{
  flex: 0 0 30%;       /* 画像枠の幅 */
}
.accordion-title dt img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* トリミングで整う */
  border-radius: 8px;
  display:block;
}
.accordion-title dd{
  margin: 0;             /* dl のデフォルト余白を無効化 */
  flex: 1 1 auto;        /* 横は残り幅いっぱい */
  display: flex;
  flex-direction: column;
  justify-content: center; /* ← これで縦中央に */
}
.accordion-title dd h3{
  margin: 0 0 .25em;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  text-decoration: underline;
}
.accordion-title dd p{ margin: 0; line-height: 1.6; }
.accordion-title{
  position: relative;
  padding-right: 48px;   /* ▼の分だけ右に余白 */
}
.accordion-title:hover { 
  background: #eee; 
  color:#666;
}
.accordion-title::after {
  content: "▼";                 /* 下向き三角（\25BCでもOK） */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 40px;
  line-height: 1;
  transition: transform .2s ease;
  opacity: .8;
}
.accordion-item.active .accordion-title::after {
  transform: translateY(-50%) rotate(180deg); /* くるっと反転で▲に見える */
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion-body {
  padding: 16px;
  background: #fff;
  line-height: 1.7;
}
.accordion-item.active .accordion-content {
  max-height: 400px; /* 中身に合わせて十分大きめに */
  padding: 16px;
}
@media (prefers-reduced-motion: reduce){
.accordion-title::after,
  .accordion-content { transition: none; }
}
.column img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  will-change: transform;
}
.experiences__title span{
    font-size: 1rem;
    font-weight: normal;
}
.experiences__title.active {
  opacity: 1;
}
.bike-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.bike-item p {
  margin: 0;
  font-size: 1rem;
}

.ndnl-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.column-left-wrapper {
  flex: 1 1 50%;
  padding: 30px;
  position: relative;
  border-radius: 10px 0 0 10px;
}
.image-area {
  position: relative;
}
.image-area img {
  width: 100%;
  height: auto;
  display: block;
}
.overlay .logo {
  width:100%;
  display: block;
}
.overlay .title {
  font-size: 32px;
  font-weight: bold;
  border-top: 1px solid white;
  padding-top: 10px;
  margin: 0;
}
.accordion-title {

font-family: "Zen Maru Gothic", sans-serif;
font-weight: 400;

}
.accordion-title dd{
  font-size: 1rem;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}
.accordion-title dd span{
  font-size: 2rem;
    display: inline-block;
    padding: 0 10px;
}
.column-right-wrapper{
  flex: 1 1 50%;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 0 10px 10px 0;
}
.ndnl-row .column-right-wrapper h2 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  text-align: center;
}
.ndnl-row .column-right-wrapper p {
  line-height: 1.8;
  font-size: 14px;
}
.tour-info h2 span {
  font-size: 14px;
  color: #666;
  margin-left: 10px;
}
.other-notes h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
}
.other-notes p {
  font-size: 14px;
  line-height: 1.6;
}
.planning-operation {
  display: flex;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
}
.left-column {
  flex: 0 0 250px;
  text-align: left;
}
.right-column {
  flex: 1;
  font-size: 14px;
}
.right-column p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.right-column a {
  color: #000;
  text-decoration: underline;
}
.reserve-button {
  display: block;
  background-color: #f78cb4;
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 12px 132px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin:2rem auto;

}
a  {
  text-decoration: none;
}
.reserve-button.green{
  background-color: #36aa21;
}
.reserve-button:hover {
  background-color: #f0659c;
}
.reserve-button.green:hover {
    background-color: #1c5a11;
    color:#fff;
}
.faq-left p {
  font-size: 14px;
  color: #666;
}
@media (max-width: 768px){
.hotel-card {
    flex-direction: column;
  }
.hotel-img {
    width: 100%;
    height: auto;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.parallax .section-title {
  font-size: 48px;
  color: #fff;
}
.contact-form button {
  background-color: var(--accent-color);
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background-color: #e6c200;
}
.site-footer {
  background-color: #f0f0f0;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 768px){
.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
.section-title {
    font-size: 28px;
  }
}