/* 
global style 上書き
- aタグの中にspanタグ入れないようにする
 */
#container{
  max-width: none !important;
}

#container .layout-Wrapper{
  max-width: none !important;
}

.wrapper {
  margin-bottom: 0;
}

@media (max-width: 980px){
  .holdings-header__sub__nav{
    display: none;
  }
}


/* 
 クラス名：esl-{class名}
 */

:root {
  /* ===== variables =====*/
  /* font-family */
  --ff-ja: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif; /* 和文, 300/600 */
  --ff-en: "Caveat", sans-serif; /* 欧文, 400/700 */
  
  /* line-height */
  --lh-base: 1.5;
  
  /* font-size */
  --fs-base: 14px;
  
  /* font-weight */
  --fw-ja: 300;
  --fw-ja-bold: 600;
  --fw-en: 400;
  --fw-en-bold: 700;
  
  /* space */
  --inner-space:16px;
  --section-w: 1136px;
  --column-gap-pc: min(calc(48px / 1440px * 100vw),48px);
  
  /* animation */
  --duration-default: 0.2s;
  
  /* color */
  --c-bg-base: #8290BB;
  --c-base: #333;
  --c-point: #345788;
  --c-point-rgb: 52, 87, 136;
  --c-yellow: #E8E500;
  /* --c-point1: #345788;
  --c-point2: #856699;
  --c-point3: #538F88; */
}


.esl {  

  /* ===== default style =====*/
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-family: var(--ff-ja);
  font-weight: var(--fw-ja);
  color: var(--c-base);

  background:  url('../img/bg-sp.webp') no-repeat top left / 1260px 800px;
  background-color: var(--c-bg-base);
  background-attachment: fixed;
}

a{
  color: var(--c-base);
}


/* 
================================
component / common
================================
*/

.esl-point01{
  --c-point: #345788;
  --c-point-rgb: 52, 87, 136;
}
.esl-point02{
  --c-point: #856699;
  --c-point-rgb: 133, 102, 153;
}
.esl-point03{
  --c-point: #538F88;
  --c-point-rgb: 83, 143, 136;
}

h2.esl-ttl {
  font-size: 28px;
  font-weight: var(--fw-ja-bold);
  margin-top: 4px;
}

h3.esl-ttl{
  font-size: 22px;
  font-weight: var(--fw-ja-bold);
  margin-bottom: 16px;
}

h4.esl-ttl{
  font-weight: var(--fw-ja-bold);
  font-size: 20px;
  margin-bottom: 16px;
}

.esl-badge + .esl-ttl{
  margin-top: 8px;
}

h3.esl-ttl--marker{
  margin-bottom: 24px;
}
.esl-ttl--marker {
  line-height: calc(1.5em + 6px);
  text-decoration: underline;
  text-decoration-color: rgba(var(--c-point-rgb), 0.2);
  text-decoration-thickness: 0.55em;
  text-underline-offset: -0.35em;
  text-decoration-skip-ink: none;
}
.esl-ttl--bar {
  color: var(--c-point);
  border-left: 4px solid var(--c-point);
  padding-left: 12px;
  
}

.esl-badge{
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: var(--fw-ja-bold);
  line-height: 1;
  padding: 8px;
  border-radius: 4px;
  background: var(--c-point);
}

.esl-badge--yellow{
  color: var(--c-yellow);
}


.esl-lead {
  line-height: 1.8;
}
.esl-lead .esl-strong{
  display: inline;
}
.esl-strong {
  display: block;
  font-size: 16px;
  font-weight: var(--fw-ja-bold);
  line-height: 1.8;
}

.esl-img{
  outline: 1px solid #e3e3e3;
  max-width:100%;
}

.esl-lead + .esl-gallery{
  margin-top: 16px;
}
/* gallery */
.esl-gallery,.esl-gallery__imgs {
  display: flex;
  gap: 16px;
}

.esl-gallery__imgs img {
  min-width:0;
}
.esl-gallery__item{
  flex: 1;
}

.esl-gallery__item figcaption{
  font-size: 12px;
  margin-top: 8px;
}


