/* # =================================================================
   # 共通部分
   # ================================================================= */

.mobile-only {
    display: none;
}

@media screen and (max-width: 960px) {
    .inner {
        width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }
    #button {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .pc-only {
        display: none;
    }
}

/* # =================================================================
   # ハンバーガーメニュー
   # ================================================================= */
/* 
#mobile-header {
    display: none;
} */

/* 初期設定
    ------------------------------ */
#header {
    display: none;
}
#mobile-header {
    /* background: rgba(0, 0, 0, 0.8); */
    display: block;
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
}
#mobile-header .inner.flexbox {
    align-items: center;
    height: 80px;
}
/* ハンバーガーデザイン
    参考サイト：https://coco-factory.jp/ugokuweb/move01/5-2-2/
    ------------------------------ */
.js-hamburger {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: #000;
    z-index: 6;
}
.js-hamburger span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 10px;
    height: 1px;
    background-color: #fff;
}
.js-hamburger span:nth-of-type(1) {
    top: 21px;
    width: 60%;
}
.js-hamburger span:nth-of-type(2) {
    top: 29px;
    width: 40%;
}
/* クリック後回転
    ------------------------------ */
.js-hamburger.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}
.js-hamburger.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}
/* クリック後メニュー
    参考サイト：https://crestadesign.org/humbarger/
    ------------------------------ */
.mobile-nav-wrapper {
    visibility: hidden;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 5;
}
.mobile-header-nav {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 5;
}
.mobile-header-list {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.mobile-header-item {
    margin-right: 0;
    /* margin-bottom: 30px; */
    margin-bottom: 3.5dvh;
    color: #fff;
}
.mobile-header-item a {
    text-decoration: none;
}
/* メニューオープン時 */
.mobile-nav-wrapper.active {
    visibility: visible;
    opacity: 1;
}
/* ハンバーガーのインスタグラム横並び
    ------------------------------ */
.mobile_nav_instagram {
    display: flex;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.mobile_nav_instagram a {
    display: block;
    margin-top: 20px;
    width: 50%;
}
.mobile_nav_instagram img {
    width: 40px;
    fill: #fff;
}
.mobile_nav_instagram span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
}

/* # =================================================================
   # モバイルヘッダー
   # ================================================================= */

/* ヘッダーの右側
    ------------------------------ */
.mobile-header-right {
    width: 100px;
    height: 50px;
}
.mobile-header-menu {
    position: relative;
    z-index: 6;
}
.mobile-header-menu p {
    font-size: 12px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    background: #000;
    cursor: pointer;
    width: 50px;
    font-style: italic;
    font-weight: 300;
    color: #fff;
}
#mobile-header .inner {
    padding-left: 0;
    padding-right: 0;
    padding-top: 30px;
}
/* ヘッダーロゴ
    ------------------------------ */
.header-logo {
    padding-left: 16px;
}
.header-logo img {
    width: 60px;
}

/* PC版のメニュー（2025/04/02）
    ------------------------------ */

@media screen and (min-width: 961px) {
    #mobile-header {
        background: rgba(0, 0, 0, 0.8);
        transition: all 0.4s;
    }
    #mobile-header:has(.js-hamburger.active) {
        background: rgba(0, 0, 0, 0);
    }
    .mobile-header-menu p {
        background: none;
    }
    .js-hamburger {
        background: none;
        width: 60px;
        height: 60px;
    }
    #mobile-header .inner {
        padding-top: 0;
    }
    .header-logo {
        z-index: 6;
        padding-left: 0;
    }
    .header-logo img {
        width: 5.5vw;
        max-width: 110px;
    }
    .footer-logo img {
        max-width: 110px;
    }
    .mobile-header-menu p {
        font-size: 16px;
        height: 60px;
        line-height: 60px;
        width: 60px;
    }
    .mobile-header-right {
        width: 120px;
        height: 60px;
    }
    .js-hamburger span:nth-of-type(1) {
        top: 26px;
    }
    .js-hamburger span:nth-of-type(2) {
        top: 34px;
    }
    .js-hamburger.active span:nth-of-type(1) {
        top: 25px;
        width: 40%;
    }
    .js-hamburger.active span:nth-of-type(2) {
        top: 37px;
        width: 40%;
    }
}

