@charset "UTF-8";
:root {
  --point-color: #AA8D4E;
}

body {
  font-family: "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #333;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}

br.spBr {
  display: none;
}
@media screen and (max-width: 767px) {
  br.spBr {
    display: inline;
  }
}
br.pcBr {
  display: none;
}
@media screen and (min-width: 768px), print {
  br.pcBr {
    display: inline;
  }
}

button {
  padding: 0;
  border: none;
  background: transparent;
  color: #333;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
}
@media screen and (min-width: 768px), print {
  button:hover {
    opacity: 0.6;
  }
}

/* パンくず */
.lp-breadcrumb {
  color: #707070;
  font-size: 12px;
  z-index: 2;
  position: relative;
  background: #ffffff;
}
.lp-breadcrumb ol {
  display: flex;
  justify-content: start;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
  align-content: center;
  align-items: center;
  width: 1020px;
  padding: 0 7px;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .lp-breadcrumb ol {
    overflow: auto;
  }
}
.lp-breadcrumb ol li {
  display: flex;
  align-items: center;
  margin-right: 7px;
  padding: 5px 0 5px;
  /* margin-right: 2px; */
}
.lp-breadcrumb ol li::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
  margin-left: 3px;
}
.lp-breadcrumb ol li:last-child::after {
  display: none;
}

/* コンポーネント */
.btnPlan {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.btnPlan::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 8px;
  background: url(../images/pr/arrow.png) no-repeat 50% 50%;
  background-size: contain;
  display: inline-block;
  margin-left: 5px;
  transform: translateY(-50%);
}

/* ユーティリティ */
.serif {
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}

/* レイアウト */
.lp-container * {
  box-sizing: border-box;
}

.lp-wrapper {
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(../images/lp-new-join/bg-new-join.png) 0 0 repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .lp-wrapper {
    background-image: url(../images/lp-new-join/bg-new-join-sp.png);
  }
}
.lp-wrapper > * {
  opacity: 0;
  transform: translateY(12px); /* 任意の演出 */
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-wrapper > *.animated {
  opacity: 1;
  transform: none;
}

.lp-header {
  position: relative;
  width: 100%;
  height: 756px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .lp-header {
    height: 494px;
  }
}
.lp-header > picture {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.lp-header > picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-header .lp-header__title__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-header .lp-header__title__wrapper {
    padding: 0 50px;
  }
}
.lp-header .lp-header__title__wrapper h1 {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 18px;
  font-weight: normal;
}
@media screen and (min-width: 768px), print {
  .lp-header .lp-header__title__wrapper h1 {
    display: inline-block;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .lp-header .lp-header__title__wrapper h1 {
    line-height: 1.625;
  }
}
.lp-header .lp-header__title__wrapper p {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px), print {
  .lp-header .lp-header__title__wrapper p {
    font-size: 30px;
  }
}

#lp-concept {
  position: relative;
  width: 980px;
  margin: 0 auto;
  padding: 60px 0 50px;
}
@media screen and (max-width: 767px) {
  #lp-concept {
    width: 100%;
    max-width: 980px;
    padding: 35px 0;
  }
}
#lp-concept p {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 5px;
  padding: 0 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #lp-concept p {
    font-size: 16px;
  }
}
#lp-concept p.small {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: normal;
}

