/*common_css*/
@font-face {
    font-family: 'icomoon';
    src:  url('/fonts/icomoon.eot?4b5hyb');
    src:  url('/fonts/icomoon.eot?4b5hyb#iefix') format('embedded-opentype'),
    url('/fonts/icomoon.ttf?4b5hyb') format('truetype'),
    url('/fonts/icomoon.woff?4b5hyb') format('woff'),
    url('/fonts/icomoon.svg?4b5hyb#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Box sizingの定義 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* デフォルトのpaddingを削除 */
ul,
li,
ul[class],
ol[class] {
    padding: 0;
}

/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* bodyのデフォルトを定義 */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
    list-style: none;
}

/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* img要素の扱いを簡単にする */
img {
    max-width: 100%;
    display: block;
}

/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
    margin-top: 1em;
}

/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
    font: inherit;
}

/***幅指定***/
[data-w-width] {
    max-width: 100%;
}

/*コンテンツ幅での設置*/
[data-w-width="1"] {
    width: 1170px;
    width:1170px;
    margin: 0 auto;
}
@media (max-width: 1169px) {
    [data-w-width="1"] {
        width: calc(100% - 5%);
    } 
}
@media (max-width: 768px) {
    [data-w-width="1"] {
        width: calc(100% - 12%);
    } 
}
/*リソース設定無い場合とリソース設定がある場合。*/
/*margin設定はデザインによって変更OK*/

/*ウィンドウ幅での設置*/
[data-w-width="0"] {
    width: 100%;
}

/***基本設定***/
html {
    font-size: 62.5%;
}
/*パーツ内ではremで余白やフォントサイズの指定を行うため、この数値*/

