.underTopWrap, .commonWrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.commonInner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
@media (min-width: 768px) {
  .commonInner {
    width: 700px;
  }
}
@media (min-width: 1024px) {
  .commonInner {
    width: 90%;
  }
}
@media (min-width: 1200px) {
  .commonInner {
    width: 100%;
  }
}

.commonWrap .flex {
  display: flex;
  flex-flow: column;
}
@media (min-width: 1024px) {
  .commonWrap .flex {
    flex-flow: initial;
  }
}

h1,
h2,
h3,
p {
  letter-spacing: 0.08em;
  transition: all 0.4s ease-in-out;
}

@media (min-width: 414px) {
  html .br414 {
    display: none;
  }
}
@media (min-width: 768px) {
  html .br768 {
    display: none;
  }
}
@media (min-width: 1024px) {
  html .br1024 {
    display: none;
  }
}
@media (min-width: 1280px) {
  html .br1280 {
    display: none;
  }
}
.br1280Block {
  display: none;
}
@media (min-width: 1280px) {
  .br1280Block {
    display: block;
  }
}

.p {
  width: 100%;
  font: normal 500 16px/28px "Noto Sans JP", sans-serif;
  color: #333;
}

.radiusImg {
  border-radius: 8px;
}

.radiusImg12 {
  border-radius: 12px;
}

.radiusImg10 {
  border-radius: 10px;
}

.radiusImg20 {
  border-radius: 20px;
}

.radiusImg100 {
  border-radius: 100px;
}

.bgBeige {
  background: #F4F3E6;
}

.commonImg {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: top;
  transition: all 0.4s ease-in-out;
}

.h2TitX {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  flex-flow: initial;
  align-items: center;
  flex-flow: column;
}
.h2TitX .jpTit,
.h2TitX .enTit {
  position: relative;
  z-index: 5;
}
.h2TitX .enTit {
  font: normal 400 32px/38px "Lilita One", sans-serif;
  color: #12953F;
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) {
  .h2TitX .enTit {
    font-size: 70px;
    line-height: 55px;
  }
}
.h2TitX .jpTit {
  font: normal 700 16px/26px "Noto Sans JP", sans-serif;
  color: #FFF;
  margin-top: 6px;
  color: #333;
}
@media (min-width: 1024px) {
  .h2TitX .jpTit {
    font-size: 18px;
    line-height: 26.06px;
  }
}
.h2TitX .jpTit.textWight,
.h2TitX .enTit.textWight {
  color: #fff;
}

.h3TitX {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  row-gap: 10px;
}
.h3TitX .jpTit {
  font: normal 500 18px/28px "Noto Sans JP", sans-serif;
  color: #333;
}
@media (min-width: 1024px) {
  .h3TitX .jpTit {
    font-size: 24px;
    line-height: 34.75px;
  }
}

.commLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 212px;
  height: 48px;
  border-radius: 60px;
  border: 1px solid #12953F;
  background: #12953F;
  overflow: hidden;
  transition: 0.3s;
}
.commLink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  border-radius: 80px;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.commLink::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 20px;
  background: #FFF;
}
.commLink:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.commLink:hover::after {
  background: #12953F;
}
.commLink:hover .commLinkTxt {
  color: #12953F;
  z-index: 5;
}
.commLink .commLinkTxt {
  position: relative;
  display: inline-block;
  font: normal 500 16px/23.17px "Noto Sans JP", sans-serif;
  color: #FFF;
  letter-spacing: 0.03em;
  text-align: center;
  z-index: 5;
}

.commLink.commLinkWhite {
  border: 4px solid #093388;
  background: #FFF;
}