.lp-content {
  position: relative;
  padding: 0 20px;
}
@media screen and (min-width: 768px), print {
  .lp-content {
    padding: 0 12px;
  }
}
.lp-content .lp-content-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 0 55px;
}
@media screen and (min-width: 768px), print {
  .lp-content .lp-content-wrapper {
    padding: 0 0 70px;
  }
}
.lp-content .lp-content-wrapper .content__body__flex {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 768px), print {
  .lp-content .lp-content-wrapper .content__body__flex {
    flex-direction: row;
    align-items: stretch;
  }
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__image__wrapper {
  position: relative;
  display: flex;
  width: 490px;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-content .lp-content-wrapper .content__body__flex .lp-content__image__wrapper {
    width: 100%;
  }
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__image__wrapper img {
  display: block;
  width: 100%;
  height: 100%;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper {
  flex: 1;
  flex-shrink: 0;
  padding: 10px 20px;
  background-color: #FFF;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper h2 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper ul.areaWrap {
  display: flex;
  align-items: center;
  gap: 0 5px;
  margin-bottom: 15px;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper ul.areaWrap::before {
  content: "";
  display: block;
  width: 10px;
  height: 15px;
  background: var(--point-color);
  mask: url(../images/lp-new-join/map.svg) no-repeat center;
  -webkit-mask: url(../images/lp-new-join/map.svg) no-repeat center;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper ul.areaWrap li {
  padding-bottom: 0;
  font-size: 12px;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper ul.areaWrap li::after {
  content: ">";
  margin-left: 5px;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper ul.areaWrap li:last-child::after {
  content: none;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper p.lp-concept__text {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 24px;
}
@media screen and (min-width: 768px), print {
  .lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper p.lp-concept__text {
    font-size: 16px;
    line-height: 28px;
  }
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper button.planCard {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px 15px;
  background-color: #F7F7F7;
  border-left: 4px solid var(--point-color);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper button.planCard {
    margin-bottom: 20px;
  }
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper button.planCard ul.tagList {
  display: flex;
  align-items: center;
  gap: 0 8px;
  margin-bottom: 7px;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper button.planCard ul.tagList li {
  padding-bottom: 0;
  background-color: var(--point-color);
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  padding: 3px 10px;
  border-radius: 4px;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper button.planCard h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: bold;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper button.planCard p.plan-price {
  margin-bottom: 0;
  text-align: right;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper button.planCard p.plan-price span.price-label {
  font-size: 10px;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper button.planCard p.plan-price data.price-amount {
  font-size: 24px;
  font-weight: bold;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper button.planCard p.plan-price data.price-amount span.visually-hidden {
  display: none;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper button.planCard p.plan-price data.price-amount span:last-child {
  font-size: 10px;
  font-weight: normal;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper .ctaWrap {
  text-align: center;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper .ctaWrap span {
  margin-bottom: 5px;
  color: var(--point-color);
  font-size: 14px;
  font-weight: bold;
}
.lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper .ctaWrap button.btnPlan {
  display: block;
  width: 420px;
  margin: 0 auto;
  padding: 16px 10px;
  background-color: var(--point-color);
  border-radius: 4px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-content .lp-content-wrapper .content__body__flex .lp-content__text__wrapper .ctaWrap button.btnPlan {
    width: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .lp-content.--isRight-image .lp-content-wrapper .content__body__flex {
    flex-direction: row-reverse;
  }
}

/* swiper */
.swiper-button-next,
.swiper-button-prev {
  width: 20px !important;
  height: 20px !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}
.swiper-button-next .swiper-navigation-icon,
.swiper-button-prev .swiper-navigation-icon {
  display: none !important;
}

.swiper-button-next {
  background: none !important;
  background-color: var(--point-color) !important;
  mask: url(../images/lp-new-join/arrow-right.svg) no-repeat center;
  -webkit-mask: url(../images/lp-new-join/arrow-right.svg) no-repeat center;
}

.swiper-button-prev {
  background: none !important;
  background-color: var(--point-color) !important;
  mask: url(../images/lp-new-join/arrow-right.svg) no-repeat center;
  -webkit-mask: url(../images/lp-new-join/arrow-right.svg) no-repeat center;
  transform: rotate(180deg);
}

.swiper-pagination {
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #FFF;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--point-color) !important;
}

.lp-content__image__wrapper.swiper {
  overflow: hidden;
}

.lp-content__image__wrapper .swiper-wrapper {
  margin: 0;
}

.lp-content__image__wrapper .swiper-slide {
  box-sizing: border-box;
  margin-right: 0 !important;
  padding: 0;
  border: 0;
  flex-shrink: 0;
}

.lp-content__image__wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}