@charset "UTF-8";
/* ==========================================================================
 下層 共通
========================================================================== */
.page-hero {
  text-align: center;
  display: block;
}
.page-hero .page-hero-ttl {
  background: url("../../assets/img/top_promise_bg.webp") center center no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0px;
  font-size: 2em;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .page-hero .page-hero-ttl {
    padding: 40px 0px;
    font-size: 1.5em;
  }
}
.page-hero .page-hero-subttl {
  background: #f3efe6;
  padding: 50px 0px;
  line-height: 1.9;
}
@media screen and (max-width: 960px) {
  .page-hero .page-hero-subttl {
    padding: 15px 6.25vw;
  }
}

.page-cont-ttl {
  text-align: center;
  font-size: 1em;
  font-weight: 700;
  color: #3C7A48;
  background-color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 1240px;
  padding: 20px 0px 20px;
  margin: 40px auto 30px;
}
@media screen and (max-width: 960px) {
  .page-cont-ttl {
    font-size: 1.3em;
    padding: 15px 0px;
    margin: 20px auto 30px;
  }
}

.page-cont-subttl {
  text-align: center;
  font-size: 1.3em;
  font-weight: 700;
  color: #3C7A48;
  padding: 15px 0;
  margin-bottom: 25px;
  border-top: 2px solid #3C7A48;
  border-bottom: 2px solid #3C7A48;
}
@media screen and (max-width: 960px) {
  .page-cont-subttl {
    padding: 10px 0;
    margin-bottom: 15px;
    border-top-width: 1px;
    border-bottom-width: 1px;
    font-size: 1.1em;
  }
}

/* ==========================================================================
FAQ Page よくあるご質問
========================================================================== */
.section-faq {
  background: #fff;
}
.section-faq .page-cont-ttl {
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  color: #3C7A48;
  background-color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 1240px;
  padding: 20px 0px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .section-faq .page-cont-ttl {
    font-size: 1.3em;
    padding: 15px 0px;
    margin: 0 auto;
  }
}
.section-faq .content-inner {
  max-width: 1240px;
  padding: 40px 20px;
  margin: 0 auto 0px;
  background: #ffffff;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  .section-faq .content-inner {
    padding: 20px 6.25vw;
  }
}

.wellbio-page-anc {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .wellbio-page-anc {
    gap: 15px;
  }
}
.wellbio-page-anc li {
  width: 23%;
  background: #003A12;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: 0.3s, color 0.3s;
  line-height: 1.4;
  font-size: 0.9em;
}
@media screen and (max-width: 960px) {
  .wellbio-page-anc li {
    font-size: 1em;
    border-width: 1.5px;
    border-radius: 8px;
    width: 47.5%;
    line-height: 1.3;
  }
}
.wellbio-page-anc li::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #fff;
}
@media screen and (max-width: 960px) {
  .wellbio-page-anc li::after {
    bottom: 8px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 7px solid #fff;
  }
}
.wellbio-page-anc li a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 20px 10px 30px;
}
@media screen and (max-width: 960px) {
  .wellbio-page-anc li a {
    padding: 12px 5px 20px;
  }
}
@media screen and (min-width: 961px) {
  .wellbio-page-anc li:hover {
    opacity: 0.8;
  }
}

.wellbio-anc-anwser {
  max-width: 1240px;
  padding: 0px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .wellbio-anc-anwser {
    max-width: 100%;
    padding: 0px 0px;
  }
}
.wellbio-anc-anwser:last-child {
  margin-bottom: 0;
}

.faq-anwser-box {
  padding-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .faq-anwser-box {
    width: 100%;
    overflow-x: hidden;
    max-width: 1240px;
    padding: 0px 6.25vw 40px;
    margin: 0 auto 0px;
  }
}

