@charset "utf-8";
.header_nav02 li.nav-top a{
    background: #9b846e;
    color: #fff;
}

.foot_nav02 .nav_top{
    background-color: #9b846e;
    color: #fff;
    transition :0.7s;
}
/* .foot_nav02 .nav_top:hover {
    opacity: 0.5;
} */
.cap{
    color: #fff;
}
.mt60{
    margin: 60px auto 0;
}
.t_center{
    text-align: center;
}

.mv_sp{
    display: none;
}

/* MV */
.mv{
    position: relative;
}

.mv_belt_bg{
    background-color: #e2e0df;
}
.mv_belt_bg .cap{
    color: #000;
}
.mv_belt_bg .com_inner{
    padding: 20px 20px 35px;
}
.mv_belt_img{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 960px;
    justify-content: space-between;
}
.mv_belt_img_01{
    max-width: 470px;
    width: 49%;
}
.mv_belt_img_01:nth-of-type(n+3){
    margin-top: 20px;
}


.top_info{
    padding-bottom: 100px;
}
.top_en{
    color: #9b846e;
    font-size: 40px;
    font-family: "Oswald";
    font-weight: 500;
    line-height: 0.9;
}
.ttl_info{
    font-size: 34px;
    letter-spacing: 0.6em;
    line-height: 2;
}
.info_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eae2c8;
    font-size: 20px;
    width: 480px;
    height: 60px;
    background-color: #6d6854;
    letter-spacing: 0.4em;
    transition: 0.7s;
}
.info_btn:hover{
    opacity: 0.5;
    transition: 0.7s;
}
.info_btn_in{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 468px;
    height: 48px;
    border: 1px solid #eae2c8;
}
.info_btn_in::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0.5%;
	width: 21px;
	height: 21px;
	background-color: #eae2c8;
	clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}


.info_lead{
    /* color: #fff; */
    text-align: center;
    font-size: 34px;
    line-height: 2;
    letter-spacing: 0.15em;
    margin-top: 30px;
    margin-bottom: 30px;
    letter-spacing: 0.4em;
}

.info_lead span{
    color: #dd0005;
    font-size: 30px;
    line-height: 1;
}



@media screen and (max-width: 1720px) {

}
@media screen and (max-width: 1200px) {

}

    
@media screen and (max-width: 1000px) {

}

@media screen and (max-width: 750px) {

    
}
@media screen and (max-width: 650px) {
.mt60{
    margin: 40px auto 0;
    font-size: 30px;
}

.mv_belt_bg .cap{
    margin-top: 30px;
}
.mv_pc{
    display: none;
}
.mv_sp{
    display: block;
}

.mv_belt_bg .com_inner{
    padding: 20px 20px 20px;
}
.mv_belt_img_01{
    max-width: 335px;
    width: 100%;
    margin: 0 auto;
}
.mv_belt_img_01:nth-of-type(n+2) {
    margin-top: 10px;
}

.ttl_info{
    font-size: 26px;
    letter-spacing: 0.6em;
    line-height: 2;
}

.info_btn{
    width: 335px;
    height: 42px;
    font-size: 16px;
}
.info_btn_in{
    width: 325px;
    height: 33px;
}
.info_btn_in::after {
	top: 47%;
	right: 0.5%;
	width: 15px;
	height: 15px;
}

.info_lead{
    font-size: 18px;
}
}

@media screen and (max-width: 500px) {

}


/* mv */
.main_visual {
    position: relative;
    width: 100%;
    /* PCの画面サイズ比率 */
    aspect-ratio: 16 / 9;
    /* max-width: 1920px; */
    margin: 0 auto;
    overflow: hidden;
    font-size: 1vw; /* PCレスポンシブ基準サイズ */

    isolation: isolate;
}

/* レイヤー共通設定（すべて絶対配置で重ねる） */
.layer_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* 下のレイヤーのクリックを妨げない */
}

/* Z-indexで重なり順を制御 */
.bg_layer { pointer-events: auto; }

