/*
Theme Name: LIPO LABO Theme
Theme URI: http://lipolabo.jp
Author: Your Name
Author URI: http://lipolabo.jp
Description: LIPOLABOテーマ
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: mytheme
*/


html {
    margin: 0 !important;
}


:root {
    /* ベースのフォントサイズ */
    --header-back-opacity: 0;
    --header-height: 70px;
    --base-font-color: rgb(93, 93, 93);
}

/* ベース設定 */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  
  background: linear-gradient(#e9eef3, #f4f7fa);
  color: #333;
}

.pc-only {
    display: block;
}
.sp-only {
    display: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    height: var(--header-height);
    z-index: 10;
    display: flex;
    background: rgba(128, 133, 140, var(--header-back-opacity));
    justify-content: space-between;
}

.header-logo-outer {
    height: calc(100% - 1em);
    text-align: center;
    padding: 0.5em 0;
    /* background: rgba(183, 189, 200, var(--header-back-opacity)); */
}

.header-logo {
    height: 100%;
}


/* メニュー */
.hamburger {
    position: fixed;
    top: 12px;
    right: 15px;
    width: 30px;
    cursor: pointer;
    z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #FFF;
  margin: 5px 0;
  transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu {
    position: fixed;
    top: 0; /* 初期状態でメニューを画面の外に */
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(221, 223, 231);
    /* padding: 20px; */
    box-sizing: border-box;
    z-index: 11;
    transition: right 0.3s ease; /* スライドアニメーション */
    color: var(--base-font-color);
}

/* メニューが表示される時 */
.menu.open {
    right: 0; /* メニューが表示される位置 */
}

.menu a {
    text-decoration: none;
    display: block;
    color: var(--base-font-color);
}

.menu-main-outer {
    padding: 0 20px;
}

.menu-logo-outer {
    text-align: center;
    margin-bottom:2em;
    background: rgb(128, 133, 140);
    padding: 0.5em 0;
    height: calc(50px - 1em);
}
.menu-logo-outer.bottom{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 100%;
    margin-bottom:0;
}
.menu-logo {
    height: 100%;
}

.menu-section {
    margin: 2em 0.5em;
}

.menu-section-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 1em;
    cursor: pointer;
}

.menu-item {
    margin: 0.8em 0;
    font-size: 14px;
    text-decoration: none;
    display: block;
    color: var(--base-font-color);
}

.menu-section .sns-area {
    display: flex;
    gap: 1.7em;
}

/* メニュー */


.main {
    background: rgb(173, 183, 190);
}

.fv video {
    width: 100%;
    pointer-events: none;
}

.flex {
    display: flex;
}


