/** Shopify CDN: Minification failed

Line 138:0 Unexpected "}"

**/
.image-point-section {
    position: relative;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
}
.image-point-section__image {

}

.image-point-section__point {
    position: absolute;
    top: var(--vertical-position);
    left: var(--horizontal-position);
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 100%;
    animation: shadow forwards 1.6s infinite ease;
    transform: translate(-50%,-50%);
    z-index: 1;
    cursor: pointer;
}
.image-point-section__point:hover {
    animation: shadowHover forwards .3s ease ;
}
.image-point-section__point:before,
.image-point-section__point:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 2px;
    height: 13px;
    background-color: #333333;
    transition: all .3s ease;
}
.image-point-section__point:before {
    transform: translate(-50%,-50%);
}
.image-point-section__point:after {
    transform: translate(-50%,-50%) rotate(90deg);
}
.image-point-section__point.on:before {
    transform: translate(-50%,-50%) rotate(-45deg);
}
.image-point-section__point.on:after {
    transform: translate(-50%,-50%) rotate(45deg);
}
.image-point-section__point.on {
    animation: none;
    box-shadow: 0 0 0 9px rgba(255,255,255,.2);
}
.image-point-section__text {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    color: var(--font-color);
}
.image-point-section__text__wrap {
    padding-top: 100px;
    padding-bottom: 100px;
}
.image-point-section__text--align__left {
    justify-content: flex-start;
    text-align: left;
}
.image-point-section__text--align__center {
    justify-content: center;
    text-align: center;
}
.image-point-section__text--align__right {
    justify-content: flex-end;
    text-align: right;
}
.image-point-section__text--vertical_align__top {
    align-items: flex-start;
    align-content: flex-start;
}
.image-point-section__text--vertical_align__middle {
    align-items: center;
    align-content: center;
}
.image-point-section__text--vertical_align__bottom {
    align-items: flex-end;
    align-content: flex-end;
}
.image-point-section__title {
    margin: 0 auto;
    font-size: 52px;
    font-weight: 500;
    color: var(--font-color);
}
.image-point-section__subtitle-wrapper {
  display: block;
  width: fit-content;
}
.image-point-section__subtitle {
    position: relative;
    margin: 16px 0 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--font-color);
    width: fit-content;
    padding-right: 32px;
    padding-bottom: 4px;
    border-bottom: 1px solid white;

    @media (max-width: 767px) {
      border-bottom: 1px solid black;
    }
}
.image-point-section__subtitle:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: translateY(-50%) rotate(-45deg);
  
    @media (max-width: 767px) {
      border-right: 2px solid #333;
      border-bottom: 2px solid #333;
    }
  }
}
.image-point-section__button a {
    display: inline-block;
    width: 200px;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    border-width: 2px;
    border-style: solid;
    border-color: var(--font-color);
    color: var(--font-color);
}

.image-point-section__button a svg {
    display: inline-block;
    opacity: 0;
    margin-right: -22px;
    transition: opacity .3s ease, margin .3s ease;
}
.image-point-section__button a:hover svg {
    opacity: 1;
    margin-left: 10px;
    margin-right: 0;
}

.image-point-section__point__content {
    width: 0;
    height: 0;
    position: absolute;
    top: var(--vertical-position);
    left: var(--horizontal-position);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease,visibility .3s ease;
}
.image-point-section__point__content.on {
    opacity: 1;
    visibility: visible;
}

.image-point-section__point__content__inner {
    position: absolute;
    padding: 20px;
    width: 345px;
    background-color: #fff;
    border: 2px solid #333;
    z-index: 1;
}
.image-point-section__point__content--left .image-point-section__point__content__inner {
    right: 0;
    margin-right: 50px;
}
.image-point-section__point__content--right .image-point-section__point__content__inner {
    left: 0;
    margin-left: 50px;
}
.image-point-section__point__content--top .image-point-section__point__content__inner {
    top: 0;
}
.image-point-section__point__content--bottom .image-point-section__point__content__inner {
    bottom: 0;
}
.image-point-section__point__content--middle .image-point-section__point__content__inner {
    top: 50%;
    transform: translateY(-50%);
}
.image-point-section__point__content__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.image-point-section__point__content__close:before,
.image-point-section__point__content__close:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 2px;
    height: 13px;
    background-color: #333333;
    transition: all .3s ease;
}
.image-point-section__point__content__close:before {
    transform: translate(-50%,-50%) rotate(-45deg);
}
.image-point-section__point__content__close:after {
    transform: translate(-50%,-50%) rotate(45deg);
}
.image-point-section__point__content__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}
.image-point-section__point__content__price {
    font-size: 14px;
    font-weight: 500;
}
.image-point-section__point__content__link {
    margin: 20px 0 0;
}
.image-point-section__point__content__link a {
    position: relative;
    border-bottom: 1px solid #333;
}
/*
.image-point-section__point__content__link a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width .3s ease;
}
.image-point-section__point__content__link a:hover:after {
    width: 100%;
}
*/
@keyframes shadow {
    0% {
        box-shadow: 0 0 0 0px rgba(255,255,255,0);
    }
    50% {
        box-shadow: 0 0 0 9px rgba(255,255,255,.2);
    }
    100% {
        box-shadow: 0 0 0 9px rgba(255,255,255,0);
    }
}

@keyframes shadowHover {
    0% {
        box-shadow: 0 0 0 0px rgba(255,255,255,0);
    }
    100% {
        box-shadow: 0 0 0 9px rgba(255,255,255,1);
    }
}

@media (min-width: 768px) {
    .image-point-section__image .mobile_img {
        display: none  !important;
    }
}

@media (max-width: 767px) {
  
    .image-point-section {
        margin-top: calc(var(--margin-top)/2);
        margin-bottom: calc(var(--margin-bottom)/2);
    }
    .image-point-section__text {
        display: block;
        position: static;
    }
    .image-point-section__text__wrap {
        padding: 16px;
    }
    .image-point-section__title {
        line-height: 32px;
        font-size: 24px;
    }
    .image-point-section__image {
        position: relative;
    }
    .image-point-section__image .pc_img {
        display: none !important;
    }
    .image-point-section__point {
      width: 25px;
      height: 25px;
    }
    .image-point-section__point:before,
    .image-point-section__point:after {
      height: 9px;
    }
    .image-point-section__point:hover {
        animation: shadow forwards 1.6s infinite ease;
    }
    .image-point-section__image:not(.no-mobile) .image-point-section__point {
        top: var(--sp-vertical-position);
        left: var(--sp-horizontal-position);
    }
    .image-point-section__point__contents {
        position: relative;
    }
    .image-point-section__point__content {
        position: absolute;
        top:-20px;
        left:0;
        width: 100%;
        height: 40vw;
        z-index: 1;
    }
  .image-point-section__title {
      color: var(--font-color-sp);
  }
  .image-point-section__subtitle {
      color: var(--font-color-sp);
  }
  .image-point-section__button a {
      border-color: var(--font-color-sp);
      color: var(--font-color-sp);
  }

    .image-point-section__point__content--left .image-point-section__point__content__inner ,
    .image-point-section__point__content--right .image-point-section__point__content__inner ,
    .image-point-section__point__content--top .image-point-section__point__content__inner ,
    .image-point-section__point__content--bottom .image-point-section__point__content__inner ,
    .image-point-section__point__content--middle .image-point-section__point__content__inner ,
    .image-point-section__point__content__inner {
        position: static;
        top: 0;
        left: 0;    
        right: 0;
        margin: 0 20px;
        width: auto;
        transform: translateY(-100%);
    }
}


