/* ----------------------------------------
	.page_title
---------------------------------------- */
.page_title {
  position: relative;
  background-color: #293337;
  max-width: 100vw;
  width: 100vw;
  height: 200px;
  text-align: center;
}
@media screen and (min-width: 1281px) {
  .page_title {
    height: 400px;
  }
}
.page_title .title {
  position: absolute;
  top: 65%;
  -webkit-transform: translateY(-65%);
  transform: translateY(-60%);
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #FFFFFF;
  z-index: 3;
}
.page_title .title span {
  display: block;
  font-family: "Lato", serif;
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 50px);
  line-height: 1.6;
  text-transform: capitalize;
  color: #ffc32c;
}
.page_title figure {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
}
.page_title figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_title figure::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 40, 50, 0.7);
}

.sectionTit {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 30px;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  text-align: center;
  color: #3f3530;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .sectionTit {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1281px) {
  .sectionTit {
    margin-bottom: 80px;
  }
}
.sectionTit span {
  font-weight: 900;
  line-height: 1;
  font-family: "Lato", serif;
  font-size: clamp(4rem, 5vw, 6rem);
  color: #3f3530;
  width: 100%;
  display: inline-block;
  padding-bottom: 7px;
}

.bgG {
  background: #f5f5f5;
}

.pointR {
  color: #d1121b;
}

.pointG {
  color: #1d2088;
}

.moreBtn {
  width: 100%;
  max-width: 280px;
  margin: 0px auto;
}
.moreBtn a {
  background: #4c4c4c;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  display: block;
  line-height: 1;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  padding: 20px 10px;
  border-radius: 5px;
  text-shadow: none;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 961px) {
  .moreBtn a {
    font-size: 1.8rem;
  }
}
.moreBtn a:hover {
  background: #333333;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.moreBtn a::after {
  content: url("../images/common/arrow_w.svg");
  display: inline-block;
  top: 18px;
  width: 8px;
  right: 15px;
  background-size: contain;
  position: absolute;
}