@charset "UTF-8";

/***********************************
0. reset css
***********************************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
}

html {
    overflow-x: hidden;
}

@media (max-width: 610px) {
    html {
        font-size: 95%;
    }
}

@media (max-width: 400px) {
    html {
        font-size: 80%;
        overflow-x: hidden;
    }
}

body {
    line-height: 1.8rem;
    letter-spacing: 0;
    color: #eee;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

h3 {
    font-style: normal;
    font-weight: 200;
    font-size: 2.56rem;
    letter-spacing: 0.1rem;
    line-height: 1;
    padding-bottom: 0.5rem;
}

h3 span {
    border-bottom: 1px solid;
}

p {
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

input {
    outline: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

a {
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    outline: none;
    color: #eee;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    opacity: 0.8 !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

img {
    max-width: 100%;
}

ins {
    text-decoration: none;
    color: #000;
    background-color: #ff0;
}

mark {
    font-weight: bold;
    font-style: italic;
    color: #000;
    background-color: #f00;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    cursor: help;
    border-bottom: 1px dotted;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

hr {
    display: block;
    height: 1px;
    padding: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid #eee;
}

li {
    list-style: none;
}

button {
    outline: none;
    cursor: pointer;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=reset],
input[type=button],
input[type=search] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
    display: none;
}

input[type=submit]::focus,
input[type=reset]::focus,
input[type=button]::focus,
input[type=search]::focus {
    outline-offset: -2px;
}

/*
デバイスの要素表示切り替え
*/

.pc-only {
    display: none;
}

@media (min-width: 400px) {
    .sp-only {
        display: none;
    }

    .pc-only {
        display: block;
    }
}

/***********************************
* font
***********************************/
html {
    font-size: 72.5%;
    /* -> 10px */
    font-family: "FP-こぶりなゴシック StdN W3", FP-KoburinaGoStdN-W3, 游ゴシック体, YuGothic, 游ゴシック, "Noto Sans JP", "Yu Gothic", メイリオ, sans-serif;
}

/*SP*/
@media (min-width: 400px) {
    html {
        font-size: 80%;
    }
}

.font_num {
    font-family: "Amiri", serif;
    font-style: normal;
    font-weight: 200;
}

.font_en {
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: italic;
}

.font_din {
    font-family: din-2014, sans-serif;
    font-style: normal;
    font-weight: 200;
}

.font_ja {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.clear {
    clear: both;
}

/***********************************
 bg
***********************************/
body {
    background-color: #182122;
}

.bg_fix {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
}

/*PC*/
@media (max-width: 600px) {
    .bg_fix {
        display: none;
    }
}

/***********************************
main
***********************************/

.main {
    max-width: 750px;
    margin: 0 auto;
    overflow-x: hidden;
}

/*PC*/
@media (min-width: 400px) {
    .main {
        max-width: 100%;
    }
}

/***********************************
menu(5-1-15.css)
***********************************/

/***********************************
header
***********************************/

header .logo {
    text-align: center;
    padding: 1rem 0;
    width: 7rem;
    margin: 0 auto;
}

video {
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 1;
}

/***********************************
box-brandConcept
***********************************/

#box-brandConcept {
    margin-top: 60rem;
    padding: 10%;
    background-color: #182122;
    background-image: url(../img-assets/20230207-bluum0441.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
}

.box-brandConcept-img {
    display: none;
}

#box-brandConcept dt {
    font-size: 0.6em;
    color: #666;
}

#box-brandConcept .box-brandConcept-name {
    padding-right: 3rem;
    padding-bottom: 4rem;
}

#box-brandConcept .box-brandConcept-name img {
    width: 15rem;
}

#box-brandConcept div p {
    border-bottom: 1px solid #555;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    line-height: 2.5;
}

#box-brandConcept h1 {
    font-size: 2rem;
}

#box-brandConcept h2 {
    font-size: 0.6rem;
}