.faq-anwser-box-question {
  padding: 20px 0;
  border-bottom: 1.5px solid #3C7A48;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.faq-anwser-box-question .q-row {
  display: flex;
  align-items: flex-start;
}
.faq-anwser-box-question .q-icon {
  color: #3C7A48;
  flex-shrink: 0;
  font-size: 2em;
  margin-right: 16px;
  line-height: 1.1;
}
@media screen and (max-width: 960px) {
  .faq-anwser-box-question .q-icon {
    font-size: 1.8em;
    margin-right: 8px;
  }
}
.faq-anwser-box-question .q-text {
  font-weight: 600;
  line-height: 2;
  flex: 1;
  padding-right: 40px;
  font-size: 1em;
}
@media screen and (max-width: 960px) {
  .faq-anwser-box-question .q-text {
    padding-right: 35px;
    font-size: 1em;
    line-height: 1.5;
  }
}
.faq-anwser-box-question .q-toggle {
  position: absolute;
  right: 5px;
  top: 22px;
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 960px) {
  .faq-anwser-box-question .q-toggle {
    width: 24px;
    height: 24px;
    top: 20px;
  }
}
.faq-anwser-box-question .q-toggle::before, .faq-anwser-box-question .q-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #3C7A48;
  transition: transform 0.3s ease;
}
.faq-anwser-box-question .q-toggle::before {
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .faq-anwser-box-question .q-toggle::before {
    width: 16px;
  }
}
.faq-anwser-box-question .q-toggle::after {
  width: 2px;
  height: 20px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .faq-anwser-box-question .q-toggle::after {
    height: 16px;
  }
}
.faq-anwser-box-question.open .q-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-anwser-box-anwser {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-anwser-box-anwser .faq-anwser-box-anwser-inner {
  display: flex;
  align-items: flex-start;
  padding: 15px 0 0;
}
.faq-anwser-box-anwser .a-icon {
  color: #e07b3c;
  flex-shrink: 0;
  font-size: 2em;
  margin-right: 16px;
  line-height: 1.3;
}
@media screen and (max-width: 960px) {
  .faq-anwser-box-anwser .a-icon {
    margin-right: 8px;
    line-height: 1;
  }
}
.faq-anwser-box-anwser .a-text {
  line-height: 1.8;
  flex: 1;
  padding: 5px 0;
  font-size: 0.9em;
}
@media screen and (max-width: 960px) {
  .faq-anwser-box-anwser .a-text {
    font-size: 1em;
    padding: 0px 0;
  }
}
.faq-anwser-box-anwser .a-text a {
  color: #000;
}

.faq-float-btn {
  position: fixed;
  bottom: 150px;
  right: 30px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 960px) {
  .faq-float-btn {
    bottom: 80px;
    right: 15px;
  }
}
.faq-float-btn.show {
  opacity: 1;
  visibility: visible;
}
.faq-float-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #e8951a;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  padding-top: 12px;
  box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 960px) {
  .faq-float-btn a {
    width: 80px;
    height: 80px;
    font-size: 0.8em;
    padding-top: 12px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.faq-float-btn a::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 15px solid #fff;
}
@media screen and (max-width: 960px) {
  .faq-float-btn a::after {
    top: 15px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #fff;
  }
}
@media screen and (min-width: 961px) {
  .faq-float-btn a:hover {
    background: #d4850f;
  }
}

/* ==========================================================================
SHOP Page 店舗情報
========================================================================== */
.section-shop {
  padding-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .section-shop {
    padding: 0;
  }
}
.section-shop a {
  color: #3C7A48;
}
.section-shop .content-inner {
  max-width: 1240px;
  padding: 40px 20px 20px;
  margin: 0 auto -20px;
  background: #ffffff;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  .section-shop .content-inner {
    padding: 20px 6.25vw;
    margin: 0;
  }
}
.section-shop .page-cont-ttl {
  margin: 0auto 40px;
}
@media screen and (max-width: 960px) {
  .section-shop .page-cont-ttl {
    margin: 0 auto 20px;
  }
}
.section-shop .page-shop-box {
  background: #ffffff;
  margin-bottom: 40px;
}
@media screen and (min-width: 961px) {
  .section-shop .page-shop-box {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 960px) {
  .section-shop .page-shop-box {
    padding: 0px 6.25vw 0px;
  }
}

@media screen and (min-width: 961px) {
  .page-shop-box-right {
    width: 34%;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 961px) {
  .page-shop-box-left {
    width: 63%;
  }
}
@media screen and (min-width: 961px) {
  .page-shop-box-left .btn-base {
    display: none;
  }
}

.shop-img {
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .shop-img {
    margin-bottom: 20px;
  }
}
.shop-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop-txt {
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .shop-txt {
    font-size: 1.2em;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 960px) {
  .shop-cont-data {
    margin-bottom: 15px;
  }
}

.shop-data-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .shop-data-item {
    line-height: 1.4;
    margin-bottom: 20px;
    flex-direction: column;
  }
}
.shop-data-item:last-child {
  margin-bottom: 0;
}
.shop-data-item dt {
  flex-shrink: 0;
  color: #fff;
  background: #3C7A48;
  padding: 2px 5px;
  margin-right: 20px;
  text-align: center;
  width: 18%;
  font-size: 0.8em;
}
@media screen and (max-width: 960px) {
  .shop-data-item dt {
    margin-right: 0;
    display: inline-block;
    padding: 2px 10px;
    margin-bottom: 10px;
    width: 29%;
    line-height: 1.2;
  }
}
.shop-data-item dd {
  flex: 1;
  font-size: 0.9em;
}
@media screen and (max-width: 960px) {
  .shop-data-item dd {
    line-height: 1.5;
  }
}
.shop-data-item dd span {
  font-size: 0.9em;
}

.shop-map {
  padding-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .shop-map {
    padding: 0 6.25vw 40px;
  }
}
.shop-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
@media screen and (max-width: 960px) {
  .shop-map iframe {
    height: auto;
    aspect-ratio: 1/1;
  }
}

.shop-map-btn {
  display: inline-block;
  margin: 15px 0 20px;
  text-decoration: underline;
  color: #000;
  font-size: 0.8em;
}
@media screen and (min-width: 961px) {
  .shop-map-btn:hover {
    text-decoration: none;
  }
}

.page-shop-box-map {
  padding-top: 40px;
}
@media screen and (max-width: 960px) {
  .page-shop-box-map {
    display: none;
  }
}

.btn-shop {
  background: #D16F68;
  margin: 0 auto;
}

/* ==========================================================================
 Concierge Page ライフコンシェルジュ
========================================================================== */
.section-concierge {
  background-color: #EFF4F5;
  background-size: 100% auto;
  padding: 30px 0px 80px;
}
@media screen and (max-width: 960px) {
  .section-concierge {
    padding: 20px 0px 40px;
  }
}
.section-concierge .content-inner {
  max-width: 1240px;
  padding: 0px 20px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .section-concierge .content-inner {
    padding: 0px 6.25vw 0px;
  }
}
@media screen and (min-width: 961px) {
  .section-concierge .conc-inner {
    padding: 0 20px 0;
  }
}

.concierge-top-lead {
  text-align: center;
  font-size: 0.9em;
  margin-bottom: 30px;
  line-height: 1.7;
}
@media screen and (max-width: 960px) {
  .concierge-top-lead {
    margin-bottom: 15px;
  }
}

.wellbio-concierge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding-top: 5px;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list {
    flex-direction: column;
    gap: 20px;
  }
}
.wellbio-concierge-list .wellbio-concierge-box {
  width: calc((100% - 60px) / 3);
  background: #fff;
  border-radius: 20px;
  border: 3px solid #3e3a39;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list .wellbio-concierge-box {
    border-radius: 15px;
    width: 100%;
    padding: 0;
    border: 2px solid #3e3a39;
  }
}
@media screen and (min-width: 961px) {
  .wellbio-concierge-list .wellbio-concierge-box {
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .wellbio-concierge-list .wellbio-concierge-box:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
  }
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  padding: 0 0 30px;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list .wellbio-concierge-box .concierge-box-link {
    padding: 0 0 25px;
  }
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-ttl {
  background: linear-gradient(135deg, #003A12, );
  color: #3C7A48;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list .wellbio-concierge-box .concierge-box-ttl {
    padding: 13px 10px;
    font-weight: 500;
    font-size: 1.1em;
    font-weight: bold;
  }
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-img {
  width: 100%;
  overflow: hidden;
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 15px 0;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list .wellbio-concierge-box .concierge-box-tags {
    padding: 15px 18px 0;
    gap: 7px;
  }
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-tags .concierge-tag {
  display: inline-block;
  background: #3C7A48;
  color: #fff;
  border-radius: 20px;
  padding: 5px 15px;
  line-height: 1.4;
  font-size: 0.75em;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list .wellbio-concierge-box .concierge-box-tags .concierge-tag {
    padding: 3px 10px;
    font-size: 1em;
  }
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-txt {
  padding: 18px 15px 0;
  line-height: 1.8;
  font-size: 0.9em;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list .wellbio-concierge-box .concierge-box-txt {
    padding: 15px 18px 0;
  }
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-name {
  padding: 15px 15px 20px;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list .wellbio-concierge-box .concierge-box-name {
    padding: 18px 18px;
  }
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-btn {
  padding: 0 15px;
  margin-top: auto;
  font-size: 0.9em;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list .wellbio-concierge-box .concierge-box-btn {
    padding: 0 18px;
  }
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-btn span {
  display: block;
  background: #003A12;
  color: #fff;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  position: relative;
  height: 70px;
  line-height: 70px;
  border-radius: 20px;
  transition: all 0.3s;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list .wellbio-concierge-box .concierge-box-btn span {
    height: 50px;
    line-height: 50px;
    border-radius: 12px;
  }
}
.wellbio-concierge-list .wellbio-concierge-box .concierge-box-btn span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: url(../img/cmn_arrow.svg) center center no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 960px) {
  .wellbio-concierge-list .wellbio-concierge-box .concierge-box-btn span:after {
    right: 15px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
}

/* ==========================================================================
 Concierge About Page ライフコンシェルジュ 詳細
========================================================================== */
.concierge-about-hero .concierge-about-hero-inner {
  display: flex;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px 20px 0;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .concierge-about-hero .concierge-about-hero-inner {
    flex-direction: column;
    align-items: center;
    padding: 0px 0 25px;
    gap: 0px;
  }
}
.concierge-about-hero .concierge-about-hero-img {
  width: 700px;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .concierge-about-hero .concierge-about-hero-img {
    width: 100%;
  }
}
.concierge-about-hero .concierge-about-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.concierge-about-hero .concierge-about-hero-info {
  flex: 1;
}
.concierge-about-hero .concierge-about-hero-label {
  font-size: 1.3em;
  padding: 30px 0 30px;
  color: #3C7A48;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .concierge-about-hero .concierge-about-hero-label {
    padding: 15px 6.25vw;
    font-size: 1.5em;
  }
}
.concierge-about-hero .concierge-about-hero-name {
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.6em;
}
@media screen and (max-width: 960px) {
  .concierge-about-hero .concierge-about-hero-name {
    margin-bottom: 20px;
    padding: 0 6.25vw;
    display: flex;
    font-size: 1.3em;
  }
}
.concierge-about-hero .concierge-about-hero-name span {
  font-weight: 400;
  margin-left: 8px;
  font-size: 0.7em;
}
@media screen and (max-width: 960px) {
  .concierge-about-hero .concierge-about-hero-name span {
    display: block;
    margin-left: 0;
    margin-top: 5px;
    font-size: 0.7em;
  }
}
.concierge-about-hero .concierge-about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9em;
}
@media screen and (max-width: 960px) {
  .concierge-about-hero .concierge-about-hero-tags {
    gap: 8px;
    padding: 0 6.25vw;
  }
}
.concierge-about-hero .concierge-about-hero-tags .concierge-tag {
  display: inline-block;
  background: #3C7A48;
  color: #fff;
  border-radius: 20px;
  padding: 5px 18px;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .concierge-about-hero .concierge-about-hero-tags .concierge-tag {
    padding: 4px 12px;
    font-size: 0.9em;
  }
}

.section-concierge-about {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 20px 0;
}
@media screen and (max-width: 960px) {
  .section-concierge-about {
    padding: 0 0 0;
  }
}
.section-concierge-about .content-inner {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .section-concierge-about .content-inner {
    padding: 0 6.25vw;
  }
}

.concierge-about-catch {
  background: #f3efe6;
  padding: 25px 0px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .concierge-about-catch {
    padding: 20px 0px;
    margin-bottom: 0px;
    font-size: 0.9em;
    font-weight: bold;
  }
}
.concierge-about-catch p {
  line-height: 1.9;
  font-size: 1.3em;
}
@media screen and (max-width: 960px) {
  .concierge-about-catch p {
    line-height: 1.8;
  }
}

.concierge-about-section {
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .concierge-about-section {
    margin-bottom: 35px;
  }
}
.concierge-about-section:last-of-type {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .concierge-about-section:last-of-type {
    margin-bottom: 30px;
  }
}

.concierge-about-section-ttl {
  text-align: center;
  color: #3C7A48;
  padding: 0px 20px 20px;
  margin-bottom: 40px;
  border-bottom: 2px solid #3C7A48;
  font-size: 1.2em;
}
@media screen and (max-width: 960px) {
  .concierge-about-section-ttl {
    padding: 20px 15px 15px;
    margin-bottom: 20px;
    font-size: 1.2em;
    border-bottom: 1px solid #3C7A48;
  }
}

.concierge-about-section-body {
  background: #fff;
  padding: 0px 0px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .concierge-about-section-body {
    padding: 0 6.25vw;
    text-align: left;
  }
}
.concierge-about-section-body p {
  line-height: 1.8;
  margin-bottom: 12px;
}
@media screen and (max-width: 960px) {
  .concierge-about-section-body p {
    margin-bottom: 10px;
  }
}
.concierge-about-section-body p:last-child {
  margin-bottom: 0;
}

.concierge-about-subsection {
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .concierge-about-subsection {
    margin-bottom: 25px;
  }
}
.concierge-about-subsection:last-child {
  margin-bottom: 0;
}

.concierge-about-subsection-ttl {
  font-weight: 700;
  color: #3C7A48;
  padding: 0px 0 15px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .concierge-about-subsection-ttl {
    padding: 10px 6.25vw 10px;
    text-align: left;
    line-height: 1.5;
  }
}

.concierge-about-belief {
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .concierge-about-belief {
    padding: 0 6.25vw;
  }
}
.concierge-about-belief .concierge-about-belief-ttl {
  font-weight: 700;
  color: #3C7A48;
  padding: 0px 0 15px;
  line-height: 1.7;
  text-align: center;
}
.concierge-about-belief .concierge-about-section-body {
  padding: 0;
  border-radius: 0;
}

/* ==========================================================================
 Concierge Other Slider そのほかのライフコンシェルジュ
========================================================================== */
.section-concierge-other {
  background-size: 100% auto;
  padding: 50px 0px;
}
@media screen and (max-width: 960px) {
  .section-concierge-other {
    padding: 40px 0 0px;
  }
}
.section-concierge-other .content-inner {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 70px;
}
@media screen and (max-width: 960px) {
  .section-concierge-other .content-inner {
    padding: 0 6.25vw 50px;
  }
}

.concierge-other-ttl {
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.6em;
}
@media screen and (max-width: 960px) {
  .concierge-other-ttl {
    margin-bottom: 30px;
    font-size: 1.3em;
  }
}

.concierge-other-swiper-wrap {
  position: relative;
}
.concierge-other-swiper-wrap .swiper-button-prev,
.concierge-other-swiper-wrap .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background-size: cover;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .concierge-other-swiper-wrap .swiper-button-prev,
.concierge-other-swiper-wrap .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
.concierge-other-swiper-wrap .swiper-button-prev::after,
.concierge-other-swiper-wrap .swiper-button-next::after {
  display: none;
}
.concierge-other-swiper-wrap .swiper-button-prev {
  left: -70px;
  background: url(../img/top_case_arrow_l.png) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .concierge-other-swiper-wrap .swiper-button-prev {
    left: -15px;
  }
}
.concierge-other-swiper-wrap .swiper-button-next {
  right: -70px;
  background: url(../img/top_case_arrow_r.png) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .concierge-other-swiper-wrap .swiper-button-next {
    right: -15px;
  }
}

.concierge-other-swiper {
  overflow: hidden;
}
.concierge-other-swiper .wellbio-concierge-list {
  flex-wrap: nowrap;
  gap: 0;
}
@media screen and (max-width: 960px) {
  .concierge-other-swiper .wellbio-concierge-list {
    flex-direction: row;
    gap: 0;
  }
}
.concierge-other-swiper .wellbio-concierge-box {
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  border: 3px solid #3e3a39;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .concierge-other-swiper .wellbio-concierge-box {
    border-radius: 15px;
    border: 2px solid #3e3a39;
  }
}
@media screen and (min-width: 961px) {
  .concierge-other-swiper .wellbio-concierge-box {
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .concierge-other-swiper .wellbio-concierge-box:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
  }
}

.footer-cta-txt {
  padding: 0px 6vw 50px;
  font-size: 0.8em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .footer-cta-txt {
    font-size: 0.8em;
    line-height: 1.5;
    padding: 0 6.25vw 30px;
  }
}

/* ==========================================================================
 Special Interview スペシャルインタビュー
========================================================================== */
@media screen and (max-width: 960px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp-only {
    display: inline;
  }
}

.interview-top-bg {
  background: #f3efe6;
  position: relative;
  overflow: hidden;
}
.interview-top-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 2.5%;
  transform: translateX(50%);
  width: 1px;
  height: 70px;
  background: #fff;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .interview-top-bg::before {
    top: 0px;
    right: 6%;
    height: 50px;
  }
}
.interview-top-bg::after {
  content: "special interview";
  position: absolute;
  top: 0;
  right: 0;
  width: 5%;
  height: 100%;
  background: #00A9CC;
  color: #fff;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 90px;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 1.2em;
  letter-spacing: 0.15em;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .interview-top-bg::after {
    width: 12%;
    font-size: 0.7em;
    letter-spacing: 0.1em;
    padding-top: 55px;
  }
}
.interview-top-bg > * {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 961px) {
  .interview-top-pc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "hero title" "hero info";
    max-width: 1240px;
    margin: 0 auto;
    padding: 50px 20px 0;
  }
}
@media screen and (min-width: 961px) {
  .interview-top-pc .interview-hero {
    grid-area: hero;
    display: flex;
    align-items: stretch;
  }
}
@media screen and (min-width: 961px) {
  .interview-top-pc .interview-title-section {
    grid-area: title;
    display: flex;
    align-items: flex-end;
  }
}
@media screen and (min-width: 961px) {
  .interview-top-pc .interview-info-section {
    grid-area: info;
    display: flex;
    align-items: flex-start;
  }
}

.interview-hero .interview-hero-img {
  overflow: hidden;
}
@media screen and (min-width: 961px) {
  .interview-hero .interview-hero-img {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 960px) {
  .interview-hero .interview-hero-img {
    width: 88%;
  }
}
.interview-hero .interview-hero-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 961px) {
  .interview-title-section .content-inner {
    padding: 0 0 20px 25px;
  }
}
@media screen and (max-width: 960px) {
  .interview-title-section .content-inner {
    padding: 25px 6.25vw 25px;
  }
}
.interview-title-section .interview-label {
  display: inline-block;
  background: #00A9CC;
  color: #fff;
  font-size: 0.85em;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .interview-title-section .interview-label {
    font-size: 1em;
    padding: 5px 15px;
    margin-bottom: 15px;
  }
}
.interview-title-section .interview-main-ttl {
  font-weight: 700;
  line-height: 1.6;
  color: #00A9CC;
}
@media screen and (min-width: 961px) {
  .interview-title-section .interview-main-ttl {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 960px) {
  .interview-title-section .interview-main-ttl {
    font-size: 1.4em;
    line-height: 1.5;
  }
}

@media screen and (min-width: 961px) {
  .interview-info-section .content-inner {
    padding: 20px 0 0 25px;
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .interview-info-section .content-inner {
    padding: 40px 6.25vw 10px;
  }
}
.interview-info-section .interview-persons {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .interview-info-section .interview-persons {
    flex-direction: column;
    gap: 20px;
  }
}
.interview-info-section .interview-person {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .interview-info-section .interview-person {
    gap: 15px;
  }
}
.interview-info-section .interview-person-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .interview-info-section .interview-person-img {
    width: 60px;
    height: 60px;
  }
}
.interview-info-section .interview-person-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview-info-section .interview-person-data .interview-person-role {
  font-size: 0.85em;
  color: #3C7A48;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .interview-info-section .interview-person-data .interview-person-role {
    font-size: 0.8em;
    margin-bottom: 3px;
  }
}
.interview-info-section .interview-person-data .interview-person-name {
  font-weight: 700;
  font-size: 1.1em;
}
@media screen and (max-width: 960px) {
  .interview-info-section .interview-person-data .interview-person-name {
    font-size: 1em;
  }
}
.interview-info-section .interview-person-data .interview-person-name span {
  font-weight: 400;
  font-size: 0.8em;
  margin-left: 5px;
}
@media screen and (max-width: 960px) {
  .interview-info-section .interview-person-data .interview-person-name span {
    display: block;
    margin-left: 0;
    margin-top: 3px;
  }
}

.interview-client-info {
  padding: 30px 30px;
  border-top: 0.5px solid #000;
  border-bottom: 0.5px solid #000;
}
@media screen and (max-width: 960px) {
  .interview-client-info {
    padding: 20px 0;
  }
}

.interview-client-data .interview-client-data-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  line-height: 1.8;
  font-size: 0.95em;
}
@media screen and (max-width: 960px) {
  .interview-client-data .interview-client-data-item {
    font-size: 0.9em;
    margin-bottom: 5px;
    line-height: 1.6;
  }
}
.interview-client-data .interview-client-data-item:last-child {
  margin-bottom: 0;
}
.interview-client-data .interview-client-data-item dt {
  flex-shrink: 0;
}
.interview-client-data .interview-client-data-item dt::before {
  content: "■";
  margin-right: 8px;
  font-size: 0.6em;
  vertical-align: middle;
}
@media screen and (max-width: 960px) {
  .interview-client-data .interview-client-data-item dt::before {
    font-size: 1.4em;
    line-height: 0.1;
  }
}
.interview-client-data .interview-client-data-item dt::after {
  content: "：";
}
.interview-client-data .interview-client-data-item dd {
  flex: 1;
}

