/* ===========================
   Bogo language switch reset
=========================== */


/* UL のスタイル全削除 */

.gvs-lang-switch ul.bogo-language-switcher {
    all: unset;
    display: flex;
    gap: 10px;
}


/* LI もリセット */

.gvs-lang-switch ul.bogo-language-switcher li {
    all: unset;
    list-style: none;
}


/* リンクをシンプルに */

.gvs-lang-switch a {
    all: unset;
    cursor: pointer;
    color: #333;
    font-size: 16px;
}

.gvs-lang-switch a:hover {
    text-decoration: underline;
}


/* アクティブ言語 */

.gvs-lang-switch .current a {
    font-weight: bold;
}


/* 旗アイコン非表示 */

.gvs-lang-switch .bogoflags {
    display: none !important;
}

@media only screen and (min-width: 768px) {
    .sp {
        display: none!important;
    }
}

@media only screen and (max-width: 767px) {
    .pc {
        display: none!important;
    }
}

body.gvs-no-scroll {
    overflow: hidden;
    height: 100vh;
}


/* =====================
   ヘッダー
===================== */

.gvs-header {
    width: 100%;
    height: 80px;
    background: #ECECEC;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.gvs-header-inner {
    max-width: 1006px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* 左ロゴ / 右メニュー */
    align-items: center;
    /* 上下中央揃え */
    padding: 0 20px;
}


/* ロゴ */

.gvs-logo {
    height: 32px;
    width: 376px;
    display: flex;
    align-items: center;
}

.gvs-logo a {
    display: inline-block;
}

.gvs-logo .gvs-logo-gvs {
    width: 200px;
    margin-right: 26px;
}

.gvs-logo .gvs-logo-tokyu {
    width: 150px;
}

.gvs-logo a img {
    display: block;
    width: 100%;
    height: auto;
}


/* =====================
   ハンバーガー
===================== */

.gvs-toggle {
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
}

.gvs-toggle span {
    display: block;
    width: 32px;
    height: 4px;
    background: #333;
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.gvs-toggle span:nth-child(1) {
    top: 0;
}

.gvs-toggle span:nth-child(2) {
    top: 10px;
}

.gvs-toggle span:nth-child(3) {
    top: 20px;
}


/* バツに変形 */

.gvs-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

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

.gvs-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}


/* =====================
   スライドメニュー
===================== */

.gvs-drawer {
    position: fixed;
    top: 80px;
    /* ヘッダーの下から */
    right: -400px;
    width: 400px;
    height: 100%;
    background: #ECECEC;
    padding: 40px 20px;
    transition: 0.3s;
    z-index: 1050;
    box-sizing: border-box;
}

.gvs-drawer.open {
    right: calc((100vw - 1006px) / 2);
}

@media only screen and (max-width: 1006px) {
    .gvs-drawer.open {
        right: 0;
    }
}

@media only screen and (max-width: 500px) {
    .gvs-drawer {
        right: -70%;
        width: 70%;
    }
}

.gvs-drawer ul {
    list-style: none;
    padding: 0;
}

.gvs-drawer li {
    margin-bottom: 20px;
}

.gvs-drawer li a {
    font-size: 20px;
    color: #333;
    text-decoration: none;
}

.gvs-drawer li a img {
    display: inline-block;
    margin-left: 0.5em;
}


/* =====================
   オーバーレイ
===================== */

.gvs-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* ← これ追加！ */
    transition: 0.3s;
    z-index: 1000;
}

.gvs-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* ← showになったらクリック可能 */
}


/* ============================
   メインビジュアル
============================ */

.gvs-mainvisual {
    width: 100%;
    height: calc(100vh - 180px);
    max-height: 804px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    box-sizing: border-box;
}

.gvs-mv-inner {
    max-width: 1006px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.gvs-mv-text p {
    margin: 0;
}


/* テキスト */

.mv-company {
    background-color: #292929;
    padding: 1.5em 1em;
    width: 582px;
}

.mv-company img {
    width: 95%;
}

.mv-company span {
    display: block;
    color: #fff;
    margin-top: 0.5em;
}

.gvs-mv-text h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
    background: #fff;
    padding: 20px 30px;
    display: inline-block;
}