/*PC*/
@media (min-width: 400px) {
    #box-brandConcept {
        display: block;
        margin-top: 58rem;
    }

    .box-brandConcept-img {
        display: block;
        float: right;
        width: 60%;
        margin-right: -10rem;
    }

    #box-brandConcept>div {
        /*height: 80vh;*/
        height: 100%;
        width: 50vh;
    }

    #box-brandConcept .box-brandConcept-name img {
        width: 15rem;
    }
}

/***********************************
box-merchandise
***********************************/

#box-merchandise div a {
    display: block;
    padding: 5rem;
    font-size: 1.6rem;
}

#box-merchandise .merchandise-en-name {
    font-size: 0.5rem;
}

#box-merchandise div span {
    display: block;
    filter: drop-shadow(0px 0px 3px #000);
}

#box-merchandise .skincare {
    background-image: url(../img-assets/arrow-r.svg), url(../img-assets/20230207-bluum0788.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto, 100% auto;
    background-position: 13rem center, center;
}

#box-merchandise .supplment {
    background-image: url(../img-assets/arrow-r.svg), url(../img-assets/20230207-bluum0834.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto, 100% auto;
    background-position: 13rem center, center;
}

/*PC*/
@media (min-width: 400px) {
    #box-merchandise {
        display: flex;
        background-color: #182122;
    }

    #box-merchandise>div {
        width: 50%;
    }

    #box-merchandise .skincare,
    #box-merchandise .supplment {
        margin: 10%;
    }

    #box-merchandise .skincare {
        margin-right: 2%;
    }

    #box-merchandise .supplment {
        margin-left: 2%;
    }

    #box-merchandise .skincare,
    #box-merchandise .supplment {
        background-position: 12rem center, center;
    }

    #box-merchandise .skincare a,
    #box-merchandise .supplment a {
        text-shadow: 0px 0px 10px #000;
    }
}

/***********************************
会社概要
***********************************/
#company {
    padding: 3rem;
}

#company .ttl {
    padding-bottom: 2rem;
    font-size: 1.2rem;
}

#company dt {
    padding-top: 1rem;
    color: #666;
}

#company dd {
    padding-left: 1rem;
}

.formrun-box {
    margin-top: 16px;
}

/*FORMRUN*/
#company dl dd.formrun-box div iframe {
    background-color: transparent !important;
}

.formrun-box .sf-form-cover,
.formrun-box .sf-form-title-group {
    display: none;
}

.formrun-box .layout-vertical .sf-form-content {
    padding-top: 16px;
}

.formrun-box .sf-form-elements {
    margin-top: 16px;
}

/*PC*/
@media (min-width: 400px) {
    #company {
        width: 50%;
        line-height: 2;
    }

    #company .ttl {
        font-size: 2rem;
    }
}

/***********************************
privacypolicy
***********************************/
#privacypolicy {
    padding: 3rem;
}

#privacypolicy .ttl {
    padding-bottom: 2rem;
    font-size: 1.2rem;
}

#privacypolicy dt {
    padding-top: 1rem;
    font-weight: bold;
}

#privacypolicy dd {
    padding-left: 1rem;
}

/*PC*/
@media (min-width: 400px) {
    #privacypolicy {
        width: 50%;
        line-height: 2;
    }

    #privacypolicy .ttl {
        font-size: 2rem;
    }
}

/***********************************
merchandise
***********************************/
.merchandise-ttl-box-skincare,
.merchandise-ttl-box-supplment {
    text-align: center;
}

.merchandise-txt {
    /*wrapperの中身を上下中央揃え*/
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 400px;
    height: 50px;
    text-align: center;
}

.merchandise-ttl-box-skincare,
.merchandise-ttl-box-supplment {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.merchandise-ttl-box-skincare::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img-assets/20230207-bluum0788.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-animation: zoom 2s 1;
    animation: zoom 2s 1;
    animation-fill-mode: forwards;
}

.merchandise-ttl-box-supplment::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img-assets/20230207-bluum0834.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-animation: zoom 2s 1;
    animation: zoom 2s 1;
    animation-fill-mode: forwards;
}