.esl-btn{
  display: grid;
  grid-template-columns: 1fr auto;
  place-items:center;
  text-align: center;
  border: 1px solid var(--c-point);
  background: #fff;
  border-radius: 100px;
  text-align: center;
  font-weight: var(--fw-ja-bold);
  padding: 11px 23px 11px 27px;
  width: min(360px, 100%);
  transition: background var(--duration-default), color var(--duration-default);
}

.esl-btn:after{
  content:'';
  width: 12px;
  height: 12px;
  mask: url('../img/icon-blank.svg') no-repeat center / cover;
  background: currentColor;
  transition: background var(--duration-default);
}

.esl-btn:hover{
  background: var(--c-point);
  color: #fff;
}


.esl-link-style {
  font-weight: var(--fw-ja-bold);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}

.esl-link-style--pink{
  color: #E88E8A;
}

.esl-link-style::after{
  content:'';
  width: 12px;
  height: 12px;
  mask: url('../img/icon-blank.svg') no-repeat center / cover;
  background: currentColor;
  margin-left: 4px;
  display: inline-block;
  vertical-align: text-bottom;
}

.esl-link-style:hover{
  opacity: 0.7;
}




.esl-pdf-btn{
  display: grid;
  place-items: center;
  grid-template-columns: 1fr auto;
  text-align: center;
  font-size: 20px;
  font-weight: var(--fw-ja-bold);
  padding: 10px 22px 10px 40px;
  border-radius: 100px;
  background: #fff;;
  border: 2px solid #DD5E5E; 
  transition: background var(--duration-default), color var(--duration-default);
}

.esl-pdf-btn .red, 
.esl-pdf-btn .white{
  transition: fill var(--duration-default);
}

.esl-pdf-btn:hover{
  background: #dd5e5e;
  color: #fff;
}

.esl-pdf-btn:hover .red{
  fill:#fff;
}

.esl-pdf-btn:hover .white {
  fill:#dd5e5e;
}


/* 
================================
page
================================
*/


/* mv */

.esl-mv {

}

.esl-mv__content {
  margin-top: -26px;
  display: grid;
  margin-bottom: 16px;
  gap:16px;
}

.esl-mv__ttl {
  margin-left: -3px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-inline: 11px 17px;
}
.esl-mv__ttl img{
  width:100%;
}

.esl-mv__deco { 
  text-align: center;
}
.esl-mv__deco img {
  width:100%;
  max-width: calc(100% - 32px * 2);
}

.esl-mv__loop {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  height: 192px;
  /* gap: 16px; */
  --animation-duration: 43s;
}
.esl-mv__loop ul {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  /* gap:16px; */
  animation: none;
}

.esl-mv__loop ul li {
  flex-shrink: 0;
}
.esl-mv__loop img {
  width: auto;
  height: 100%;
}
.esl-mv__loop.esl-is-ltr{
  transform: translateX(-50%);
}
.esl-mv.images-loaded .esl-mv__loop.esl-is-rtl ul{
  animation: loop-rtl calc(var(--animation-duration) * 1.2) linear infinite;
}
.esl-mv.images-loaded .esl-mv__loop.esl-is-ltr ul{
  animation: loop-ltr var(--animation-duration) linear infinite;
}

@keyframes loop-rtl {
  0% {
    transform: translateX(0);
  }
  100%{
    transform: translateX(-100%);
  }
}

@keyframes loop-ltr {
  0% {
    transform: translateX(0);
  }
  100%{
    transform: translateX(100%);
  }
}


/* index */

.esl-index {
  margin-top: 48px;
  margin-inline:auto;
  padding-inline: var(--inner-space);
  max-width: calc(848px + var(--inner-space) * 2);
}

.esl-index::before,
.esl-index::after{
  content:'';
  display: block;
  left:0;
  width: 100%;
  height:2px;
  background: var(--c-yellow);
}

.esl-index::before{
  margin-bottom: 4px;
  top:0;
}

.esl-index::after{
  margin-top: 4px;
  bottom:0;
}