.gvs-period {
    background: #fff;
    display: inline-block;
    padding: 8px 14px;
    margin-top: 20px;
    font-weight: 600;
}


/* エントリーボックス（右下） */

.gvs-entry-box {
    background: linear-gradient( to bottom, #DBFF00 0%, #A1FF00 52%, #73FF00 100%);
    position: fixed;
    right: 30px;
    bottom: 3em;
    /* 指定通り：下はメインビジュアル基準で -50px */
    width: 348px;
    padding: 64px 1.2em;
    border-radius: 12px;
    text-align: center;
    box-sizing: border-box;
    z-index: 50;
    background-size: cover;
    background-position: center;
}

.gvs-entry-box p {
    margin: 0;
}

.gvs-entry-box .entry-status {
    font-size: 32px;
    font-weight: 700;
}

.gvs-entry-box .entry-deadline {
    font-size: 20px;
    margin-top: 6px;
}

.gvs-entry-btn {
    margin-top: 16px;
    display: block;
    padding: 12px 22px;
    background: #292929;
    color: #fff;
    border-radius: 2em;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}

.gvs-entry-btn img {
    display: inline-block;
    margin-bottom: 6px;
    margin-left: 0.5em;
}


/* ============================
   コンテンツ
============================ */

.wrap {
    width: 100%;
}

.wrap .container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1056px;
    padding: 0 1em;
}

.container ul {
    list-style: none;
}

.yellow_tag {
    background-color: #DBFF00;
    display: inline-block;
    padding: 0.3em 1em;
    font-weight: bold;
    border-radius: 2em;
    margin-bottom: 0.8em;
}

main.gvs {
    background: #fff;
    margin-top: 80px;
}

.wrap .container h1,
.wrap .container h2 {
    color: #232323;
    font-size: 48px;
    margin: 0;
}

.wrap .container h1 span {
    font-size: 0.6em;
}

#first p {
    margin-bottom: 1.5em;
}

#first .container>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    padding: 0;
}

#first .container>ul>li {
    padding: 0;
    width: calc(100% / 3 - 0.7em);
}

#first .container>ul>li ul {
    padding-left: 1em;
    list-style-type: disc;
}

#second {
    background-color: #D9D9D9;
}

#second .container a {
    font-weight: bold;
}

#second .container>a {
    color: #2F4705;
    margin-bottom: 2em;
    display: inline-block;
    vertical-align: middle;
}

#second .arrow {
    width: 48px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 2em;
}

.container .inner_cont {
    background-color: #fff;
    border-radius: 16px;
    padding: 2em;
    margin-bottom: 3em;
}

.container .inner_cont:last-child {
    margin-bottom: 0;
}

.container .inner_cont h3 {
    font-size: 32px;
    color: #232323;
    margin-top: 0;
}

#second .container .inner_cont>div {
    margin-bottom: 2em;
}

#second .img_link_list_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    padding-left: 0;
}

#second .img_link_list_wrap li {
    width: calc(100% / 3 - 0.7em);
}

#second .img_link_list_wrap li div {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1em;
}

#second .img_link_list_wrap li div img {
    display: block;
}

#second .img_link_list_wrap li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

#second .img_link_list_wrap li a span {
    font-size: 1rem;
}

#second .text_link_list_wrap {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#second .text_link_list_wrap li {
    width: calc(50% - 10px);
    margin-bottom: 1.5em;
}

#second .text_link_list_wrap li a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#second .text_link_list_wrap li a div {
    display: flex;
    align-items: center;
}

#second .text_link_list_wrap li a span {
    display: inline-block;
}

#second .text_link_list_wrap li .yellow_tag {
    padding: 0.3em 0.8em;
    font-weight: bold;
    border-radius: 2em;
    margin-bottom: 0;
    margin-right: 1em;
    font-size: 0.8em;
}

#third {
    background: #2F4705;
}

#third h2 {
    color: #DEDEDE;
    margin-bottom: 1em;
}

#third h3 {
    text-align: center;
}

#third .expert_list_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
}

#third .expert_list_wrap li {
    text-align: center;
    width: calc(100% / 3 - 0.8em);
    margin-right: 1.2em;
    margin-bottom: 1.2em;
}