.interview-points-section {
  padding: 40px 0;
}
@media screen and (max-width: 960px) {
  .interview-points-section {
    padding-bottom: 50px;
  }
}
.interview-points-section .content-inner {
  background: #fff;
  border-radius: 15px;
}
@media screen and (min-width: 961px) {
  .interview-points-section .content-inner {
    padding: 35px 50px;
    width: 55%;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 960px) {
  .interview-points-section .content-inner {
    padding: 30px 6.25vw 30px;
    width: 90%;
    margin: 0 auto;
  }
}

.interview-points-ttl {
  font-size: 1.1em;
  font-weight: 700;
  color: #fff;
  padding: 6px 20px;
  text-align: center;
  background: #00A9CC;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
@media screen and (max-width: 960px) {
  .interview-points-ttl {
    font-size: 1em;
    padding: 5px 15px;
    margin-bottom: 20px;
  }
}

.interview-points-list {
  list-style: none;
}
.interview-points-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1em;
}
@media screen and (max-width: 960px) {
  .interview-points-list li {
    font-size: 0.95em;
    margin-bottom: 15px;
    line-height: 1.7;
    padding-left: 18px;
  }
}
.interview-points-list li:last-child {
  margin-bottom: 0;
}
.interview-points-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* ==========================================================================
 Special Interview インタビュー本文
========================================================================== */
.interview-body-section .content-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  max-width: 1240px;
}
@media screen and (max-width: 960px) {
  .interview-body-section .content-inner {
    padding: 50px 6.25vw 50px;
  }
}

