﻿:root {
    --hover-color: #4171B2;
	--bg-grade-type1: linear-gradient(0deg,#B2D0ED 0%, #D3C3ED 100%);
	--line-color: #707070;
	--allow-img-bk: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8.545' height='13.241' viewBox='0 0 8.545 13.241'><path d='M6.621,0l6.621,8.545S9.931,5.721,6.621,5.721,0,8.545,0,8.545Z' transform='translate(8.545) rotate(90)' fill='%23696969'/></svg>") center / 100% no-repeat;
	--allow-img-wh: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8.545' height='13.241' viewBox='0 0 8.545 13.241'><path d='M6.621,0l6.621,8.545S9.931,5.721,6.621,5.721,0,8.545,0,8.545Z' transform='translate(8.545) rotate(90)' fill='%23fff'/></svg>") center / 100% no-repeat;
	--allow-img-blue: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8.545' height='13.241' viewBox='0 0 8.545 13.241'><path d='M6.621,0l6.621,8.545S9.931,5.721,6.621,5.721,0,8.545,0,8.545Z' transform='translate(8.545) rotate(90)' fill='%234171B2'/></svg>") center / 100% no-repeat;
}
/* ------------------------------
    共通
------------------------------ */
html.fixed {
    /* position: fixed; */
    overflow: hidden;
}
.contents-wrap {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 769px) {
    .contents-wrap-2 {
        max-width: 967px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 768px) {
    .contents-wrap-2,
    .contents-wrap {
        margin-left: 30px;
        margin-right: 30px;
    }
}
/* ------------------------------
    フォント / 見出し
------------------------------ */
.cormorant {
    font-family: "Cormorant Infant", serif;
}
.h1-title {
    font-size: clamp(30px,10vw,58px);
    margin-bottom: 4rem;
    line-height: 1;
}
.h2-title {
    font-size: clamp(30px,17vw,80px);
    margin-bottom: 4rem;
}
.h2-title .font-s {
    font-size: 0.3em;
    display: block;
}
.h3-title {
    display: flex;
    align-items: baseline;
    gap: 0.5em;
    font-size: 37px;
    margin-bottom: 2rem;
}
.h3-title .text {
    display: flex;
    align-items: baseline;
    gap: 0.5em;
}
.h3-title .font-s {
    font-size: 0.4em;
}
[class*="h"][class*="-title"].is-line {
    position: relative;
    display: inline-flex;
    padding-bottom: 0.5rem;
}
[class*="h"][class*="-title"].is-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    width: 150%;
    height: 1px;
    background-color: white;
}
[class*="h"][class*="-title"].sc-anime .inner {
  overflow: hidden;
  display: inline-block;
}
[class*="h"][class*="-title"].sc-anime .inner .text {
    transform: translateY(100%);
    transition: 2.5s;
    display: inline-block;
}
[class*="h"][class*="-title"].sc-anime.is-already .inner .text {
    transform: translateY(0%);
}
[class*="h"][class*="-title"].is-line.sc-anime::after {
    width: 0;
}
[class*="h"][class*="-title"].is-line.sc-anime.is-already::after {
    width: 150%;
    animation: sc-anime-line 5s;
}
@keyframes sc-anime-line {
  0% {
    width: 0;
  }
  100% {
    width: 150%;
  }
}
@media (max-width: 768px) {
    [class*="h"][class*="-title"].is-line::after,
    [class*="h"][class*="-title"].is-line.sc-anime.is-already::after {
        width: 110%;
    }
    @keyframes sc-anime-line {
    0% {
        width: 0;
    }
    100% {
        width: 110%;
    }
    }
}
.contents-sub-ttl {
    text-align: center;
    font-size: clamp(20px , 4vw , 35px);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 0.5em;
    color: black;
}
.contents-sub-ttl::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1em;
    height: 1px;
    background-color: black;
}
/* ------------------------------
    Swiper
------------------------------ */
.swiper-button-wrap {
    display: flex;
    gap: 3rem;
}
.swiper-button-wrap .swiper-button-prev,
.swiper-button-wrap .swiper-button-next {
    position:relative;
    width: 50px;
}
.swiper-button-wrap .swiper-button-prev::before,
.swiper-button-wrap .swiper-button-next::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    transition: .4s;
}
.swiper-button-wrap .swiper-button-prev::after,
.swiper-button-wrap .swiper-button-next::after {
    content: "";
    display: inline-flex;
    align-items: center;
    width: 0.3em;
    aspect-ratio: 1;
    position:absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    transition: .4s;
    background: var(--allow-img-wh);
}
.swiper-button-wrap .swiper-button-prev::after {
    left: 0;
    transform: scaleX(-1);
}
.swiper-button-wrap .swiper-button-next::after {
    right: 0;
}
.swiper-button-wrap .swiper-button-prev:hover::after {
    animation: allowslidePrev .4s;
}
.swiper-button-wrap .swiper-button-next:hover::after {
    animation: allowslideNext .4s;
}
@keyframes allowslidePrev {
  from {
    opacity: 0;
    left: 100%;
  }
  to {
    opacity: 1;
    left: 0;
  }
}
@keyframes allowslideNext {
  from {
    opacity: 0;
    right: 100%;
  }
  to {
    opacity: 1;
    right: 0;
  }
}