/* スマホ版のメニューの背景について（2025/04/02）
    ------------------------------ */

.js-hamburger.active {
    background: none;
}

.mobile-header-menu:has(+ .js-hamburger.active) p {
    background: none;
}

/* # =================================================================
   # 【index.html】メインビジュアル
   # ================================================================= */

@media screen and (max-width: 960px) {
    #mv .inner {
        padding-top: 0;
        padding-right: 0;
        padding-left: 0;
    }
    /* .mv_grid {
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 24px;
        grid-column-gap: 0;
    }
    .mv_grid_img1 {
        grid-row: 1 / 2;
        grid-column: 1 / 3;
        width: 100vw;
        height: 80vh;
        object-fit: cover;
    }
    .mv_grid_img2 {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
        padding-left: 16px;
    }
    .mv_grid_img3 {
        grid-row: 2 / 3;
        grid-column: 2 / 3;
        padding-right: 16px;
    }
    .mv_grid_img4 {
        display: none;
    }
    .mv_grid_img5 {
        display: none;
    } */
}

/* # =================================================================
   # 【index.html】インスタグラム
   # ================================================================= */

@media screen and (max-width: 960px) {
    #instagram .flexbox {
        display: block;
    }
    .instagram_left {
        width: 100%;
    }
    #instagram .parent .absolute {
        position: static;
        transform: none;
    }
    .instagram_right {
        width: 100%;
    }
    .instagram_left {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        margin-bottom: 24px;
    }
    .instagram_left_clickArea {
        padding-right: 0;
    }
    .instagram2 .instagram_left_clickArea {
        padding-left: 0;
        margin-right: 0;
        margin-left: auto;
    }
    .instagram_left_clickArea {
        display: flex;
        width: 80%;
        border-bottom: 1px solid #000000;
        align-items: center;
    }
    .ig_click_id p {
        border: none;
        font-style: italic;
        font-weight: 300;
        font-size: 42px;
        line-height: 1.4;
    }
    .instagram1 .ig_click_icon {
        order: 2;
    }
    .instagram1 .ig_click_id {
        padding-left: 16px;
    }
    .instagram2 .ig_click_id {
        padding-right: 16px;
    }
    .ig_click_icon {
        width: 30px;
        margin-left: 12px;
        padding-top: 6px;
    }
    .instagram2 .ig_click_icon {
        margin-right: 12px;
    }
}

/* # =================================================================
   # フッター
   # ================================================================= */

@media screen and (max-width: 960px) {
    #footer {
        margin-top: 60px;
    }
    #footer .footer_header.flexbox {
        min-height: 36px;
    }
    .footer-logo {
        height: 100%;
    }
    .footer-logo a {
        display: flex;
        height: 100%;
        align-items: center;
    }
    .footer-logo img {
        width: 30px;
        padding-top: 0;
    }
    .footer_body.flexbox {
        display: block;
    }
    .footer_body .footer_right {
        /* text-align-last: left; */
        padding-top: 10px;
    }
    .footer_body {
        font-size: 10px;
    }
    .footer-item a {
        font-size: 10px;
    }
}

/* # =================================================================
   # 【アーティスト&モデル】ナビゲーション
   # ================================================================= */

@media screen and (max-width: 960px) {
    #navigation {
        display: none;
    }
}

/* # =================================================================
   # 【アーティスト&モデル】一覧
   # ================================================================= */

@media screen and (max-width: 960px) {
    #list .person {
        width: 44vw;
        padding-top: 16px;
    }
    #list .person img {
        width: 44vw;
        height: 66vw;
        object-fit: cover;
    }
    #list .name {
        padding-top: 6px;
        font-size: 12px;
    }
    #list .text {
        font-size: 10px;
    }
}

/* # =================================================================
   # 【アーティスト&モデル】モバイルナビゲーション
   # ================================================================= */

#mobile-navgation {
    display: none;
}