.esl-index__inner {
  padding: var(--inner-space);
  padding-bottom:0;
  background: #fff;


}

.esl-index__ttl {
color: var(--c-bg-base);
text-align: center;
font-family: var(--ff-en);
font-size: 24px;
font-style: var(--fw-en-bold);
font-weight: 700;
line-height: 1;
}

.esl-index__list {
  margin-top: 16px;
}
.esl-index__item {
  border-top: 1px dashed var(--c-bg-base);
  padding-block: 16px;
}
.esl-index__link{
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: auto auto 1fr;
  gap: 8px 16px;
  padding-right: 24px;
  transition: opacity var(--duration-default);
}

.esl-index__link:hover{
  opacity: 0.7;
}

.esl-index__link::after{
  content:'';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right:0;
  width:18px;
  aspect-ratio: 18 / 16;
  mask: url('../img/icon-chevron-bottom.svg') no-repeat center / cover;
  background: var(--c-bg-base);
}

.esl-index__num {
  grid-column: 1;
  grid-row:1;
  color: var(--c-point);
  font-family: var(--ff-en);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.esl-index__badge {
  grid-column: 2;
  grid-row:1;
  min-width: 128px;
  background: var(--c-point);
}

.esl-index__badge.esl-badge{
  font-size: 14px;
}

.esl-index__title {
  grid-column: 1 / -1;
  grid-row: 2;
  font-weight: var(--fw-ja-bold);
  color: var(--c-base);
}

/* esl-point */
.esl-point {
  position: relative;
  margin-top: 48px;
}
.esl-point + .esl-point {
  margin-top: 64px;
}

.esl-point__pin{
  --pin-px: calc(32px / 390px * 100vw);
  max-width: calc(656px + var(--pin-px) * 2);
  padding-inline: var(--pin-px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  margin-block: -24px;
  position: relative;
  z-index: 1;
}

.esl-point__pin div{
  display: flex;
  gap: min(calc(24px / 390px * 100vw), 24px);
}

.esl-point__pin img{
  width: 16px;
}

.esl-point-separator{
  margin-block: 48px;
  width: 100%;
  height: 2px;
  background: #c3c3c3;
  position: relative;
}

.esl-point-separator::before,.esl-point-separator::after{
  content:'';
  width:10.5px;
  aspect-ratio: 1;
  background: #c3c3c3;
  border-radius: 50%;
  top:50%;
  transform: translateY(-50%);
  position: absolute;
}

.esl-point-separator::before{
  left: -5.25px;
}
.esl-point-separator::after{
  right: -5.25px;
}


.esl-point-card {
  position:relative;
  --card-px: var(--inner-space);
  padding-inline: var(--card-px);
  padding-block: 48px 64px;
  max-width: var(--section-w);
  margin-inline: auto;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
  background-repeat: repeat;
  background-position: top left;
  background-size: 44.5px;
}

.esl-point01 .esl-point-card {
  background-image: url('../img/point01-bg.webp');
}
.esl-point02 .esl-point-card {
  background-image: url('../img/point02-bg.webp');
}
.esl-point03 .esl-point-card {
  background-image: url('../img/point03-bg.webp');
}
.esl-point__label {
  position: absolute;
  top: -32px;
  left: var(--card-px);
  width: 96px;
}
.esl-point__label img{
  width:100%;
}

.esl-point__head {
  text-align: center;
  padding-bottom: 23px;
  border-bottom: 2px solid var(--c-point);
  margin-bottom: 48px;
}

.esl-point__badge {
  font-size: 20px;
  padding: 8px 32px;
}

.esl-point__sub-ttl {
  font-size: 16px;
  font-weight: var(--fw-ja-bold);
  margin-top: 16px;
}



.esl-content{
}

.esl-content + .esl-content{
  margin-top:48px;
}

.esl-content__heading{
  color:var(--c-point);
  display: flex;
  align-items: flex-start;
  gap:8px;
}

.esl-content__num{
  font-family: var(--ff-en);
  font-size: 48px;
  font-weight: var(--fw-en);
  line-height: 0.7;
}



.esl-content__text {
}

.esl-content__note {
  font-size: 12px;
  line-height: 1.8;
}

.esl-content__img {
  margin-top: 16px;
}


.esl-content__btns{
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

/* point-column && point-qna */

.esl-point-card--sub{
  --card-sub-py: 64px;
  padding-block: var(--card-sub-py);
}

.esl-point-column,
.esl-point-qna {
  position: relative;
}

/* 
サイド余白を可変にしたいが、.esl-point-column__label,.esl-point-qna__labelの要素が切れるため
難しい状況
 */
.esl-point-column__label,.esl-point-qna__label  {
  position: absolute;
  width: 96px;
  left:-8px;
  z-index: 2;
}
.esl-point-column__label img,.esl-point-qna__label img {
  width:100%;

}

.esl-point-column__label{
  top: calc((var(--card-sub-py) + 16px) * -1);
}

.esl-point-column__cols {
  display: grid;
  gap: 32px;
}

.esl-point-column__col {
}


.esl-point-qna {
}

.esl-point-qna__label {
  top: -80px;

}

.esl-point-qna__cols {
  display: grid;
  gap:16px;
}
.esl-point-qna__col {
}

.esl-point-product {
  display: flex;
  flex-direction: column;
  gap:16px;
}

.esl-point-product__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  position: relative;
  transition: opacity var(--duration-default);
}

.esl-point-product__item:hover{
  opacity: 0.7;
}

.esl-point-product__link {
  position: absolute;
  inset:0;
}


.esl-point-product__text {
}

.esl-point-product__ttl {
  margin-top: 8px;
  font-size: 12px;
}

/* cta */
.esl-cta {
  margin-block: 64px;
  padding-inline: var(--inner-space);
  
}

.esl-cta__inner {
  padding: 32px var(--inner-space); 
  background: rgba(51, 62, 119, 0.50);
  position: relative;
  display: grid;
  grid-template-areas: 
  "sub-ttl"
  "ttl"
  "desc"
  "img"
  "btn";
}

.esl-cta__corner {
  position: absolute;
  left: -4px;
  width: calc(100% + 8px);
  display: flex;
  justify-content: space-between;
}

.esl-cta__corner::before,
.esl-cta__corner::after{
  content:'';
  width: 36px;
  aspect-ratio: 1;
  border-left: 8px solid var(--c-yellow);
  border-top: 8px solid var(--c-yellow);
}
.esl-cta__corner::after{
  transform: rotate(90deg);
}

.esl-cta__corner--top {
  top:-4px;
}

.esl-cta__corner--bottom {
  bottom:-4px;
  transform: rotate(180deg);
}

.esl-cta__text{
  display: contents;
}


.esl-cta__sub-ttl {
  text-align: center;
  grid-area: sub-ttl;
}
.esl-cta__sub-ttl span{
  color: var(--c-yellow);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--c-yellow);
  display: inline-block;
}

.esl-cta__ttl {
  margin-top: 16px;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  grid-area: ttl;
}

.esl-cta__desc {
  margin-top: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  grid-area: desc;
}

.esl-cta__img {
  margin-top: 16px;
  padding-inline: 32px;
  grid-area: img;
}
.esl-cta__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.esl-cta__btn {
  margin-top: 16px;
  grid-area: btn;
}


/* house / accordion */

.esl-point-house {
  margin-block: 48px;
  position: relative;
}

.esl-point-house__img {

}
.esl-point-house__img img { 
  width:100%;
}

.esl-point-house__marker {
  width: 48px;
  position: absolute;
  transform: translate(-50%,-50%);
  transition: opacity var(--duration-default);
}

.esl-point-house__marker img {
  width: 100%;
  aspect-ratio: 1;
}

.esl-point-house__marker:hover{
  opacity: 0.7;
}

.esl-point-house__marker--entrance {
  top: 35.3%;
  left: 40.2%;
}
.esl-point-house__marker--gate {
  top: 51%;
  left: 18%;
}

.esl-point-house__marker--approach {
  top: 61%;
  left: 60.7%;
}

.esl-point-house__marker--backdoor {
  top: 15%;
  left: 91%;
}

.esl-accordion {
  margin-top: 16px;
}

.esl-accordion__item {
  margin-top: 16px;
}

.esl-accordion__trigger {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: var(--fw-ja-bold);
  color: var(--c-point);
  border: 1px solid var(--c-point);
  background: #fff;
  width: 100%;
  transition: background var(--duration-default), color var(--duration-default);
}


.esl-accordion__trigger::after{
  content:'';
  width: 18px;
  aspect-ratio: 1;
  mask: url('../img/icon-plus.svg') no-repeat center / cover;
  background: currentColor;
}

.esl-accordion__item.is-open .esl-accordion__trigger, .esl-accordion__trigger:hover{
  color:#fff;
  background: var(--c-point);
}

.esl-accordion__item.is-open .esl-accordion__trigger::after{
  mask: url('../img/icon-minus.svg') no-repeat center / cover;
  aspect-ratio: 18 / 16;
  
}

.esl-accordion__panel {
  display: none;
}
.esl-accordion__item.is-open .esl-accordion__panel{
  display: block;
}



.esl-accordion__content {
  padding-block:32px;
}

.esl-accordion__item:last-of-type .esl-accordion__content{
  padding-bottom: 0;
}

.esl-accordion__text {

}

.esl-accordion__img {
  margin-top: 16px;
}
.esl-pickup {
  margin-top: 32px;
  position: relative;
  padding: 32px 16px;
  background: #E6F1F1;
}

.esl-pickup::before,
.esl-pickup::after{
  content:'';
  width:48px;
  aspect-ratio: 1;
  background: url('../img/icon-clip.svg') no-repeat center / cover;
  position: absolute;
  
}
.esl-pickup::before{
  top:-16px;
  right:-16px;
  transform: rotate(180deg);
}

.esl-pickup::after{
  bottom:-16px;
  left:-16px;
}

.esl-pickup__label {
  position: absolute;
  width: 89px;
  left: -16px;
  top: -10px;
  transform: rotate(-15deg);
}
.esl-pickup__label img{
  width: 100%
}


.esl-pickup__list {
  display: grid;
  gap:32px;

}

.esl-pickup__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
}