body {
    background: #ffffff;
    background:#f3f3f3;
    color: #313131;
    color:#535353;
    line-height: 1.6;
    font-size: 1.6rem;
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) {
    body {
        font-size:4vw;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/***色指定***/
.-w-txt.-w-background {
    color: #fff;
    color:#f3f3f3;
}
.-w-txt.-w-background-r {
    color: #000;
    color:#535353;
}
.-w-txt.-w-main {
    color: #001754;
    color:#601132;
}
.-w-txt.-w-main-r {
    color: #fff;
    color:#ffffff;
}
.-w-txt.-w-accent {
    color: #4f0506;
    color:#e49eb4;
}
.-w-txt.-w-accent-r {
    color: #fff;
    color:#ffffff;
}
/*背景色＋テキスト色*/
.-w-bg.-w-background {
    background: #fff;
    background:#f3f3f3;
    color: #000;
    color:#535353;
}
.-w-bg.-w-main {
    background: #001754;
    background:#601132;
    color: #fff;
    color:#ffffff;
}
.-w-bg.-w-accent {
    background: #4f0506;
    background:#e49eb4;
    color: #fff;
    color:#ffffff;
}
/*反転ver*/
.-w-bg.-w-background-r {
    background: #000;
    background:#535353;
    color: #fff;
    color:#f3f3f3;
}
.-w-bg.-w-main-r {
    background: #fff;
    background:#ffffff;
    color: #001754;
    color:#601132;
}
.-w-bg.-w-accent-r {
    background: #fff;
    background:#ffffff;
    color: #4f0506;
    color:#e49eb4;
}
/*hover時背景色指定*/
a.-w-bg.-w-background:hover {
    background: #000;
    background:#535353;
    color: #fff;
    color:#f3f3f3;
}
a.-w-bg.-w-main:hover {
    background: #fff;
    background:#ffffff;
    color: #001754;
    color:#f3f3f3;
}
a.-w-bg.-w-accent:hover {
    background: #fff;
    background:#ffffff;
    color: #4f0506;
    color:#e49eb4;
}
a.-w-bg.-w-background-r:hover {
    background: #fff;
    background:#f3f3f3;
    color: #000;
    color:#535353;
}
a.-w-bg.-w-main-r:hover {
    background: #001754;
    background:#601132;
    color: #fff;
    color:#ffffff;
}
a.-w-bg.-w-accent-r:hover {
    background: #4f0506;
    background:#e49eb4;
    color: #fff;
    color:#ffffff;
}

/***ボーダー色指定***/
.-w-bd.-w-background {
    border-color: #fff;
    border-color:#f3f3f3;
}
.-w-bd.-w-main {
    border-color: #001754;
    border-color:#601132;
}
.-w-bd.-w-accent {
    border-color: #4f0506;
    border-color:#e49eb4;
}
.-w-bd.-w-background-r {
    border-color: #000;
    border-color:#535353;
}
.-w-bd.-w-main-r {
    border-color: #fff;
    border-color:#ffffff;
}
.-w-bd.-w-accent-r {
    border-color: #fff;
    border-color:#ffffff;
}
/*hover時ボーダー色指定*/
a.-w-bd.-w-bg.-w-background-r:hover,
a.-w-bd.-w-background:hover {
    border-color: #000;
    border-color:#535353;
}
a.-w-bd.-w-bg.-w-main-r:hover,
a.-w-bd.-w-main:hover {
    border-color: #fff;
    border-color:#ffffff;
}
a.-w-bd.-w-bg.-w-accent-r:hover,
a.-w-bd.-w-accent:hover {
    border-color: #fff;
    border-color:#ffffff;
}
a.-w-bd.-w-bg.-w-background:hover,
a.-w-bd.-w-background-r:hover {
    border-color: #000;
    border-color:#f3f3f3;
}
a.-w-bd.-w-bg.-w-main:hover,
a.-w-bd.-w-main-r:hover {
    border-color: #001754;
    border-color:#601132;
}
a.-w-bd.-w-bg.-w-accent:hover,
a.-w-bd.-w-accent-r:hover {
    border-color: #4f0506;
    border-color:#e49eb4;
}


/*見出し設定*/
.-w-ttl_wrap {
    text-align: center;
}
.-w-section_inner h3.-w-general{
    text-align: center;
}
span.-w-general,
.-w-ttl-en.-w-font_en,
.-w-general .-w-font_en,
.-w-ttl-en.-w-font_en {
    font-size: 4.8rem;
    margin-bottom:1.0rem;
    display: block;
    line-height: 1.0;
    color:#313131;
    color:rgba(83,83,83,1);
}
h2.-w-general{
    font-size: 2.2rem;
    margin-bottom: 3.0rem;
    letter-spacing: -2px;
    color:#313131;
    color:rgba(83,83,83,1);
}
h3.-w-general{
    font-size: 2.0rem;
    margin-bottom: 3.0rem;
    letter-spacing:-2px;
    color:#EA7C5D;
    color:rgba(96,17,50,1);
}
h4.-w-general {
    font-size: 2.0rem;
    color:#313131;
    color:rgba(83,83,83,1);
    margin-bottom: 1.5rem;
}
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-wrapper .-w-ttl-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1.0rem;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2{
    letter-spacing: -2px;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h3.-w-general{
    letter-spacing: -2px;
}
@media (max-width: 1020px) and (min-width: 768px) {
    h2.-w-general {
        font-size: 2.1rem;
    }
    h3.-w-general{
        font-size: 2.05rem;
        letter-spacing: 0;
    }
    h4.-w-general {
        font-size: 1.9rem;
    }
    [data-lib="2578"] table tr th {
        width:20%!important;
    }
}
@media (max-width: 768px) {
    .-w-ttl_wrap {
        text-align: center;
    }
    .-w-section_inner h3.-w-general{
        text-align: left;
    }
    span.-w-general,
    .-w-ttl-en.-w-font_en,
    .-w-general .-w-font_en,
    .-w-ttl-en.-w-font_en {
        font-size: 9.0vw;
        text-align: center;
        margin-bottom:1.0rem;
    }
    h2.-w-general {
        margin-bottom: 1.5rem;
        font-size: 5.5vw;
        letter-spacing: 0;
        text-align: left;
        line-height:1.5;
    }
    h3.-w-general{
        font-size: 5.0vw;
        letter-spacing: 0;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    h4.-w-general {
        font-size: 3.1vw;
        letter-spacing: -2px;
        text-align: left;
        margin-bottom: 1.5rem;
    }
}
/*フェード*/
@media (min-width: 1024px) {
    .-w-anime-fade {
      opacity: 0;
      transition: all .5s ease-in-out;
      transform: translateY(50px);
    }
    .-w-anime-fade.active {
      opacity: 1;
      transform: translateY(0px);
    }
    
    .-w-anime-fade:nth-child(2){
        transition-delay:0.2s;
    }
    .-w-anime-fade:nth-child(3){
        transition-delay:0.4s;
    }
    .-w-anime-fade:nth-child(4){
        transition-delay:0.6s;
    }
    .-w-anime-fade:nth-child(5){
        transition-delay:0.8s;
    }
    .-w-anime-fade:nth-child(6){
        transition-delay:1s;
    }
    .-w-anime-fade:nth-child(n+7){
        transition-delay:1.2s;
    }
}


/*ボタン*/
.-w-more_btn{
    margin-top:3.0rem;
    text-align: center;
}    
.-w-more_btn a{
    display: inline-block;
    position: relative;
    text-decoration: none;
    border: 2px solid;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 8px 5px;
    line-height: 1;
    text-align: center;
    min-width: 170px;
    background-color:#ff6600;
    color:#ffffff;
    border-color:#ff6600;
    background-color:rgba(228,158,180,1);
    color:rgba(255,255,255,1);
    border-color:rgba(228,158,180,1);
}
.-w-more_btn a.current,
.-w-more_btn a:hover{
    opacity: 1;
    background-color:#ffffff;
    color:#ff6600;
    color:rgba(228,158,180,1);
    background-color:rgba(255,255,255,1);
}
@media (max-width: 768px) {
    .-w-more_btn a{
        padding: 15px 10px;
        min-width: 100%;
        font-size: 4vw;
    }
}

.-w-more_btn a span,
.-w-contact_btn a > span > span {
    position: relative;
    z-index: 2;
    color:inherit;
}
.-w-more_btn a:hover span,
.-w-contact_btn a:hover > span > span {
    color:inherit;
}

/*ajaxフォーム*/
.owlet-form{
    position: relative;
    z-index: 1;
    padding: 5.0rem 0;
    border-bottom: 1px solid #dddddd;
    background-color: #fff;
    color:rgba(83,83,83,1);
    background-color:rgba(243,243,243,1);
}
.owlet-form .alert {
    font-weight: bold;
    color: #ff0000;
    
        color: hsla(0,100%,50%,1);
    
}
.owlet-form .-w-require{
    border-radius: 2px;
    margin-left: 10px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 5px 8px;
    color:#fff;
    color:rgba(255,255,255,1);
}
.owlet-form .require{
    border-radius: 2px;
    margin-left: 10px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 5px 8px;
    background : #CE0000;
    
        color: hsla(0,100%,40%,1);
    
    color: #fff;
    
        color: hsla(0,0%,100%,1);
    
}
.owlet-form table{
    width: 1170px;
    width:1170px;
    margin:0 auto;
    margin-bottom: 20px;
    border-collapse: collapse;
}
.owlet-form table tr {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.owlet-form table tr th {
    background: #cecece;
    background:rgba(228,158,180,1);
    color: #313131;
    color:rgba(255,255,255,1);
    width: 25%;
    margin-right:5%;
    padding: 15px 20px;
    font-weight: bold;
    vertical-align: middle;
    text-align:left;
    border-radius: 12px;
    min-width: 250px;
}
.owlet-form table tr td {
    border-top: 1px solid ;
    border-color: #dddddd;
    border-color:#e49eb4;
    background: #ffffff;
    color: #313131;
    width: 70%;
    padding: 15px 20px;
    vertical-align: middle;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    min-width: 785px;
}
.owlet-form .owlet-input-sample{
    font-size: 1.6rem;
    padding: 0 10px;
}
.owlet-form table input,
.owlet-form table select,
.owlet-form table textarea,
.owlet-form table label,
.owlet-form table .input_address{
    font-size:1.6rem;
}
.owlet-form input.owlet-input-tel1 + span,
.owlet-form input.owlet-input-tel2 + span{
    font-size:1.6rem;
}
.owlet-form input[type="text"]{
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}
.owlet-form input.owlet-input-name-sei[type="text"],
.owlet-form input.owlet-input-name-mei[type="text"]{
    width: 40%;
    padding: 10px;
    margin: 0 10px 0 0;
}
.owlet-form input[type="text"],select {
    min-height: 30px;
    border: 1px solid ;
    border-color: #dddddd;
    border-color:rgba(83,83,83,0.8);
}
.owlet-form input.owlet-input-tel1[type="text"],
.owlet-form input.owlet-input-tel2[type="text"],
.owlet-form input.owlet-input-tel3[type="text"],
.owlet-form input.zip1[type="text"],
.owlet-form input.zip2[type="text"]{
    line-height: 1.2;
    padding: 10px;
    border-radius: 3px;
    min-height: 30px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    width: 115px;
}
.owlet-form textarea {
    min-height: 150px;
    line-height: 1.2;
    padding: 10px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    width: 100%;
}
.owlet-form select {
    line-height: 1.2;
    border-radius: 3px;
    min-height: 30px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    width: 180px;
}
.owlet-form .owlet-input-name-sei,
.owlet-form .owlet-input-name-mei {
    width: 90px;
    margin: 0 5px;
}
.owlet-form input[name="input[email]"],
.owlet-form input[name="input[email_confirm]"] {
        
}
.owlet-form .zip1,.owlet-form .zip2 {
    width: 60px;
    margin-bottom: 10px;
}
.owlet-form .zip2addr {
    margin-bottom: 10px;
    padding: 10px 13px 6px;
    box-sizing: border-box;
    display: inline-block;
    background:rgba(228,158,180,1);
    color:rgba(255,255,255,1);
}
.owlet-form select.prefectures,
.owlet-form select.city {
    margin: 0 5px 10px 0;
    padding: 10px;
}
.owlet-form .address,
.owlet-form input[name="input[address_address]"],
.owlet-form input[name="input[address_address2]"],
.owlet-form input[name="input[address2_address]"],
.owlet-form input[name="input[address2_address2]"] {
    width: 100%;
    margin-left: 0;
}
.owlet-form .address,
.owlet-form input[name="input[address_address]"] {
    margin-bottom: 5px;
}
.owlet-form .owl-datepicker {
    width: 150px;
    margin-right: 5px;
}
.owlet-form select[name="input[date_hour]"],
.owlet-form select[name="input[date_minute]"] {
    margin-right: 5px;
}
.owlet-form .owlet-input-tel1,
.owlet-form .owlet-input-tel2,
.owlet-form .owlet-input-tel3 {
    width: 60px;
}
.owlet-form .owlet-input-tel2,
.owlet-form .owlet-input-tel3 {
    margin-left: 5px;
}
.owlet-form input[name="input[company_name]"] {
    width: 80%;
    line-height: 1.2;
    padding: 2px;
}
.owlet-form textarea[name="input[text]"] {
    width: 80%;
}
.owlet-form table tr td label {
    display: block;
}
.owlet-form input[name="input[select_etc]"],
.owlet-form input[name="input[radio_etc]"],
.owlet-form input[name="input[check_etc]"] {
    width: 80%;
    margin-top: 5px;
}
.owlet-form .-w-rules-agree {
    text-align: center;
    margin-bottom: 3.0rem;
}
.owlet-form .-w-rules-agree a{
  display: inline-block;
}
.owlet-form input[type="submit"], .owlet-form input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
.owlet-form input[type="button"], .owlet-form select {
    border-radius: 3px;
    min-height: 30px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
}
.owlet-form .form_button {
    text-align: center;
}

.owlet-form .form_button input[type="button"],
.owlet-form .owlet-form-confirm a{
    border-radius: 0px;
    cursor: pointer;
    padding: 8px 5px;
    cursor: pointer;
    width:170px;
    font-size: 1.5rem;
}

.owlet-form .form_button input[type="button"]{
    border:1px solid;
    border-color:#e49eb4;
    
    background-color:#e49eb4;
    color:#ffffff;
}
.owlet-form .form_button input[type="button"]:hover {
    background-color:#ffffff;
    color:#e49eb4;
    transition: all .4s;
}

.owlet-form .owlet-form-confirm a{
    border:1px solid #999;
    background-color: #999;
    color:#fff;
    display: inline-block;
    text-decoration: none;
    margin-left:20px;
}
.owlet-form .owlet-form-confirm a:hover{
    border:1px solid #999;
    background-color: #fff;
    color:#999;
    transition: all .4s;
}
@media (max-width: 1169px) {
    .owlet-form{
        padding:5.0rem 6%;    
    }
    .owlet-form table{
        width: 100%;
    }
    .owlet-form table tr th,
    .owlet-form table tr td{
        min-width: auto;
    }
    .owlet-form table tr th{
        width: 28%;
        margin-right: 2%;
    }
    .owlet-form table tr td{
        background: ;
    }
}
@media (max-width: 768px) {
    .owlet-form table {
    }
    .owlet-form table tr th {
        display: block;
        width: 100%;
        border-bottom: none;
        text-align:left;
        
        margin-bottom: 5px;
        background: none;
        color: #2d65af;
        color:#e49eb4;
        padding: 0;
        min-width: auto;
    }
    .owlet-form table tr td {
        display: block;
        width: 100%;
        padding: 10px 2%;
        border-bottom: none;
        text-align:left;
        border-bottom-right-radius: initial;
        border-bottom-left-radius: initial;
        min-width: auto;
        background:#f3f3f3;
    }
    .owlet-form .-w-rules-agree{
        font-size:1.3rem;
    }
    .owlet-form .-w-form_wrap{
        background: none;
    }
    .owlet-form .-w-require{
        color:#e49eb4;
    }
}

/*
フォーム 規約
**************************************/
.owlet-form .owlet-rules {
    width:1170px;
    width:1170px;
    margin: 0 auto;
}
.owlet-form .owlet-rules-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.owlet-form .owlet-rules-body {
    height: 200px;
    padding: 1rem;
    border: 1px solid;
    box-sizing: border-box;
    margin-bottom: 2rem;
    overflow-y: scroll;
}
.owlet-form .owlet-rules-agree {
    text-align: center;
    margin-bottom: 2rem;
}
@media (max-width: 1169px) {
    .owlet-form .owlet-rules{
        width: 100%;
    }
}


/*
 フォント
****************************************/


























    body {
        font-family: 'Noto Serif JP', serif;
        font-weight: 300;
        font-style: normal;

        
        
        
    }
    /*ご予約はこちら、h2_日本語、見出しフォント*/
    .-w-font_title1{
        font-family: 'Noto Serif JP', serif;
        font-weight: 500;
    }
    /*メインキャッチ、MVフォント*/
    .-w-font_title2{
        font-family: 'Noto Serif JP', serif;
        font-weight: 500;
    }
    /*h2_英語、英数字フォント*/
    .-w-font_en{
        font-family: 'Trirong', serif;
        font-weight: 400;
    }
    .-w-font_en_after:after{
        font-family: 'Trirong', serif;
        font-weight: 400;
    }



















@media (max-width: 768px) {
    
    /*
     フォント
    ****************************************/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}

@media (max-width: 768px) {
    #google_translate_element select {
    font-size:28px;
    }
}



/*================================================================*/








    
    /*英語見出しアイコン*/
    span.-w-general,
    span.-w-en,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en {
        position: relative;
        display: inline-block;
        padding: 0 80px 0;
    }
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en {
        position: relative;
        display: inline-block;
        padding: 0 80px 0;
        margin-right:0;
    }
    span.-w-general:before,
    span.-w-general:after,
    span.-w-en:before,
    span.-w-en:after,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:before,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:after,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:before,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:after{
        content: '';
        width: 61px;
        height: 5px;
        position: absolute;
        top: 60%;
        margin-top: -2.5px;
    }
    span.-w-general:before,
    span.-w-en:before,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:before,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:before{
        left: 0;
        background: url(/_img/ja/resource/9191/icon_lr/) no-repeat 0 0;
    }
    span.-w-general:after,
    span.-w-en:after,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:after,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:after{
        right: 0;
        background: url(/_img/ja/resource/9191/icon_lr/) no-repeat 0 0;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general {
        text-align: center;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_en {
        display: inline-block;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2 {
        display: block;
        text-align: left;
    }
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-general{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en{
        position: relative;
        display: inline-block;
        padding: 0 80px 0;
    }
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en span:before,
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en span:after{
        content: '';
        width: 61px;
        height: 5px;
        position: absolute;
        top: 50%;
        margin-top: -2.5px;
    }
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en span:before{
        left: 0;
        background: url(/_img/ja/resource/9191/icon_lr/) no-repeat 0 0;
    }
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en span:after{
        right: 0;
        background: url(/_img/ja/resource/9191/icon_lr/) no-repeat 0 0;
    }
    @media (max-width: 1020px) and (min-width: 768px) {
        h2.-w-general {
            font-size: 2.1rem;
        }
        h3.-w-general{
            font-size: 2.05rem;
            letter-spacing: 0;
        }
        h4.-w-general {
            font-size: 1.9rem;
        }
        [data-lib="2578"] table tr th {
            width:20%!important;
        }
    }
    @media (max-width: 768px) {
        .-w-ttl_wrap {
            text-align: center;
        }
        .-w-section_inner h3.-w-general{
            text-align: left;
        }
        span.-w-general,
        .-w-ttl-en.-w-font_en,
        .-w-general .-w-font_en,
        .-w-ttl-en.-w-font_en {
            font-size: 9.0vw;
            text-align: center;
            margin-bottom:1.0rem;
        }
        h2.-w-general {
            margin-bottom: 1.5rem;
            font-size: 6.0vw;
            letter-spacing: 0;
            text-align: left;
            line-height:1.5;
        }
        h3.-w-general{
            font-size: 5.3vw;
            letter-spacing: 0;
            text-align: left;
            margin-bottom: 1.5rem;
        }
        h4.-w-general {
            font-size: 3.1vw;
            text-align: left;
            margin-bottom: 1.5rem;
        }
        [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en{
            position: relative;
            display: inline-block;
            padding: 0 80px 0;
        }
    }



















/*ボタン*/

























    /*ボタン11*/
    .-w-more_btn{
        margin-top:3.0rem;
        text-align: center;
    }    
    #foot_fixed .-w-contact_btn a,
    .-w-more_btn a{
        min-width:170px;
        font-size: 1.6rem;
        line-height: 1.5;
        position: relative;
        display: inline-block;
        padding: 1.5rem 6rem;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
        overflow: hidden;
        background-color:rgba(83,83,83,1) !important;
        color:rgba(255,255,255,1) !important;
        border: none !important;
    }
    #foot_fixed .-w-contact_btn a span,
    .-w-more_btn a span {
        position: relative;
        color:rgba(255,255,255,1);
    }
    #foot_fixed .-w-contact_btn a:before,
    .-w-more_btn a:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100px;
        height: 100px;
        content: '';
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        border-radius: 50%;
        top: 50%;
        left: -80px;
        margin-top: -50px;
        background-color:rgba(228,158,180,1);
        background-color:rgba(228,158,180,1) !important;
    }
    .-w-more_btn a.current:before,
    #foot_fixed .-w-contact_btn a:hover:before,
    .-w-more_btn a:hover:before {
        width: 200%;
        height: 400px;
        margin-top: -200px;
    }
    .-w-foot-main .-w-more_btn a:before {
        width: 140px;
        height: 140px;
        margin-top: -70px;
        left: -110px;
    }
    .-w-foot-main .-w-more_btn a:hover:before {
        width: 200%;
        height: 400px;
        margin-top: -200px;
    }
    .-w-more_btn a span.icon-arrow::before,
    .-w-more_btn a span.material-icons::before,
    #foot_fixed table td .-w-contact_btn span.material-icons::before {
        display: none!important;
    }
    @media (max-width: 768px) {
        .-w-more_btn a{
            min-width: 100%;
        }
        #foot_fixed .-w-contact_btn a:hover:before,
        .-w-more_btn a:hover:before {
            width: 100px;
            height: 100px;
            left: -80px;
            margin-top: -50px;
        }
        .-w-foot-main .-w-more_btn a:hover:before {
            width: 140px;
            height: 140px;
            margin-top: -70px;
            left: -110px;
        }
    }














/*widget:3bfe80bf-90ff-41a2-a064-ea13609c3562*/[data-lib="1580"]{background:#ffffff;
	background:#f3f3f3;
	color:#313131;
	color:#535353;
	padding:0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 101;
	min-height: 90px;
	display: flex;
	align-items: center;}[data-lib="1580"].-w-navfixed_off{position: relative;}[data-lib="1580"] a{color:#313131;
	color:#535353;
	text-decoration: none;}[data-lib="1580"] a:hover{text-decoration: underline;}[data-lib="1580"] .-w-h1-wrap h1{width: calc(100% - 249px);
	position: absolute;
	top: 5px;
	left: 20px;
	font-size:1.2rem;
	line-height: 1.0;
	font-weight: 500;}[data-lib="1580"] .-w-sp{display: none;}[data-lib="1580"] .-w-head_main{width:100%;
	display: flex;
	align-items: center;}[data-lib="1580"] .-w-logo{padding-left: 20px;
	display: flex;
	align-items: center;}[data-lib="1580"] .-w-logo a{display: block;}[data-lib="1580"] .-w-logo img{padding:0px;
	background:none;
	object-fit: contain;}[data-lib="1580"] .-w-right{margin-left:auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;}[data-lib="1580"] .-w-gnav{display: flex;
	align-items: center;}[data-lib="1580"] .-w-gnav ul{display: flex;
	list-style: none;
	font-size:1.6rem;}[data-lib="1580"] .-w-gnav ul li.-w-menu-item{line-height: 1.0;
	display: flex;
	align-items: center;
	min-height: 120px;
	position: relative;}[data-lib="1580"] .-w-gnav ul li.-w-menu-item:before{position: absolute;
	content: "";
	overflow: hidden;
	width: 0%;
	left: 50%;
	bottom: 0;
	transition: 0.2s ease-in-out 0.15s;
	border-bottom: 3px solid;
	border-color: #ff6600;
	border-color:#e49eb4;}[data-lib="1580"] .-w-gnav ul li.-w-menu-item:hover:before{width: 100%;
	left: 0%;
	transition: 0.2s ease-in-out;}[data-lib="1580"] .-w-gnav > ul > li.icon-mail.-w-menu-item:nth-last-of-type(2){color: #ffffff;
	color:#535353;
	min-width: 229px;}[data-lib="1580"] .-w-gnav > ul > li.icon-mail.-w-menu-item:nth-last-of-type(2) a{padding: 0 20px;
	margin:0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #ff6600;
	background-color:#e49eb4;
	color: #ffffff;
	color:#ffffff;}[data-lib="1580"] .-w-gnav > ul > li.icon-mail.-w-menu-item:nth-last-of-type(2) a:hover{text-decoration: none;
	background-color: #ffffff;
	background-color:#ffffff;
	color: #ff6600;
	color:#e49eb4;}[data-lib="1580"] .-w-gnav > ul > li.icon-mail.-w-menu-item:nth-last-of-type(2) a:before{margin-right: 5px;
	font-size: 2.4rem;
	content: "\e902";
	color: #ffffff;
	color:#ffffff;}[data-lib="1580"] .-w-gnav > ul > li.icon-mail.-w-menu-item:nth-last-of-type(2) a:hover:before{color: #ff6600;
	color:#e49eb4;}[data-lib="1580"] .-w-gnav ul li a{margin:0;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 15px;}[data-lib="1580"] .-w-gnav ul li a:hover{text-decoration: none;
	color: #ff6600;
	color:#e49eb4;}[data-lib="1580"] .-w-gnav ul li ul li{font-size:1.4rem;}[data-lib="1580"] .-w-translate_li{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding:5px;}[data-lib="1580"] .-w-menu-item{position: relative;}[data-lib="1580"] .-w-menu-item:before{position: absolute;
	content: "";
	overflow: hidden;
	width: 0%;
	left: 50%;
	bottom: 0;
	transition: 0.2s ease-in-out 0.15s;}[data-lib="1580"] .-w-menu-item:hover:before{width: 100%;
	left: 0%;
	transition: 0.2s ease-in-out;}[data-lib="1580"] .-w-sub-menu{position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #FFF;
	background-color:#f3f3f3;
	top: 120px;
	padding: 0;
	text-align: left;
	box-shadow: 0px 4px 20px -5px rgba(0, 0, 0, 0.15);
	max-height: 0;
	min-width: 350px;
	opacity: 0;
	transition: 0.45s ease all 0.10s;
	z-index: 100;
	-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;}[data-lib="1580"] .-w-sub-menu .-w-menu-item{display: block;}[data-lib="1580"] .-w-menu-item:nth-child(n+2):nth-child(-n+7) .-w-sub-menu-item{list-style-type: none;
	display: block;
	margin: 0;
	position: relative;
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	opacity: 0;
	transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) all 0.1s;
	visibility: hidden;}[data-lib="1580"] .-w-menu-item:nth-child(n+2):nth-child(-n+7):hover .-w-sub-menu{max-height: 300px;
	min-width: 350px;
	opacity: 1;}[data-lib="1580"] .-w-menu-item:nth-child(n+2):nth-child(-n+7):hover .-w-sub-menu-item a{transition: 0.15s ease all;}[data-lib="1580"] .-w-menu-item:nth-child(n+2):nth-child(-n+7):hover .-w-sub-menu-item{-webkit-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;}[data-lib="1580"] .-w-menu-item:hover .-w-sub-menu-item:first-child{transition-delay: 0.15s;}[data-lib="1580"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(2){transition-delay: 0.30s;}[data-lib="1580"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(3){transition-delay: 0.45s;}[data-lib="1580"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(4){transition-delay: 0.6s;}[data-lib="1580"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(5){transition-delay: 0.75s;}[data-lib="1580"] #google_translate_element .goog-te-gadget img{display: inline-block;}[data-lib="1580"] .-w-gnav ul li .-w-translate{width: 44px;
	height: 44px;
	position: relative;
	top: 0;
	right: 0;}[data-lib="1580"] .-w-gnav ul li .-w-translate a{display: block;
	height: 100%;
	width: 100%;
	transition: 0.2s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	z-index: 0;
	margin:0;}[data-lib="1580"] #google_translate_element{position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
	opacity: 0;
	z-index: 1;}[data-lib="1580"] #google_translate_element:hover{cursor: pointer;}[data-lib="1580"] .skiptranslate.goog-te-gadget{height: 100%;
	width: 100%;}[data-lib="1580"] #google_translate_element .skiptranslate > div{display: block !important;
	height: 100%;
	width: 100%;}[data-lib="1580"] #google_translate_element .skiptranslate > span{display: none;}[data-lib="1580"] #google_translate_element select{color: #333 !important;
	cursor: pointer;
	margin: 0;
	height: 100%;
	width: 100%;
	-webkit-appearance: button;
	appearance: button;}[data-lib="1580"] .-w-gnav ul li .-w-translate svg{width: 40px;
	fill:#e49eb4;}@media (max-width: 1023px){[data-lib="1580"]{min-height: 90px;}[data-lib="1580"] .-w-pc{display: none;}[data-lib="1580"] .-w-sp{display: block;}[data-lib="1580"] .-w-h1-wrap{display: none;}[data-lib="1580"] .-w-sp-menu-btn{width: 90px;
	height: 90px;
	top: 0;
	right: 0;}[data-lib="1580"] .-w-sp-menu-btn input{position: fixed;
	opacity: 0;}[data-lib="1580"] .-w-sp-menu-btn label{width: 90px;
	height: 90px;
	position: absolute;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	cursor: pointer;
	right: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background:rgba(228,158,180,1);}[data-lib="1580"] .-w-sp-menu-btn label::before{position: fixed;
	z-index: -2;
	height: 100vh;
	top: 90px;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	background:rgba(228,158,180,0.9);}[data-lib="1580"] .-w-sp-menu-btn label .-w-burger{position: absolute;
	z-index: 3;
	width: 30px;
	height: 40px;
	margin: 0;
	padding: 0;
	transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);}[data-lib="1580"] .-w-sp-menu-btn label .-w-burger::before,[data-lib="1580"] 
.-w-sp-menu-btn label .-w-burger .-w-bar,[data-lib="1580"] 
.-w-sp-menu-btn label .-w-burger::after{position: absolute;
	right: 0;
	display: block;
	width: 100%;
	height: 12%;
	content: '';
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	background:rgba(255,255,255,1);}[data-lib="1580"] .-w-sp-menu-btn label .-w-burger .-w-bar{top: 44%;}[data-lib="1580"] .-w-sp-menu-btn label .-w-burger::before{top: 5px;
	transform-origin: top left;}[data-lib="1580"] .-w-sp-menu-btn label .-w-burger::after{bottom: 5px;
	transform-origin: bottom left;}[data-lib="1580"] .-w-sp-menu-btn input:focus + label .-w-burger,[data-lib="1580"] 
.-w-sp-menu-btn label:hover .-w-burger{opacity: .75;}[data-lib="1580"] nav#-w-hamburger_menu{height:calc(100vh - 90px);
	padding: 5vh 0 10vh;
	margin-bottom: 5vh;
	width:100%;
	position: fixed;
	top: 90px;
	left: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
	transform: translate3d(0, 0, 0);
	transform: translateX(-100%);
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);}[data-lib="1580"] nav#-w-hamburger_menu::before{position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	content: '';
	transform: skewX(15deg) translateX(-100%);
	transform-origin: bottom right;
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);}[data-lib="1580"] nav#-w-hamburger_menu ul{display:block;
	height:auto;}[data-lib="1580"] nav#-w-hamburger_menu > ul{overflow-y: scroll;
	text-align: left;
	width: 100%;
	margin: 0 0 60px;}[data-lib="1580"] nav#-w-hamburger_menu > ul > li{width: 80%;}[data-lib="1580"] nav#-w-hamburger_menu a{margin: .5em 0;
	display: block;
	padding: 0em 1em;
	font-size: 1.8rem;
	text-decoration: none;
	font-weight: 500;
	transform: translateX(-100%);
	transition: color .15s, transform .5s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	color:rgba(255,255,255,1);}[data-lib="1580"] nav#-w-hamburger_menu a:nth-child(1){transition-delay: 0s, 100ms;}[data-lib="1580"] nav#-w-hamburger_menu a:nth-child(2){transition-delay: 0s, 150ms;}[data-lib="1580"] nav#-w-hamburger_menu a:nth-child(3){transition-delay: 0s, 200ms;}[data-lib="1580"] nav#-w-hamburger_menu a:nth-child(4){transition-delay: 0s, 250ms;}[data-lib="1580"] nav#-w-hamburger_menu a:nth-child(5){transition-delay: 0s, 300ms;}[data-lib="1580"] nav#-w-hamburger_menu a:nth-child(6){transition-delay: 0s, 350ms;}[data-lib="1580"] nav#-w-hamburger_menu a:hover,[data-lib="1580"]  nav#-w-hamburger_menu a:focus{font-weight: 700;
	color:rgba(255,255,255,1);}[data-lib="1580"] [id="navcheck"]:checked + label::before{opacity: 1;
	pointer-events: auto;}[data-lib="1580"] [id="navcheck"]:checked + label .-w-burger{right:30px;}[data-lib="1580"] [id="navcheck"]:checked + label .-w-burger::before,[data-lib="1580"]  [id="navcheck"]:checked + label .-w-burger::after{width: 141.42%;}[data-lib="1580"] [id="navcheck"]:checked + label .-w-burger::before{transform: rotate(45deg) translateY(-50%);}[data-lib="1580"] [id="navcheck"]:checked + label .-w-burger::after{transform: rotate(-45deg) translateY(50%);}[data-lib="1580"] [id="navcheck"]:checked + label .-w-burger .-w-bar{transform: scale(0.1);
	display:none;}[data-lib="1580"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu{transform: translateX(0);}[data-lib="1580"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu::before{transform: skewX(15deg) translateX(0);
	background:rgba(228,158,180,1);}[data-lib="1580"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu a{transform: translateX(0);}[data-lib="1580"] [id="navcheck"]:checked ~ main .-w-content{transform: translateX(3em);
	transform-origin: left center;
	-webkit-filter: blur(2px);
	filter: blur(2px);}[data-lib="1580"] .-w-visuallyhidden{border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;}}@media (min-width: 769px) and (max-width: 1400px){[data-lib="1580"] .-w-gnav ul{font-size: 1.1vw;}[data-lib="1580"] .-w-gnav ul li a{padding: 1.2vw;}[data-lib="1580"] .-w-number{font-size: 2.5vw;}}@media (max-width: 768px){[data-lib="1580"]{padding:0;
	height:60px;
	min-height: initial;
	background:#ffffff;
	background:rgba(255,255,255,1);}[data-lib="1580"] .-w-pc{display: none;}[data-lib="1580"] .-w-sp{display: block;}[data-lib="1580"] .-w-h1-wrap{display: none;}[data-lib="1580"] .-w-gnav ul li.-w-menu-item.-w-pc{display: none;}[data-lib="1580"] .-w-logo{max-width: 180px;
	max-height: 60px;
	padding:0 1rem;
	box-sizing: border-box;}[data-lib="1580"] .-w-logo img{padding:0;
	max-height: 45px;
	object-fit: cover;}[data-lib="1580"] .-w-tel-wrap{margin-left:inherit;
	margin-top: inherit;
	width:70%;
	margin:0 auto;}[data-lib="1580"] .-w-sp-menu-btn{width: 60px;
	height: 60px;}[data-lib="1580"] .-w-sp-menu-btn label{width: 60px;
	height: 60px;}[data-lib="1580"] .-w-sp-menu-btn label::before{top: 60px;}[data-lib="1580"] nav#-w-hamburger_menu{height:calc(100vh - 60px);
	top: 60px;
	padding: 5vh 0 10vh;}[data-lib="1580"] [id="navcheck"]:checked + label .-w-burger{right: 0px;}}/*widget:69a16d0c-648b-4bda-872c-b422ecb7b119*/[data-lib="2839"]{min-width: auto;
	min-height: 4.2rem;
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.4;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	top: -4.2rem;
	margin-bottom: -4.2rem;}[data-lib="2839"] ol{margin: 0px;}[data-lib="2839"] ol li:last-child:after{content:none;}[data-lib="2839"] ol li{margin: 0px 4px 0 0;
	display: table-cell;
	vertical-align: middle;
	position: relative;
	color:rgba(243,243,243,1);
	text-shadow: rgba(83,83,83,1) 2px 0px, rgba(83,83,83,1) -2px 0px, rgba(83,83,83,1) 0px -2px, rgba(83,83,83,1) 0px 2px, rgba(83,83,83,1) 2px 2px, rgba(83,83,83,1) -2px 2px, rgba(83,83,83,1) 2px -2px, rgba(83,83,83,1) -2px -2px, rgba(83,83,83,1) 1px 2px, rgba(83,83,83,1) -1px 2px, rgba(83,83,83,1) 1px -2px, rgba(83,83,83,1) -1px -2px, rgba(83,83,83,1) 2px 1px, rgba(83,83,83,1) -2px 1px, rgba(83,83,83,1) 2px -1px, rgba(83,83,83,1) -2px -1px;}[data-lib="2839"] ol li > span{padding: 11px 0;
	display: block;
	text-align:center;}[data-lib="2839"] ol li > a > span{padding: 12px 0 11px;
	display: block;
	text-align:center;}[data-lib="2839"] ol li a{text-decoration: none;
	display: block;
	padding:0 10px 0 30px;
	position:relative;
	min-width: 55px;
	min-height: 37px;
	color:rgba(243,243,243,1);}[data-lib="2839"] ol li:first-child a{padding:0;}[data-lib="2839"] ol li:last-child span{display: block;
	padding:0 10px 0 30px;}[data-lib="2839"] ol li a:hover{text-decoration: none;}[data-lib="2839"] ol li:after{content: ">";
	position: absolute;
	right: -8px;
	top: 10px;
	width: 0;
	height: 0;
	z-index: 2;}[data-lib="2839"] ol li a[itemprop="item"]:after{content: "";
	position: absolute;
	right: -8px;
	top: 0px;
	width: 0;
	height: 0;
	z-index: 1;}@media (max-width: 768px){[data-lib="2839"]{display:none;}}/*widget:c68be05e-b65d-408e-99a4-5ebc1cacf889*/[data-lib="1998"][data-pattern="3"] .pace{-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	position: fixed;
	z-index: 20002;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition: all 1s ease-in-out;
	transition-delay: .5s;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive{z-index: 20001;
	opacity: 0;
	visibility: hidden;}[data-lib="1998"][data-pattern="3"] .pace .pace-progress{position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-transition: width 1s;
	-moz-transition: width 1s;
	-o-transition: width 1s;
	transition: width 1s;
	background-color:#ffffff;
	background-size: 200px auto;
	width: 100% !important;}[data-lib="1998"][data-pattern="3"] .pace .pace-progress:before{content: "";
	position: absolute;
	transition: all 1s cubic-bezier(1,.05,.58,.9);
	transition-delay: .3s;
	background: #ffffff;
	background: #ffffff;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive .pace-progress:before{opacity: 0;}[data-lib="1998"][data-pattern="3"] .pace-progress-inner{position: absolute;
	transition: all 1s cubic-bezier(1,.05,.58,.9);
	transition-delay: .3s;
	background-color:#e49eb4;
	background: #ffffff;
	background: #ffffff;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive .pace-progress .pace-progress-inner{opacity: 0;}[data-lib="1998"][data-pattern="3"] .pace .pace-progress:after{display: inline-block;
	position: absolute;
	top: 33%;
	left: 50%;
	content: attr(data-progress-text);
	padding-top: 200px;
	line-height: 1;
	text-align: center;
	transition: all 1s ease-in-out;
	transform: translate(-50%);
	background: url(/_img/ja/resource/9/logo/) center center no-repeat;
	background-size: inherit;
	font-family: "Helvetica Neue", sans-serif;
	font-weight: 200;
	font-size: 2em;
	width: 100%;
	color: inherit;
	color: inherit;}[data-lib="1998"][data-pattern="3"].logo_off .pace .pace-progress:after{display: inline-block;
	position: absolute;
	top: 33%;
	left: 50%;
	content: attr(data-progress-text);
	padding-top: 200px;
	line-height: 1;
	text-align: center;
	transition: all 1s ease-in-out;
	transform: translate(-50%);
	background: none;
	font-family: "Helvetica Neue", sans-serif;
	font-weight: 200;
	font-size: 2em;
	width: 100%;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive .pace-progress:after{transform: translate(-50%, 100%);}[data-lib="1998"][data-pattern="3"].bg_e49eb4,[data-lib="1998"][data-pattern="3"] 
    .bg_e49eb4 .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_e49eb4 .pace-progress-inner{background-color:#e49eb4;}[data-lib="1998"][data-pattern="3"].bg_black .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_black .pace-progress-inner{background-color:#000000;}[data-lib="1998"][data-pattern="3"].bg_white .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_white .pace-progress-inner{background-color:#ffffff;}[data-lib="1998"][data-pattern="3"].bg_gray .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_gray .pace-progress-inner{background-color:#808080;}[data-lib="1998"][data-pattern="3"].bg_yellow .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_yellow .pace-progress-inner{background-color:#ffff00;}[data-lib="1998"][data-pattern="3"].bg_red .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_red .pace-progress-inner{background-color:#ff0000;}[data-lib="1998"][data-pattern="3"].bg_blue .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_blue .pace-progress-inner{background-color:#0000ff;}[data-lib="1998"][data-pattern="3"].bg_green .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_green .pace-progress-inner{background-color:#008000;
	background-color:#008000;}[data-lib="1998"][data-pattern="3"].bg_e49eb4 .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_e49eb4 .pace-progress-inner{background-color:#e49eb4;}[data-lib="1998"][data-pattern="1"]{position: fixed;
	top:0;
	left: 0;
	z-index:10000000;
	width:100vw;
	height:100%;
	background-color:#ffffff;
	transition: top 1.5s ease;
	font-size: 34px;}[data-lib="1998"][data-pattern="1"] *{box-sizing: border-box;}[data-lib="1998"][data-pattern="1"] .opening_logo{width: '.resource('loading','logo_size').'px;}[data-lib="1998"][data-pattern="1"] .-w-cl{text-align: center;}[data-lib="1998"][data-pattern="1"] .-w-catch ,[data-lib="1998"][data-pattern="1"]  .-w-logo{position: fixed;
	width:100vw;
	height:100%;
	left:0;
	top:0;
	line-height: 100%;
	opacity:0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="1998"][data-pattern="1"] .-w-screen{width:100vw;
	height:100%;
	background-color:#e49eb4;
	position: absolute;
	left: 0;
	top: 100%;}[data-lib="1998"][data-pattern="1"] .-w-catch span ,[data-lib="1998"][data-pattern="1"]  .-w-logo img{display: inline-block;
	vertical-align: middle;}[data-lib="1998"][data-pattern="1"] .-w-logo img{width: 200px;}[data-lib="1998"][data-pattern="1"].domloaded .-w-catch{transition: opacity 0.5s ease .5s;
	opacity: 1;}[data-lib="1998"][data-pattern="1"].domloaded.showlogo .-w-catch{transition: opacity 0.5s ease 1.0s;
	opacity: 0;}[data-lib="1998"][data-pattern="1"].domloaded.showlogo .-w-logo{transition: opacity 0.5s ease 2.0s;
	opacity: 1;}[data-lib="1998"][data-pattern="1"].loaded{top:-200%;}[data-lib="1998"][data-pattern="1"].loaded .-w-catch ,[data-lib="1998"][data-pattern="1"].loaded  .-w-logo{transition: opacity 0.5s ease 0s!important;
	opacity: 0!important;}[data-lib="1998"][data-pattern="1"].loaded .-w-cl{transition: opacity 0.5s ease 2.0s;
	opacity: 0;}[data-lib="1998"][data-pattern="2"]{overflow-y: scroll;
	overflow-x: hidden;
	background: #e49eb4;}[data-lib="1998"][data-pattern="2"] .pace-done{background: #e49eb4;}[data-lib="1998"][data-pattern="2"] #pace{background: #e49eb4;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	z-index: 10000;}[data-lib="1998"][data-pattern="2"] #pace .pace-logo{opacity: 1;
	-webkit-transition: opacity 1s .3s, transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: opacity 1s .3s, transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	width: 100%;}[data-lib="1998"][data-pattern="2"] #pace .pace-logo img{display: block;
	margin: 0 auto;
	width: 200px;}[data-lib="1998"][data-pattern="2"] #pace .pace-logo.pace-hide{//opacity: 0;}[data-lib="1998"][data-pattern="2"] #pace .pace-progress{background: #ffffff;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0;
	z-index: 1;}[data-lib="1998"][data-pattern="2"] #pace.pace-transition-1 .pace-progress{-webkit-transition: width 1s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: width 1s cubic-bezier(0.95, 0.05, 0.795, 0.035);}[data-lib="1998"][data-pattern="2"] #pace.pace-transition-2 .pace-progress{-webkit-transition: width .3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: width .3s cubic-bezier(0.95, 0.05, 0.795, 0.035);}[data-lib="1998"][data-pattern="2"] .pace-activity{align-items: center;
	display: flex;
	height: 100%;
	left: 0;
	justify-content: center;
	overflow: hidden;
	position: absolute;
	top: 0;
	-webkit-transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	width: 100%;
	z-index: 2;}[data-lib="1998"].loader_ .pace-progress,[data-lib="1998"] 