@keyframes zoom {
    0% {
        filter: blur(1000px);
        transform: scale(1.02);
    }

    100% {
        filter: blur(0);
        transform: scale(1);
    }
}

.merchandise-en {
    font-size: 3rem;
    text-shadow: 0px 0px 10px #000;
}

.merchandise-main {
    margin: 3rem;
    border-bottom: 1px solid #2E75AF;
}

.merchandise-box,
.merchandise-box-bottom {
    display: flex;
    position: relative;
}

.merchandise-box-bottom {
    margin: 3rem;
}

.merchandise-box>div,
.merchandise-box-bottom>div {
    width: 50%;
}

.merchandise-name {
    position: absolute;
    top: 50%;
    left: 50%;
    padding-left: 1rem;
}

.merchandise-name-bottom {
    position: absolute;
    top: 25%;
    left: 50%;
}

.merchandise-name-ja {
    font-size: 1.5rem;
    font-weight: normal;
}

.merchandise-name-en {
    font-size: 0.5rem;
    color: #555;
}

.merchandise-img {
    text-align: center;
}

.merchandise-img-mist {
    width: 30%;
}

.merchandise-img-gel {
    width: 60%;
}

.merchandise-img-tablet {
    width: 90%;
    padding: 5rem 0;
}

.merchandise-name-en-bottom {
    margin-bottom: 1rem;
    font-size: 0.5rem;
    color: #555;
}

.merchandise-copy {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: bold;
    margin: 1rem 0;
}

.merchandise-exp dl {
    padding-top: 2rem;
}

.merchandise-exp dt {
    margin-bottom: 1rem;
}

.merchandise-exp-ttl {
    border: 1px solid #fff;
    padding: 0.5rem;
    padding-left: 0;
}

.merchandise-exp-ttl span {
    border-right: 1px solid #fff;
    margin-right: 1rem;
    padding: 0 1rem;
}

.merchandise-exp-small {
    font-size: 0.6rem;
}

.amazon-btn-box {
    width: 100%;
    text-align: center;
    padding: 5rem 0;
}

.amazon-btn-box-bottom {
    padding-top: 3rem;
}

.amazon-btn,
.amazon-btn-bottom {
    background-color: #F0C655;
    color: #000;
    border-radius: 5rem;
    padding: 1rem 5rem;
    font-size: 1.2rem;
}

.amazon-btn-bottom {
    padding: 1rem;
}

.amazon-btn img,
.amazon-btn-bottom img {
    width: 4rem;
    vertical-align: middle;
    padding-top: 0.2rem;
}

.merchandise-detail {
    margin: 3rem;
}

.merchandise-copy2 {
    font-size: 1.5rem;
    line-height: 2;
    text-align: center;
    padding: 10rem 0;
}

.programme-box {
    display: flex;
    padding-bottom: 3rem;
}

.programme-ttl {
    color: #2E75AF;
    font-size: 0.1rem;
}

.programme-num {
    color: #2E75AF;
    font-size: 5rem;
    padding-top: 1rem;
}

.programme-main-box {
    padding-left: 1rem;
}

.programme-ttl-txt {
    font-size: 1.5rem;
}

.programme-ttl-txt div {
    border-bottom: 1px solid #2E75AF;
}

.programme-ttl-txt span {
    font-size: 0.8rem;
    padding-left: 0.5rem;
}

.programme-ttl-txt p {
    font-size: 1rem;
}

.programme-exp {
    padding: 2rem 0;
    text-align: center;
}

.programme-exp-ttl {
    color: #2E75AF;
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
}

.programme-exp-plus {
    color: #2E75AF;
    font-size: 2rem;
    padding: 1rem 0;
}

.programme-exp-txt {
    text-align: left;
}

.skin-3-programme-ttl {
    font-size: 1.8rem;
    padding-bottom: 1rem;
    line-height: 1.6;
}

.skin-3-programme {
    display: flex;
    margin-top: 1rem;
}

.skin-3-programme dt {
    s display: flex;
    align-items: center;
}