.esl-pickup__category {
  font-size: 16px;
  font-weight: var(--fw-ja-bold);
  line-height: 1;
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
  margin-bottom: 8px;
  grid-column: 1 / -1;
}

.esl-pickup-products{
  display: flex;
  gap:16px;
}

.esl-pickup__item--multi .esl-pickup-products{
  grid-column: 1 / -1;
}

.esl-pickup-product {
  display: inline-block;
  max-width:155px;
  position: relative;
  transition: opacity var(--duration-default);
}

.esl-pickup-product:hover{
  opacity: 0.7;
}

.esl-pickup-product__link{
  position: absolute;
  inset:0;
}

.esl-pickup-product__img {

}

.esl-pickup-product__name {
  margin-top: 8px;

}

.esl-pickup__note {
  display: inline-block;
  font-size: 12px;
}
.esl-pickup__item--multi .esl-pickup__note{
  grid-row:3;
  grid-column: 1 / -1;
}

/* other */
.esl-other {
  padding: 64px var(--inner-space);
  position: relative;
  background: #fff;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.20);
}

.esl-other__col {
  position: relative;
}

.esl-other__col + .esl-other__col {
  margin-top: 48px;
}
.esl-other__label {
  position: absolute;
  left: 0;
  top: -96px;
  width: 128px;
}