.full_image {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================================
   乗算（Multiply）用クラス
========================================================= */
.mix_multiply {
    mix-blend-mode: multiply;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.bg_layer .full_image {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* ========================================================
   1. パーティクル
========================================================= */
.light_particle {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8);
    mix-blend-mode: screen;
    animation-name: particleFloat;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    20%  { opacity: 0.8; transform: translateY(-2em) scale(1); }
    100% { opacity: 0; transform: translateY(-8em) scale(0.2); }
}

/* ========================================================
   2. 物件ロゴ画像 (背景 → テキスト)
========================================================= */
/* ロゴ背景：フェードイン */
.property_logo_bg_image {
    opacity: 0;
    transition: opacity 0.8s ease 0.5s;
}
.main_visual.is_active .property_logo_bg_image {
    opacity: 1;
}

/* ロゴテキスト：背景の後に下からフワッと表示 */
.property_logo_text_image {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transform: translateY(1.5vw);
    transition: opacity 0.8s ease 1.0s, transform 0.8s ease 1.0s;
}
.main_visual.is_active .property_logo_text_image {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================
   3. 路線の白い線 (中心からマスクが広がる)
========================================================= */
.route_lines_image {
    clip-path: circle(0% at 50% 60%);
    transition: clip-path 2.0s cubic-bezier(0.65, 0, 0.15, 1) 1.2s;
}
.main_visual.is_active .route_lines_image {
    clip-path: circle(150% at 50% 60%);
}

/* ========================================================
   4. 地名画像 (背景 → テキスト)
========================================================= */
/* 地名背景：フェードイン */
.station_bg_image {
    opacity: 0;
    transition: opacity 0.8s ease 2.2s;
}
.main_visual.is_active .station_bg_image {
    opacity: 1;
}

/* 地名テキスト：背景の後に下からフワッと表示 */
.station_text_image {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transform: translateY(1.5vw);
    transition: opacity 0.8s ease 2.7s, transform 0.8s ease 2.7s;
}
.main_visual.is_active .station_text_image {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================
   5. メインタイトル (ブラーで表示)
========================================================= */
.main_title_image {
    filter: blur(15px);
    opacity: 0;
    transform: scale(1.03); 
    transition: filter 1.2s ease 3.2s, opacity 1.2s ease 3.2s, transform 1.2s ease 3.2s;
}
.main_visual.is_active .main_title_image {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
}

/* ========================================================
   6. 縦書きコピー (テキスト・1文字ずつ表示)
========================================================= */
.catch_copy_vert {
    position: absolute;
    top: 8%;
    right: 43%;
    writing-mode: vertical-rl;
    font-size: 1.3vw;
    color: #fff;
    letter-spacing: 0.3em;
    line-height: 1.8;
    font-family: "Noto serif", serif;
}
.catch_copy_vert span {
    display: inline-block;
    opacity: 0;
    /* vw ではなく em にすることで文字サイズ固定時に動きも崩れないようにする */
    transform: translateY(-0.5em); 
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.main_visual.is_active .catch_copy_vert span {
    opacity: 1;
    transform: translateY(0);
}

/* 4.0秒後から0.1秒間隔で順番に表示 */
.main_visual.is_active .catch_copy_vert span:nth-child(1) { transition-delay: 4.0s; }
.main_visual.is_active .catch_copy_vert span:nth-child(2) { transition-delay: 4.1s; }
.main_visual.is_active .catch_copy_vert span:nth-child(3) { transition-delay: 4.2s; }
.main_visual.is_active .catch_copy_vert span:nth-child(4) { transition-delay: 4.3s; }
.main_visual.is_active .catch_copy_vert span:nth-child(5) { transition-delay: 4.4s; }
.main_visual.is_active .catch_copy_vert span:nth-child(6) { transition-delay: 4.5s; }
.main_visual.is_active .catch_copy_vert span:nth-child(7) { transition-delay: 4.6s; }
.main_visual.is_active .catch_copy_vert span:nth-child(8) { transition-delay: 4.7s; }
.main_visual.is_active .catch_copy_vert span:nth-child(9) { transition-delay: 4.8s; }
.main_visual.is_active .catch_copy_vert span:nth-child(10) { transition-delay: 4.9s; }
.main_visual.is_active .catch_copy_vert span:nth-child(11) { transition-delay: 5.0s; }
.main_visual.is_active .catch_copy_vert span:nth-child(12) { transition-delay: 5.1s; }
.main_visual.is_active .catch_copy_vert span:nth-child(13) { transition-delay: 5.2s; }

/* ========================================================
   650px以下のスタイル調整
========================================================= */
@media screen and (max-width: 650px) {
    .main_visual {
        overflow: hidden;
        width: 1100px;
        font-size: 11px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    /* 650px以下はコンテナが1100px固定になるため、vwではなく固定pxにして伸縮を止める */
    .catch_copy_vert {
        font-size: 15.4px; /* 1100pxの1.4%に相当 */
    }
}


/* bnr_area */
.bnr_area{
    padding: 0 0 100px;
    /* background: #231815; */
}
.bnr_item{
    max-width: 675px;
    margin: 0 auto;
    width: 70%;
    transition: 0.3s;
}
.bnr_item:hover{
    opacity: 0.8;
}
.bnr_item:not(:first-of-type){
    margin-top: 80px;
}
@media screen and (max-width: 1000px) {
    .bnr_area {
        padding: 0 0 60px;
    }
    .bnr_item:not(:first-of-type) {
        margin-top: 40px;
    }
}
@media screen and (max-width: 750px) {
    .bnr_item {
        width: 100%;
        max-width: 380px;
    }
}



/*  */


.login_bg {
    background: url(../img/top/member_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 10px;
    /* margin: 0 auto 100px; */
}
.login {
    max-width: 770px;
    margin: 100px auto;
    padding: 80px 80px;
    background-color: rgb(255 255 255 / 88%);
    border-radius: 10px;
    /* box-shadow: 0px 2px 5px #7d7d7d; */
    box-sizing: border-box;
}
.login h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    color: #080808;
    letter-spacing: 2px;
}
.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.login form > p {
    width: 100%;
    margin-bottom: 20px;
    color: #000000;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0;
}
.login form #Mail_area {
    width: 70%;
    max-height: 50px;
}
#Mail_area .Inputarea {
    width: 100%;
    height: 100%;
    border-right: none;
}
#Mail_area .Inputarea input {
    height: 100%;
    padding: 10px;
    width: 100%;
    background-color: #ffffffe5;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
}
#Submit {
    width: 30%;
    max-height: 50px;
    height: 100%;
    line-height: initial;
}
#Submit input {
    height: 100%;
    padding: 10px;
    color: #fff;
    background-color: #cb3333;
    width: 100%;
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}


@media screen and (max-width: 650px){
 .login_bg{
    /* margin: 0 auto 60px; */
}


.login{
    padding: 50px 30px;
    margin: 70px auto;
}
.login h3 {
    font-size: 20px;
    line-height: 35px;
}
.login form > p {
    font-size: 13px;
}

}


