/*------------------------------------------

MV

------------------------------------------*/
main {
  background-image: url(../img/solid.png);
  background-repeat: repeat;
  /*padding-top: 140px;*/
}
.inr {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
/*PC*/
/*Smartphone*/
@media screen and (max-width: 767px) {
  .inr {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
  }
}
/*------------------------------------------

Onsen Section

------------------------------------------*/
.onsen-section {
  padding: 80px 0;
  background: #f8f6f2;
}
.onsen-inner {
  margin: 0 auto;
}
.onsen-block {
  display: flex;
  align-items: center;
}
.onsen-block.reverse {
  flex-direction: row-reverse;
}
.onsen-image {
  width: 50%;
}
.onsen-image img {
  width: 100%;
  height: auto;
  display: block;
}
.onsen-content {
  width: 50%;
  padding: 0 70px;
}
.onsen-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #3a2f1c;
  border-bottom: 2px solid #e6d7b5;
  padding-bottom: 0.5rem;
  margin-bottom: 40px;
}
.onsen-title span {
  font-size: 18px;
  display: block;
  margin-top: 5px;
}
.onsen-content p {
  line-height: 1.9;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .onsen-section {
    padding: 80px 0px;
  }
  .onsen-block, .onsen-block.reverse {
    flex-direction: column;
    gap: 30px;
  }
  .onsen-image {
    width: 100%;
  }
  .onsen-content {
    width: 100%;
    padding-top: 20px;
    padding-right: 2%;
    padding-left: 2%;
    margin-bottom: 40px;
  }
  .onsen-title {
    font-size: 20px;
  }
}
/*END*/