/* ------------------------------
    ボタンリンク
------------------------------ */
.link-btn .btn {
    display: inline-block;
    padding: 1em;
    border: 1px solid;
    width: 100%;
    max-width: 350px;
    position: relative;
    z-index: 0;
    text-align: center;
}
.link-btn .btn .text::before {
    content: "";
    display: inline-block;
    width: 2.5em;
    height: 1px;
    background-color: var(--common-color);
    position:absolute;
    top: 0;
    bottom: 0;
    left: calc(100% - 3.5em);
    margin: auto;
    z-index: 2;
    transition: .4s;
}
.link-btn .btn .text::after {
    content: "";
    display: inline-flex;
    align-items: center;
    width: 0.6em;
    aspect-ratio: 1;
    background: var(--allow-img-bk);
    position:absolute;
    top: 0;
    bottom: 0;
    left: calc(100% - 1.5em);
    margin: auto;
    z-index: 2;
    transition: .4s;
}
/* 白い文字＋白い線 */
.link-btn.is-white .btn,
.link-btn.is-white .btn .text {
    color: white;
}
.link-btn.is-white .btn .text::before {
    background-color: white;
}
.link-btn.is-white .btn .text::after {
    background: var(--allow-img-wh);
}
/* 青い文字＋青い線 */
.link-btn.is-blue .btn,
.link-btn.is-blue .btn .text {
    color: var(--hover-color);
}
.link-btn.is-blue .btn { background-color: white; }
.link-btn.is-blue .btn .text::before {
    background-color: var(--hover-color);
}
.link-btn.is-blue .btn .text::after {
    background: var(--allow-img-blue);
}
.link-btn.is-blue .btn:hover,
.link-btn.is-blue .btn:hover .text {
    color: white;
}
/* リッチ系 */
.link-btn.rich-allow .btn::before {
    content: "";
    display: inline-block;
    width: 5em;
    aspect-ratio: 1;
    position: absolute;
    top: -0.7em;
    right: -1.4em;
    z-index: 1;
    background-color: white;
    border-radius: 100%;
}
.link-btn.rich-allow .btn .text::before {
    left: calc(100% - 2.3em);
}
.link-btn.rich-allow .btn .text::after {
    left: calc(100% - 0.3em);
}
/* もっと見る */
.more-link .more {
    display: inline-block;
    padding-right: 3rem;
    position: relative;
    font-family: "Cormorant Infant", serif;
}
.more-link .more::before {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1px;
    background-color: var(--common-color);
    position:absolute;
    top: 0;
    bottom: 0;
    left: calc(100% - 1.5em);
    margin: auto;
    z-index: 2;
    transition: .4s;
}
.more-link .more::after {
    content: "";
    display: inline-flex;
    align-items: center;
    width: 0.6em;
    aspect-ratio: 1;
    background: var(--allow-img-bk);
    position:absolute;
    top: 0;
    bottom: 0;
    left: calc(100% - 0.3em);
    margin: auto;
    z-index: 2;
    transition: .4s;
}
/* ふきだし */
.link-btn.rich-fukidashi .fukidashi {
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.link-btn.rich-fukidashi .fukidashi::before,
.link-btn.rich-fukidashi .fukidashi::after {
    content: "";
    display: inline-block;
    background-color: white;
    width: calc((100% - 20px) / 2);
    height: 1px;
    position: absolute;
    bottom: 0;
}
.link-btn.rich-fukidashi .fukidashi::before {
    left: 0;
}
.link-btn.rich-fukidashi .fukidashi::after {
    right: 0;
}
.link-btn.rich-fukidashi .fukidashi .inner::before,
.link-btn.rich-fukidashi .fukidashi .inner::after {
    content: "";
    display: inline-block;
    background-color: white;
    width: 15px;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    margin: auto;
}
.link-btn.rich-fukidashi .fukidashi .inner::before {
    transform: rotate(45deg);
    left: -10px;
}
.link-btn.rich-fukidashi .fukidashi .inner::after {
    transform: rotate(-45deg);
    right: -10px;
}
@media (min-width:769px) {
    .link-btn .btn:hover .text::before {
        background-color: white;
    }
    .link-btn .btn:hover .text::after {
        animation: allowslide .4s;
        background: var(--allow-img-wh);
    }
    .link-btn .btn:hover {
        background: var(--bg-grade-type1);
        color: white;
    }
    .link-btn.rich-allow .btn:hover .text::after {
        animation: allowsliderich .4s;
    }
    .link-btn.rich-allow .btn:hover {
        background: white;
        border-color: white;
        color: var(--hover-color);
    }
    .link-btn.rich-allow .btn:hover::before {
        background: var(--bg-grade-type1);
    }
    .more-link:hover {
        color: var(--hover-color);
    }
    .more-link:hover .more::before {
        background-color: var(--hover-color);
    }
    .more-link:hover .more::after {
        background: var(--allow-img-blue);
    }
    .more-link:hover .more::after{
        animation: allowsliderich .4s;
    }
    .link-btns.is-flex {
        display: flex;
        gap: 1em;
    }
}
@media (max-width:768px) {
    .link-btn .btn {
        background: var(--bg-grade-type1);
        color: white;
    }
    .link-btn .btn .text::before {
        background-color: white;
    }
    .link-btn .btn .text::after {
        background: var(--allow-img-wh);
    }
    .link-btn.rich-allow .btn {
        background: transparent;
    }
    .link-btn.rich-allow .btn::before {
        background: var(--bg-grade-type1);
    }
    .link-btn.is-blue .btn {
        background: white;
        padding: 1em 2.6em 1em 1em;
    }
    .link-btn .btn .text::before {
        width: 1.5em;
        left: calc(100% - 2.5em);
    }
    .link-btn .btn .text::after {
        width: 0.6em;
        left: calc(100% - 1.5em);
    }
    .link-btn.rich-allow .btn .text::before {
        left: calc(100% - 1.9em);
    }
    .link-btn.rich-allow .btn .text::after {
        left: calc(100% - 0.6em);
    }
}

@keyframes allowslide {
  from {
    opacity: 0;
    left: calc(100% - 3.0em);
  }
  to {
    opacity: 1;
    left: calc(100% - 1.5em);
  }
}
@keyframes allowsliderich {
  from {
    opacity: 0;
    left: calc(100% - 3.0em);
  }
  to {
    opacity: 1;
    left: calc(100% - 0.3em);
  }
}
/* ------------------------------
    ナビゲーション
------------------------------ */
.logo-svg,
.logo img {
    fill :var(--common-color);
    transition: 0.4s;
}
@media (min-width: 769px) {
    .logo a:hover .logo-svg,
    .logo a:hover img {
        filter: blur(0.1em);
    }
}
.nav .nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.nav .nav-list .nav-item {font-size: clamp(10px,5vw,25px);}
.nav .nav-list .nav-item a {
    display: inline-block;
    color: transparent;
    background: linear-gradient(to right, #B2D0ED 0%, #D3C3ED 50%, var(--common-color) 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.3s;
}
/* メニューアイコン */
.nav .nav-btn {
    appearance: none;
    background: transparent;
    border: 0;
    outline: 0;
    width: 40px;
    aspect-ratio: 1 / 0.8;
    position: relative;
    z-index: 11;
}
.nav .nav-btn::before,
.nav .nav-btn::after,
.nav .nav-btn span {
    content: "";
    display: inline-block;
    height: 2px;
    background-color: var(--common-color);
    position: absolute;
    left: 0;
    transition: .4s;
}
.nav .nav-btn::before {
    top: 0;
    width: 100%;
}
.nav .nav-btn::after {
    bottom: 0;
    width: 60%;
}
.nav .nav-btn span {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 80%;
}
.nav .nav-btn.active::before,
.nav .nav-btn.active::after {
    background-color: var(--common-color);
    width: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1px;
}
.nav .nav-btn.active::before {
    transform: rotate(-45deg);
}
.nav .nav-btn.active::after {
    transform: rotate(45deg);
}
.nav .nav-btn.active span {
    opacity: 0;
}
@media (min-width: 769px) {
    .nav .nav-list .nav-item a:hover {
        background-position: 0 100%;
    }
    .nav .nav-list {
        gap: 5em;
    }
}
@media (max-width: 768px) {
    .nav .nav-list {
        gap: 2em;
    }
}
/* ------------------------------
    ヘッダー
------------------------------ */
.pane-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.5);
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    z-index: 10;
    transition: transform .4s;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5em 3em;
}
.pane-header.hide {
  transform: translateY(-100%);
  transition: transform 0.3s;
}
@media (max-width: 768px) {
    .header-inner {
        padding: .5em 1em;
    }
    .pane-header .logo-svg {
        max-width: 40vw;
    }
    /* ナビゲーション */
    .pane-header .nav-contents {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 50%;
        margin: auto;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transform: translateX(100%);
        transition: .4s;
        padding: calc(2em + 40px) 0 2em;
    }
    .pane-header .nav-contents .contents-inner {
        overflow: auto;
        max-height: 100%;
    }
    .pane-header .nav-contents.active {
        transform: translateX(0);
    }
    .pane-header .nav .nav-contents .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-hide .pane-header {
        background: transparent;
        box-shadow: none;
        position: fixed;
    }
    .header-hide .pane-header .logo {
        display: none;
    }
    .header-hide .pane-header .nav {
        margin-left: auto;
    }
    .header-hide .pane-header .nav .nav-btn:not(.active)::before,
    .header-hide .pane-header .nav .nav-btn:not(.active)::after,
    .header-hide .pane-header .nav .nav-btn:not(.active) span {
        background-color: white;
    }
}
/* ------------------------------
    フッター
------------------------------ */
.pane-footer { background-color: white; }
.footer-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4em;
    padding: 4em 3em;
}
/* ------------------------------
    PC/SP切り替え
------------------------------ */
@media (min-width: 769px) {
    .sp-only { display: none!important; }
}
@media (max-width: 768px) {
    .pc-only { display: none!important; }
}
/* ------------------------------
    アニメーション
------------------------------ */
.sc-anime,
.sc-inner-anime > * {
    opacity: 0;
    transform: translateY(20%);
    transition: 1s;
}
.sc-anime.is-already,
.sc-inner-anime > *.is-already {
    opacity: 1;
    transform: translateY(0);
    animation: sc-anime-blur 0.5s;
}
@keyframes sc-anime-blur {
  0% {
    opacity: 0;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: blur(4px);
  }
}
/* ------------------------------
    背景アニメーション
------------------------------ */
.body-rippers-bg {
    position: relative;
}
.body-rippers-bg + *,
.body-rippers-bg > *:not(.rippers-bg) {
    position: relative;
    z-index: 1;
}
.rippers-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    border: none;
    outline: none;
    background-size: cover;
    background-position: center;
    background-image: url(/cms/eclarity/img/category/cx_glow/bg.jpg);
    z-index: 0;
}
.rippers-bg canvas{
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    border: none;
    outline: none;
}
/* ------------------------------
    price
------------------------------ */
.price {
    color: black;
    font-size: 34px;
}
.price .font-s {
    font-size: 0.5em;
}
@media (max-width: 768px) {
    .price {
        font-size: 24px;
    }
}
/* ------------------------------
    BUY BTN
------------------------------ */
.cart-btn .btn {
    background-color: #8EA1BC;
    padding: 12px 10px;
    color: white;
    display: block;
    text-align: center;
    letter-spacing: 0.2em;
    font-size: 17px;
    max-width: none;
}
.cart-btn .btn {
    background-color: #8EA1BC;
    padding: 12px 10px;
    color: white;
    display: block;
    text-align: center;
    letter-spacing: 0.2em;
    font-size: 17px;
	display: none;
}
.cart-btn .btn .text::before {
    background-color: white;
}
.cart-btn .btn .text::after {
    background: var(--allow-img-wh);
}
@media (max-width: 768px) {
    .cart-btn.link-btn .btn {
        background: #8EA1BC;
        border: 0;
    }
}
/* ------------------------------
    ページャー
------------------------------ */
.navipage_.bottom_ {
    margin: 60px 0 0;
}
.navipage_ center {
    display: flex;
    justify-content: center;
    gap: 5px;
}
.navipage_ center > a,
.navipage_ .navipage_now_ {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255 255 255 / 60%);
}
.navipage_ center > a:hover,
.navipage_ .navipage_now_ {
	background-color : white;
	font-weight: bold;
}
.navipage_ .navipage_now_ {
	font-size: 1.1em;
}
.navipage_ .navipage_reverse_ a,
.navipage_ .navipage_forward_ a {
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50px;
    aspect-ratio: 1;
}
.navipage_ .navipage_reverse_ a::before,
.navipage_ .navipage_prev_ a::after,
.navipage_ .navipage_forward_ a::before,
.navipage_ .navipage_last_ a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #5070e3;
  border-right: solid 2px #5070e3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: .2s;
}
.navipage_ .navipage_first_ a::before,
.navipage_ .navipage_prev_ a::before,
.navipage_ .navipage_prev_ a::after {
  transform: rotate(-135deg);
}
.navipage_ .navipage_prev_ a::after {
    left: 13px;
}
.navipage_ .navipage_next_ a::before,
.navipage_ .navipage_last_ a::before,
.navipage_ .navipage_last_ a::after {
    transform: rotate(45deg);
}
.navipage_ .navipage_last_ a::after {
    left: 13px;
}

.navipage_ .navipage_first_ a:hover::before,
.navipage_ .navipage_prev_ a:hover::before,
.navipage_ .navipage_prev_ a:hover::after {
	left: 13px;
}
.navipage_ .navipage_prev_ a:hover::after {
    left: 26px;
}
.navipage_ .navipage_next_ a:hover::before,
.navipage_ .navipage_last_ a:hover::before,
.navipage_ .navipage_last_ a:hover::after {
	left: 13px;
}
.navipage_ .navipage_last_ a:hover::after {
    left: 26px;
}
/* ------------------------------
    visumo
------------------------------ */
.visumo-area {
  margin: 0 0 150px;
}
.visumo-area .hacobune-univideo .hacobune-app-container {
  padding: 0;
  background: none;
}
.visumo-area .hacobune-unit-video-outline {
  display: none;
}
@media (max-width: 768px) {
  .visumo-area {
    margin: -80px 0 100px;
  }
  .visumo-area .hacobune-app-main .hacobune-unit-video {
    margin: 0;
  }
}