.interview-intro {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 960px) {
  .interview-intro {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
.interview-intro p {
  line-height: 2;
  font-size: 1em;
}
@media screen and (max-width: 960px) {
  .interview-intro p {
    line-height: 1.8;
    font-size: 0.95em;
  }
}

.interview-qa-block {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .interview-qa-block {
    margin-bottom: 50px;
  }
}
.interview-qa-block:last-child {
  margin-bottom: 0;
}

.interview-answer-last {
  line-height: 1.5;
  font-size: 0.8em;
}
@media screen and (max-width: 960px) {
  .interview-answer-last {
    font-size: 0.8em;
    padding: 50px 0 0;
    line-height: 1.7;
  }
}

.interview-question {
  background: #666;
  padding: 20px 40px;
  margin-bottom: 30px;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (max-width: 960px) {
  .interview-question {
    padding: 8px 10px 8px 20px;
    margin-bottom: 20px;
    margin-left: -6.25vw;
    margin-right: -6.25vw;
  }
}
.interview-question p {
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .interview-question p {
    font-size: 1em;
    line-height: 1.6;
  }
}
.interview-question p .sub {
  font-size: 1.2em;
}
@media screen and (max-width: 960px) {
  .interview-question p .sub {
    font-size: 1.2em;
  }
}

.interview-answer {
  margin-bottom: 25px;
  border-left: none;
  padding-left: 20px;
  border-left: 3px solid #00A9CC;
}
@media screen and (max-width: 960px) {
  .interview-answer {
    margin-bottom: 20px;
    border-left: 3px solid #00A9CC;
    padding-left: 10px;
  }
}
.interview-answer:last-child {
  margin-bottom: 0;
}
.interview-answer .interview-answer-name {
  font-weight: 700;
  color: #00A9CC;
  margin-bottom: 15px;
  font-size: 1.2em;
}
@media screen and (max-width: 960px) {
  .interview-answer .interview-answer-name {
    margin-bottom: 15px;
    font-size: 1em;
    border-left: none;
  }
}
.interview-answer p {
  line-height: 2;
  font-size: 1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .interview-answer p {
    line-height: 1.8;
    font-size: 0.95em;
    margin-bottom: 18px;
  }
}
.interview-answer p:last-child {
  margin-bottom: 0;
}
.interview-answer p span {
  font-weight: 600;
}

.interview-img-block {
  margin: 50px -20px;
  padding: 50px 20px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 960px) {
  .interview-img-block {
    margin: 30px -6.25vw 0;
    padding: 30px 0 50px;
  }
}
.interview-img-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
}
.interview-img-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background: #00A9CC;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .interview-img-block::after {
    width: 12%;
  }
}
.interview-img-block.bg-reverse::before {
  background: #fff;
}
.interview-img-block.bg-reverse::after {
  right: auto;
  left: 0;
  background: #00A9CC;
}
.interview-img-block img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.interview-img-block.no-bg {
  padding: 0;
  margin: 40px 0;
}
@media screen and (max-width: 960px) {
  .interview-img-block.no-bg {
    padding: 0;
    margin: 25px 0;
    margin: 0 -6.25vw 0px;
  }
}
.interview-img-block.no-bg::before, .interview-img-block.no-bg::after {
  display: none;
}
.interview-img-block.img-right img {
  width: 95%;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .interview-img-block.img-right img {
    width: 94%;
  }
}
.interview-img-block.img-left img {
  width: 95%;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  .interview-img-block.img-left img {
    width: 94%;
  }
}