#third .expert_list_wrap li:nth-child(3n) {
    margin-right: 0;
}

#third .expert_list_wrap li .img {
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

#third .expert_list_wrap li .img::after {
    content: '';
    display: block;
    padding-top: 100%;
    width: 100%;
}

#third .expert_list_wrap li section {
    padding: 0;
}

#third .inner_cont {
    text-align: center;
}

#third .inner_cont>img {
    display: inline-block;
    max-width: 960px;
    width: 100%;
}


/* -------------------------
   アコーディオン全体
------------------------- */

.gvs-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gvs-ac-item {
    background: #F2F2F2;
    padding: 20px 25px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.gvs-ac-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


/* 左ブロック：丸 + タイトル */

.gvs-ac-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 48px;
    min-width: 48px;
    height: 48px;
    background: #ddd;
    border-radius: 50%;
}


/* タイトル */

.gvs-ac-title h3 {
    font-size: 22px;
    margin: 0 0 6px;
    font-weight: normal;
    color: #232323;
}

.gvs-ac-title p {
    margin: 0;
    font-size: 15px;
    color: #444;
}


/* 右側プラスアイコン */

.gvs-ac-toggle img {
    min-width: 40px;
    width: 40px;
    height: 40px;
    transition: .2s;
}


/* -------------------------
   開閉部分
------------------------- */


/* アコーディオン中身（最初は閉じている） */

.gvs-ac-body {
    overflow: hidden;
    height: 0;
    padding: 0 10px;
    /* 中身見えない状態の padding は0に */
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    transition: height .35s ease, padding .3s ease;
}


/* 開いた状態 */

.gvs-ac-item .gvs-ac-body {}

#entry {
    background: linear-gradient( to bottom, #DBFF00 0%, #A1FF00 52%, #73FF00 100%);
    text-align: center;
}

#entry h2 {
    color: #292929;
    font-size: 32px;
    margin: 0;
}

#entry .gvs-btn {
    background-color: #292929;
    color: #fff;
    border-radius: 2em;
    text-decoration: none;
    display: inline-block;
    margin: 2em 0;
    box-sizing: border-box;
    font-weight: bold;
    width: auto;
}

#entry .gvs-btn img {
    display: inline-block;
    margin-bottom: 2px;
}


/* アコーディオン全体 */

.gvs-simple-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* 各アイテム */

.gvs-s-item {
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
}


/* ヘッダー部分（クリックする部分） */

.gvs-s-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


/* タイトル */

.gvs-s-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}


/* プラス／マイナス アイコン */

.gvs-s-toggle img {
    width: 32px;
    /* 本家は円の中に小さいプラス→32pxで良い */
    height: 32px;
    object-fit: contain;
}


/* 本文（非表示状態） */

.gvs-s-body {
    overflow: hidden;
    height: 0;
    padding: 0 0;
    transition: height .35s ease, padding .3s ease;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

.gvs-s-body ul {
    list-style-type: disc;
}


/* 開いた状態（JSで .open を付与） */

.gvs-s-item.open .gvs-s-body {
    padding-top: 20px;
}

#entry .contact h3 {
    font-size: 24px;
}

#entry .contact p {
    text-align: left;
}


/* ----------------------------
   フッター
----------------------------- */


/* ----------------------------
   上段：背景グレー
----------------------------- */

.gvs-footer-top {
    background: #E5E5E5;
    padding: 40px 0;
}

.gvs-footer-mainlogo {
    width: 260px;
    display: block;
    margin: 0 auto;
}


/* ----------------------------
   下段
----------------------------- */

.gvs-footer-bottom {
    background: #fff;
    padding: 40px 0 60px;
    border-top: 1px solid #f0f0f0;
}

.gvs-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
    gap: 50px;
    flex-wrap: wrap;
}


/* 左ロゴ（東急不動産） */

.gvs-footer-tokyu {
    width: 150px;
    height: auto;
}


/* メニュー */