.esl-other__label img {
  width: 100%;
}

.esl-other__heading {
  display: flex;
  align-items: center;text-align: center;
  gap:16px;
  margin-bottom: 24px;
}

.esl-other__heading::before,.esl-other__heading::after{
  content:'';
  height: 2px;
  flex-grow:1;
  background: currentColor;
}

.esl-other__heading .esl-ttl{
  margin-bottom: 0;
}


.esl-other__list {
  display: grid;
  gap:16px;
}

.esl-other__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap:16px;
  transition: opacity var(--duration-default);
}

.esl-other__item:hover{
  opacity: 0.7;
}

.esl-other__list.esl-other__list--product .esl-other__item{
  grid-template-columns: 128px 1fr;
}

.esl-other__list.esl-other__list--column .esl-other__item{
  grid-template-columns: 160px 1fr;
}


.esl-other__link {
  position: absolute;
  inset:0;
}

.esl-other__img {

}

.esl-other__text {
}

.esl-other__ttl {
  margin-bottom: 8px;
  
}

.esl-other__desc {
  font-size: 12px;

}


.esl-footer {
  background: var(--c-bg-base);
  padding: 32px var(--inner-space);
}

.esl-footer__link {
  margin-inline:auto;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr auto;
  text-align: center;
  border-radius: 100px;
  background:  #fff;
  padding: 12px 24px;
  font-weight: var(--fw-ja-bold);
  width: min(320px,100%);
  transition: opacity var(--duration-default);
}