.interview-quote-block {
  position: relative;
  margin: 0 -20px 50px;
  padding: 50px 30px;
  background: #f3efe6;
  font-family: "A-OTF リュウミン Pr6N", "リュウミン", "Ryumin", serif;
}
@media screen and (max-width: 960px) {
  .interview-quote-block {
    margin: 0 -6.25vw 30px;
    padding: 40px 7vw 40px 9vw;
  }
}
.interview-quote-block::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 50px;
  font-size: 3em;
  line-height: 1;
  font-family: "A-OTF リュウミン Pr6N", "リュウミン", "Ryumin", "Georgia", serif;
}
@media screen and (max-width: 960px) {
  .interview-quote-block::before {
    font-size: 2.4em;
    left: 4.25vw;
    top: 28px;
  }
}
.interview-quote-block::after {
  content: "”";
  position: absolute;
  bottom: 20px;
  right: 40px;
  font-size: 3em;
  line-height: 0.5;
  font-family: "A-OTF リュウミン Pr6N", "リュウミン", "Ryumin", "Georgia", serif;
}
@media screen and (max-width: 960px) {
  .interview-quote-block::after {
    font-size: 2.4em;
    right: 4.25vw;
    bottom: 10px;
  }
}
.interview-quote-block p {
  font-weight: 900;
  font-size: 1.3em;
  line-height: 1.8;
  color: #00A9CC;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .interview-quote-block p {
    font-size: 1em;
    line-height: 1.7;
    text-align: left;
  }
}
.interview-quote-block p span {
  font-weight: 500;
  color: #000;
}