.gvs-footer-right ul {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.gvs-footer-right ul li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.gvs-footer-right p {
    text-align: left;
}

.gvs-copy {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}


/* ----------------------------
   スマホ
----------------------------- */

@media only screen and (max-width: 767px) {
    .gvs-header {
        height: 60px;
    }
    .gvs-header-inner {
        padding: 0 1em;
    }
    .gvs-logo {
        width: calc(100% - 24px);
        height: auto;
    }
    .gvs-logo {
        width: calc(100% - 78px);
        max-width: 376px;
    }
    .gvs-logo a {
        display: inline-block;
    }
    .gvs-logo .gvs-logo-gvs {
        width: calc(60% - 1em);
        margin-right: 1em;
    }
    .gvs-logo .gvs-logo-tokyu {
        width: 40%;
    }
    .gvs-drawer {
        top: 60px;
    }
    main.gvs {
        margin-top: 60px;
    }
    .mv-company {
        width: 100%;
        box-sizing: border-box;
    }
    .mv-company img {
        width: 100%;
    }
    .gvs-mv-text h1 {
        font-size: 1.4em;
        padding: 1em;
    }
    .gvs-entry-box {
        width: calc(100% - 1em);
        right: 0.5em;
        padding: 0.5em 1em;
        display: flex;
        justify-content: space-between;
        align-items: center;
        bottom: 1em;
    }
    .gvs-entry-box .entry-status {
        font-size: 1em;
    }
    .gvs-entry-box .entry-deadline {
        font-size: 1em;
        margin: 0;
    }
    .gvs-entry-btn {
        display: inline-block;
        padding: 0.5em 1em;
        font-size: 1em;
        margin: 0;
    }
    .gvs-entry-btn img {
        margin-bottom: 0;
    }
    .gvs-mainvisual {
        height: 150vw;
    }
    .wrap .container h1,
    .wrap .container h2 {
        font-size: 1.8em;
    }
    #first .container>ul {
        justify-content: flex-start;
    }
    #first .container>ul>li {
        width: 100%;
        margin-bottom: 1.5em;
    }
    section.wrap {
        padding: 3em 0;
    }
    .container .inner_cont {
        padding: 2em 1em;
    }
    #second .arrow {
        width: 1.5em;
    }
    #second .container>a {
        display: flex;
        align-items: center;
    }
    .container .inner_cont h3 {
        font-size: 1.3em;
    }
    #second .img_link_list_wrap li {
        width: 100%;
        margin-bottom: 1.5em
    }
    #second .text_link_list_wrap {
        gap: 1em;
    }
    #second .text_link_list_wrap li {
        width: 100%;
        border-bottom: solid #ccc 2px;
        margin-bottom: 0;
    }
    #second .text_link_list_wrap li a {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #second .text_link_list_wrap li a div {
        display: block;
    }
    #second .text_link_list_wrap li a span {
        display: block;
    }
    #second .text_link_list_wrap li .yellow_tag {
        display: inline-block;
        margin-bottom: 0.5em;
    }
    #third .expert_list_wrap {
        justify-content: flex-start;
    }
    #third .expert_list_wrap li section h4,
    #third .expert_list_wrap li section p {
        font-size: 0.8em;
    }
    #third .expert_list_wrap li section h4 {
        margin-bottom: 0.8em;
    }
    #third .expert_list_wrap li section p {
        margin: 0;
    }
    .gvs-ac-item {
        padding: 1.2em;
    }
    .icon-circle,
    .gvs-ac-toggle img {
        width: 1.5em;
        min-width: 1.5em;
        height: 1.5em;
    }
    .gvs-ac-title h3 {
        font-size: 1.2em;
    }
    .gvs-ac-title p {
        font-size: 1em;
    }
    .gvs-s-toggle img {
        width: 1.5em;
        height: 1.5em;
    }
    #entry h2 {
        font-size: 1.5em;
    }
    .gvs-footer-top {
        padding: 2em 0;
    }
    .gvs-footer-mainlogo {
        width: 50%;
    }
    .gvs-footer-bottom-inner {
        display: block;
        text-align: left;
    }
    .gvs-footer-right ul {
        display: block;
    }
    .gvs-footer-right ul li {
        display: block;
        margin-bottom: 0.8em;
    }
    .gvs-footer-right ul li:last-child {
        margin-bottom: 0;
    }
    .gvs-footer-left {
        margin-bottom: 1.5em;
    }
    #entry .gvs-btn img {
        margin-bottom: 0;
    }
}