.skin-3-programme dd {
    text-align: left;
    padding: 0.5rem;
}

.merchandise-box-hr-bottom {
    border-color: #2E75AF;
    width: 80%;
    margin: 0 auto;
    transform: rotate(-10deg);

}

.merchandise-box-bottom-line {
    border-color: #2E75AF;
    width: 80%;
    margin: 0 auto;
}

/*PC*/
@media (min-width: 600px) {

    .merchandise-copy2 {
        font-size: 2.5rem;
    }

    .programme-exp {
        font-size: 2rem;
        line-height: 1.6;
    }

    .programme-exp-pc {
        zoom: 130%;
    }

    .merchandise-ttl-box-skincare,
    .merchandise-ttl-box-supplment {
        /*padding: 20% 0;*/
        margin-bottom: 10rem;
    }

    .merchandise-img-gel,
    .merchandise-img-tablet {
        width: 50%;
        padding: 5rem 0;
    }

    .merchandise-ttl-box-supplment {
        background-size: contain;
        background-position: top
    }

    .amazon-btn img {
        width: 5rem;
    }

    .merchandise-img-gel {
        width: 30%;
    }

    .merchandise-img-mist {
        width: 15%;
        padding-top: 10rem;
    }

    .merchandise-box2 {
        margin-left: 50%;
    }

    .programme-main-box {
        width: 100%;
    }

    .programme-exp {
        padding-top: 5rem;
    }

    .programme-exp-pc {
        padding-bottom: 2rem;
    }

    .programme-exp-txt {
        text-align: center;
    }

    .skin-3-programme-box {
        display: flex;
        justify-content: space-between;
        margin-top: 2rem;
        padding: 0 3rem;
    }

    .merchandise-box-hr-bottom {
        padding: 5rem 0;
        margin-top: 5rem;
    }

    .programme-exp {
        padding: 10rem 0;
    }
}

/***********************************
商品説明アコーディオン（view more）
***********************************/

.txt-hide,
.txt-hide2 {
    display: none;
}

.accordion-area-vm button.more,
.accordion-area-vm button.more2 {
    width: 100%;
    margin: 20px auto;
    display: block;
    color: #fff;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 5rem;
    background-color: transparent;
    transition: .5s;
    -erbkit-transition: .5s;
}

.accordion-area-vm button.more::after,
.accordion-area-vm button.more2::after {
    content: "view more";
    transition: .2s;
    -erbkit-transition: .2s;
}

.accordion-area-vm button.more.on-click::after,
.accordion-area-vm button.more2.on-click::after {
    content: "close";
}

/*PC*/
@media (min-width: 600px) {

    .accordion-area-vm button.more,
    .accordion-area-vm button.more2 {
        width: 50%;
    }

    .merchandise-name-ja {
        font-size: 3rem;
        line-height: 1;
    }

    .merchandise-name {
        padding-left: 0;
    }
}

/***********************************
FAQ
***********************************/
#faq {
    padding: 3rem;
}

#faq .ttl {
    padding-bottom: 2rem;
    font-size: 1.2rem;
}

#faq .faq-ttl {
    font-size: 1.5rem;
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 0 2rem 0;
}

#faq .faq-info {
    padding: 10rem 0;
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
}

/*PC*/
@media (min-width: 600px) {
    #faq .ttl {
        text-align: center;
    }
}

/***********************************
footer
***********************************/
footer {
    background-color: #2E75AF;
    padding: 3rem;
    padding-bottom: 10rem;
}

footer .footer-box {
    display: flex;
}

footer .footer-box>div:first-child {
    width: 100%;
}

footer .footer-logo {
    width: 10rem;
}

footer .footer-menu {
    padding-top: 2rem;
}

footer .footer-menu li {
    padding-top: 1rem;
}

footer .footer-sns {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

footer .footer-sns li img {
    width: 20px;
    margin-left: 1.5rem;
}

footer .copyright {
    font-size: 0.7rem;
    padding-top: 10rem;
}

/************************************
PC用
************************************/
@media screen and (min-width:740px) {}