@charset "UTF-8";
/* 共通 */
.wi800, .wi800he {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 830px) {
  .wi800 {
    width: 92%;
  }
}

@media screen and (max-width: 830px) {
  .wi800he {
    width: 100%;
  }
}

.img {
  width: 700px;
}
@media screen and (max-width: 730px) {
  .img {
    width: 100%;
  }
}

.img02 {
  width: 100%;
}

.img {
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

img {
  width: 100%;
}

p {
  font-size: 1.8rem;
  line-height: 1.8;
  padding: 15px 0;
  font-feature-settings: "palt";
}
@media screen and (max-width: 480px) {
  p {
    font-size: 1.6rem;
  }
}

.color01 {
  color: #6A3906;
}

.fwb {
  font-weight: bold;
}

.font24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .font24 {
    font-size: 1.9rem;
  }
}

.font30 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .font30 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .font30 {
    font-size: 6.5vw;
  }
}

.font20 {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .font20 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .font20 {
    font-size: 5.2vw;
  }
}

.header {
  font-family: "Noto Serif JP", serif;
  border-left: 5px solid #6A3906;
  padding-left: 20px;
  margin-top: 70px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .header {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.header h1 {
  letter-spacing: -0.2rem;
}
.header .sp_u {
  padding-right: 15px;
}
@media screen and (max-width: 480px) {
  .header .sp_u {
    display: block;
    padding-right: 0;
  }
}

.midashi01 {
  background-color: #D6C7B3;
  border-left: 5px solid #6A3906;
  color: #6A3906;
  padding: 10px;
  font-size: 2.4rem;
  margin-top: 80px;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .midashi01 {
    margin-top: 50px;
    font-size: 2rem;
  }
}

.updown {
  -webkit-animation-name: updown1;
          animation-name: updown1; /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.tyuyaku {
  display: flex;
  font-size: 1.4rem;
  line-height: 2.5rem;
}

/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

footer a {
  color: #7F4F21;
}

.copyrights {
  font-size: 1.2rem;
  margin-top: 30px;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 130px;
}
@media screen and (max-width: 800px) {
  .copyrights {
    margin-bottom: 16.25vw;
  }
}/*# sourceMappingURL=main.css.map */