.loader_{color:#;}[data-lib="1998"].loader_black .pace-progress,[data-lib="1998"] 
.loader_black{color:#000000;}[data-lib="1998"].loader_white .pace-progress,[data-lib="1998"] 
.loader_white{color:#ffffff;}[data-lib="1998"].loader_gray .pace-progress,[data-lib="1998"] 
.loader_gray{color:#808080;}[data-lib="1998"].loader_yellow .pace-progress,[data-lib="1998"] 
.loader_yellow{color:#ffff00;}[data-lib="1998"].loader_red .pace-progress,[data-lib="1998"] 
.loader_red{color:#ff0000;}[data-lib="1998"].loader_blue .pace-progress,[data-lib="1998"] 
.loader_blue{color:#0000ff;}[data-lib="1998"].loader_green .pace-progress,[data-lib="1998"] 
.loader_green{color:#008000;}[data-lib="1998"]{background-color:#e49eb4;}[data-lib="1998"] .-w-catch span{font-size: 3.4rem;}@media all and (orientation: landscape){[data-lib="1998"] .pace-progress-inner{top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: skewX(-45deg);}[data-lib="1998"] .pace.pace-inactive .pace-progress .pace-progress-inner{transform: translateX(100%) skewX(-45deg);}[data-lib="1998"] .pace .pace-progress:before{top: 0;
	left: -50%;
	width: 102%;
	height: 100%;
	transform: skewX(-45deg);}[data-lib="1998"] .pace.pace-inactive .pace-progress:before{transform: translateX(-100%) skewX(-45deg);}}@media (max-width: 640px){[data-lib="1998"] .-w-catch span{font-size: 2.4rem;}}/*widget:375f5eb8-1c0e-49d5-be05-480a632bd9eb*/[data-lib="4444"]{position: relative;
	z-index: 103;}[data-lib="4444"] a[href^="tel:"]{cursor: default;}[data-lib="4444"] a[href^="tel:"]:hover{text-decoration: none;}[data-lib="4444"] .-w-pc{display: block;}[data-lib="4444"] .-w-sp{display: none;}[data-lib="4444"] #-w-side_sns{display: none;}[data-lib="4444"] #-w-side_sns ul{list-style: none;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;
	-webkit-box-pack: space-around;
	-ms-flex-pack: space-around;
	justify-content: space-around;}[data-lib="4444"] #-w-side_sns ul li{margin-bottom:0;}[data-lib="4444"] #-w-side_sns ul li:last-child{margin-bottom:0;}[data-lib="4444"] #-w-side_sns.fixed{display: block;
	position: fixed;
	right: 0px;
	bottom: 110px;
	z-index: 100;
	text-align: center;
	width: 50px;
	background: rgba(20,24,34,0.7);
	background-color: hsla(0,0%,0%,0.6);}[data-lib="4444"] #-w-side_sns.fixed a{display: block;
	padding: 20px 5px;}@media (max-width: 768px){[data-lib="4444"]{z-index: 100;}[data-lib="4444"] .-w-pc{display: none;}[data-lib="4444"] .-w-sp{display: block;}[data-lib="4444"] #-w-side_sns{display: none;}[data-lib="4444"] #-w-side_sns.fixed{display: block;
	position: relative;
	right: 0;
	top: 0;
	bottom:inherit;
	padding:0;
	z-index: 101;
	text-align: center;
	width: 100%;
	background: rgba(20,24,34,0.7);
	background-color: hsla(0,0%,0%,0.6);}[data-lib="4444"] #-w-side_sns ul{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="4444"] #-w-side_sns ul li{width: 24%;
	padding:0;
	margin-bottom:0;}[data-lib="4444"] #-w-side_sns ul li img{margin:0 auto;}[data-lib="4444"] #-w-side_sns ul li:last-child{display: none;}}/*widget:eace4c32-5952-46ae-a5aa-5659cbeba2dc*/[data-lib="15718"]{padding:5.0rem 0 0 0;
	background:url(/_img/ja/resource/9/common_bg/___/) no-repeat center top;
	background-size:cover;
	position: relative;
	z-index: 100;}[data-lib="15718"] a[href^="tel:"]{cursor: default;}[data-lib="15718"] a[href^="tel:"]:hover{text-decoration: none;}[data-lib="15718"] .-w-pc{display: block;}[data-lib="15718"] .-w-sp{display: none;}[data-lib="15718"]::before{content: "";
	background-color: rgba(0,0,0,0.3);
	background-color: hsla(0,0%,0%,0.3);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	z-index: -1;
	top:0;}[data-lib="15718"] .-w-foot-main{display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 5.5rem;}[data-lib="15718"] .-w-more_btn a{width: 370px;
	padding: 30px 0;
	font-size: 1.8rem;}[data-lib="15718"] .-w-more_btn a span.icon-arrow{width:100%;}[data-lib="15718"] .-w-more_btn a span.icon-arrow::before{content: "\e900";
	height: 20px;
	line-height: 1.2;
	padding-left: 1px;
	box-sizing: border-box;
	font-weight: 700;
	width: 20px;
	margin-right: 10px;
	vertical-align: baseline;
	border-radius: 10px;
	font-size: 18px;
	display: inline-block;}[data-lib="15718"] .-w-more_btn a span::before{background-color:#ffffff;
	color:#e49eb4;}[data-lib="15718"] .-w-more_btn a:hover span::before{background-color:#e49eb4;
	color:#ffffff;}[data-lib="15718"] .-w-foot-nav{width:100%;
	padding:45px 0 0;
	background:rgba(0,0,0,0.5);
	background-color: hsla(0,0%,0%,0.5);}[data-lib="15718"] .-w-flogo{margin-bottom: 25px;}[data-lib="15718"] .-w-flogo a{display: block;}[data-lib="15718"] .-w-flogo img{padding:0px;
	background:none;
	object-fit: contain;
	padding: 5px 10px;
	background: rgba(255,255,255,0.4);}[data-lib="15718"] .-w-address{font-size: 2.4rem;
	margin-bottom: 15px;
	color: #ffffff;
	color:#ffffff;}[data-lib="15718"] .-w-tel{font-size: 4.8rem;
	line-height: 1.0;}[data-lib="15718"] .-w-tel a{color: #ffffff;
	color:#ffffff;
	text-decoration: none;}[data-lib="15718"] .-w-time{font-size: 2.0rem;
	letter-spacing: 0.2em;
	color: #ffffff;
	color:#ffffff;}[data-lib="15718"] .-w-line-btn{margin-bottom: 10px;}[data-lib="15718"] .-w-line-btn-text{font-size: 1.8rem;
	text-align: center;}[data-lib="15718"] .-w-fnav{width:780px;
	margin:0 auto;}[data-lib="15718"] .-w-fnav ul{display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style:none;}[data-lib="15718"] .-w-fnav ul li{margin:0 10px 10px;
	font-size: 1.4rem;}[data-lib="15718"] .-w-fnav ul li.-w-link9{display: none;}[data-lib="15718"] .-w-fnav ul li a{color: #ffffff;
	color:#ffffff;
	text-decoration: none;}[data-lib="15718"] .-w-fnav ul li a:hover{color: #ffffff;
	color:#ffffff;
	text-decoration: underline;}[data-lib="15718"] .-w-copyright{color: #ffffff;
	color:#ffffff;
	text-align: center;
	font-size:1.6rem;}[data-lib="15718"] .-w-copyright a{color: #ffffff;
	color:#ffffff;
	text-decoration: none;}[data-lib="15718"] .-w-sp-tel{display: none;}[data-lib="15718"] .-w-fixed_off .-w-foot-nav{padding-bottom:5rem;}[data-lib="15718"] .-w-fixed_on .-w-foot-nav{padding-bottom:11rem;}@media (max-width: 768px){[data-lib="15718"] .-w-pc{display: none;}[data-lib="15718"] .-w-sp{display: block;}[data-lib="15718"] .-w-foot-main{padding:0 2rem;}[data-lib="15718"] .-w-address{text-align: center;
	padding: 0 3rem;
	font-size: 3.5vw;}[data-lib="15718"] .-w-line-btn-text{font-size: 1.4rem;}[data-lib="15718"] .-w-fnav{display: none;}[data-lib="15718"] .-w-line-btn img{max-width:60%;
	margin:0 auto;}[data-lib="15718"] .-w-foot-nav{position: static;
	background:none;}[data-lib="15718"] .-w-sp-tel{width:100%;
	display: block;
	position: fixed;
	left:0;
	bottom:0;
	padding: 1rem;
	background:rgba(0,0,0,0.5);
	z-index: 2;}[data-lib="15718"] .-w-tel{font-size: 9vw;}[data-lib="15718"] .-w-tel-wrap{width: 80%;
	margin: 0 auto;
	color:#535353;
	background: url(/_img/ja/cms_parts_library//image/_/) no-repeat left center;
	padding-left: 60px;}[data-lib="15718"] .-w-tel-wrap a{color:#535353;
	text-decoration: none;}[data-lib="15718"] .-w-tel-wrap a:hover{text-decoration: underline;}[data-lib="15718"] .-w-tel-wrap a[href^="tel:"]{cursor: default;}[data-lib="15718"] .-w-tel-wrap a[href^="tel:"]:hover{text-decoration: none;}[data-lib="15718"] .-w-number{font-size:3.0rem;
	line-height: 1.0;
	margin-bottom: 5px;}[data-lib="15718"] .-w-time{font-size:1.4rem;
	margin-bottom:0;}[data-lib="15718"] .-w-fixed_on .-w-foot-nav{background: rgba(0, 0, 0, 0.6);
	padding:15px 1rem 8.0rem;
	margin-top: 5.0rem;}[data-lib="15718"] .-w-fixed_on .-w-foot-nav .-w-copyright{line-height: 1;
	font-size:1.4rem;}[data-lib="15718"] .-w-more_btn{width:100%;}[data-lib="15718"] .-w-more_btn a{width: 100%;
	padding: 20px 15px;}}/*layout:25*/ERROR : owlet_dsl::child_img_src( 'layout' ,25 ,'51f6295b-0470-4fce-af59-ef10ef4be418'','_' )
/* フォーム用 */
.form-table .table {
  border-collapse: collapse;
}

.form-table table p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
}

input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}


input[type="text"],
textarea {
  background: #fff;
  border:1px solid #eee;
  display: inline-block;
  font-size: 16px;
  padding: 12px 15px;
  width: 480px;
  transition: 0.8s;
  border-radius: 0;
}

input[type="text"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-table{
    background: #f5f5f5;
    background:rgba(243,243,243,1);
    padding: 2%;
    border-radius: 12px;
}

.form-table table {
	width: 100%;
	margin: 0 auto 20px;
	border-collapse: collapse;
	table-layout: fixed;
}

.form-table table tr {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.form-table table tr th {
    background: #cecece;
    background:rgba(228,158,180,1);
    color: #313131;
    color:rgba(255,255,255,1);
	width: 25%;
	margin-right:5%;
	padding: 15px 20px;
	font-weight: bold;
	vertical-align: middle;
	text-align:left;
	border-radius: 12px;
	min-width: 250px;
}
.form-table table tr td {
    border-top: 1px solid ;
    border-color: #dddddd;
    border-color:#e49eb4;
    background: #ffffff;
    color: #313131;
	width: 70%;
	padding: 15px 20px;
	vertical-align: middle;
	border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
	min-width: 785px;
}
@media (max-width: 1169px) {
    .form-table table tr th {
        min-width: auto;
    }
    .form-table table tr td {
        min-width: auto;
    }
}
@media (max-width: 768px) {
    .form-table {
        background: none;
    }
    .form-table table tr th {
        display: block;
        width: 100%;
        border-bottom: none;
        text-align:left;
        margin-bottom: 5px;
        background: none;
        color: #2d65af;
        color:rgba(228,158,180,1);
        padding: 0;
        min-width: auto;
    }
    .form-table table tr td {
        display: block;
        width: 100%;
        padding: 10px 2%;
        border-bottom: none;
        text-align:left;
    	border-bottom-right-radius: initial;
        border-bottom-left-radius: initial;
        min-width: auto;
    }
    .form-table table tr:last-child td {
        border-bottom: 1px solid;
        border-radius: none;
    }
}

input.owlet-input-name-sei {
    margin-right: 10px;
}

input.owlet-input-name-sei,input.owlet-input-name-mei {
    width: 30%;
}

input.owlet-input-tel1, input.owlet-input-tel2, input.owlet-input-tel3 {
    width: 30%;
}

input.owlet-input-tel1 {
    margin-right: 5px;
}

input.owlet-input-tel2 {
    margin: 0 5px;
}

input.owlet-input-tel3 {
    margin-left: 5px;
}

.owlet-rules.owlet-rules-6 {
    width: 800px;
    margin: 0 auto;
    max-width: 100%;
    padding-top: 50px;
}

.owlet-rules-title {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.owlet-rules-body {
    height: 300px;
    overflow: auto;
    border: 1px solid;
    padding: 30px;
    background: #fff;
}

.owlet-rules-agree {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

.form-table td label{
    margin-right: 5px;
}

.form_button {
    padding-top: 50px;
    text-align: center;
    display : -webkit-box;
    display : -webkit-flex;
    display : -ms-flexbox;
    display : flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.form_button input {
    display: inline-block;
    padding: 5px 20px;
    text-decoration: none;
    color: #f2b043;
    border: solid 2px;
    border-color: #f2b043;
    border-radius: 3px;
    transition: .4s;
    font-size: 20px;
    background: #fff;
}
.form_button input:hover {
    background: #e49eb4;
    color: #fff;
    cursor: pointer;
}

.form_button a {
    display: inline-block;
    padding: 2px 10px;
    text-decoration: none;
    color: #f2b043;
    border: solid 2px;
    border-color: #f2b043;
    border-radius: 3px;
    transition: .4s;
    font-size: 16px;
    background: #fff;
    margin-right: 10px;
}
.form_button a:hover {
    background: #e49eb4;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .form-table{
        padding-top: 100px;
    }
    .form-table table{
        width: 96%;
        margin: 0 auto;
    }
    .form-table th,.form-table td {
        display: block;
        width: 80%;
        margin: 0 auto;
        border-bottom: none;
    }
    input[type="text"], textarea{
        width: 100%;
    }
    input.owlet-input-name-sei,input.owlet-input-name-mei {
            width: 30%;
        }

        input.owlet-input-tel1, input.owlet-input-tel2, input.owlet-input-tel3 {
            width: 30%;
        }
}

table.input_calendar {
	width: 100%;
	margin: 0 auto 20px;
	border-collapse: collapse;
	table-layout: fixed;
}
table.input_calendar tr {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
table.input_calendar tr th {
    background: #cecece;
    background:rgba(228,158,180,1);
    color: #313131;
    color:rgba(255,255,255,1);
	width: 25%;
	margin-right:5%;
	padding: 15px 20px;
	font-weight: bold;
	vertical-align: middle;
	text-align:left;
	border-radius: 0;
	min-width: 250px;
}
table.input_calendar tr td {
    border-top: 1px solid ;
    border-color: #dddddd;
    border-color:#e49eb4;
    background: #ffffff;
    color: #313131;
	width: 70%;
	padding: 15px 20px;
	vertical-align: middle;
	border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
	min-width: 785px;
}


[data-lib-uuid="30d0661a-2822-40dd-874e-76077b2ea163"] {
    background: url(border-color:#e49eb4;) no-repeat center center / cover;
}

body {
    margin-top: 0!important;
}
/*PAGE*//* ============================================
       CSS変数 / カラーテーマ
    ============================================ */
    :root {
      --transition-speed: 0.4s;
    }

    /* テーマ：Sage & Blush（画像カラー） */
    body.theme-sage {
      --bg-primary:    #F8F6F2;
      --bg-secondary:  #EDE8E0;
      --bg-dark:       #2E3428;
      --bg-accent:     #E4DDD4;
      --color-main:    #7A9970;
      --color-sub:     #D4B0A8;
      --color-accent:  #8FAF85;
      --color-text:    #2A2A24;
      --color-text-light: #6E6A60;
      --color-white:   #FCFAF8;
      --color-border:  #D4CEC4;
      --btn-bg:        #7A9970;
      --btn-hover:     #5F7D56;
      --hero-overlay:  rgba(30,36,26,0.38);
      --tag-bg:        #E4DDD4;
      --tag-color:     #7A9970;
      --number-color:  #D4B0A8;
    }

    body.theme-sage .worry-marker {
      --marker-color: #C8DFA8;
    }

    /* ============================================
       リセット・ベース
    ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      background: var(--bg-primary);
      color: var(--color-text);
      font-family: 'Noto Sans JP', sans-serif;
      line-height: 1.8;
      transition: background var(--transition-speed), color var(--transition-speed);
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }


    /* ============================================
       ヘッダー
    ============================================ */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.4s;
    }

    header.scrolled {
      background: var(--bg-primary);
      padding: 14px 48px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 400;
      letter-spacing: 0.2em;
      color: var(--color-white);
      transition: color 0.4s;
    }

    header.scrolled .logo { color: var(--color-main); }

    nav { display: flex; gap: 32px; }

    nav a {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.85);
      transition: color 0.3s;
    }

    header.scrolled nav a { color: var(--color-text); }
    nav a:hover { color: var(--color-main); }

    .header-cta {
      background: var(--btn-bg);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      font-size: 12px !important;
      font-weight: 700 !important;
      letter-spacing: 0.1em;
      transition: background 0.3s, transform 0.2s !important;
    }
    .header-cta:hover {
      background: var(--btn-hover) !important;
      transform: translateY(-1px);
    }
    .header-insta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.4);
      color: rgba(255,255,255,0.85);
      transition: border-color 0.3s, color 0.3s, background 0.3s;
      flex-shrink: 0;
    }
    .header-insta:hover {
      border-color: #fff;
      color: #fff;
      background: rgba(255,255,255,0.1);
    }
    header.scrolled .header-insta {
      border-color: rgba(0,0,0,0.25);
      color: var(--color-text);
    }
    header.scrolled .header-insta:hover {
      border-color: var(--color-main);
      color: var(--color-main);
    }

    /* ============================================
       ハンバーガーメニュー
    ============================================ */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: none; border: none;
      cursor: pointer; padding: 6px;
      z-index: 1100;
      position: relative;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.35s ease, opacity 0.25s ease, background 0.3s;
      transform-origin: center;
    }
    header.scrolled .hamburger span { background: var(--color-text); }
    /* 開いたとき → ✕ */
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hamburger.is-open span { background: #fff; }

    /* モバイルメニュー オーバーレイ */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--bg-dark);
      z-index: 1050;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      opacity: 0;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
    }
    .mobile-menu.is-open {
      display: flex;
      opacity: 1;
      transform: translateX(0);
    }
    /* ロゴ */
    .mobile-menu-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px; letter-spacing: 0.25em;
      color: var(--color-main);
      margin-bottom: 48px;
    }
    /* リンク */
    .mobile-menu nav {
      display: flex !important;
      flex-direction: column;
      align-items: center;
      gap: 0;
      width: 100%;
    }
    .mobile-menu nav a {
      font-family: 'Noto Serif JP', serif;
      font-size: 20px; font-weight: 400;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.85);
      padding: 18px 0;
      width: 100%; text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: color 0.25s, background 0.25s;
    }
    .mobile-menu nav a:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
    .mobile-menu nav a:hover { color: var(--color-main); background: rgba(255,255,255,0.03); }
    /* CTAボタン */
    .mobile-menu-cta {
      display: block;
      margin-top: 40px;
      padding: 16px 48px;
      background: var(--color-main);
      color: #fff !important;
      border-radius: 50px;
      font-family: 'Noto Sans JP';
      font-size: 14px; font-weight: 700;
      letter-spacing: 0.1em;
      text-align: center;
      transition: background 0.3s;
    }
    .mobile-menu-cta:hover { background: var(--btn-hover) !important; }
    .mobile-menu-insta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      padding: 12px 32px;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px;
      color: rgba(255,255,255,0.75) !important;
      font-family: 'Noto Sans JP';
      font-size: 13px; font-weight: 500;
      letter-spacing: 0.08em;
      text-decoration: none;
      transition: border-color 0.3s, color 0.3s;
    }
    .mobile-menu-insta:hover {
      border-color: rgba(255,255,255,0.6);
      color: #fff !important;
    }

    /* ============================================
       Hero セクション（画像上・テキスト下）
    ============================================ */
    .hero {
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* 上段：メインビジュアル画像 */
    .hero-visual {
      width: 100%;
      flex-shrink: 0;
      overflow: hidden;
      line-height: 0;
    }

    .hero-img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* 下段：テキストエリア */
    .hero-text-area {
      position: relative;
      background: var(--bg-dark);
      padding: 80px 0 100px;
      flex-shrink: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, var(--bg-dark) 0%, rgba(0,0,0,0.15) 100%);
    }

    /* 装飾テキスト */
    .hero-deco {
      position: absolute;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(80px, 14vw, 200px);
      font-weight: 300;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.03);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      max-width: 820px;
      margin: 0 auto;
    }

    .hero-label {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.3em;
      color: var(--color-sub);
      border: 1px solid var(--color-sub);
      padding: 6px 20px;
      border-radius: 50px;
      margin-bottom: 32px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(28px, 3.8vw, 52px);
      font-weight: 300;
      color: #fff;
      line-height: 1.65;
      letter-spacing: 0.05em;
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.9s 0.4s forwards;
    }

    .hero-title em {
      font-style: normal;
      color: var(--color-sub);
      font-weight: 500;
    }

    .hero-subtitle {
      font-size: clamp(14px, 1.8vw, 17px);
      color: rgba(255,255,255,0.72);
      font-weight: 300;
      letter-spacing: 0.08em;
      line-height: 2;
      margin-bottom: 48px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.6s forwards;
    }

    .hero-cta-wrap {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.8s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--btn-bg);
      color: #fff;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.1em;
      transition: all 0.3s;
      border: 2px solid transparent;
    }
    .btn-primary:hover {
      background: var(--btn-hover);
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: #fff;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.1em;
      border: 2px solid rgba(255,255,255,0.5);
      transition: all 0.3s;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.8);
      transform: translateY(-3px);
    }

    .hero-scroll {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      margin-top: 48px;
      opacity: 0;
      animation: fadeIn 1s 1.2s forwards;
    }

    .hero-scroll span {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      letter-spacing: 0.25em;
      color: rgba(255,255,255,0.45);
    }

    .scroll-line {
      width: 1px;
      height: 44px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
      animation: scrollLine 1.8s infinite;
    }

    /* 装飾テキスト */
    .hero-deco {
      position: absolute;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(80px, 14vw, 180px);
      font-weight: 300;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.03);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
      z-index: 1;
    }

    /* ============================================
       セクション共通
    ============================================ */
    section { position: relative; }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .section-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.35em;
      color: var(--color-main);
      display: block;
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(26px, 4vw, 42px);
      font-weight: 400;
      line-height: 1.5;
      letter-spacing: 0.04em;
      color: var(--color-text);
      margin-bottom: 20px;
    }

    .section-lead {
      font-size: 15px;
      color: var(--color-text-light);
      line-height: 1.9;
      max-width: 640px;
    }

    .divider {
      width: 40px;
      height: 2px;
      background: var(--color-main);
      margin: 24px 0;
    }

    .divider.center { margin: 24px auto; }

    /* アニメーション共通 */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in {
      opacity: 0;
      transition: opacity 0.7s ease;
    }
    .fade-in.visible { opacity: 1; }

    .slide-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .slide-left.visible { opacity: 1; transform: translateX(0); }

    .slide-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .slide-right.visible { opacity: 1; transform: translateX(0); }

    /* delay classes */
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }
    .delay-6 { transition-delay: 0.6s; }

    /* ============================================
       セクション01 - 問題提起
    ============================================ */
    .sec-problem {
      padding: 100px 0 120px;
      background: var(--bg-primary);
    }

    .problem-heading {
      text-align: center;
      margin-bottom: 64px;
    }

    /* 4カラムカードグリッド（coloskin参照） */
    .worries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .worry-card {
      display: flex;
      flex-direction: column;
    }

    /* 正方形の画像エリア */
    .worry-card__figure {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 4px;
      background: var(--bg-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin-bottom: 0;
    }

    .worry-card__figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* プレースホルダー（画像未設定時） */
    .worry-card__placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      height: 100%;
      color: var(--color-border);
    }

    .worry-card__placeholder svg {
      width: 48px;
      height: 48px;
      stroke: var(--color-main);
      opacity: 0.5;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .worry-card__placeholder span {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--color-border);
      text-transform: uppercase;
    }

    /* キャプションテキスト */
    .worry-card__caption {
      padding: 18px 4px 0;
      font-size: 14px;
      line-height: 1.8;
      color: var(--color-text);
      font-weight: 400;
    }

    /* マーカーハイライト（coloskin の c-text-marker 相当） */
    .worry-marker {
      background: linear-gradient(transparent 60%, var(--marker-color, #f5d87a) 60%);
      font-weight: 700;
      color: var(--color-text);
      padding: 0 2px;
    }

    body.theme-natural .worry-marker {
      --marker-color: #e8d4a8;
    }


    /* 解決バナー */
    .problem-resolution {
      margin-top: 72px;
      text-align: center;
    }

    .resolution-balloon {
      display: inline-block;
      position: relative;
      background: var(--color-main);
      color: #fff;
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(18px, 2.5vw, 26px);
      font-weight: 500;
      letter-spacing: 0.06em;
      padding: 22px 56px;
      border-radius: 60px;
    }

    .resolution-balloon::after {
      content: '';
      position: absolute;
      bottom: -16px;
      left: 50%;
      transform: translateX(-50%);
      border: 10px solid transparent;
      border-top-color: var(--color-main);
      border-bottom: none;
    }

    @media (max-width: 900px) {
      .worries-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    }
    @media (max-width: 500px) {
      .worries-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .worry-card__caption { font-size: 13px; }
    }

    /* ============================================
       セクション02-A - レッドオーシャン警告
    ============================================ */
    .sec-redocean {
      position: relative;
      overflow: hidden;
      background: var(--bg-dark);
    }

    /* 上半分：ダークゾーン */
    .redocean-dark {
      padding: 72px 0 80px;
      position: relative;
      z-index: 1;
    }

    /* 下半分：ブライトゾーン（背景切替） */
    .redocean-light {
      background: var(--bg-primary);
      padding: 80px 0 120px;
      position: relative;
    }
    .redocean-light::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 0;
      right: 0;
      height: 60px;
      background: linear-gradient(to bottom, transparent, var(--bg-primary));
      pointer-events: none;
      z-index: 1;
    }

    /* 背景装飾（ノイズテクスチャ風グラデ） */
    .sec-redocean::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(180,60,60,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(180,60,60,0.05) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .redocean-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 1;
    }

    /* 警告ラベル */
    .redocean-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.3em;
      color: #E07070;
      background: rgba(220,80,80,0.12);
      border: 1px solid rgba(220,80,80,0.3);
      border-radius: 4px;
      padding: 6px 14px;
      margin-bottom: 32px;
    }
    .redocean-label::before {
      content: '';
      width: 7px;
      height: 7px;
      background: #E07070;
      border-radius: 50%;
      animation: blink-dot 1.4s ease-in-out infinite;
    }
    @keyframes blink-dot {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.2; }
    }

    /* メイン見出し */
    .redocean-headline {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(32px, 5vw, 58px);
      font-weight: 400;
      color: #fff;
      line-height: 1.5;
      letter-spacing: 0.04em;
      margin-top: 0;
      margin-bottom: 20px;
      text-align: center;
    }
    .redocean-subhead {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(17px, 2.2vw, 24px);
      color: rgba(255,255,255,0.9);
      font-weight: 400;
      line-height: 2;
      margin-bottom: 48px;
      max-width: 640px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    /* 本文＋スマホモックアップ レイアウト */
    .redocean-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 64px;
      align-items: center;
      margin-bottom: 64px;
    }

    .redocean-body-text {
      font-size: 15px;
      color: rgba(255,255,255,0.7);
      line-height: 2;
    }
    .redocean-body-text p { margin-bottom: 20px; }
    .redocean-body-text p:last-child { margin-bottom: 0; }
    .redocean-body-text strong {
      color: rgba(255,255,255,0.95);
      font-weight: 500;
    }

    /* スマホモックアップ */
    .redocean-phone {
      background: #1a1a1a;
      border-radius: 36px;
      border: 2px solid rgba(255,255,255,0.12);
      padding: 20px 16px 28px;
      box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
      position: relative;
    }
    .redocean-phone::before {
      content: '';
      display: block;
      width: 60px;
      height: 6px;
      background: rgba(255,255,255,0.15);
      border-radius: 3px;
      margin: 0 auto 16px;
    }

    /* 検索バー */
    .phone-search-bar {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }
    .phone-search-bar .search-icon {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
    }
    .phone-search-text {
      font-size: 13px;
      color: rgba(255,255,255,0.85);
      font-family: 'Noto Sans JP', sans-serif;
    }
    .phone-search-text em {
      color: #C5D9FF;
      font-style: normal;
      font-weight: 500;
    }

    /* タブ */
    .phone-tabs {
      display: flex;
      gap: 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 14px;
    }
    .phone-tab {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      padding: 6px 14px;
      font-family: 'Noto Sans JP', sans-serif;
      cursor: default;
    }
    .phone-tab.active {
      color: #fff;
      border-bottom: 2px solid #fff;
      margin-bottom: -1px;
    }

    /* 検索結果リスト */
    .phone-result-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 4px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .phone-result-item:last-child { border-bottom: none; }
    .result-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #a8c4a0 0%, #d4b0a8 100%);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }
    .result-info { flex: 1; min-width: 0; }
    .result-name {
      font-size: 12px;
      color: rgba(255,255,255,0.9);
      font-family: 'Noto Sans JP', sans-serif;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .result-tag {
      font-size: 10px;
      color: rgba(255,255,255,0.4);
      font-family: 'Noto Sans JP', sans-serif;
    }
    .result-follow-btn {
      font-size: 10px;
      color: #7AB8F5;
      border: 1px solid rgba(122,184,245,0.4);
      border-radius: 5px;
      padding: 3px 10px;
      white-space: nowrap;
    }

    /* C案：番号付きエレガントスタイル */
    .redocean-pain-grid {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 40px;
    }
    .pain-quote {
      display: flex;
      gap: 28px;
      align-items: flex-start;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      position: relative;
    }
    .pain-quote:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
    /* 番号 */
    .pain-quote-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px;
      font-weight: 300;
      color: rgba(220,80,80,0.6);
      line-height: 1;
      flex-shrink: 0;
      width: 48px;
      padding-top: 2px;
      transition: color 0.4s ease;
    }
    .pain-quote.ro-pain-in .pain-quote-num {
      color: #E07070;
    }
    /* 縦ライン */
    .pain-quote-line {
      width: 1px;
      align-self: stretch;
      background: linear-gradient(to bottom, rgba(220,80,80,0.6), rgba(220,80,80,0.1));
      flex-shrink: 0;
      opacity: 0;
      transition: opacity 0.6s ease 0.3s;
    }
    .pain-quote.ro-pain-in .pain-quote-line { opacity: 1; }
    /* テキスト */
    .pain-quote p {
      font-family: 'Noto Serif JP', serif;
      font-size: 15px;
      color: rgba(255,255,255,0.75);
      line-height: 2;
      font-weight: 300;
      padding-top: 6px;
    }

    /* 危険信号バナー：全幅ボーダーライン強調スタイル */
    .redocean-warning {
      border-top: 1px solid rgba(220,80,80,0.3);
      border-bottom: 1px solid rgba(220,80,80,0.3);
      padding: 32px 0;
      margin-bottom: 0;
      display: flex;
      align-items: flex-start;
      gap: 24px;
      position: relative;
    }
    .warning-icon {
      font-size: 20px;
      flex-shrink: 0;
      line-height: 1;
      padding-top: 3px;
    }
    .warning-text {
      font-size: 14px;
      color: rgba(255,255,255,0.72);
      line-height: 1.95;
    }
    .warning-text strong {
      display: block;
      font-family: 'Noto Serif JP', serif;
      font-size: 16px;
      color: #ff8080;
      font-weight: 500;
      margin-bottom: 10px;
      letter-spacing: 0.03em;
    }

    /* ブリッジ（ダーク→ライト切替エリア） */
    .redocean-bridge {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 2;
    }
    .bridge-headline {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(20px, 3vw, 34px);
      font-weight: 400;
      color: var(--color-text);
      line-height: 1.7;
      letter-spacing: 0.04em;
      margin-bottom: 32px;
    }
    .bridge-headline em {
      font-style: normal;
      color: var(--color-main);
    }
    .bridge-green-img {
      max-width: 720px;
      margin: 0 auto 40px;
    }
    .bridge-green-img img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 16px;
    }
    .bridge-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .bridge-text {
      font-size: 15px;
      color: var(--color-text-light);
      line-height: 2;
    }
    .bridge-text p { margin-bottom: 18px; }
    .bridge-text p:last-child { margin-bottom: 0; }
    .bridge-text strong { color: var(--color-text); font-weight: 500; }

    .bridge-cta-block {
      background: var(--bg-secondary);
      border-radius: 16px;
      padding: 36px 32px;
      border: 1px solid var(--color-border);
    }
    .bridge-cta-block .bridge-cta-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.3em;
      color: var(--color-main);
      display: block;
      margin-bottom: 14px;
    }
    .bridge-cta-block p {
      font-family: 'Noto Serif JP', serif;
      font-size: 16px;
      color: var(--color-text);
      line-height: 1.9;
      margin-bottom: 20px;
    }
    .bridge-cta-highlight {
      font-family: 'Noto Serif JP', serif;
      font-size: 15px;
      color: var(--color-main);
      font-weight: 500;
      padding: 14px 18px;
      background: rgba(122,153,112,0.08);
      border-radius: 8px;
      border-left: 3px solid var(--color-main);
      line-height: 1.8;
    }

    /* ============================================
       レッドオーシャン：アニメーション
    ============================================ */

    /* 1. 背景パルス（セクション入場時） */
    .sec-redocean::after {
      content: '';
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 0;
      height: 0;
      background: radial-gradient(circle, rgba(220,60,60,0.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      transition: none;
    }
    .sec-redocean.ro-entered::after {
      animation: ro-bg-pulse 1.8s ease-out forwards;
    }
    @keyframes ro-bg-pulse {
      0%   { width: 0;     height: 0;    opacity: 1; }
      60%  { width: 1400px; height: 1400px; opacity: 0.7; }
      100% { width: 1800px; height: 1800px; opacity: 0; }
    }

    /* 2. 見出し：文字ひとつずつ飛び込み */
    .ro-char {
      display: inline-block;
      opacity: 0;
      transform: translateY(40px) rotate(6deg);
    }
    .ro-char.ro-char-in {
      animation: ro-char-fly 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    @keyframes ro-char-fly {
      to { opacity: 1; transform: translateY(0) rotate(0deg); }
    }

    /* 3. サブ見出し：左からフェードイン */
    .redocean-subhead {
      opacity: 0;
      transform: translateX(-24px);
      transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
    }
    .ro-entered .redocean-subhead {
      opacity: 1;
      transform: translateX(0);
    }

    /* 4. スマホモック：スライドイン＋スキャンライン */
    .redocean-phone {
      opacity: 0;
      transform: translateY(40px) scale(0.96);
      transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
      overflow: hidden;
    }
    .ro-entered .redocean-phone {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .redocean-phone.ro-scan::before {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      right: 0;
      height: 60%;
      background: linear-gradient(to bottom, transparent, rgba(100,180,255,0.06) 50%, transparent);
      animation: ro-scan-line 1.4s ease-in-out 1.2s 1 forwards;
      pointer-events: none;
      z-index: 10;
    }
    @keyframes ro-scan-line {
      from { top: -60%; }
      to   { top: 110%; }
    }

    /* 5. 検索結果：1件ずつスライドイン */
    .phone-result-item {
      opacity: 0;
      transform: translateX(16px);
    }
    .phone-result-item.ro-item-in {
      animation: ro-result-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    @keyframes ro-result-in {
      to { opacity: 1; transform: translateX(0); }
    }

    /* 6. 本文テキスト */
    .redocean-body-text {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
    }
    .ro-entered .redocean-body-text { opacity: 1; transform: translateY(0); }

    /* 7. 痛みの引用：1行ずつふわっと */
    .pain-quote:nth-child(1) {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
                  transform 0.65s cubic-bezier(0.22,1,0.36,1);
    }
    .pain-quote:nth-child(2) {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1) 0.25s,
                  transform 0.65s cubic-bezier(0.22,1,0.36,1) 0.25s;
    }
    .pain-quote.ro-pain-in {
      opacity: 1;
      transform: translateY(0);
    }

    /* 8. 警告バナー：入場シェイク＋常時グロー */
    .redocean-warning {
      opacity: 0;
      transform: scale(0.97);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .redocean-warning.ro-warning-in {
      opacity: 1;
      transform: scale(1);
      animation: ro-warning-glow 2.8s ease-in-out 0.8s infinite;
    }
    @keyframes ro-warning-glow {
      0%, 100% { box-shadow: none; }
      50%       { box-shadow: 0 0 28px rgba(220,80,80,0.22), inset 0 0 20px rgba(220,80,80,0.06); }
    }
    .redocean-warning.ro-shake {
      animation: ro-shake 0.5s cubic-bezier(.36,.07,.19,.97) both,
                 ro-warning-glow 2.8s ease-in-out 1.4s infinite;
    }
    @keyframes ro-shake {
      10%, 90%  { transform: translateX(-3px); }
      20%, 80%  { transform: translateX(5px); }
      30%, 50%, 70% { transform: translateX(-5px); }
      40%, 60%  { transform: translateX(5px); }
      100%      { transform: translateX(0); }
    }

    /* 9. ブリッジ見出し：ワードごとにフェードイン */
    .ro-word {
      display: inline-block;
      opacity: 0;
      transform: translateY(16px);
    }
    .ro-word.ro-word-in {
      animation: ro-word-fly 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    @keyframes ro-word-fly {
      to { opacity: 1; transform: translateY(0); }
    }

    /* 10. bridge-cta-block：右からスライドイン */
    .bridge-cta-block {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .bridge-cta-block.ro-bridge-cta-in {
      opacity: 1;
      transform: translateX(0);
    }

    /* カウンターテキスト */
    #ro-counter {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3em;
      color: #E07070;
      letter-spacing: 0.02em;
    }

    /* レスポンシブ */
    @media (max-width: 900px) {
      .redocean-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .redocean-pain-grid {
        grid-template-columns: 1fr;
      }
      .bridge-body {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    /* ============================================
       セクション02 - 市場の変化
    ============================================ */
    .sec-market {
      padding: 100px 0;
      background: var(--bg-dark);
      overflow: hidden;
      position: relative;
    }
    .sec-market::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('./care-lp/care-sozai/care-haikei5.png') center / cover no-repeat;
      opacity: 0.45;
      mix-blend-mode: overlay;
      pointer-events: none;
      z-index: 0;
    }
    .sec-market .market-inner {
      position: relative;
      z-index: 1;
    }

    .market-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .market-text .section-label { color: var(--color-sub); }
    .market-text .section-title { color: #fff; }
    .market-text .divider { background: var(--color-sub); }
    .market-text .section-lead { color: rgba(255,255,255,0.7); max-width: 100%; }

    .market-stat-block {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .stat-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 58px;
      font-weight: 300;
      color: var(--color-sub);
      line-height: 1;
      white-space: nowrap;
    }

    .stat-unit {
      font-size: 18px;
      vertical-align: super;
      font-weight: 400;
    }

    .stat-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
    }

    .stat-desc strong {
      display: block;
      font-size: 15px;
      color: rgba(255,255,255,0.9);
      font-weight: 500;
      margin-bottom: 4px;
    }

    .market-quote {
      margin-top: 32px;
      padding: 24px 28px;
      border-left: 3px solid var(--color-sub);
      background: rgba(255,255,255,0.04);
      border-radius: 0 8px 8px 0;
    }

    .market-quote p {
      font-family: 'Noto Serif JP', serif;
      font-size: 15px;
      color: rgba(255,255,255,0.8);
      line-height: 1.9;
      font-weight: 300;
    }

    /* ============================================
       セクション03 - 解決策
    ============================================ */
    .sec-solution {
      padding: 120px 0;
      background: var(--bg-primary);
      text-align: center;
    }

    .solution-heading {
      max-width: 760px;
      margin: 0 auto 70px;
    }

    .solution-flow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: 70px;
      flex-wrap: wrap;
    }

    .flow-item {
      flex: 1;
      min-width: 200px;
      max-width: 280px;
      padding: 40px 24px;
      text-align: center;
      position: relative;
    }

    /* coloskinポイントスタイル：大角丸カード */
    .flow-item {
      flex: 1;
      min-width: 200px;
      max-width: 260px;
      padding: 0;
      text-align: left;
    }

    .flow-point-card {
      background: var(--color-white);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .flow-item:hover .flow-point-card {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.13);
    }

    .flow-point-card__img {
      width: 100%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      background: var(--bg-secondary);
      position: relative;
    }

    .flow-point-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* 画像未設定時のプレースホルダー */
    .flow-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-secondary);
      color: var(--color-text-light);
      font-size: 12px;
      letter-spacing: 0.1em;
      position: absolute;
      inset: 0;
    }

    .flow-point-card__body {
      padding: 18px 20px 22px;
    }

    .flow-point-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      letter-spacing: 0.15em;
      color: var(--color-sub);
      margin-bottom: 2px;
      display: block;
    }

    .flow-point-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 400;
      color: var(--color-main);
      line-height: 1;
      margin-bottom: 6px;
    }

    .flow-point-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--color-text);
      line-height: 1.6;
    }

    .flow-arrow {
      font-size: 24px;
      color: var(--color-border);
      padding: 0 8px;
      flex-shrink: 0;
    }

    .flow-label {
      font-family: 'Noto Serif JP', serif;
      font-size: 16px;
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 10px;
    }

    .flow-desc {
      font-size: 13px;
      color: var(--color-text-light);
      line-height: 1.7;
    }

    .solution-result {
      background: var(--bg-secondary);
      border-radius: 20px;
      padding: 60px;
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .result-item {
      text-align: center;
    }

    .result-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      font-weight: 300;
      color: var(--color-main);
      line-height: 1;
      margin-bottom: 8px;
    }

    .result-number span {
      font-size: 24px;
      vertical-align: super;
    }

    .result-label {
      font-size: 13px;
      color: var(--color-text-light);
      line-height: 1.6;
    }

    .result-divider {
      width: 1px;
      background: var(--color-border);
      margin: 20px 0;
    }

    /* ============================================
       セクション04 - 商品紹介
    ============================================ */
    .sec-product {
      padding: 120px 0;
      background: var(--bg-secondary);
    }

    .product-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .product-visual {
      position: relative;
    }

    .product-main-img {
      width: 100%;
      aspect-ratio: 3/4;
      background: linear-gradient(160deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .product-main-img::before {
      content: 'RUBISH';
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      color: var(--color-border);
      opacity: 0.4;
      letter-spacing: 0.1em;
    }

    .product-badge {
      position: absolute;
      top: 24px;
      right: -16px;
      z-index: 2;
      background: var(--color-main);
      color: #fff;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      text-align: center;
      line-height: 1.4;
      letter-spacing: 0.03em;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .product-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
    }

    .feature-row {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--color-border);
    }
    .feature-row:last-child { border-bottom: none; }

    .feature-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 300;
      color: var(--number-color);
      line-height: 1;
      flex-shrink: 0;
      min-width: 44px;
    }

    .feature-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 6px;
      letter-spacing: 0.04em;
    }

    .feature-desc {
      font-size: 13px;
      color: var(--color-text-light);
      line-height: 1.75;
    }

    /* ============================================
       セクション04-B - LED美肌メカニズム
    ============================================ */
    .sec-led {
      padding: 120px 0;
      background: #fdf6f6;   /* 極わずかに赤みを帯びた明るいホワイト */
      position: relative;
      overflow: hidden;
    }
    /* 赤いグロー：左上・右下にやわらかく */
    .sec-led::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 50% at 0% 0%,   rgba(220,30,30,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 45% at 100% 100%, rgba(200,20,60,0.05) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }
    /* テックグリッドライン（ライト版：極薄） */
    .sec-led::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(rgba(180,30,30,0.025) 0px, rgba(180,30,30,0.025) 1px, transparent 1px, transparent 44px),
        repeating-linear-gradient(90deg, rgba(180,30,30,0.025) 0px, rgba(180,30,30,0.025) 1px, transparent 1px, transparent 44px);
      pointer-events: none; z-index: 0;
    }
    .led-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 1;
    }
    .led-heading {
      text-align: center;
      margin-bottom: 72px;
    }
    /* 波長バッジ */
    .wavelength-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(220,80,80,0.1);
      border: 1px solid rgba(220,80,80,0.25);
      border-radius: 100px;
      padding: 8px 22px;
      margin-bottom: 20px;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.25em;
      color: #ff9090;
    }
    .wavelength-dot {
      width: 9px; height: 9px;
      background: #E07070;
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(220,80,80,0.6);
      animation: wl-dot-pulse 2s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes wl-dot-pulse {
      0%, 100% { box-shadow: 0 0 4px rgba(220,80,80,0.4); }
      50%       { box-shadow: 0 0 14px rgba(220,80,80,0.9); }
    }

    /* メインレイアウト */
    .led-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-bottom: 72px;
    }

    /* ── 左：動画 ── */
    .led-video-wrap {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(200,30,30,0.15);
    }
    .led-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── 左：ダイアグラム（使用しない場合の残骸を保持） ── */
    .led-diagram {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    /* デバイス本体 */
    .led-device-body {
      width: 220px;
      background: linear-gradient(160deg, #1e0e0e 0%, #0f0505 100%);
      border-radius: 14px 14px 8px 8px;
      padding: 16px 24px 20px;
      border: 1px solid rgba(220,60,60,0.35);
      box-shadow: 0 8px 40px rgba(0,0,0,0.7), 0 0 24px rgba(200,30,30,0.2), 0 0 0 1px rgba(220,60,60,0.15);
    }
    .led-device-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 8px;
      letter-spacing: 0.28em;
      color: rgba(255,255,255,0.35);
      text-align: center;
      margin-bottom: 12px;
    }
    .led-dots-row {
      display: flex;
      justify-content: center;
      gap: 7px;
    }
    .led-dot {
      width: 10px; height: 10px;
      background: #cc2222;
      border-radius: 50%;
      animation: led-dot-blink 1.4s ease-in-out infinite;
    }
    .led-dot:nth-child(1) { animation-delay: 0s; }
    .led-dot:nth-child(2) { animation-delay: 0.12s; background: #dd3333; }
    .led-dot:nth-child(3) { animation-delay: 0.24s; background: #ee4444; }
    .led-dot:nth-child(4) { animation-delay: 0.36s; background: #ee4444; }
    .led-dot:nth-child(5) { animation-delay: 0.24s; background: #dd3333; }
    .led-dot:nth-child(6) { animation-delay: 0.12s; }
    .led-dot:nth-child(7) { animation-delay: 0s; }
    @keyframes led-dot-blink {
      0%, 100% { opacity: 0.5;  box-shadow: 0 0 4px rgba(220,30,30,0.5); }
      50%       { opacity: 1;   box-shadow: 0 0 14px 4px rgba(255,40,40,1), 0 0 28px 8px rgba(220,20,20,0.5); }
    }

    /* 光線 */
    .led-rays-wrap {
      position: relative;
      width: 220px;
      height: 76px;
    }
    .led-ray {
      position: absolute;
      top: 0;
      left: 50%;
      width: 1.5px;
      transform-origin: top center;
      background: linear-gradient(to bottom, rgba(255,60,60,0.9), rgba(255,100,100,0));
      animation: led-ray-blink 1.4s ease-in-out infinite;
    }
    .led-ray:nth-child(1) { height: 82px; transform: translateX(-50%) rotate(-32deg); animation-delay: 0s; }
    .led-ray:nth-child(2) { height: 86px; transform: translateX(-50%) rotate(-20deg); animation-delay: 0.1s; }
    .led-ray:nth-child(3) { height: 88px; transform: translateX(-50%) rotate(-10deg); animation-delay: 0.2s; }
    .led-ray:nth-child(4) { height: 90px; transform: translateX(-50%) rotate(0deg);   animation-delay: 0.28s; }
    .led-ray:nth-child(5) { height: 88px; transform: translateX(-50%) rotate(10deg);  animation-delay: 0.2s; }
    .led-ray:nth-child(6) { height: 86px; transform: translateX(-50%) rotate(20deg);  animation-delay: 0.1s; }
    .led-ray:nth-child(7) { height: 82px; transform: translateX(-50%) rotate(32deg);  animation-delay: 0s; }
    @keyframes led-ray-blink {
      0%, 100% { opacity: 0.35; }
      50%       { opacity: 1; }
    }

    /* 皮膚断面図 */
    .skin-diagram {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(200,40,40,0.35);
      box-shadow: 0 0 20px rgba(180,20,20,0.15);
    }
    .skin-layer {
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(180,20,20,0.25);
      position: relative;
      overflow: hidden;
    }
    .skin-layer-epidermis { background: #1e0808; }
    .skin-layer-dermis    { background: #160606; padding: 18px 20px; }
    .skin-layer-sub       { background: #0e0404; border-bottom: none; }

    /* 光の浸透スイープ */
    .skin-light-sweep {
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 0;
      background: linear-gradient(to right, rgba(255,60,60,0.35), rgba(255,100,100,0.1), transparent);
      transition: width 1.8s ease;
    }
    .led-section-active .skin-layer-epidermis .skin-light-sweep { width: 100%; transition-delay: 0.2s; }
    .led-section-active .skin-layer-dermis    .skin-light-sweep { width: 100%; transition-delay: 0.5s; }
    .led-section-active .skin-layer-sub       .skin-light-sweep { width: 50%;  transition-delay: 0.9s; }

    .skin-layer-name {
      font-size: 12px; font-weight: 600;
      color: rgba(255,255,255,0.85);
      font-family: 'Noto Sans JP';
      letter-spacing: 0.08em;
      position: relative; z-index: 1;
    }
    .skin-depth-badge {
      font-family: 'Montserrat', sans-serif;
      font-size: 9px; letter-spacing: 0.1em;
      color: rgba(255,255,255,0.35);
      position: relative; z-index: 1;
    }
    .skin-layer-sub-name {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      position: relative; z-index: 1;
    }
    .skin-dermis-detail { position: relative; z-index: 1; }
    .skin-dermis-label  { font-size: 11px; color: #ff9a9a; font-family: 'Noto Sans JP'; margin-bottom: 6px; }
    .skin-collagen-bar  { height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; width: 130px; }
    .skin-collagen-fill {
      height: 100%; width: 0;
      background: linear-gradient(to right, #cc2020, #ff6060, #ffb0a0);
      border-radius: 3px;
      transition: width 2s ease;
      box-shadow: 0 0 8px rgba(220,40,40,0.6);
    }
    .led-section-active .skin-collagen-fill { width: 82%; transition-delay: 1.0s; }

    /* ── 右：ステップ説明 ── */
    .led-steps { padding-top: 4px; }
    .led-step {
      display: flex;
      gap: 18px;
      padding: 22px 0;
      border-bottom: 1px solid rgba(200,40,40,0.18);
      opacity: 0;
      transform: translateX(24px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .led-step:last-child { border-bottom: none; }
    .led-step.led-step-in { opacity: 1; transform: translateX(0); }

    .led-step-num {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(220,80,80,0.5);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px; color: #E07070;
    }
    .led-step-tag {
      display: inline-block;
      background: rgba(220,80,80,0.12);
      border-radius: 4px;
      padding: 2px 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 9px; letter-spacing: 0.18em;
      color: #ff9090; margin-bottom: 6px;
    }
    .led-step-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 16px; font-weight: 500;
      color: var(--color-text); margin-bottom: 6px;
    }
    .led-step-desc {
      font-size: 13px;
      color: var(--color-text-light);
      line-height: 1.85;
    }

    /* 効果カード */
    .led-effects-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .led-effect-card {
      background: #fff;
      border: 1px solid rgba(200,40,40,0.18);
      border-radius: 16px;
      padding: 28px 20px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s, box-shadow 0.3s;
      box-shadow: 0 2px 16px rgba(200,40,40,0.07);
    }
    .led-effect-card.led-card-in { opacity: 1; transform: translateY(0); }
    .led-effect-card:hover {
      background: #fff8f8;
      box-shadow: 0 8px 32px rgba(200,30,30,0.14);
      transform: translateY(-4px);
    }
    .led-effect-card.led-card-in:hover { transform: translateY(-4px); }
    .led-effect-card::before {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%; height: 2px;
      background: linear-gradient(to right, transparent, #ff3030, #ff6060, transparent);
      box-shadow: 0 0 8px rgba(255,40,40,0.6);
    }
    .led-effect-icon  { font-size: 30px; margin-bottom: 14px; display: block; }
    .led-effect-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 14px; font-weight: 500;
      color: var(--color-text); margin-bottom: 10px; line-height: 1.6;
    }
    .led-effect-desc {
      font-size: 12px;
      color: var(--color-text-light);
      line-height: 1.85;
    }

    .led-kouka-img {
      max-width: 900px;
      margin: 0 auto;
    }
    .led-kouka-img img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 16px;
    }

    @media (max-width: 900px) {
      .led-layout { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ============================================
       セクション05 - ルビッシュの仕組み（HOW IT WORKS）
    ============================================ */
    .sec-howto {
      padding: 120px 0;
      background: var(--bg-primary);
      overflow: hidden;
    }

    .howto-heading {
      text-align: center;
      margin-bottom: 80px;
    }

    .step-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 860px;
      margin: 0 auto;
      position: relative;
    }

    .step-list::before {
      content: '';
      position: absolute;
      left: 35px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--color-main), var(--color-border));
    }

    .step-item {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      padding: 40px 0;
      position: relative;
    }

    .step-item:not(:last-child) {
      border-bottom: 1px solid var(--color-border);
    }

    .step-num-wrap {
      flex-shrink: 0;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--color-main);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: #fff;
    }

    .step-content { padding-top: 14px; }

    .step-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 10px;
      letter-spacing: 0.04em;
    }

    .step-desc {
      font-size: 14px;
      color: var(--color-text-light);
      line-height: 1.85;
      max-width: 560px;
    }

    .step-highlight {
      display: inline-block;
      background: var(--tag-bg);
      color: var(--tag-color);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 4px;
      margin-top: 12px;
    }

    /* ============================================
       セクション06 - 差別化の鍵
    ============================================ */
    .sec-difference {
      padding: 120px 0;
      background: var(--bg-dark);
      overflow: hidden;
    }

    .difference-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .difference-heading {
      text-align: center;
      margin-bottom: 70px;
    }
    .difference-heading .section-label { color: var(--color-sub); }
    .difference-heading .section-title { color: #fff; }
    .difference-heading .divider { background: var(--color-sub); }

    .diff-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .diff-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 0;
      text-align: left;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .diff-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--color-main);
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .diff-card:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-8px);
    }

    .diff-card:hover::before { transform: scaleX(1); }

    /* A案：カード上部フルブリード画像 */
    .diff-card-img {
      width: 100%;
      aspect-ratio: 3 / 2;
      overflow: hidden;
      position: relative;
      background: rgba(255,255,255,0.05);
      border-radius: 16px 16px 0 0;
    }

    .diff-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .diff-card:hover .diff-card-img img {
      transform: scale(1.04);
    }

    .diff-card-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.25);
      font-size: 12px;
      letter-spacing: 0.15em;
    }

    .diff-card-body {
      padding: 28px 28px 32px;
    }

    .diff-card-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: 0.04em;
    }

    .diff-card-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      line-height: 1.8;
    }

    /* 比較表 */
    .compare-table-wrap {
      margin-top: 70px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
    }

    .compare-table th {
      padding: 18px 24px;
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
    }

    .compare-table th:first-child {
      text-align: left;
      color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.03);
    }

    .compare-table th:nth-child(2) {
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.7);
    }

    .compare-table th:nth-child(3) {
      background: var(--color-main);
      color: #fff;
    }

    .compare-table td {
      padding: 16px 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      font-size: 13px;
      text-align: center;
    }

    .compare-table td:first-child {
      text-align: left;
      color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.03);
    }

    .compare-table td:nth-child(2) {
      color: rgba(255,255,255,0.4);
      background: rgba(255,255,255,0.02);
    }

    .compare-table td:nth-child(3) {
      color: rgba(255,255,255,0.9);
      background: rgba(184,43,26,0.08);
    }

    .icon-check { color: #5CB85C; font-size: 18px; }
    .icon-cross { color: rgba(255,255,255,0.25); font-size: 18px; }
    .icon-tri { color: #F0AD4E; font-size: 16px; }

    /* ============================================
       セクション07 - 導入事例
    ============================================ */
    .sec-cases {
      padding: 120px 0;
      background: var(--bg-secondary);
    }

    .cases-heading {
      text-align: center;
      margin-bottom: 70px;
    }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .case-card {
      background: var(--bg-primary);
      border-radius: 16px;
      padding: 36px;
      border: 1px solid var(--color-border);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .case-card::before {
      content: '"';
      position: absolute;
      top: 16px;
      right: 24px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      color: var(--color-border);
      line-height: 1;
    }

    .case-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.1);
      border-color: var(--color-main);
    }

    .case-tag {
      display: inline-block;
      background: var(--tag-bg);
      color: var(--tag-color);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 4px;
      letter-spacing: 0.05em;
      margin-bottom: 14px;
    }

    .case-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 17px;
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 12px;
      letter-spacing: 0.03em;
    }

    .case-text {
      font-size: 13px;
      color: var(--color-text-light);
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .case-result {
      display: flex;
      gap: 16px;
    }

    .case-metric {
      text-align: center;
    }

    .case-metric-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 300;
      color: var(--color-main);
      line-height: 1;
    }

    .case-metric-num sub {
      font-size: 14px;
      vertical-align: baseline;
    }

    .case-metric-label {
      font-size: 11px;
      color: var(--color-text-light);
      margin-top: 4px;
    }

    /* ============================================
       ギャラリーマーキー
    ============================================ */
    .sec-gallery {
      padding: 60px 0;
      background: var(--bg-secondary);
      overflow: hidden;
    }
    .gallery-scroll {
      overflow: hidden;
      width: 100%;
    }
    .gallery-track {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: gallery-marquee 45s linear infinite;
    }
    .gallery-scroll:hover .gallery-track {
      animation-play-state: paused;
    }
    @keyframes gallery-marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .gallery-item {
      flex-shrink: 0;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--color-border);
    }
    .gallery-item:nth-child(odd)  { width: 180px; height: 220px; background: var(--bg-accent); }
    .gallery-item:nth-child(even) { width: 180px; height: 180px; background: var(--bg-secondary); }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      cursor: zoom-in;
    }

    /* ライトボックスモーダル */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .lightbox-overlay.is-open {
      display: flex;
    }
    .lightbox-img-wrap {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      animation: lightbox-in 0.25s ease;
    }
    @keyframes lightbox-in {
      from { opacity: 0; transform: scale(0.92); }
      to   { opacity: 1; transform: scale(1); }
    }
    .lightbox-img-wrap img {
      display: block;
      max-width: 90vw;
      max-height: 90vh;
      width: auto;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.6);
      object-fit: contain;
    }
    .lightbox-close {
      position: absolute;
      top: -40px;
      right: 0;
      background: none;
      border: none;
      color: #fff;
      font-size: 32px;
      line-height: 1;
      cursor: pointer;
      opacity: 0.8;
      transition: opacity 0.2s;
    }
    .lightbox-close:hover { opacity: 1; }
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.15);
      border: none;
      color: #fff;
      font-size: 28px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .lightbox-nav:hover { background: rgba(255,255,255,0.3); }
    .lightbox-prev { left: -64px; }
    .lightbox-next { right: -64px; }

    /* ============================================
       セクション08 - 数字で見るメリット
    ============================================ */
    .sec-numbers {
      padding: 100px 0;
      background: var(--color-main);
      overflow: hidden;
    }

    .numbers-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .numbers-heading {
      text-align: center;
      margin-bottom: 60px;
    }

    .numbers-heading .section-label { color: rgba(255,255,255,0.7); }
    .numbers-heading .section-title { color: #fff; }
    .numbers-heading .divider { background: rgba(255,255,255,0.4); margin: 20px auto; }

    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: rgba(255,255,255,0.15);
      border-radius: 16px;
      overflow: hidden;
    }

    .number-item {
      background: var(--color-main);
      padding: 48px 24px;
      text-align: center;
      transition: background 0.3s;
    }

    .number-item:hover { background: var(--btn-hover); }

    .number-fig {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(48px, 5vw, 72px);
      font-weight: 300;
      color: #fff;
      line-height: 1;
      margin-bottom: 10px;
    }

    .number-fig sup, .number-fig sub {
      font-size: 0.45em;
    }

    .number-caption {
      font-size: 13px;
      color: rgba(255,255,255,0.75);
      line-height: 1.6;
    }

    /* ============================================
       セクション09 - FAQ
    ============================================ */
    .sec-faq {
      padding: 120px 0;
      background: var(--bg-primary);
    }

    .faq-heading {
      text-align: center;
      margin-bottom: 70px;
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--color-border);
      overflow: hidden;
    }

    .faq-question {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 24px 0;
      cursor: pointer;
      transition: color 0.3s;
    }

    .faq-question:hover { color: var(--color-main); }

    .faq-q-mark {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--color-main);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-weight: 500;
      flex-shrink: 0;
    }

    .faq-q-text {
      flex: 1;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.03em;
    }

    .faq-toggle {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      position: relative;
    }

    .faq-toggle::before,
    .faq-toggle::after {
      content: '';
      position: absolute;
      background: var(--color-main);
      border-radius: 2px;
      transition: transform 0.3s;
    }

    .faq-toggle::before {
      width: 16px;
      height: 2px;
      top: 11px;
      left: 4px;
    }

    .faq-toggle::after {
      width: 2px;
      height: 16px;
      top: 4px;
      left: 11px;
    }

    .faq-item.open .faq-toggle::after { transform: rotate(90deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-item.open .faq-answer { max-height: 300px; }

    .faq-answer-inner {
      padding: 0 0 24px 48px;
      font-size: 14px;
      color: var(--color-text-light);
      line-height: 1.85;
    }

    /* ============================================
       セクション10 - For Professionals Only
    ============================================ */
    .sec-professionals {
      padding: 120px 0;
      background: var(--bg-dark);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .sec-professionals::before {
      content: 'RUBISH';
      position: absolute;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(100px, 18vw, 240px);
      color: rgba(255,255,255,0.02);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: 0.15em;
    }
    .pro-inner {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 40px;
      position: relative;
      z-index: 1;
    }
    .pro-tag {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.4em;
      color: var(--color-sub);
      border: 1px solid rgba(212,176,168,0.4);
      padding: 6px 20px; border-radius: 4px;
      margin-bottom: 36px;
    }
    .pro-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 400; color: #fff;
      line-height: 1.6; letter-spacing: 0.04em;
      margin-bottom: 16px;
    }
    .pro-title em { font-style: normal; color: var(--color-sub); }
    .pro-subtitle {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; letter-spacing: 0.3em;
      color: rgba(255,255,255,0.35);
      margin-bottom: 36px;
    }
    .pro-ornament {
      display: flex; align-items: center; justify-content: center;
      gap: 14px; margin-bottom: 36px;
    }
    .pro-ornament-line { width: 60px; height: 1px; background: rgba(212,176,168,0.3); }
    .pro-ornament-dot  { width: 5px; height: 5px; background: var(--color-sub); border-radius: 50%; }
    .pro-lead {
      font-family: 'Noto Serif JP', serif;
      font-size: 15px; color: rgba(255,255,255,0.65);
      line-height: 2.1; margin-bottom: 72px;
    }
    /* 4項目リスト */
    .pro-list {
      max-width: 640px;
      margin: 0 auto 60px;
      text-align: left;
    }
    .pro-item {
      display: flex; gap: 28px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      align-items: flex-start;
    }
    .pro-item:last-child { border-bottom: none; padding-bottom: 0; }
    .pro-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px; font-weight: 300;
      color: var(--color-sub); line-height: 1;
      flex-shrink: 0; padding-top: 4px; width: 44px;
    }
    .pro-item-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 17px; font-weight: 500;
      color: #fff; margin-bottom: 8px;
    }
    .pro-item-text {
      font-size: 14px;
      color: rgba(255,255,255,0.58);
      line-height: 1.9;
    }
    /* サポート画像 */
    .pro-testimonial {
      max-width: 640px; margin: 0 auto 52px;
    }
    .pro-testimonial img { width: 100%; height: auto; display: block; border-radius: 12px; }
    /* Zoomボタン */
    .btn-zoom-wrap {
      display: block; max-width: 480px; margin: 0 auto;
      text-decoration: none;
    }
    .btn-zoom {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      width: 100%; padding: 20px 32px;
      background: var(--color-main); color: #fff;
      border: none; border-radius: 12px;
      font-family: 'Noto Sans JP'; font-size: 16px; font-weight: 700;
      letter-spacing: 0.05em; cursor: pointer;
      transition: background 0.3s, transform 0.25s;
      box-shadow: 0 6px 24px rgba(122,153,112,0.35);
    }
    .btn-zoom:hover { background: var(--btn-hover); transform: translateY(-3px); }
    .btn-zoom small {
      font-size: 11px; font-weight: 300;
      opacity: 0.75; letter-spacing: 0.3px; margin-top: 5px;
    }

    /* ============================================
       セクション11 - 最終CTA
    ============================================ */
    .sec-final-cta {
      padding: 120px 0;
      background: var(--bg-primary);
      text-align: center;
    }
    .final-cta-inner {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .final-cta-eyebrow {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.4em; color: var(--color-main);
      display: block; margin-bottom: 24px;
    }
    .final-cta-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(24px, 4vw, 42px);
      font-weight: 400; color: var(--color-text);
      line-height: 1.65; margin-bottom: 24px;
    }
    .final-cta-title em     { font-style: normal; color: var(--color-main); }
    .final-cta-title strong { font-weight: 600; }
    .final-cta-desc {
      font-size: 15px; color: var(--color-text-light);
      line-height: 1.9; margin-bottom: 52px;
    }
    /* ボタン群 */
    .final-cta-buttons {
      display: flex; flex-direction: column;
      gap: 14px; max-width: 480px;
      margin: 0 auto 80px;
    }
    .btn-final-zoom {
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      padding: 20px 28px;
      background: var(--color-main); color: #fff;
      border: none; border-radius: 12px;
      font-family: 'Noto Sans JP'; font-size: 15px; font-weight: 700;
      text-decoration: none; cursor: pointer;
      transition: background 0.3s, transform 0.25s;
      box-shadow: 0 6px 24px rgba(122,153,112,0.3);
    }
    .btn-final-zoom:hover { background: var(--btn-hover); transform: translateY(-3px); }
    .btn-final-zoom small {
      font-size: 11px; font-weight: 300;
      opacity: 0.75; letter-spacing: 0.3px; margin-top: 4px;
    }
    .btn-final-insta {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; padding: 17px 28px;
      background: transparent;
      color: var(--color-text);
      border: 1px solid var(--color-border);
      border-radius: 12px;
      font-family: 'Noto Sans JP'; font-size: 14px; font-weight: 500;
      text-decoration: none; cursor: pointer;
      transition: border-color 0.3s, background 0.3s, transform 0.25s;
    }
    .btn-final-insta:hover {
      border-color: var(--color-main);
      background: rgba(122,153,112,0.05);
      transform: translateY(-2px);
    }
    .btn-final-outline {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; padding: 17px 28px;
      background: transparent;
      color: var(--color-text-light);
      border: 1px solid var(--color-border);
      border-radius: 12px;
      font-family: 'Noto Sans JP'; font-size: 14px;
      text-decoration: none; cursor: pointer;
      transition: border-color 0.3s, transform 0.25s;
    }
    .btn-final-outline:hover { border-color: var(--color-text-light); transform: translateY(-2px); }
    /* スペックテーブル */
    .specs-section {
      max-width: 640px; margin: 0 auto 80px;
      text-align: left;
    }
    .specs-eyebrow {
      font-family: 'Montserrat'; font-size: 10px; font-weight: 600;
      letter-spacing: 0.35em; color: var(--color-main);
      display: block; text-align: center; margin-bottom: 8px;
    }
    .specs-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px; font-weight: 500;
      color: var(--color-text);
      text-align: center; margin-bottom: 28px; letter-spacing: 0.05em;
    }
    .specs-table {
      width: 100%; border-collapse: collapse;
      background: var(--bg-secondary);
      border-radius: 12px; overflow: hidden;
    }
    .specs-table td {
      padding: 14px 20px;
      font-size: 14px; color: var(--color-text);
      border-bottom: 1px solid var(--color-border);
      line-height: 1.85; vertical-align: top;
    }
    .specs-table td:first-child {
      width: 28%;
      color: var(--color-text-light);
      font-weight: 500;
      white-space: nowrap;
      background: rgba(0,0,0,0.02);
    }
    .specs-table tr:last-child td { border-bottom: none; }
    .specs-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 600;
      color: var(--color-main); letter-spacing: 0.03em;
    }
    .specs-badge {
      display: inline-block; margin-top: 6px;
      padding: 5px 12px;
      background: var(--color-main); border-radius: 4px;
      font-size: 11px; font-weight: 500;
      color: #fff; line-height: 1.5;
    }
    /* ラストビジュアル */
    .final-visual {
      max-width: 480px; margin: 0 auto;
      position: relative;
    }
    .final-visual img { width: 100%; height: auto; display: block; border-radius: 16px; }
    .final-visual-caption {
      position: absolute; bottom: 16px; left: 0; right: 0;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic; font-size: 14px;
      letter-spacing: 2px; color: rgba(255,255,255,0.45);
      text-align: center;
    }

    /* ============================================
       フッター
    ============================================ */
    footer {
      background: #0E0806;
      padding: 60px 0 100px; /* スティッキーバー分の余白 */
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 300;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.2em;
      margin-bottom: 12px;
    }

    .footer-tagline {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.08em;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .footer-link-group h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.5);
      margin-bottom: 16px;
    }

    .footer-link-group a {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,0.35);
      margin-bottom: 10px;
      transition: color 0.3s;
    }

    .footer-link-group a:hover { color: rgba(255,255,255,0.7); }

    .footer-legal-note {
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding-bottom: 28px;
      margin-bottom: 40px;
    }
    .footer-legal-note p {
      font-size: 11px;
      color: rgba(255,255,255,0.28);
      line-height: 1.85;
      margin-bottom: 6px;
      letter-spacing: 0.03em;
    }
    .footer-legal-note p:last-child { margin-bottom: 0; }

    .footer-bottom {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .footer-company-info {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.05em;
    }

    .footer-copy {
      font-size: 11px;
      color: rgba(255,255,255,0.2);
      letter-spacing: 0.05em;
    }

    /* ============================================
       スティッキーバー
    ============================================ */
    .sticky-bar {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      display: flex;
      z-index: 2000;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
    }
    .sticky-bar a {
      text-decoration: none;
      display: flex;
      flex: 1;
    }
    .sticky-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      width: 100%;
      padding: 8px 12px;
      border: none;
      cursor: pointer;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1.3;
      transition: filter 0.2s;
    }
    .sticky-btn:hover { filter: brightness(1.08); }
    .sticky-btn svg { width: 16px; height: 16px; margin-bottom: 1px; }
    .sticky-btn span { font-size: 8px; font-weight: 300; opacity: 0.8; letter-spacing: 0.3px; }
    /* LINE：セージグリーン */
    .sticky-btn-line {
      background: linear-gradient(to bottom, #8fad85 0%, #6a8a60 100%);
      color: #fff;
      flex: 0.8;
      border-top: 1px solid rgba(255,255,255,0.35);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -2px 0 rgba(0,0,0,0.15);
    }
    /* Zoom：ローズ系 */
    .sticky-btn-zoom {
      background: linear-gradient(to bottom, #dfc0b8 0%, #c09a90 100%);
      color: #fff;
      flex: 1.2;
      border-top: 1px solid rgba(255,255,255,0.35);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -2px 0 rgba(0,0,0,0.15);
    }
    .sticky-btn-line:hover  { background: linear-gradient(to bottom, #9cbd92 0%, #5f7d56 100%); }
    .sticky-btn-zoom:hover  { background: linear-gradient(to bottom, #e8ccc5 0%, #b08880 100%); }

    /* ============================================
       キーフレーム
    ============================================ */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    @keyframes scrollLine {
      0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
      50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
      51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
      100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }

    /* ============================================
       背景素材画像デコレーション
    ============================================ */

    /* sec-problem：パームリーフを右上に配置 */
    .sec-problem {
      position: relative;
      overflow: hidden;
    }
    .sec-problem::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 52%;
      height: 110%;
      background: url('./care-lp/care-sozai/care-haikei1.png') center / cover no-repeat;
      opacity: 0.14;
      pointer-events: none;
      z-index: 0;
      -webkit-mask-image:
        linear-gradient(to left,  black 30%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
      -webkit-mask-composite: destination-in;
      mask-image:
        linear-gradient(to left,  black 30%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
      mask-composite: intersect;
    }
    .sec-problem .section-inner {
      position: relative;
      z-index: 1;
    }

    /* sec-solution：枝影を左下に配置 */
    .sec-solution {
      position: relative;
      overflow: hidden;
    }
    .sec-solution::before {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -40px;
      width: 48%;
      height: 115%;
      background: url('./care-lp/care-sozai/care-haikei3.png') center / cover no-repeat;
      opacity: 0.12;
      pointer-events: none;
      z-index: 0;
      -webkit-mask-image:
        linear-gradient(to right, black 30%, transparent 100%),
        linear-gradient(to top,   black 30%, transparent 100%);
      -webkit-mask-composite: destination-in;
      mask-image:
        linear-gradient(to right, black 30%, transparent 100%),
        linear-gradient(to top,   black 30%, transparent 100%);
      mask-composite: intersect;
    }
    .sec-solution .section-inner {
      position: relative;
      z-index: 1;
    }

    /* sec-product：右上にかすみ草素材を薄く */
    .sec-product {
      position: relative;
      overflow: hidden;
    }
    .sec-product::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 55%;
      height: 100%;
      background: url('./care-lp/care-sozai/care-haikei2.png') right top / cover no-repeat;
      opacity: 0.10;
      pointer-events: none;
      z-index: 0;
      -webkit-mask-image:
        linear-gradient(to left,   black 20%, transparent 100%),
        linear-gradient(to bottom, black 60%, transparent 100%);
      -webkit-mask-composite: destination-in;
      mask-image:
        linear-gradient(to left,   black 20%, transparent 100%),
        linear-gradient(to bottom, black 60%, transparent 100%);
      mask-composite: intersect;
    }
    .sec-product .section-inner {
      position: relative;
      z-index: 1;
    }

    /* sec-howto：パーム影を全面に薄く敷く */
    .sec-howto {
      position: relative;
      overflow: hidden;
    }
    .sec-howto::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('./care-lp/care-sozai/care-haikei4.png') top center / cover no-repeat;
      opacity: 0.10;
      pointer-events: none;
      z-index: 0;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      mask-image:         linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    .sec-howto .section-inner {
      position: relative;
      z-index: 1;
    }

    /* sec-cases：かすみ草を右サイドに配置 */
    .sec-cases {
      position: relative;
      overflow: hidden;
    }
    .sec-cases::before {
      content: '';
      position: absolute;
      top: 0;
      right: -30px;
      width: 46%;
      height: 100%;
      background: url('./care-lp/care-sozai/care-haikei2.png') right top / cover no-repeat;
      opacity: 0.13;
      pointer-events: none;
      z-index: 0;
      -webkit-mask-image:
        linear-gradient(to left,   black 20%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
      -webkit-mask-composite: destination-in;
      mask-image:
        linear-gradient(to left,   black 20%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
      mask-composite: intersect;
    }
    .sec-cases .section-inner {
      position: relative;
      z-index: 1;
    }

    /* sec-faq：パームリーフを左上に薄く */
    .sec-faq {
      position: relative;
      overflow: hidden;
    }
    .sec-faq::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      left: auto;
      width: 80%;
      height: 110%;
      background: url('./care-lp/care-sozai/care-haikei1.png') center / cover no-repeat;
      opacity: 0.11;
      pointer-events: none;
      z-index: 0;
      -webkit-mask-image:
        linear-gradient(to left, black 15%, transparent 50%),
        linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
      -webkit-mask-composite: destination-in;
      mask-image:
        linear-gradient(to left, black 15%, transparent 50%),
        linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
      mask-composite: intersect;
    }
    .sec-faq .section-inner {
      position: relative;
      z-index: 1;
    }

    /* ============================================
       レスポンシブ
    ============================================ */
    @media (max-width: 900px) {
      header { padding: 16px 24px; }
      header.scrolled { padding: 12px 24px; }
      nav { display: none; }
      .hamburger { display: flex; }

      .hero-text-area { padding: 56px 0 64px; }
      .hero-scroll { display: none; }

      .problem-grid,
      .product-grid,
      .market-inner { grid-template-columns: 1fr; gap: 48px; }

      .diff-cards { grid-template-columns: 1fr; }
      .cases-grid { grid-template-columns: 1fr; }
      .numbers-grid { grid-template-columns: repeat(2, 1fr); }
      .solution-result { grid-template-columns: 1fr; padding: 40px 28px; }

      .section-inner { padding: 0 20px; }
      .difference-inner,
      .numbers-inner { padding: 0 20px; }

      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-links { grid-template-columns: repeat(2, 1fr); }

    }

    @media (max-width: 600px) {
      .hero-title { font-size: 28px; }
      .numbers-grid { grid-template-columns: repeat(2, 1fr); }
      .step-list::before { left: 27px; }
      .step-num-wrap { width: 56px; height: 56px; }
      .footer-links { grid-template-columns: 1fr; }
    }

    /* SVGアイコン */
    .svg-icon {
      width: 32px;
      height: 32px;
      stroke: var(--color-main);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }