@charset "utf-8";
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Zen Maru Gothic';
}

/* header */
.top-img {
  height: 100vh;
}

.top-img::before {  
    background-image: url(../images/hero.jpg);
    content:"";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
.top-text {
  text-align: center;
  padding: 130px 0;
  color: yellow;
  font-size: 1.6vw;
}

.sma {
  display: none;
}

.top-text h1 {
  font-size: 9vw;
  font-family: 'Cherry Bomb One';
  color: orangered;
  -webkit-text-stroke:2px yellow;
}

/* タブレットサイズ */
@media screen and (max-width: 1024px){
.top-text h1 {
  font-size: 4rem;
}
.top-text {
  font-size: 1rem;
}
.sma {
  display: block;
}
}

/* スマホサイズ */
@media screen and (max-width: 600px){
.top-text h1 {
  font-size: 14vw;
}
.top-text {
  font-size: 3.5vw;
}
.sma {
  display: block;
}
}

@media screen and (max-width: 430px){
  .top-text h1 {
    margin-top: 10vh;
}
}

/* main */
/* nav */
.sticky-top {
  padding: 0;
}

.container-fluid {
    background-color: rgba(211, 211, 211, 0.5);
    height: 45px; 
}

.main-logo {
  font-size: 2.4rem;
  font-family: 'Cherry Bomb One';
  color: orangered;
}

.main-logo:hover {
  color: orange;
}

.main-list {
  display: flex;
  list-style: none;
  margin-bottom: 0;
}

.main-item {
  margin-right: 2rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.main-item a:hover {
  color: orangered;
}

a {
  color: black;
  text-decoration: none;
}

.main-list-sma {
  display: none;
}

/* タブレットサイズ */
@media screen and (max-width: 1024px){
 .main-logo {
  font-size: 1.6rem;
 }
  .main-list {
    display: flex;
    align-items : flex-end;
    list-style: none;
    margin-right: -1rem;
  }
  .main-item {
    font-size: 1rem;
  }
}

/* スマホサイズ */
@media screen and (max-width: 600px){
  .container-fluid {
    height: 40px; 
    padding-right: 0;
}
  .main-list {
    display: none;
  }
   .main-list-sma {
    display: flex;
    list-style: none;
    margin-top: 6px;
    padding-top: 5px;
    padding-left: 0;
  } 
  .main-item-sma a i {
    padding-right: 25px;
  } 
  .main-logo-sma {
    font-size: 1.6rem;
   }
}

@media screen and (max-width: 320px){
  .main-item-sma a i {
    padding-right: 15px;
  } 
}

  /* greeting */
  #greeting {
    background-color: rgba(255, 255, 255, 0.8);
  }
h3 {
  font-size: 3rem;
  color: orangered;
  font-weight: bold;
  margin-bottom: 1rem;
}
.greeting-desc {
  text-align: justify;
}

@media screen and (max-width: 600px){
  #greeting {
    padding: 0;
  }

  h3 {
    font-size: 2rem;
  }
  
.greeting-message {
  text-align: center;
}
.greeting-desc {
  font-size:14px;
}
}

/* carousel */
.carousel img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.carousel-caption {
  padding: 0;
  margin-bottom: 0;
}

.carousel-caption h4 {
  display: inline-block;
  color: white;
  font-size: 5vw;
  font-weight: bold;
  -webkit-text-stroke:0.3px black;
  text-shadow: none;
  border: solid 0.5px rgba(211, 211, 211, 0.5);
  background-color: rgba(211, 211, 211, 0.5); 
}

@media screen and (max-width: 600px){
  .carousel img {
    object-fit: contain;
    height: 100%;
  }
  .carousel-caption h4 {
    font-size: 5vw;
  }
}

/* sights */
#sight-list {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 50px;
}

.container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.row {
  padding: 30px;
}

.sight-name {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  -webkit-text-stroke:0.3px black;
}
.sight-desc {
  text-align: justify;
}

button {
  border-radius: 5px;
  padding: 5px 8px;
  color: black;
  background: lightgray;
}

.container button:hover {
  color: white;
  background: orange;
}

@media screen and (max-width: 600px){
  #sight-list {
    padding: 20px 10px;
  }
  .row {
    padding: 10px;
  }
  .sight-name {
    font-size: 1.6rem;
  }
  .sight-desc {
    font-size:14px;
  }
}

/* footer */
footer {
  background-color: lightgray;
  padding: 30px 0 10px;
}

.footer-list {
  display: flex;
  justify-content: center;
  list-style: none;
}

.footer-item {
  margin-right: 2.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-item a:hover {
  color: orangered;
}

footer p {
  font-size: 1rem;
  text-align: center;
  margin-top: 2rem;
}

@media screen and (max-width: 600px){
  .footer-item {
    margin-right: 1.5rem;
    font-size: 1rem;
  }
  footer p {
    margin-top: 1rem;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 320px){
  .footer-list {
    padding-left: 0;
  }
  .footer-item {
    margin-right: 1rem;
  }
}