.esl-footer__link:hover{
  opacity: 0.7;
}

.esl-footer__link:after{
  content:'';
  width: 13px;
  aspect-ratio: 18 / 17;
  
  mask: url('../img/icon-chevron-bottom.svg') no-repeat center / cover;
  background: currentColor;
  transform: rotate(-90deg);
}




/*
================================ 
UTILITY
================================
*/
.esl-is-sp{

}

.esl-is-pc {
  display: none;
}

.esl-is-sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}


/*
================================ 
PC
================================
*/

@media (min-width: 768px){
  .esl{
    background-size: 100% auto;
  }

  .esl-pdf-btn{
    padding: 14px 22px 14px 42px;
  }

  /* mv */
  .esl-mv__content {
    margin-top: 0;
    padding-top: 12px;
    display: flex;
    gap:50px;
    align-items: flex-end;
    max-width: var(--section-w);
    margin-inline: auto;
    margin-bottom: 40px;
  }
  .esl-mv__ttl{
    margin-right:0;
    margin-left: 18px;
    margin-bottom:10px;
    align-items: flex-end;
    padding-inline:0;
  }
  .esl-mv__ttl img {
    max-width:588px;
    width:100%;
  }
  .esl-mv__deco{
    margin:0;
  }
  .esl-mv__deco img{
    max-width:400px;

  }

  .esl-mv__loop{
    height: 360px;
  }

  .esl-mv__loop ul{
  }
  .esl-mv__loop img{
    height: 100%;
  }


  /* index */
  .esl-index {
    margin-top: 64px;

  }
  
  .esl-index__inner {
    padding-inline:32px;
  }
  
  .esl-index__ttl {
    font-size: 32px;
  }
  .esl-index__title {
    grid-row: 1;
    grid-column: 3;
    font-size: 16px;
  }

  /* point */
  .esl-point {
  
    padding-inline: 64px;
    margin-top: 64px;
  }
  
  .esl-point__pin{
    --pin-px: 32px;
  }
  .esl-point__pin div{
    display: flex;
    gap: 32px;
  }

  .esl-point-separator{
    margin-block: 32px;
  }
  
  .esl-point-card {
    --card-px: 80px;
    border-radius: 16px;
    padding-block: 48px 96px; 
    padding-inline: var(--card-px);
  }
  
  .esl-point__label {
    width:160px;
    left:128px;
  }

  .esl-point__head{
    margin-bottom: 64px;
  }
  
  .esl-point__sub-ttl {
    font-size: 20px;
  }
  
  h2.esl-ttl {
    font-size: 32px;
  }
  h3.esl-ttl {
    font-size: 24px;
  }
  


  .esl-content {
    display: grid;
    column-gap: var(--column-gap-pc);
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
    "heading   image"
    "text    image"
    "buttons image";
  }

  .esl-content + .esl-content{
    margin-top: 64px;
  }
  
  .esl-content__heading {
    grid-area: heading;
  }
  
  .esl-content__text {
    grid-area: text;
  }
  
  .esl-content__desc {
  
  }
  
  .esl-content__note {
  
  }

  .esl-content__btns{
    grid-area: buttons;
    margin-top: 24px;
  }
  
  .esl-content__img {
    grid-area: image;
    margin-top: 0;
  }
  
  /* point-column && point-qna */

  .esl-point-card--sub{
    --card-sub-py: 64px;
    padding-block: var(--card-sub-py);
  }

  .esl-point-column__label,.esl-point-qna__label {
    width: 128px;
    left:auto;
    right: calc(100% + 16px);
  }
  .esl-point-column__label{
    top:-46px;
  }
  .esl-point-qna__label{
    top:-66px;
  }

  .esl-point-column__cols,.esl-point-qna__cols {
    grid-template-columns: repeat(2,1fr);
    gap:var(--column-gap-pc);
  }
  .esl-point-product {
    flex-direction: row;
  }

  .esl-point-product__item{
    flex: 0 0 224px;
    gap:8px;
  }



  /* cta */

  .esl-cta {
    margin-block: 96px;
  }
  .esl-cta__inner{
    margin-inline: auto;
    max-width: 1104px;
    width:100%;
    padding: 0 64px;
    display: flex;
    gap:70px;
    justify-content: space-between;
  }
  .esl-cta__text{
    display: block;
  }
  .esl-cta__sub-ttl{
    text-align: left;
    margin-top: 32px;
  }
  .esl-cta__ttl{
    font-size: 24px;
    text-align: left;
  }
  .esl-cta__desc{
  }
  .esl-cta__img{
    width: 394px;
    margin-top: -32px;
    padding:0;
    flex-shrink: 0;
  }
  .esl-cta__btn{
    margin-top: 32px;
    margin-bottom: 48px;
  }


  /* house / accordion */
  .esl-point-house {
    margin-block: 64px;
  }
  
  .esl-point-house__img {
    padding-inline: 48px;
  
  }
  .esl-point-house__marker {
    width: 64px;
  }
  .esl-point-house__marker--entrance {
    top: 34.7%;
    left: 45.3%;
  }
  .esl-point-house__marker--gate {
    top: 57%;
    left: 24.5%;
  }
  .esl-point-house__marker--approach {
    top: 69%;
    left: 53.4%;
  }
  .esl-point-house__marker--backdoor {
    top: 22.6%;
    left: 83.7%;
  }

  .esl-accordion__content {
    padding-block:32px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    
    column-gap: var(--column-gap-pc);
  }

  .esl-accordion__trigger{
    padding-inline: 32px;
  }

  .esl-pickup{
    margin-top: 32px;
    grid-column: 1 / span 2;
    padding: 32px 48px;
  }
  .esl-accordion__img {
    margin-top: 0;
  }
  .esl-pickup__label{
    width:117px;
    left: -25px;
    top: -21px;
  }

  .esl-pickup__list{
    display: flex;
    flex-wrap: wrap;
    gap:15px;
  }

  .esl-pickup__item{
    display: flex;
    flex-direction: column;
    width: 164px;
  }
  
  .esl-pickup__item--multi{
    width: 343px;
  }
  .esl-pickup-products{
    gap:15px;
  }
  .esl-pickup-product{
    max-width: 164px;
  }



/* other */
.esl-other {
  padding-block: 96px;
}

.esl-other__label {
  width: 160px;
  left: 160px;
  top: calc((96px + 32px) * -1);
}

.esl-other__label img {
  width: 100%;
}
.esl-other__col {
  max-width: 976px;
  margin-inline: auto;
}

.esl-other__col + .esl-other__col {
  margin-top: 64px;
}

.esl-other__list {
  gap:24px;
}
.esl-other__list.esl-other__list--column{
  grid-template-columns: repeat(3,1fr);
}

.esl-other__list.esl-other__list--product{
  grid-template-columns: repeat(4,1fr);
}

.esl-other__item {
  display: flex;
  flex-direction: column;
  gap:8px;
  
}
  /* utility */
  .esl-is-sp{
    display: none;
  }
  .esl-is-pc {
    display: block;
  }

  .esl-mv__loop.esl-is-pc{
    display: flex;
  }
}