.underTopWrap {
  overflow: initial;
}
.underTopWrap .FVImg {
  position: relative;
  width: 100%;
  height: 350px;
  z-index: 1;
}
@media (min-width: 1024px) {
  .underTopWrap .FVImg {
    height: 500px;
  }
}
.underTopWrap .FVImg .backBgc {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: top;
  transition: all 0.4s ease-in-out;
}
.underTopWrap .h1TitBox {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}
@media (min-width: 768px) {
  .underTopWrap .h1TitBox {
    text-align: left;
    width: fit-content;
  }
}
.underTopWrap .h1TitBox .jpTitBox {
  text-align: center;
  position: relative;
  width: fit-content;
}
.underTopWrap .h1TitBox .jpTit {
  font: normal 500 16px/28px "Noto Sans JP", sans-serif;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.4em;
  white-space: nowrap;
  margin-top: 7px;
}
@media (min-width: 1024px) {
  .underTopWrap .h1TitBox .jpTit {
    white-space: nowrap;
    font-size: 20px;
    line-height: 30px;
    margin-top: 27px;
  }
}
.underTopWrap .h1TitBox .enTit {
  font: normal 400 30px/40px "Lilita One", sans-serif;
  color: #FFF;
  letter-spacing: 0.04em;
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .underTopWrap .h1TitBox .enTit {
    font-size: 70px;
    line-height: 55px;
    word-break: initial;
    overflow-wrap: initial;
    white-space: initial;
  }
}
.underTopWrap .h1TitBox .imgH1titDecoBoxLeft {
  position: absolute;
  top: -81%;
  left: -29%;
  width: 79.61px;
  height: 43px;
}
@media (min-width: 1024px) {
  .underTopWrap .h1TitBox .imgH1titDecoBoxLeft {
    top: -81%;
    left: -29%;
    width: 179.61px;
    height: 92px;
  }
}
.underTopWrap .h1TitBox .imgH1titDecoBoxRight {
  position: absolute;
  right: -30%;
  bottom: -52%;
  width: 79.4px;
  height: 41.02px;
}
@media (min-width: 1024px) {
  .underTopWrap .h1TitBox .imgH1titDecoBoxRight {
    right: -30%;
    bottom: -92%;
    width: 189.4px;
    height: 97.02px;
  }
}
.underTopWrap .fvBg {
  position: absolute;
  display: none;
  left: 2.5%;
  bottom: -26px;
  width: 275px;
  height: 211px;
}
@media (min-width: 768px) {
  .underTopWrap .fvBg {
    display: block;
    width: 275px;
    height: 211px;
  }
}
@media (min-width: 1200px) {
  .underTopWrap .fvBg {
    width: 275px;
    height: 211px;
  }
}
@media (min-width: 1400px) {
  .underTopWrap .fvBg {
    width: 396px;
    height: 311px;
  }
}
.underTopWrap .underFvDecoImgBox {
  position: absolute;
  width: 68px;
  height: 100px;
  right: 0;
  bottom: -40px;
  z-index: 1;
}
@media (min-width: 1024px) {
  .underTopWrap .underFvDecoImgBox {
    width: 148px;
    height: 210px;
    right: 0;
    bottom: -80px;
  }
}

.sectionTitBox {
  text-align: center;
}
.sectionTitBox .enTit {
  font: normal 600 24px/32px "Montserrat", sans-serif;
  color: #333;
  background: linear-gradient(90deg, #B99777, #B99777 30%, #B99777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.08em;
}
@media (min-width: 1024px) {
  .sectionTitBox .enTit {
    font-size: 46px;
    line-height: 60px;
  }
}
.sectionTitBox .jpTit {
  font: normal 500 16px/24px "Noto Sans JP", sans-serif;
  color: #333;
  background: linear-gradient(90deg, #B99777, #B99777 30%, #B99777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 0.13em;
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .sectionTitBox .jpTit {
    font-size: 17px;
    line-height: 24.62px;
  }
}

.bgCommonBeige {
  background: #F8F6EF;
}

.backBgc {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.backBgc .backImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: top;
  transition: all 0.4s ease-in-out;
}/*# sourceMappingURL=common.css.map */