/* プライバシーポリシー */
.privacy-policy-page {
    background: linear-gradient(#B7BDC8, #E2E2E2);
    padding: 4em 0;
}
.privacy-policy-title {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    color: #fff;
    text-align: center;
    margin: 2em;
}
.privacy-policy-title div {
    font-size: 18px;
}
.privacy-policy-title h1 {
    margin-top: 0;
    letter-spacing: 3px;
    font-size: 40px;
}

.privacy-policy-content {
    background: #fff;
    padding: 3em 2em;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    margin-bottom: 100px;
    color: var(--base-font-color);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-policy-content .black {
    font-weight:800;
}



/* ヒーローセクション */
.hero {
  padding: 60px 3em;
  min-height: calc(100vh - 250px);
  /* background-color: #f6f8fb; */
  position: relative;
  background-image: url('./img/top_img.jpg');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 145%;
  text-align: left;
}

/* ロゴ部分 */
.logo {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 40px;
}

/* メインキャッチ */
.tagline {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 34px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
}
.tagline .small-text {
    font-size: 28px;
}
.tagline .notes {
    font-size: 12px;
}

/* Coming Soon */
.coming-soon-area {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 500px;
}

.coming-soon {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 42px;
    font-weight: 500;
    color: #555;
}

/* 備考（脚注） */
.note {
    position: absolute;
    bottom: 1em;
    left: 3em;
    font-size: 12px;
}

/* 発売情報帯 */
.release-info {
  background-color: #D9D9D9;
  padding: 15px;
  font-size: 14px;
  color: #222;
  text-align: center;
}

.brand-info {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    background-color: #F3F4F6;
    padding: 15px;
    font-size: 14px;
    color: #222;
    text-align: center;
    position: relative;
}

.brand-info img {
    max-width: 100%;
}

.brand-head {
    display: flex;
}
.brand-head .brand-left {
    width: 70%;
}
.brand-head .brand-right {
    width: 30%;
    position: relative;
}

.overlay-img-group {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.overlay-img-group img {
    width: 70%;
    position: absolute;
    
}
.overlay-img-1 {
    bottom: -25%;
    right: 15%;
}
.overlay-img-2 {
    bottom: -35%;
    left: -20%;
}

.brand-title {
    width: 80%;
    margin: 3em auto;
}
.brand-main {
    display: flex;
}
.brand-image-area {
    display: flex;
    flex-flow: column;
    width: 40%;
}
.brand-image-area .brand-left {

}
.brand-image-area .brand-right {
    padding: 2em;
}
.brand-text-area {
    width: 60%;
    margin: 2em 5%;
    position: relative;
}
.brand-text-area .text-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}


.brand-info h2 {
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.7em;
}

.brand-info h1 {
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 1.7em;
}

.point-section {
    background-color: #cdd2db;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 10px 10px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    color: var(--base-font-color);
    padding: 1em 2em;
    padding-top: 3em;
}

.spacing {
    background-color: #cdd2db;
    height: 5em;
}

.product-section {
    background-color: #cdd2db;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='5,0 6,4 10,5 6,6 5,10 4,6 0,5 4,4' fill='%23E1E3EA'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    /* background-repeat: space; */
    background-position: 0 0, 20px 20px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    color: var(--base-font-color);
    padding: 3em 2em;
}

.faq-section, .shoplist-section {
    background-color: #cdd2db;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    color: var(--base-font-color);
    padding: 3em 2em;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.point-outer {
    margin: 4em auto;
    width: 100%;
    max-width: 880px;
}
.point-outer .notes {
    font-size: 8px;
}


.point-head {
    display: flex;
    gap: 2em;
}
.point-label span {
    font-size: 20px;
    font-weight:700;
    border-bottom: solid 2px var(--base-font-color);
}
.point-description {
    letter-spacing: 1px;
}

.point-content-outer {
    background: #E1E3EA;
    border-radius: 20px;
    filter: drop-shadow(4px 4px 5px #92969c);
    margin: 1.5em auto;
    padding: 1em 3em;
}

.point-content-outer .half {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.point-content {
    position: relative;
}

.point-content p {
    text-align: center;
    font-size:12px;
}

.point-content .point-content-label {
    font-size:16px;
}

.point-content img {
    max-width: 100%;
}

.point-content .point-note {
    font-size: 8px;
}

.shampoo-label, .treatment-label {
    text-align: center;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 0.5em;
    width: 70%;
}
.shampoo-label {
    background: #BABABA;
}
.treatment-label {
    background: #CDC0B5;
}

.right-arrow {
    position: relative;
    width: 2em;
}

.right-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% + 9px);
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    border: solid 18px transparent;
    border-left: solid 15px var(--base-font-color);
}

.point2-img {
    width: 50%;
}
.point2-note {
    position: absolute;
    right: -3%;
    bottom: 0;
    font-size: 6px;
    width: 42%;
    text-align:start;
}

.point3-main-text {
    background: linear-gradient(to right, #B4B0AC, #E6E5E5, #B4B1B5);
    text-align: center;
    margin: 1.5em 4em;
    padding: 0.8em;
    font-size: 20px;
    border-radius: 15px;
}

.point3-note {
    font-size: 6px;
    width: 60%;
    margin: 0 auto;
}

.point3-left {
    width: 35%;
}
.point3-left .flex {
    flex-flow: column;
    gap: 1em;
}
.point3-left img {
    width: 70%;
}
.point3-right {
    width: 65%;
}

.section-label {
    font-size: 20px;
    font-weight:700;
    letter-spacing: 1px;
}

.products-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2em;
    margin: 2em auto;
}


.product-panel {
    background: #E1E3EA;
    border-radius: 20px;
    filter: drop-shadow(4px 4px 5px #92969c);
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

/* .product-panel{
    background: #f0f0f5;
    padding: 2em;
    margin: 2em auto;
    clip-path: polygon(
        30% 0%,  
        calc(100% - 0px) 0%, 
        100% 30%, 
        100% 100%, 
        calc(100% - 30%) 100%,  
        0% calc(100% - 30%), 
        0% 0%
    );
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    filter: drop-shadow(4px 4px 5px #92969c);
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
} */


.product-panel img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    object-fit: cover;
    max-width: 100%;
}


.faq-area {
    margin-top: 2em;
    margin-bottom: 2em;
}
.faq-outer {
    margin: 2em auto;
}

.faq-category {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.faq-content {
    border-radius: 10px;
    filter: drop-shadow(4px 4px 5px #92969c);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.faq-head {
    background: #B7BDC8;
    padding: 0.5em 2em;
    text-align: center;
    display:flex;
    align-items: center;
    justify-content:center;
    gap: 0.2em;
}
.faq-head span {
    margin: 0 auto;
    position: relative;
}

.faq-content {
    cursor: pointer;
}

.faq-head:after {
    content: "";
    border: solid 8px transparent;
    border-top: solid 12px var(--base-font-color);
    margin-top: 10px;
}

/* .faq-head span:after {
    content: "";
    position: absolute;
    top: 1em;
    right: -2em;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    border: solid 8px transparent;
    border-top: solid 12px var(--base-font-color);
} */
.faq-body {
    background: #fff;
    text-align: center;
    height: auto;
    max-height: 0;
    transition: max-height 0.3s;
}
.faq-body div {
    padding: 1em;
}


.shop-list-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2em;
    margin: 2em auto;
}

.shop-list-area a {
    text-decoration: none;
}

.shop-list-btn {
    border-radius: 30px;
    background: #B7BDC8;
    filter: drop-shadow(4px 4px 5px #92969c);
    padding: 0.5em;
    color: #fff;
    text-align: center;
}



/* PURODUCT */

.product-detail-section {
    background-color: #cdd2db;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    color: var(--base-font-color);
    padding: 3em 2em;
    padding-top: 7em;
    border-bottom: solid 1px #fff;
}

.product-movie-section, .product-tecnology-section {
    background-color: #cdd2db;
    color: var(--base-font-color);
    padding: 3em 2em;
    padding-top: 7em;
}

.product-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
}

.product-head h3, .product-head p {
    margin: 0;
}

.product-accordion-outer {
    margin: 2em 0;
}
.product-accordion-head {
    padding: 0.5em 0;
    border-bottom: solid 1px #fff;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.product-accordion-head:after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    border-bottom: solid 1px var(--base-font-color);
    border-left: solid 1px var(--base-font-color);
}
.product-accordion-body {
    margin-top: 0.5em;
    overflow:hidden;
    height: auto;
    max-height: 0;
    transition: max-height 0.3s;
}

.product-movie, .technology-area {
    max-width: 600px;
    margin:0 auto;
}

.product-movie {
    position: relative;
}
.product-movie .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    width: 80px;
    cursor: pointer;
}
.product-movie video {
    border-radius: 20px;
}
.product-movie img {
    max-width: 100%;
}

.product-tecnology-section .section-label {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    border-bottom: solid 1px #fff;
    padding-bottom: 0.5em;
}

.product-discription-area .notes {
    font-size: 10px;
}
.product-discription-area .note {
    position: relative;
    bottom: auto;
    left: auto;
    font-size: 10px;
}

.technology-area {
    margin: 3em auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
}

.technology-content-panel-outer {
    filter: drop-shadow(4px 4px 5px #92969c);
}
.technology-content-panel{
    background: #f0f0f5;
    padding: 2em;
    clip-path: polygon(
        20% 0%,  
        100% 0%,
        100% 80%, 
        80% 100%,  
        0% 100%,
        0% 20%
    );
    filter: drop-shadow(4px 4px 5px #92969c);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.technology-content-head {
    font-weight: bold;
    text-align: center;
}
.technology-content-head h2 {
    font-size: 26px;
    margin: 0;
}
.technology-content-head span {
    
}
.technology-content {
    margin-top: 2em;
}

.product-howto-section {
    background: #E5E5E5;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    padding: 2em 0;
}
.product-howto-section .section-label {
    border-bottom: solid 1px #969696;
    padding-bottom: 0.5em;
}

.product-howto-area {
    display: flex;
    flex-wrap:nowrap;
    overflow-x: scroll;
    gap: 5%;
    margin-top: 2em;
}
.product-howto-area::-webkit-scrollbar {
    height: 0.5em;
    padding-bottom: 0.5em;
}
.product-howto-area::-webkit-scrollbar-track {
    background-color: #D9D9D9;
    border-radius: 5px;
}
.product-howto-area::-webkit-scrollbar-thumb {
    background-color: #B3B3B3;
    border-radius: 5px;
}

.product-howto-area .product-howto {
    width: 30%;
    flex-shrink: 0;
}
.product-howto .howto-no {
    font-weight: bold;
    font-size: 28px;
    border-bottom: solid 1px #969696;
    margin-bottom: 0.5em;
}
.product-howto .howto-img {
    width: 100%;
    clip-path: polygon(
        20% 0%,  
        100% 0%,
        100% 70%, 
        80% 100%,  
        0% 100%,
        0% 30%
    );
}
.product-howto .howto-img img {
    max-width: 100%;
}
.howto-description {
    margin: 0.5em;
    text-align: center;
    font-size: 12px;
}
/* PURODUCT */



/* フッター */
footer {
  background-color: #BABABA;
  color: #fff;
  font-size: 12px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* フッター内リンク */
.footer-link a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* 左側リンク群 */
.footer-link {
    display: flex;
    flex-flow: column;
    gap: 20px;
    letter-spacing: 2px;
}

/* SNSアイコンなど */
.footer-sns {
  display: flex;
  gap: 3em;
  align-items: center;
}

/* フッターの著作権表記を中央に */
.footer-brand {
    display: flex;
    align-items: end;
}

@media screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block
    }
    header {
        height: calc(var(--header-height) - 10px);
    }

    .hamburger {
        top: 8px;
    }

    .main {
        overflow-x: hidden;
    }

    .hero {
        padding: 70px 0 2em;
        /* min-height: calc(100vh - 300px); */
        background-position: bottom right 8%;
        background-size: 300%;
        text-align: left;
       /* background-color: radial-gradient(closest-side, rgba(255,255,255,0) 60%, #f6f6f6 100%); */
    }

    .tagline {
        font-size: 24px;
        line-height: 1.6;
        margin-bottom: 10px;
        text-align: center;
    }
    .tagline .small-text {
        font-size: 18px;
    }
    .tagline .notes {
        font-size: 8px;
    }

    .coming-soon-area {
        height: auto;
    }

    .coming-soon {
        font-size: 32px;
        text-align: center;
        width: 100%;
        background: rgba(255, 255, 255, 0.8);
        padding-bottom: 5px;
    }

    /* メニュー */
    .menu {
        width: 100vw;
    }
    /* メニュー */

    /* 備考（脚注） */
    .note {
        position: absolute;
        top: 0.5em;
        bottom: auto;
        right: 0;
        font-size: 8px;
        text-align: end;
    }

    /* 発売情報帯 */
    .release-info {
        padding: 10px 0;
        font-size: 10px;
    }

    footer {
        position: relative;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer-content {
        flex-flow: column;
        gap: 20px;
    }
    /* 左側リンク群 */
    .footer-link {
        order: 2;
        justify-content: center;
        flex-flow: row;
        gap: 10px;
        font-size: 8px;
    }

    /* SNSアイコンなど */
    .footer-sns {
        order: 1;
        justify-content: center;
    }

    /* フッターの著作権表記を中央に */
    .footer-brand {
        order: 3;
        justify-content: center;
        align-items: end;
    }


    /* プライバシーポリシー */
    .privacy-policy-title div {
        font-size: 12px;
    }
    .privacy-policy-title h1 {
        font-size: 22px;
    }
    .privacy-policy-content {
        font-size: 10px;
    }

    .privacy-policy-content ul {
        padding-left: 16px;
    }



    /* トップページ */
    .brand-info {
        font-size: 10px;
        padding: 15px 0;
        padding-top: 4em;
    }

    .overlay-img-group img {
        width: 95%;
    }
    

    .brand-head {
        width: 100%;
    }
    .overlay-img-1 {
        bottom: -35%;
        right: -15%;
    }
    .overlay-img-2 {
        bottom: -45%;
        left: -30%;
    }

    .brand-title {
        margin: 2em auto;
        margin-bottom: 0;
    }

    .brand-main {
        flex-flow: column;
        padding: 0 15px;
    }
    .brand-image-area {
        flex-flow: row;
        width: 100%;
        align-items: center;
    }
    .brand-image-area .brand-left {
        width: 55%;
    }

    .brand-image-area .brand-right {
        width: calc(45% - 4em);
    }

    .brand-text-area {
        width: 85%;
        margin: 2em auto;
    }


    .point-head {
        flex-flow: column;
        gap: 0.5em;
    }

    .point-outer {
        margin: 1em auto
    }

    .point-description {
        font-size: 12px;
    }

    .point-content-outer {
        padding: 1em 2em;
    }

    .point-content.half {
        grid-template-columns: 1fr;
    }
    .point-content.flex {
        flex-flow: column;
    }

    .point-content .point-content-label {
        font-size: 14px;
    }
    .point-content p {
        text-align: center;
        font-size: 8px;
    }
    .point-content .point-note {
        font-size: 6px;
    }

    .point2-img {
        width: 90%;
        margin: 1em auto;
    }
    .point2-note {
        position: relative;
        font-size: 6px;
        width: 100%;
    }
    .point3-left {
        width: 100%;
        margin: 2em auto;
    }
    .point3-left .flex {
        flex-flow: row;
    }
    .point3-left img {
        width: 100%;
    }
    .point3-right {
        width: 100%;
    }
    .shampoo-label, .treatment-label {
        width: 100%;
        font-size: 10px;
    }

    .right-arrow::after {
        left: calc(50% + 5px);
        border: solid 10px transparent;
        border-left: solid 8px var(--base-font-color);
    }

    .point3-main-text {
        margin: 1em 0.5em;
        font-size: 14px;
        border-radius: 10px;
    }
    .point3-note {
        font-size: 5px;
        width: 95%;
    }

    .products-area {
        grid-template-columns: 1fr 1fr;
        gap: 1em;
        margin: 0.5em auto;
    }

    .product-panel {
        margin: 0;
    }

    .shop-list-area {
        grid-template-columns: 1fr 1fr;
        gap: 1.5em;
        font-size: 12px;
        margin: 2em auto;
    }

    .faq-category {
        font-size: 14px;
    }
    .faq-head {
        padding: 0.5em;
    }


    /* PRODUCT */

    .product-detail-section .product-area {
        grid-template-columns: 1fr;
        gap: 2em;
    }
    .product-detail-section .product-panel {
        margin: 1em;
    }
    .product-howto-section {
        padding: 2em 1em;
    }
    .product-howto-area .product-howto {
        width: 90%;
        padding: 0 5%;
    }
}