@media screen and (max-width: 960px) {
    #mobile-navgation {
        display: block;
    }
    #mobile-navgation .inner {
        padding-left: 0;
        padding-right: 0;
        width: 80%;
        margin-left: 0;
        margin-right: auto;
        text-align: right;
        padding-top: 80px;
    }
    .mobile_nav_title {
        font-style: italic;
        font-weight: 300;
        font-size: 42px;
        border-bottom: 1px solid #000000;
    }
    .mobile_nav_list {
        padding-top: 10px;
        margin-bottom: 30px;
    }
    .mobile_nav_list_item a {
        text-decoration: none;
        font-weight: 300;
        font-size: 16px;
        line-height: 1.8;
    }
}

/* # =================================================================
   # 【models.html】モデルだけの部分
   # ================================================================= */

@media screen and (max-width: 960px) {
    /* モバイルナビゲーション
    ------------------------------ */
    #mobile-navgation.model-only {
        color: #fff;
    }
    #mobile-navgation.model-only .inner {
        margin-left: auto;
        margin-right: 0;
        text-align: left;
    }
    #mobile-navgation.model-only .mobile_nav_title {
        border-bottom: 1px solid #fff;
    }
    /* ハンバーガーメニュー
    ------------------------------ */
    #mobile-header.model-only .mobile-header-menu p {
        background-color: #fff;
        color: #000;
    }
    #mobile-header.model-only .js-hamburger {
        background-color: #fff;
    }
    #mobile-header.model-only .js-hamburger span {
        background-color: #000;
    }
    #mobile-header.model-only .mobile-header-menu {
        background-color: #fff;
    }
    #mobile-header.model-only .mobile-header-nav {
        background: rgba(255, 255, 255, 0.9);
    }
    #mobile-header.model-only .mobile-header-item {
        color: #000;
    }
}

/* # =================================================================
   # 【models.html】セレクトフォーム
   # ================================================================= */

@media screen and (max-width: 960px) {
    /* サーチボタン
    ------------------------------ */
    #search-open button {
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
    .search-open_icon {
        width: 14px;
        vertical-align: middle;
    }
    /* セレクトの中身
    ------------------------------ */
    .select_categoly_box {
        width: 100%;
    }
    .form_select_eye .flexbox {
        display: grid;
        width: 90vw;
        margin: 0 auto;
        grid-template-rows: 30vw 30vw 30vw;
        grid-template-columns: 30vw 30vw 30vw;
    }
    .select_eye_box {
        width: 100%;
        height: 100%;
    }
    /*初期化*/
    .form_select_skill .parent .absolute {
        position: static;
        transform: none;
    }
    /*初期化*/
    .select_skill_box {
        min-width: auto;
        height: auto;
        display: inline-block;
        width: auto;
        margin-right: 0;
    }
    /*初期化*/
    .form_select_skill .flexbox {
        justify-content: flex-start;
        flex-wrap: wrap;
        overflow-x: visible;
    }
    /*初期化*/
    .search_area.absolute {
        position: static;
        transform: none;
    }
    /*特技のボタン*/
    .select_skill_box p {
        padding: 5px 10px;
    }
    .select_skill_box {
        margin: 12px 10px;
    }
    /*mobileの場合のセレクト部分*/
    #search {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 30px;
        background-color: #fff;
    }
    .form_select_reset input {
        margin-bottom: 30px;
    }
    ._categoly_box_title {
        font-size: 18px;
        font-weight: 300;
    }
    .japanese_label {
        font-size: 18px;
        font-weight: 300;
    }
    .select_eye_title,
    .select_skill_title {
        font-weight: 300;
    }
    /*バツボタン*/
    .search-close {
        width: 30px;
        right: 10px;
        top: 0px;
    }
}

/* セレクトの中身（特技同じ幅）
------------------------------ */

@media screen and (max-width: 960px) {
    .select_skill_box {
        width: 28vw;
        height: 10vw;
    }
    .select_skill_box {
        margin: 0;
        margin-top: 12px;
    }
    .form_select_skill .flexbox {
        justify-content: space-evenly;
    }
    .form_select_skill .parent .absolute {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .select_skill_box p {
        font-size: 2.5vw;
    }
    #search .inner {
        padding-left: 4vw;
        padding-right: 4vw;
    }
}

/* # =================================================================
   # 【about.html】
   # ================================================================= */