/* =======================================================
   Form Blocks
======================================================= */

.gvs-form-section {
    padding: 0;
    margin-bottom: 4em;
}

.gvs-form-section.upload-section {
    background-color: #ECECEC;
    border-radius: 8px;
    padding: 2.5em 2em;
}

.gvs-form-section h3 {
    color: #232323;
    font-size: 20px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 2em;
}


/* =======================================================
   Form Inputs
======================================================= */

.gvs-form-row {
    margin-bottom: 28px;
}

.gvs-form-row.two {
    display: flex;
    gap: 40px;
}

.gvs-form-row.two>div {
    width: 50%;
}

.gvs-form-row label {
    display: block;
    font-size: 1em;
    margin-bottom: 8px;
    color: #292929;
}

.gvs-form-row input[type="text"],
.gvs-form-row input[type="email"],
.gvs-form-row input[type="number"],
.gvs-form-row input[type="url"],
.gvs-form-row textarea,
.gvs-form-row select {
    width: 100%;
    padding: 14px 1em;
    border-radius: 8px;
    background: #eee;
    border: none;
    font-size: 1em;
    outline: none;
    box-sizing: border-box;
}

.gvs-form-row textarea {
    height: 160px;
}


/* multiple select */

.gvs-form-row select[multiple] {
    height: 160px;
}


/* チェックボックスグループ */

.gvs-checkbox-group label {
    display: inline-block;
    font-size: 1em;
    margin-bottom: 10px;
    margin-right: 2em;
}

.gvs-checkbox-group input {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}


/* =======================================================
   Upload Section
======================================================= */

.upload-section .upload-description {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.gvs-upload-btn {
    display: inline-flex;
    align-items: center;
    background: #333;
    color: #fff;
    padding: 0.5em 2em;
    border-radius: 2em;
    text-decoration: none;
    font-size: 1em;
    margin-bottom: 1em;
}

.gvs-upload-btn img {
    width: 20px;
    vertical-align: middle;
}


/* チェックボックス */

.gvs-checkbox {
    font-size: 1em;
}

.gvs-checkbox input {
    transform: scale(1.2);
    margin-right: 6px;
}


/* =======================================================
   Submit Button
======================================================= */

.gvs-submit {
    text-align: center;
    margin-top: 40px;
}

.gvs-btn {
    background: #333;
    color: #fff;
    border: none;
    font-size: 1em;
    padding: 0.5em 2em;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    line-height: 1.75;
}

.gvs-btn:hover {
    opacity: 0.8;
}


/* =========================================================
   CONFIRM PAGE
========================================================= */

.gvs-confirm-box {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.gvs-confirm-list dt {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #333;
}

.gvs-confirm-list dd {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    color: #333;
}


/* ボタン */

.gvs-confirm-btns {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.gvs-btn-back {
    background: #ddd;
    border: none;
    cursor: pointer;
}

.gvs-confirm-list {
    margin-bottom: 3em;
}

.gvs-confirm-buttons {
    text-align: center;
    margin-bottom: 5em;
}

.gvs-btn-submit {
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    background: linear-gradient(180deg, #DBFF00 0%, #A1FF00 52%, #73FF00 100%);
}

#form-upload .gvs-upload-btn-wrap {
    text-align: center;
}

#form-upload .gvs-upload-btn-wrap a {
    text-decoration: none;
}

#form-upload .gvs-upload-btn-wrap a img {
    filter: brightness(1) invert(0);
    display: inline-block;
    margin-left: 1em;
}

#upload_confirm_wrap {
    text-align: center;
}

.gvs-form-section.gvs-confirm-section {
    text-align: center;
}

.gvs-confirm-list dd {
    margin-left: 0;
    padding-left: 2em
}

.form-container {
    text-align: center;
}


/* =======================================================
   Responsive
======================================================= */

@media (max-width: 767px) {
    .gvs-form-section {}
    .gvs-form-row.two {
        margin-bottom: 0;
    }
    .gvs-form-row.two {
        display: block;
    }
    .gvs-form-row.two>div {
        width: 100%;
        margin-bottom: 2em
    }
    .gvs-form-section h3 {
        font-size: 1.3em;
    }
}