.interview-interviewer-section {
  border-top: 1px solid #e0e0e0;
}
.interview-interviewer-section .content-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
@media screen and (max-width: 960px) {
  .interview-interviewer-section .content-inner {
    padding: 25px 6.25vw;
  }
}
.interview-interviewer-section .interview-persons {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .interview-interviewer-section .interview-persons {
    flex-direction: column;
    gap: 20px;
  }
}
.interview-interviewer-section .interview-person {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .interview-interviewer-section .interview-person {
    gap: 15px;
  }
}
.interview-interviewer-section .interview-person-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .interview-interviewer-section .interview-person-img {
    width: 60px;
    height: 60px;
  }
}
.interview-interviewer-section .interview-person-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview-interviewer-section .interview-person-data .interview-person-role {
  font-size: 0.85em;
  color: #3C7A48;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .interview-interviewer-section .interview-person-data .interview-person-role {
    font-size: 0.8em;
    margin-bottom: 3px;
  }
}
.interview-interviewer-section .interview-person-data .interview-person-name {
  font-weight: 700;
  font-size: 1.1em;
}
@media screen and (max-width: 960px) {
  .interview-interviewer-section .interview-person-data .interview-person-name {
    font-size: 1em;
  }
}
.interview-interviewer-section .interview-person-data .interview-person-name span {
  font-weight: 400;
  font-size: 0.8em;
  margin-left: 5px;
}
@media screen and (max-width: 960px) {
  .interview-interviewer-section .interview-person-data .interview-person-name span {
    display: block;
    margin-left: 0;
    margin-top: 3px;
  }
}/*# sourceMappingURL=contents.css.map */