@charset "UTF-8";
/* CSS Document */
.main {
  background-color: #F6F7F9;
  overflow: hidden;
}
.section-image{
  margin: 100px 0 40px;
}
.section-image__image {
  max-width: 1040px;
  position: relative;
  margin: 0 auto;
}
.section-image img {
  width: 100vw;
  height: 450px;
  object-fit: cover;
  padding-left: 100px;
}
.section-image h2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Lato', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  line-height: 50px;
  color: #493314;
  background-color: #FFF;
  padding: 0 10px;
  margin: 0 24px;
}
@media (min-width:960px) {
  .section-image {
    margin: 130px 0 100px;
  }
  .section-image img {
    height: 500px;
  }
  .section-image h2 {
    font-size: 5.0rem;
    line-height: 60px;
   }
}
.section-flow {
  padding: 0 24px 40px 24px;
}
.section-flow ol {
  list-style: none;
}
.section-flow li {
  display: flex;
}
.step-image-mobile {
  margin-right: 20px;
}
.section-flow__step img {
  vertical-align: top;
}
.step-image-pc {
  display: none;
}
.section-flow__content {
  width: 700px;
}
.section-flow__content h3 {
  font-size: 2.0rem;
  font-weight: 300;
  border-bottom: solid 1px #deba9f;
  padding-bottom: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.section-flow__content p {
  margin-bottom: 10px;
}
.section-flow__content-view-more {
  position: relative;
  width: 155px;
  height: 30px;
  border: solid 1px #333;
  transition: .4s;
  box-sizing: border-box;
}
.section-flow__content-view-more a {
  color: #333;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 30px;
  padding-left: 15px;
}
.section-flow__content-view-more a::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 8px;
  transform: rotate(45deg);
}

.section-flow__content-view-more:hover {
  border: solid 1px #f6f7f9;
  transition: .4s;
}
.section-flow__content-view-more a:hover::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #f6f7f9;
  border-right: solid 1px #f6f7f9;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 8px;
  transform: rotate(45deg);
  transition: .4s;
}
@media(min-width:960px) {
  .section-flow {
    max-width: 1040px;
    padding-bottom: 100px;
    margin: 0 auto;
  }
  .step-image-mobile {
    display: none;
  }
  .step-image-pc {
    display: block;
    margin-right: 30px;
  }
  .section-flow__content h3 {
    font-size: 2.4rem;
    padding-bottom: 20px;
    margin: 30px 0 20px;
  }
}