@media screen and (max-width: 960px) {
    #about_mv img {
        height: 60vh;
        object-fit: cover;
    }
    .mailbox {
        border: 1px solid #000;
    }
    #mail {
        padding-top: 24px;
    }
    #about_first,
    #about_second,
    #about_third,
    #about_fourth {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    #about_first .inner.flexbox,
    #about_second .inner.flexbox,
    #about_third .inner.flexbox,
    #about_fourth .inner.flexbox {
        display: block;
    }
    #about_first .inner.flexbox .parent .absolute,
    #about_second .inner.flexbox .parent .absolute,
    #about_third .inner.flexbox .parent .absolute {
        position: static;
        transform: none;
    }
    .about_left {
        border-right: none;
        width: 50%;
        border-bottom: 1px solid #fff;
    }
    #about_second .about_left {
        margin-right: 0;
        margin-left: auto;
    }
    .about_flex_title {
        font-size: 16px;
        line-height: 1.8;
    }
    .about_right {
        width: 100%;
        padding-left: 0;
    }
    .about_right p {
        font-size: 10px;
    }
    .about_right dt {
        font-size: 10px;
    }
    .about_right dd {
        font-size: 10px;
        margin-left: 0;
    }
    .about_right dt {
        float: none;
    }
    #about_second .about_left {
        border-left: none;
    }
    #about_second .about_left {
        border-bottom: 1px solid #000;
    }
    #about_fourth img {
        width: 100%;
        position: static;
        transform: none;
    }
    #about_fourth .about_left {
        width: 100%;
    }
    #about_fourth .about_right {
        padding-top: 30px;
        padding-left: 10vw;
    }
    .profile_content {
        padding: 30px;
        font-size: 10px;
    }
    .about_fourth-grid .timeline_event {
        font-size: 10px;
    }
    .about_fourth-grid .year {
        font-size: 14px;
    }
    #profile .section_title {
        font-size: 16px;
    }
    .about_text_small {
        font-size: 8px;
    }
    #kome_text {
        width: 80%;
        margin: 30px auto 0;
    }
}

/* # =================================================================
   # 【contact.html】
   # ================================================================= */

@media screen and (max-width: 960px) {
    #contact_mv .inner {
        padding-top: 100px;
    }
    .model_form {
        font-size: 10px;
    }
    #contact_form .inner {
        width: 100%;
        padding-top: 30px;
    }
    #contact_form p {
        margin-top: 12px;
    }
    #contact_form label {
        font-size: 14px;
    }
    #contact_form input {
        height: 30px;
    }
    #contact_form input[type='submit'] {
        width: 30%;
        height: 30px;
    }
    .wpcf7-list-item-label {
        font-size: 2.5vw;
    }
    .contact_instagram_box {
        font-size: 10px;
        padding-top: 4.16vw;
        width: 46vw;
    }
}

/* # =================================================================
   # 【index.html】ローディング
   # ================================================================= */

@media screen and (max-width: 960px) {
    .loading_svg svg {
        width: 50vw;
    }
}

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

/* # =================================================================
   # 【2025/04/02】修正
   # ================================================================= */

.mobile_nav_instagram span {
    font-size: 12px;
}

.mobile-header-item {
    margin-bottom: 3.5dvh;
}

.footer-item a {
    font-size: 1vw;
}

@media screen and (max-width: 960px) {
    .mobile_nav_instagram span {
        font-size: 2.6vw;
    }
    #footer .footer_header.flexbox {
        height: auto;
    }
    .footer-logo {
        display: none;
    }
    .footer-item a {
        font-size: 2.6vw;
    }
    .footer_right p {
        font-size: 2.6vw;
    }
    .footer-list {
        text-align: center;
    }
}

/* # =================================================================
   # 【案1-2025/08/26】コンタクトボタン右下に追加
   # ================================================================= */
@media (max-width: 960px) {
    .cta-contact {
        padding: 12px 16px;
        gap: 10px;
        font-size: 14px;
        /* box-shadow: 0 3px 0 rgba(0, 0, 0, 0.4); */
    }
    .cta-contact__icon {
        width: 24px;
        height: 18px;
    }
}
@media (max-width: 960px) {
    .cta-contact {
        right: 0 !important;
        bottom: 0 !important;
        margin: 0 !important; /* 念のため要素のマージンもゼロに */
    }
}
