*,
*::after,
*::before {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #333;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

body {
  background-color: rgb(214, 211, 211);
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  max-width: 1000px;
  min-width: 375px;
  margin: 0 auto;
}

.container {
  margin-top: 0.8rem;
}

.header {
  background-color: rgb(255, 169, 40);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
}
.header .container img {
  display: inline-block;
  width: 100px;
  height: auto;
}
.header .container h1 {
  font-size: 3rem;
}
.header .container h1 span {
  font-size: 2.4rem;
}
.header .container p {
  font-size: 2.4rem;
  color: rgb(228, 65, 0);
  text-shadow: 3px 3px 10px #fff;
}

.footer {
  text-align: center;
  background-color: rgb(212, 208, 208);
}
.footer img {
  width: 150px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
  margin: 0 auto;
}
.footer small {
  display: block;
  padding-bottom: 1rem;
}

.nav {
  background-color: rgb(170, 228, 201);
}
.nav .container ul {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.nav .container ul li {
  width: 7em;
  height: 100%;
  border-left: 1px solid #999;
  border-right: 1px solid #999;
}
.nav .container ul li a {
  color: rgb(255, 136, 0);
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0.5rem;
}
.nav .container ul li a span {
  color: #333;
  font-size: 1.4rem;
}

.greeting {
  background-color: rgb(244, 243, 229);
  margin: 1rem 2rem;
  border: 1px solid #666;
  border-radius: 5px;
}
.greeting .container {
  padding: 0 2rem 1rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
.greeting .container span {
  font-size: 1.4rem;
  color: #999;
}

.hero .container {
  height: 30vh;
  background-image: url("image/hero_image2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero .container {
    height: 20vh;
  }
}
.hero .container .filter {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(187, 186, 186, 0.5);
}
.hero .container h2 {
  position: absolute;
  left: 6rem;
  top: 8rem;
  z-index: 10;
  font-family: "Libre Baskerville", serif;
  text-shadow: 2px 2px 2px white;
  font-size: 3rem;
  line-height: 1.5;
}
.hero .container h2 span {
  color: rgb(190, 4, 4);
}
.hero .container h2 .hero-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero .container h2 .hero-br {
    display: inline-block;
  }
}

.article {
  width: 90%;
  margin: 0 auto;
}

.swiper-slide {
  padding: 2rem;
  background-color: rgb(149, 145, 145);
}

.mainSwiper .swiper-button-prev::after {
  color: #333;
  background-color: aliceblue;
  border: 2px solid orange;
}
.mainSwiper .swiper-button-next::after {
  color: #333;
  background-color: aliceblue;
  border: 2px solid orange;
}

.subSwiper .swiper-button-prev::after {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  left: 0;
}
.subSwiper .swiper-button-next::after {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  margin-right: 0;
  position: absolute;
  right: 0;
}

.tag {
  width: 10em;
  color: rgb(250, 83, 83);
  border: 3px solid orange;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  padding: 0.3em;
}/*# sourceMappingURL=style.css.map */