/*
Theme Name: InternShip
Author: ts
Description: recruitment
Version: 1.0
*/
body {
    margin : 0;
}
a {
    text-decoration: none;
}
header {
    width: 100%;
    padding: 0;
    background-color: #fff;
}
.header_inner {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
}
.header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 ;
}
.header_logo {
    width: auto;
    height: 74px;
}

.header_right {
    display: flex;
}
.header_right_item {
    margin-left: 20px;
    padding: 0;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    text-decoration: none;
}
.header_recruitment_btn {
    background-color: #6d6d6d;
    color: #fff;
    padding-inline: 30px;
    height: 38px;
}
.header_registration_btn {
    background-color: #FF9422;
    color: #fff;
    padding-inline: 30px;
}
.header_login_btn {
    background-color: #0087E6;
    color: #fff;
    padding-inline: 30px;
}

.header_menu_item {
    margin-right: 50px;
    font-weight:700;
    font-size: 16px;
}
.header_menu_item.active a {
    text-decoration: none; /* 既存のアンダーラインを無効に */
    border-bottom: 10px solid #6bbfe9 !important; /* 青色の分厚いアンダーライン */
    padding-bottom: 2px !important; /* アンダーラインとテキストとの間隔 */
}

.login_item {
    color: #2B2B2B;
}

.user_menu {
    position: relative;
    display: inline-block;
    vertical-align: middle; /* アイコンとテキストを垂直に揃える */
}

.user_image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 10px; /* 隣接する要素との間隔 */
    border: 2px solid #ddd; /* 枠線を追加 */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* ソフトな影を追加 */
}

.dropdown_menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px; /* 最小幅 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 5px; /* 角の丸み */
    right: 0;
    top: 50px; /* アイコンからの距離 */
    z-index: 1000;
    padding-left: 0;
}

.dropdown_menu li {
    padding: 10px 15px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap; /* テキストを一行で表示 */
    list-style: none;
}

.dropdown_menu li a {
    color: #555;
    text-decoration: none;
    display: block; /* リンクが全幅を占めるように */
}

.dropdown_menu li a:hover,
.dropdown_menu li a:focus {
    background-color: #f5f5f5;
    color: #000;
}

.dropdown_menu li:not(:last-child) {
    border-bottom: 1px solid #eaeaea; /* 各項目の間に線を追加 */
}


@media screen and (max-width: 480px) {
    .header_logo {
        width: auto;
        height: 40px;
    }
    .header_menu_list li {
        font-size: 12px;
        margin-right: 20px;
    }
}

/* ハンバーガーメニューのスタイル */
.hamburger {
    display: none; /* デスクトップでは非表示 */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger_line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* ハンバーガーメニューがアクティブなとき（バツ印に変形） */
.hamburger.active .hamburger_line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger_line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger_line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* モバイルメニューのスタイル */
.header_mobile {
    display: none; /* デフォルトでは非表示 */
    position: absolute;
    top: 60px; /* ヘッダーの高さに合わせて調整 */
    right: 20px;
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1000;
}

.header_mobile ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.header_mobile li {
    padding: 10px 20px;
}

.header_mobile li a {
    text-decoration: none;
    color: #333;
}

.header_mobile li a:hover {
    background-color: #f5f5f5;
}

.logout_menu li a {
    color: #fff !important;
}

/* レスポンシブスタイル */
@media (max-width: 480px) {
    .header_menu_list {
        display: none; /* デスクトップメニューを非表示 */
    }

    .hamburger {
        display: flex; /* モバイルで表示 */
    }

    .header_right {
        display: none; /* デスクトップ右側メニューを非表示 */
    }

    .header_mobile {
        display: none; /* 初期状態では非表示 */
    }

    /* モバイルメニューが開いているときのスタイル */
    .header_mobile.active {
        display: block;
    }
    .header_recruitment_btn {
        height: unset;
    }
    .internship_search_result {
        font-size: 24px;
    }
    .header_right_item {
        margin-left: 0;
    }
}

.header_menu_list {
    text-decoration: none;
    list-style: none;
    display: flex;
    max-width: 1200px;
    margin: -8px auto 8px;
    padding: 0px;
    white-space: nowrap;
}
.header_menu_list a {
    text-decoration: none;
    color: #333;
}


/*-------  ログインメニュー  ---------*/
.login_item {
    padding: 10px 15px;
    background-color: #f5eef1;
    color: #333;
    text-decoration: none;
    border-radius: 15px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    position: relative; /* 通知の赤い点を配置するため */
}

.login_item:hover {
    background-color: #e5edc9;
}

.login_item.notification_toggle {
    position: relative; /* 通知の赤い点を配置するため */
}
/* 通知がある場合に赤い点を表示 */
.notification_toggle::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    display: none; /* 通知があるときに表示するようにする */
}

.notification_toggle.has-notifications::after {
    display: block;
}




/*  ---------------- body -------------------  */

.container_wrap {
    margin: 0;
    padding: 0;
    border: 0;
}
.main_visual {
    position: relative;
    height: 510px;
    background-image: url("./images/mv.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}
.mv_inner {
    width: 100%;
    max-width:1100px;
    margin: 0 auto;
}
.mv_top {
    margin: 0;
    padding-top: 20px;
    padding-left: 16px;
}
.mv_catch_title {
    font-size: 54px;
    font-weight: 700;
}
.mv_catch_action {
    margin-top: 20px;
}
.mv_catch_action_item {
    margin-bottom: 16px;
    padding: 0 6px;
}
.mv_catch_action_btn {
    color:#fff;
    background: #FF9422;
    display: flex;
    width: 290px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
}
.mv_catch_action_icon {
    width: 92px;
    padding: 0 14px 0 20px;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
    background-color: #FF8400;
}
.mv_catch_action_text {
    width: 100%;
}
.mv_search_area {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, .5);
}
.search_area_inner {
    max-width: 1100px;
    margin: auto;
    padding: 20px 16px;
}
.search_form {
    display: flex;
    justify-content: space-between;
}
.search_form_button {
    width: calc(33% - 8px);
}
.search_form_text {
    width: calc(33% - 8px);
}
.search_select_button {
    padding-left: 16px;
    font-weight: 400;
    line-height: 48px;
    height: 48px;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    touch-action: manipulation;
    user-select: none;
    cursor: pointer;
    appearance: none;
    text-align: left;
    text-decoration: none;
    transition: opacity .3s;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
    color: #444;
    border: 1px solid #0d92c3;
}
.search_select_text {
    font-weight: 400;
    line-height: 1;
    height: 44px;
    display: block;
    width: 100%;
    height: 100%;
    appearance: none;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
    color: #9e9e9e;
    border: 1px solid #0d92c3;
    text-align: left;
    padding-left: 16px;
}
.search_form_conditions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.search_block_button {
    border-radius: 5px;
    display: block;
    width: 100%;
    touch-action: manipulation;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 48px;
    height: 48px;
    color: #fff;
    background: linear-gradient(103deg,#6fc2ec, #0d92c3);
    border: none;
}
.search_form_block_button {
    font-weight: 400;
    font-size: 16px;
}

@media (max-width: 480px) {
    .mv_catch_title {
        font-size: 37px;
        font-weight: 700;
    }
    .mv_catch_action {
        margin-top: 100px;
    }
    .search_select_text {
        width: 100%;
    }
    .search_block_button {
        font-size: 14px;
    }
    .search_select_button {
        font-size: 10px;
    }
    .search_select_text {
        font-size: 10px;
    }
}

.container {
    max-width: 1100px;
    width: 90%;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
}
.main_contents {
    width: 70%;
    padding: 10px;
}
.news_wrap {
    display: flex;
}
.news_top {
    font-size: 16px;
    font-weight: 700;
    color: #2FAF37;
    margin-right: 40px;
}
.news_top_sub {
    font-size: 16px;
}
.news_container {
    display: flex;
    justify-content: space-between;
    margin: 0px 48px 20px;
    background-color: #FAFAFA;
}
.news_contents {
    background-color: #FAFAFA;
    padding-top: 30px;
}
.news_list {
    margin: 0 48px 30px;
    padding-bottom: 10px;
}
.news_item {
    display: flex;
}
.news_date {
    margin-right: 60px;
    margin-bottom: 20px;
}
.news_title {
    margin-bottom: 20px;
}
.news_title a {
    text-decoration: none;
    color: #333;
}
.internship_info {
    border: solid 1px #9a9a9a;
    border-radius: 5px;
    color: #2FAF37;
    font-weight: 700;
    height: auto;
    width: 100%;
    text-align: center;
    font-size: 24px;
    margin-bottom: 60px;
}

.intern_item {
    position: relative;
}
/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
  }
  .ribbon {
    --f: .5em; /* control the folded part*/
    --r: .0em; /* control the ribbon shape */
    
    position: absolute;
    left: 20px;
    top: calc(-1*var(--f));
    padding: .2em;
    background: #E21D60;
    border-right: var(--f) solid #0005;
    border-bottom: var(--r) solid #0000;
    clip-path: polygon(calc(100% - var(--f)) 0,0 0,0 calc(100% - var(--r)),calc(50% - var(--f)/2) 100%,calc(100% - var(--f)) calc(100% - var(--r)),calc(100% - var(--f)) var(--f),100% var(--f));
  }

.intern_wrap {
    padding: 44px;
    background-color: #FBFBFB;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}
.intern_top {
    display: flex;
    justify-content: space-between;
}
.intern_title {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0;
}
.intern_date {
    font-size: 14px;
    color: #989898;
}
.i_line {
    background-color: #c5c5c5;
    height: 2px;
    border: none;
    margin-bottom: 20px;
}
.intern_contents_wrap {
    display: flex;
    justify-content: space-between;
}
.job_wrap {
    display: flex;
}
.intern_item {
    margin-right: 60px;
    margin-bottom: 12px;
}
.intern_item_para {
    margin-right: 25px;
    margin-bottom: 12px;
    white-space: nowrap;
}
.intern_img {
    object-fit: cover;
    border-radius: 10px;
    width: 280px;
    height: 150px;
    max-width: 100%;
}
.intern_link {
    display: flex;
    justify-content: space-between;
}
.intern_bookmark {
    margin-top: 28px;
    font-size: 16px;
    width: 48%;
    height: 48px;
    font-weight: bold;
    padding: 0;
    border: 2px solid #2FAF37;
    border-radius: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2FAF37;
    text-decoration: none !important;
}
.intern_bookmark.liked {
    background-color: #2FAF37;
    color: #fff;
}

.intern_detail {
    margin-top: 28px;
    font-size: 16px;
    width: 48%;
    height: 48x;
    font-weight: bold;
    padding: 0;
    background-color: #FF9422;
    border-radius: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
}
.already-applied-message {
    margin-top: 28px;
    font-size: 16px;
    width: 48%;
    height: 48x;
    font-weight: bold;
    padding: 0;
    background-color: #fa5c00;
    border-radius: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
}
  .side_menu {
    width: 22%;
    padding: 10px;
}
.useful_img {
    object-fit: cover;
    border-radius: 5px;
    width: 280px;
    height: 150px;
    max-width: 100%;
}
.useful_image {
    position: relative;
}
.useful_info {
    position: absolute;
    color: #fff;
    left: 65px;
    top: 70px;
    z-index: 100;
}
.side_menu_wrap {
    background-color: #fff;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 12px 22px;
    margin: 15px 0;
}
.side_menu_title {
    font-size: 16px;
    margin: 0;
    text-align: center;
}
.keyword_list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}
.keyword_item {
    padding-top: 13px;
    background-color: #f2f2f2;
    color: #2FAF37;
    border: none;
    padding: 0px 7px;
    margin: 6px;
    border-radius: 60px;
    display: inline-block;
}
.keyword_list a {
    text-decoration: none;
    color: #2FAF37;
}
.side_menu_list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}
.side_menu_item {
    padding-top: 13px;
    background-color: #f2f2f2;
    color: #2FAF37;
    border: none;
    padding: 0px 7px;
    margin: 12px 0;
    border-radius: 60px;
    display: table;
}
.side_menu_list a {
    text-decoration: none;
    color: #2FAF37;
}

@media (max-width: 480px) {
    .container {
        display: block;
        width: 95%;
        margin: 0;
    }
    .main_contents {
        width: 100%;
        padding: 10px;
    }
    .side_menu {
        width: 100%;
        padding: 10px;
    }
    .news_item {
        font-size: 12px;
    }
    .internship_info {
        font-size: 20px;
    }
    .intern_contents_wrap {
        flex-direction: column;
    }
    .intern_wrap {
        padding: 25px;
    }
    .intern_items_wrap {
        font-size: 14px;
    }
    .intern_image {
        display: flex;
        justify-content: center;
    }
    .intern_bookmark {
        font-size: 12px;
        width: 37%;
        border-radius: 10px;
    }
    .intern_detail {
        font-size: 12px;
        width: 59%;
        border-radius: 10px;
    }
    .useful_image {
        display: flex;
        justify-content: center;
    }
    .useful_info {
        left: 170px;
    }
}

.internship_top {
    display: flex;
    justify-content: space-between;
}
.internship_top_left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.internship_logo {
    border: 1px solid#d7d7d7;
    width: 158px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.internship_logo_img {
    padding: 10px;
    width: 126px;
    height: auto;
}
.internship_group {
    line-height: 34px;
    margin-left: 14px;
}
.internship_company_name {
    font-size: 20px;
    font-weight: bold;
}
.internship_url {
    font-size: 16px;
    color: #2FAF37;
    height: 42px;
}
.internship_url a {
    font-size: 16px;
    color: #2FAF37;
    height: 42px;
    text-decoration: none;
}
.internship_job_type {
    font-size: 16px;
    color: #fff;
    background-color: #2FAF37;
    border-radius: 60px;
    padding: 0 10px;
    line-height: normal;
    text-align: center;
}
.internship_main_img {
    object-fit: cover;
    border-radius: 10px;
    width: 184px;
    height: 105px;
    max-width: 100%;
}
.internship_subtitle {
    color: #2FAF37;
    border: #2FAF37 1px solid;
    margin: 30px auto 10px;
    padding: 0 16px;
}
.internship_company_images {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}
.company_img {
    object-fit: cover;
    border-radius: 10px;
    width: 213px;
    height: 124px;
    max-width: 100%;
}
.internship_link {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}
.internship_card_menu_title {
    color: #212121;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    margin: 0 0 8px;
}
.internship_card {
    position: relative;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}
.internship_card_link {
    display: block;
    padding: 16px;
    border-bottom: 1px solid #ebebeb;
    text-decoration: none;
}
.internship_card_title {
    margin-bottom: 6px;
    color: #212121;
    font-size: 12px;
    font-weight: 700;
    line-height: 17px;
    margin-top: 0;
}
.internship_card_content {
    display: flex;
}
.internship_card_logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
    border: 1px solid#d7d7d7;
}
.internship_card_company_name {
    margin-top: 0;
    margin-bottom: 2px;
    color: #212121;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
}
.internship_card_job_type {
    background-color: #f2f2f2;
    color: #2FAF37;
    border: none;
    padding: 0px 7px;
    margin: 12px 0;
    border-radius: 60px;
    font-size: 14px;
    text-align: center;
}
.internship_read_more {
    line-height: 35px;
    font-size: 12px;
    text-decoration: none;
    color: #212121;
}
.internship_more {
    text-align: center;
}
.internship_browsing {
    display: flex;
    justify-content: space-between;
}
.internship_card_browsing {
    position: relative;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    margin: 10px 0px;
    width: 30%;
}
.internship_browsing_title {
    color: #212121;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    margin: 40px 0 8px;
}
.internship_search_title {
    max-width: 1100px;
    text-align: left;
    margin: 20px auto;
    padding: 0 16px;
}
.title_line {
    max-width: 1100px;
}

.modal {
    display: none;
  }
    
  .modal.is-open {
    display: block;
  }
/* モーダルの基本スタイリング */
.modal {
    font-family: Arial, sans-serif;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal__container {
    background-color: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 20px;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.modal__close {
    font-size: 24px;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
}

.modal__content {
    margin-top: 15px;
    line-height: 1.5;
    color: #666;
}

.modal__footer {
    margin-top: 20px;
    text-align: right;
}

.modal__btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.modal__btn:hover {
    background-color: #e7e7e7;
}

.modal__btn-primary {
    background-color: #0056b3;
    color: white;
    border-color: #004094;
}

.modal__btn-primary:hover {
    background-color: #004094;
}

/* スクリーンリーダー用のスタイル */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.modal__close {
    font-size: 48px; /* ボタンの文字サイズを大きくして視認性を高める */
    line-height: 1; /* ラインハイトを調整 */
    color: #000; /* ボタンの色 */
    background: transparent; /* 背景色を透明に */
    border: none; /* ボーダーを消去 */
    cursor: pointer; /* カーソルをポインターに設定 */
    padding: 0 10px; /* パディングを調整 */
}

.modal__close:hover {
    color: rgb(65, 65, 65); /* ホバー時の色変更 */
}

.modal__content ul {
    list-style: none;
}


/* ページネーションコンテナ */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
}

/* 全てのページアイテム */
.pagination .page-item {
    margin: 0 5px;
}

/* ページリンク */
.pagination .page-link {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #007bff;
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
    border-radius: 5px;
}

/* アクティブなページリンク */
.pagination .page-item.active .page-link {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    border-radius: 5px;
}

/* リンクホバー時の効果 */
.pagination .page-link:hover {
    background-color: #e9ecef;
    color: #0056b3;
    border-color: #dee2e6;
    border-radius: 5px;
}

/* 現在のページリンク */
.pagination .page-item.active .page-link:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    border-radius: 5px;
}
/* --------------  会員登録画面  --------------- */
.registration_container {
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.registration-form {
    display: flex;
    flex-direction: column;
}

.registration-form .form-group {
    margin-bottom: 20px;
}

.registration-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
}

.registration-form .required {
    color: #ff0000;
    font-size: 12px;
}

.registration-form input[type="email"],
.registration-form input[type="password"],
.registration-form input[type="text"],
.registration-form input[type="number"] {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.registration-form input[type="email"]:focus,
.registration-form input[type="password"]:focus,
.registration-form input[type="text"]:focus,
.registration-form input[type="number"]:focus {
    border-color: #0056b3;
    outline: none;
}

.registration-form .submit-button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.registration-form .submit-button:hover {
    background-color: #0056b3;
}
/* --------------  ログイン画面  --------------- */
.custom-login-form {
    max-width: 360px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-login-form .form-group {
    margin-bottom: 20px;
}

.custom-login-form label {
    display: block;
    margin-bottom: 5px;
    color: #333333;
    font-size: 14px;
}

.custom-login-form input[type="text"],
.custom-login-form input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.custom-login-form input[type="text"]:focus,
.custom-login-form input[type="password"]:focus {
    border-color: #0056b3;
    outline: none;
}

.custom-login-form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

.custom-login-form button:hover {
    background-color: #0056b3;
}
.success {
    color: green;
    font-weight: bold;
    margin: 10px 0;
    padding: 10px;
    background-color: #ccffcc;
    border: 1px solid green;
    border-radius: 5px;
}
.error {
    color: #ff0000;
    background: #ffecec;
    border: 1px solid #ff0000;
    padding: 8px;
    margin: 10px 0;
    border-radius: 4px;
}

#accordion h3 {
    cursor: pointer;
    background-color: #f8f9fa;
    padding: 10px;
    border: 1px solid #ddd;
    margin-top: 5px;
    position: relative;
    font-size: 18px;
}

#accordion div {
    padding: 10px;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
}

.accordion-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.mypage-container {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mypage-container p {
    margin: 10px 0;
    line-height: 1.6;
    color: #333;
}

.item-label {
    font-size: 0.8em; /* フォントサイズを小さく調整 */
    font-weight: normal; /* 太字を解除 */
    color: #333; /* より柔らかい色に調整する場合はここを変更 */
}

.mypage-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edit-link {
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.edit-link:hover {
    text-decoration: underline;
}

/* プロフィール編集ページのスタイル */
.profile-edit-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-edit-container h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.profile-edit-container .form-group {
    margin-bottom: 20px;
}

.profile-edit-container .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.profile-edit-container .form-group input[type="text"],
.profile-edit-container .form-group input[type="password"],
.profile-edit-container .form-group input[type="url"],
.profile-edit-container .form-group select,
.profile-edit-container .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f9f9f9;
}

.profile-edit-container .form-group textarea {
    resize: vertical;
}

.profile-edit-container .form-group input[type="radio"] {
    margin-right: 10px;
}

.profile-edit-container .form-group .birthdate-group select {
    display: inline-block;
    width: 30%;
    margin-right: 10px;
}

.profile-edit-container .submit-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
}

.profile-edit-container .submit-button:hover {
    background-color: #2980b9;
}



.internship-application-modal .modal__container {
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 2rem auto;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.internship-application-modal .modal__title {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.internship-application-modal .modal__header {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}

.internship-application-modal .modal__content {
    margin-top: 20px;
}

.internship-application-modal .modal__close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    border: none;
    background: none;
    font-size: 1.5rem;
    color: #666;
}

.internship-application-modal .form-group {
    margin-bottom: 15px;
}

.internship-application-modal input[type="text"], 
.internship-application-modal input[type="email"], 
.internship-application-modal select {
    width: 95%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.internship-application-modal .gender label {
    margin-right: 20px;
}

.internship-application-modal .submit-button {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 15px;
}

.internship-application-modal .submit-button:hover {
    background-color: #005077;
}


/* --------------  footer  --------------- */
footer {
    margin: 0;
    padding: 40px 16px;
    background-color: #2B2B2B;
}
.footer_wrap {
    margin: 0 auto;
    max-width: 1100px;
}
.footer_top {
    display: flex;
    justify-content: center;
}
.footer_logo {
    width: auto;
    height: 74px;
}
.footer_bottom_list {
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}
.footer_bottom_list a {
    text-decoration: none;
    color:#9e9e9e
}
.footer_bottom_item {
    padding: 2px 8px;
}
.footer_bottom_copyright {
    color: #9e9e9e;
    margin: 8px 0 0;
    text-align: center;
}

@media (max-width: 480px) {
    .footer_logo {
        height: 40px;
    }
}
/* ーーーーーーー応募管理ページのスタイルーーーーーーーー */
/* 応募管理ページのコンテナ */
.applications-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-x: auto; /* 必要に応じて横スクロールを許可 */
}

/* テーブル全体 */
.applications-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* 列幅を自動調整 */
    background-color: #fff;
    min-width: 100%; /* 最小幅を設定して極端な縮小を防ぐ */
}

/* テーブルヘッダー */
.applications-table th {
    background-color: #0073aa;
    color: #fff;
    padding: 12px 10px;
    text-align: left;
    font-size: 1em;
    border-bottom: 2px solid #005f8d;
}

/* テーブルボディのセル */
.applications-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    vertical-align: middle;
    word-wrap: break-word;
}

/* リンクのスタイル */
.applications-link {
    color: #0073aa;
    text-decoration: none;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

.applications-link:hover {
    text-decoration: underline;
    color: #005f8d;
}

/* メッセージボタンコンテナ */
.message-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* メッセージボタン */
.message-button {
    background-color: #26c599;
    color: #fff;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.message-button:hover {
    background-color: #218838;
}

/* 応募履歴がない場合のメッセージ */
.no-applications {
    text-align: center;
    font-size: 1.1em;
    color: #777;
    padding: 20px 0;
}

/* スマートフォン（縦） */
@media (max-width: 600px) {
    .applications-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .applications-table th,
    .applications-table td {
        padding: 8px 10px;
        font-size: 0.9em;
        border-bottom: unset;
    }

    .message-button {
        padding: 6px 10px;
        font-size: 0.8em;
    }

    /* テーブルヘッダーを非表示 */
    .applications-table thead {
        display: none;
    }

    /* テーブルをカード形式に変換 */
    .applications-table, 
    .applications-table tbody, 
    .applications-table tr, 
    .applications-table td {
        display: block;
        width: 100%;
    }

    .applications-table tr {
        margin-bottom: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background-color: #fff;
    }

    .applications-table td {
        padding: 8px 10px;
        position: relative;
    }

    /* 各セルに擬似要素でラベルを追加 */
    .applications-table td::before {
        content: attr(data-label);
        position: absolute;
        top: 8px;
        left: 10px;
        font-weight: bold;
        width: 120px;
        display: inline-block;
    }
    .applications-link {
        max-width: 90%;
    }
}

/* タブレット */
@media (min-width: 601px) and (max-width: 900px) {
    .applications-title {
        font-size: 1.8em;
        margin-bottom: 18px;
    }

    .applications-table th,
    .applications-table td {
        padding: 10px 8px;
        font-size: 1em;
    }

    .message-button {
        padding: 7px 12px;
        font-size: 0.85em;
    }

    /* インターンシップ名のテキストオーバーフロー処理を調整 */
    .applications-table th:nth-child(2),
    .applications-table td:nth-child(2) {
        white-space: normal;
        text-overflow: clip;
    }
}

/* デスクトップ */
@media (min-width: 901px) {
    /* 必要に応じて追加のスタイルをここに記述 */
}



/* ---------気になるリストのスタイル----------- */
.likes-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.likes-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.likes-list {
    list-style: none;
    padding: 0;
}

.likes-list-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.likes-list-item:hover {
    transform: scale(1.02);
}

.likes-link {
    text-decoration: none;
    color: #0073aa;
    transition: color 0.2s;
}

.likes-link:hover {
    color: #005177;
}

.no-likes {
    text-align: center;
    font-size: 1.2em;
    color: #666;
}

/* 管理画面のカスタムページ用スタイル */
.wrap {
    margin: 20px;
}

.wp-list-table {
    width: 100%;
    border-collapse: collapse;
}

.wp-list-table th, .wp-list-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.wp-list-table th {
    background-color: #f1f1f1;
    text-align: left;
}

.header_recruitment_registration_btn {
    background-color: #ff12af;
    color: #fff;
    padding-inline: 30px;
}
.header_recruitment_login_btn {
    background-color: #35a7ff;
    color: #fff;
    padding-inline: 30px;
}

/* -----企業情報編集画面----- */
.company-edit-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-edit-container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.company-edit-container .form-group {
    margin-bottom: 15px;
}

.company-edit-container .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.company-edit-container .form-group input[type="text"],
.company-edit-container .form-group input[type="url"],
.company-edit-container .form-group input[type="file"],
.company-edit-container .form-group textarea {
    width: 97%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

.company-edit-container .form-group textarea {
    height: 100px;
    resize: vertical;
}

.company-edit-container button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.company-edit-container button[type="submit"]:hover {
    background-color: #005a87;
}

.company-edit-container img {
    display: block;
    margin-top: 10px;
    max-width: 100px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 保存後のメッセージ */
.save-message {
    display: none;
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* 全ての要素にボックスサイズを適用 */
*, *::before, *::after {
    box-sizing: border-box;
}

/* -----インターンシップ投稿管理ページ----- */
.internship-management-container {
    max-width: 1200px;
    width: 100%; /* 幅を100%に設定 */
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: hidden; /* 横スクロールを防止 */
}

.internship-management-container h1, .internship-management-container h2 {
    text-align: center;
    color: #333;
    font-size: 2em;
}

.internship-management-container .new-internship-button-container {
    text-align: center;
    margin: 20px 0;
}

.internship-management-container .new-internship-button {
    display: inline-block;
    max-width: 100%;
    width: auto;
    padding: 15px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.internship-management-container .new-internship-button:hover {
    background-color: #218838;
}

.internship-management-container .button {
    display: inline-block;
    margin: 5px 0;
    padding: 10px 15px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
    width: auto;
}

.internship-management-container .button:hover {
    background-color: #005a87;
}

.internship-management-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 12px;
    /* table-layout: fixed; 削除 */
}

.internship-management-container th, .internship-management-container td {
    border-bottom: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.internship-management-container .text-left {
    text-align: left;
}

.internship-management-container th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.internship-management-container td {
    vertical-align: middle;
    word-break: break-word; /* 長い単語を折り返す */
}

.internship-management-container .title {
    max-width: 80px;
    word-wrap: break-word;
}

.internship-management-container .date {
    max-width: 100px;
}

.internship-management-container .status strong {
    color: #0073aa;
    font-weight: bold;
}

.internship-management-container .text-big strong {
    color: #539bea;
    font-size: 14px;
    font-weight: bold;
}

/* タブレットサイズ（768px以下） */
@media (max-width: 768px) {
    .internship-management-container {
        padding: 15px;
    }

    .internship-management-container h1, .internship-management-container h2 {
        font-size: 1.5em;
    }

    .internship-management-container .new-internship-button {
        width: 100%;
        font-size: 16px;
        padding: 12px 16px;
    }

    .internship-management-container .button {
        font-size: 10px;
        padding: 8px 12px;
    }

    .internship-management-container table {
        font-size: 10px;
    }

    .internship-management-container th, .internship-management-container td {
        padding: 6px;
    }

    /* テーブルのヘッダーを非表示にし、各セルにラベルを表示 */
    .internship-management-container table thead {
        display: none;
    }

    .internship-management-container table, 
    .internship-management-container table tbody, 
    .internship-management-container table tr, 
    .internship-management-container table td {
        display: block;
        width: 100%;
    }

    .internship-management-container table tr {
        margin-bottom: 15px;
        border-bottom: 2px solid #ddd;
    }

    .internship-management-container table td {
        text-align: right;
        padding-left: 40%;
        position: relative;
        word-break: break-word;
    }

    .internship-management-container table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }
}

/* モバイルサイズ（480px以下） */
@media (max-width: 480px) {
    .internship-management-container {
        padding: 10px;
    }

    .internship-management-container h1, .internship-management-container h2 {
        font-size: 1.2em;
    }

    .internship-management-container .new-internship-button {
        font-size: 14px;
        padding: 10px 12px;
    }

    .internship-management-container .button {
        font-size: 9px;
        padding: 6px 10px;
    }

    .internship-management-container table {
        font-size: 9px;
    }

    .internship-management-container th, .internship-management-container td {
        padding: 4px;
    }
}




/*------------- インターン新規作成ページ ----------------*/
/* インターンシップ新規作成・編集ページ共通のスタイル */
.internship-new-container,
.internship-edit-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.internship-new-container h1,
.internship-edit-container h1 {
    text-align: center;
    color: #333;
}

.internship-new-container .form-group,
.internship-edit-container .form-group {
    margin-bottom: 15px;
}

.internship-new-container .form-group label,
.internship-edit-container .form-group label {
    display: block;
    font-weight: bold;
}

.internship-new-container .form-group input[type="text"],
.internship-edit-container .form-group input[type="text"],
.internship-new-container .form-group input[type="file"],
.internship-edit-container .form-group input[type="file"],
.internship-new-container .form-group select,
.internship-edit-container .form-group select,
.internship-new-container .form-group textarea,
.internship-edit-container .form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.internship-new-container .form-group.button-container,
.internship-edit-container .form-group.button-container {
    text-align: center;
}

.internship-new-container .form-group .button,
.internship-edit-container .form-group .button {
    display: inline-block;
    width: 250px;
    padding: 15px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.internship-new-container .form-group .button:hover,
.internship-edit-container .form-group .button:hover {
    background-color: #005a87;
    transform: scale(1.05);
}

.internship-new-container .save-message,
.internship-new-container .error-message,
.internship-edit-container .save-message,
.internship-edit-container .error-message {
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
}

.internship-new-container .save-message,
.internship-edit-container .save-message {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.internship-new-container .error-message,
.internship-edit-container .error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.taxonomy-group {
    display: flex;
    flex-wrap: wrap;
}

.taxonomy-item {
    display: flex;
    align-items: center;
    margin-right: 20px; /* チェックボックスとラベル間の余白 */
    margin-bottom: 10px;
}

.taxonomy-item input {
    margin-right: 5px; /* チェックボックスとラベル間の余白 */
}

/*-------------- 応募者一覧ページ -----------------*/
/* 応募者一覧ページのコンテナ */
.applicant-list-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-sizing: border-box; /* 追加 */
    width: 95%; /* 追加 */
}

/* タイトル */
.applicant-list-container h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333333;
    text-align: center;
}

/* テーブル全体 */
.applicant-list-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* 列幅を固定 */
    background-color: #f9f9f9;
    overflow-x: hidden; /* 追加: 横スクロールを防止 */
}

/* テーブルヘッダー */
.applicant-list-table thead {
    background-color: #0073aa;
    color: #ffffff;
}

.applicant-list-table th {
    padding: 12px 15px;
    text-align: left;
    font-size: 1em;
    border-bottom: 2px solid #005f8d;
    white-space: nowrap;
}

/* テーブルボディのセル */
.applicant-list-table td {
    padding: 12px 6px;
    border-bottom: 1px solid #e0e0e0;
    color: #555555;
    vertical-align: middle;
    word-wrap: break-word;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 列幅の調整 */
.applicant-list-table th:nth-child(1),
.applicant-list-table td:nth-child(1) { /* 氏名 */
    width: 12%;
}

.applicant-list-table th:nth-child(2),
.applicant-list-table td:nth-child(2) { /* シメイ */
    width: 13%;
}

.applicant-list-table th:nth-child(3),
.applicant-list-table td:nth-child(3) { /* 性別 */
    width: 7%;
}

.applicant-list-table th:nth-child(4),
.applicant-list-table td:nth-child(4) { /* 応募日 */
    width: 15%;
}

.applicant-list-table th:nth-child(5),
.applicant-list-table td:nth-child(5) { /* 応募したインターンシップ */
    width: 33%;
    white-space: normal; /* テキストの折り返しを許可 */
    word-break: break-word;
}

.applicant-list-table th:nth-child(6),
.applicant-list-table td:nth-child(6) { /* プロフィール */
    width: 10%;
    text-align: center;
}

.applicant-list-table th:nth-child(7),
.applicant-list-table td:nth-child(7) { /* アクション */
    width: 10%;
    text-align: center;
}

/* リンクのスタイル */
.profile-link,
.message-link {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.profile-link:hover,
.message-link:hover {
    text-decoration: none;
    color: #005f8d;
}

/* メッセージボタンコンテナ */
.message-button-container {
    position: relative;
    display: inline-block;
}

/* メッセージリンク */
.message-link {
    background-color: #28a745;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.message-link:hover {
    background-color: #218838;
}

/* 通知バッジ */
.notification-badge {
    background-color: #dc3545;
    color: #ffffff;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 0.75em;
    position: absolute;
    top: -5px;
    right: -10px;
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

/* テーブルのストライプ */
.applicant-list-table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.applicant-list-table tbody tr:hover {
    background-color: #e9ecef;
}

/* 応募者がいない場合のセル */
.applicant-list-table tbody td[colspan="7"] {
    text-align: center;
    padding: 20px;
    color: #777777;
    font-size: 1.1em;
}

/* レスポンシブ対応 */

/* 画面幅が768px以下の場合 */
@media (max-width: 768px) {
    .applicant-list-container h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .applicant-list-table thead {
        display: none;
    }

    .applicant-list-table, 
    .applicant-list-table tbody, 
    .applicant-list-table tr, 
    .applicant-list-table td {
        display: block;
        width: 100%;
    }

    .applicant-list-table tr {
        margin-bottom: 15px;
        border-bottom: 10px solid #fff;
    }

    .applicant-list-table td {
        padding-left: 50%;
        position: relative;
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .applicant-list-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    /* 列幅の調整 */
    .applicant-list-table th:nth-child(1),
    .applicant-list-table td:nth-child(1) { /* 氏名 */
        width: unset;
    }

    .applicant-list-table th:nth-child(2),
    .applicant-list-table td:nth-child(2) { /* シメイ */
        width: unset;
    }

    .applicant-list-table th:nth-child(3),
    .applicant-list-table td:nth-child(3) { /* 性別 */
        width: unset;
    }

    .applicant-list-table th:nth-child(4),
    .applicant-list-table td:nth-child(4) { /* 応募日 */
        width: unset;
    }

    .applicant-list-table th:nth-child(5),
    .applicant-list-table td:nth-child(5) { /* 応募したインターンシップ */
        width: unset;
        white-space: normal; /* テキストの折り返しを許可 */
        word-break: break-word;
    }

    .applicant-list-table th:nth-child(6),
    .applicant-list-table td:nth-child(6) { /* プロフィール */
        width: unset;
        text-align: center;
    }

    .applicant-list-table th:nth-child(7),
    .applicant-list-table td:nth-child(7) { /* アクション */
        width: unset;
        text-align: center;
    }

    .new-internship-button,
    .message-link,
    .profile-link {
        display: block;
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .message-button-container {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
}

/* ---------- 応募者プロフィール  -------------*/
/* コンテナのスタイル */
.author-profile-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* タイトルのスタイル */
.author-profile-container h1 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

/* プロフィール詳細のスタイル */
.profile-details p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* フィールドのラベル部分 */
.profile-details p strong {
    font-weight: bold;
    color: #2980b9;
}

/* リンクのスタイル */
.profile-details a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

/*-------------メッセージ----------------*/
.message-container {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 20px;
    background-color: #f9f9f9; /* 背景を淡い色に */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 軽いシャドウで立体感を追加 */
}

.message-title {
    font-size: 2em; /* 大きめのフォントサイズで目立たせる */
    color: #0073aa; /* テーマカラーに合わせた色 */
    margin-bottom: 10px; /* 下部にスペースを確保 */
    font-weight: bold; /* 太字で強調 */
}

.message-intern-title {
    font-size: 1.5em; /* 適度な大きさに設定 */
    color: #333; /* 濃い色で読みやすく */
    margin-bottom: 20px; /* 下部に広めのスペース */
    font-weight: normal; /* 通常の太さで階層を明確に */
}

.comment-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    margin-bottom: 15px;
    clear: both;
    position: relative; /* 吹き出しの三角形部分の配置に必要 */
}

.applicant-bubble, .recruitment-bubble {
    display: inline-block;
    padding: 12px 16px;
    max-width: 65%;
    margin-bottom: 5px;
    position: relative;
    font-size: 0.9em;
    line-height: 1.5;
}

.applicant-bubble {
    background-color: #ececec;
    border-radius: 15px 15px 15px 0; /* 左下を尖らせる */
    border: 1px solid #ddd;
}

.recruitment-bubble {
    background-color: #0073aa;
    color: white;
    border-radius: 15px 15px 0 15px; /* 右下を尖らせる */
    float: right;
    border: 1px solid #005a87;
    text-align: left; /* 吹き出し内のテキストを左寄せに */
}

.comment-author {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.85em;
    color: #333;
}

.comment-date {
    font-size: 0.75em;
    color: #999;
    margin-top: 5px;
    clear: both;
}

.comment-item-left .comment-date {
    text-align: left; /* 応募者側のコメントは左揃え */
}

.comment-item-right .comment-date {
    text-align: right; /* 採用担当者側のコメントは右揃え */
}

.comment-form-container {
    margin-top: 40px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 8px;
    
    /* フレックスボックスの設定 */
    display: flex;
    flex-direction: column;
    gap: 10px; /* 子要素間の隙間 */
}

.comment-form-container textarea {
    width: 100%; 
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    resize: none;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.05); /* 内側のシャドウで軽い立体感 */
    box-sizing: border-box; /* パディングを含めて幅を計算 */
}

.comment-form-container .form-submit {
    display: flex;
    justify-content: flex-end; /* 右寄せ */
}

.comment-form-container .form-submit button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
    
    /* 余白を調整 */
    margin-top: 5px;
}

.comment-form-container .form-submit button:hover {
    background-color: #005a87;
}


/*----------  メニューの通知機能  ------------*/
.notification_area {
    position: relative;
    display: inline-block;
}

.user-notifications {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 0;
    list-style: none;
    z-index: 1000;
    display: none;
    width: 300px; /* 横幅を広げる */
    box-shadow: 0px 8px 16px rgba(47, 40, 40, 0.2); /* シャドウを追加して浮き上がるように */
    border-radius: 8px; /* 角を丸くする */
    overflow: hidden;
}

.user-notifications li {
    padding: 10px 15px; /* パディングを調整 */
    border-bottom: 1px solid #eee; /* 各アイテム間に区切り線を追加 */
}

.user-notifications li a {
    text-decoration: none;
    color: #333;
    font-size: 14px; /* フォントサイズを調整 */
    display: block;
    white-space: normal; /* 改行を許可 */
    overflow: hidden;
    text-overflow: ellipsis; /* 長すぎるテキストを切り捨て */
    word-wrap: break-word; /* 長い単語を折り返す */
}

.user-notifications li a:hover {
    background-color: #f7f7f7; /* ホバー時に背景色を変更 */
}

.user-notifications li:last-child {
    border-bottom: none; /* 最後のアイテムの区切り線を削除 */
}

/* スクロールバーを追加して5件以上の通知がある場合に対応 */
.user-notifications {
    max-height: 300px; /* 5件分の高さを確保 */
    overflow-y: auto;
}

/* ホバー時に表示する */
.notification_toggle:hover + .notification_area .user-notifications {
    display: block;
}

.notification_area:hover .user-notifications {
    display: block;
}

/*----------   通知一覧ページ    -----------*/
/* 通知一覧ページのコンテナ */
.notifications-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* タイトル */
.notifications-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333333;
    text-align: center;
}

/* 通知リスト */
.notifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 通知アイテム */
.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.notification-item:last-child {
    border-bottom: none;
}

/* 未読通知のスタイル */
.unread-notification {
    background-color: #f0f8ff;
    font-weight: bold;
}

/* 通知リンク */
.notification-link {
    flex: 1;
    margin-right: 20px;
    color: #0073aa;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notification-link:hover {
    text-decoration: underline;
    color: #005f8d;
}

/* 通知日時 */
.notification-date {
    flex-shrink: 0;
    color: #777777;
    font-size: 0.9em;
    white-space: nowrap;
}

/* ホバー効果 */
.notification-item:hover {
    background-color: #f9f9f9;
}

/* 応募者がいない場合のメッセージ */
.notifications-container p {
    text-align: center;
    color: #777777;
    font-size: 1.1em;
    padding: 20px 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .notification-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .notification-link {
        margin-right: 0;
        margin-bottom: 10px;
        white-space: normal;
    }

    .notification-date {
        align-self: flex-end;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .notifications-container {
        padding: 15px;
    }

    .notifications-title {
        font-size: 1.5em;
    }

    .notification-item {
        padding: 10px 15px;
    }

    .notification-link {
        font-size: 0.95em;
    }

    .notification-date {
        font-size: 0.8em;
    }
}

/* ーーーーーーーー応募者用アカウント設定ページのスタイルーーーーーーーー */
.account-settings-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.account-settings-container h1 {
    font-size: 28px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.account-settings-item {
    margin-bottom: 20px;
}

.account-settings-item label {
    font-size: 18px;
    font-weight: 600;
    color: #34495e;
    display: block;
    margin-bottom: 10px;
}

.account-settings-item span {
    font-size: 16px;
    color: #7f8c8d;
    display: block;
    padding: 10px;
    background-color: #ecf0f1;
    border-radius: 5px;
}

/* テキストインプット用のスタイル */
.account-settings-item input[type="text"],
.account-settings-item input[type="email"],
.account-settings-item input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    background-color: #f7f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.account-settings-item input[type="text"]:focus,
.account-settings-item input[type="email"]:focus,
.account-settings-item input[type="password"]:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    outline: none;
}

.account-settings-item input[type="checkbox"],
.account-settings-item input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
    vertical-align: middle;
    margin: 0 auto;
}

.account-settings-item button,
.delete-account-link {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none; /* リンクの下線を消す */
}

.account-settings-item button:hover,
.delete-account-link:hover {
    background-color: #2980b9;
}

.delete-account-link {
    background-color: #e74c3c;
}

.delete-account-link:hover {
    background-color: #c0392b;
}

.account-settings-item button:not(.delete-account-button) {
    margin-top: 10px;
}

/* エラーメッセージのスタイル */
.error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: center;
}


/* ーーーーーーーーパスワード変更ページのスタイルーーーーーーーーー */
.password-change-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.password-change-container h1 {
    font-size: 28px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.password-change-item {
    margin-bottom: 20px;
}

.password-change-item label {
    font-size: 18px;
    font-weight: 600;
    color: #34495e;
    display: block;
    margin-bottom: 10px;
}

.password-change-item input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.password-change-container button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.password-change-container button:hover {
    background-color: #2980b9;
}

/* エラーメッセージのスタイル */
.password-change-container .error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: center;
}
/* パスワード変更確認ページのスタイル */
.confirmation-message {
    max-width: 600px;
    margin: 100px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirmation-message h1 {
    font-size: 28px;
    color: #27ae60;
    margin-bottom: 20px;
    font-weight: bold;
}

.confirmation-message p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 30px;
}


/*----------お問合せ----------*/
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.contact-form-container h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form-content {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.contact-form-container .wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-container .wpcf7 input[type="text"],
.contact-form-container .wpcf7 input[type="email"],
.contact-form-container .wpcf7 textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f9f9f9;
}

.contact-form-container .wpcf7 textarea {
    resize: vertical;
    height: 150px;
}

.contact-form-container .wpcf7 input[type="submit"] {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.contact-form-container .wpcf7 input[type="submit"]:hover {
    background-color: #2980b9;
}

.contact-form-container .wpcf7 input[type="button"] {
    background-color: #ededed;
    color: rgb(25, 25, 25);
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-right: 20px;
}

/*----------退会確認ページ----------*/
.confirmation-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.confirmation-container h1 {
    font-size: 28px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.confirmation-container p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 16px;
    color: #34495e;
    margin-left: 5px;
}

.form-group input[type="checkbox"] {
    transform: scale(1.2);
    vertical-align: middle;
}

.error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: center;
}

.delete-account-button {
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.delete-account-button:hover {
    background-color: #c0392b;
}
/*----------退会完了ページ----------*/
.account-deleted-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.account-deleted-container h1 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
}

.account-deleted-container p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.return-home-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.return-home-button:hover {
    background-color: #2980b9;
}

/*----------- single ------------*/
.single-main {
    background-color: #FFF;
}
.single-contents {
    padding-bottom: 24px;
    background-color: #FFF;
}
@media screen and (min-width: 768px) {
    .single-main {
        background-color: #F7F7F7;
    }
    .single-contents {
        padding-bottom: 24px;
        background-color: #FFF;
    }
    .single-contents {
        padding-bottom: 80px;
        background-color: transparent;
    }
}
@media screen and (min-width: 1024px) {
    .single-post {
        display: flex;
    }
}
.post-article,
.post-video,
.post-feature {
    width: 100%;
    margin-bottom: 40px;
}
.post {
    background-color: #FFF;
}
.post_inner {
    max-width: 720px;
    margin: auto;
}

/*----------- .post_content -------------*/
.post_content {
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.post_content--paid {
    margin-top: 24px;
}
.post_content > h2,
.post_content > h3,
.post_content > h4 {
    margin-top: 56px;
    margin-bottom: 24px;
    font-weight: bold;
    line-height: 1.75;
}
.post_content > h2 {
    padding-left: 12px;
    border-left: 6px solid #40D0B6;
    font-size: 21px;
}
.post_content > h3 {
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #F7F7F7;
    font-size: 18px;
}
.post_content > h4 {
    padding-bottom: 12px;
    border-bottom: 1px solid;
    font-size: 16px;
}
.post_content > p {
    margin-top: 1.5em;
    font-size: 16px;
    line-height: 2;
}
.post_content > ul {
    margin-top: 1.5em;
}
.post_content > ul li {
    margin-left: 1em;
    font-size: 16px;
    line-height: 2;
}
.post_content > ul li {
    list-style: disc outside;
}
.post_content > ol li {
    list-style: decimal outside;
}
.post_content a {
    position: relative;
    color: #17C4BB;
    text-decoration: underline;
}
.post_content a:hover {
    text-decoration: none;
}
.post_content figure {
    max-width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: center;
}
.post_content > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 24px;
    margin-bottom: 24px;
}
.post_content img {
    border-radius: 4px;
}
.post_content figcaption {
    margin-top: 8px;
    color: #999;
    font-size: 12px;
    line-height: 1.5;
}
.post_content figure div {
    position: relative;
}
.post_content figure div::before {
    display: block;
    padding-top: 56.25%;
    content: '';
}
.post_content figure div iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: 0.2s;
}
.post_content blockquote {
    margin-top: 1.5em;
    display: inline-block;
    position: relative;
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-bottom: 1.5em;
    background-color: #E5F8F5;
}
.post_content blockquote p {
    margin-top: 1.5em;
    font-size: 16px;
    line-height: 2;
}
.post_content blockquote cite {
    display: block;
    margin-top: 2em;
    font-size: 12px;
    color: #999;
    text-align: right;
}
.post_content strong {
    font-weight: bold;
}
.post_content > table {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
}
.post_content > table tr {
    width: 100%;
}
.post_content > table tr:first-child td {
    background-color: #40D0B6;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    word-break: keep-all;
}
.post_content > table tr:nth-of-type(2n) {
    background-color: #E5F8F5;
}
.post_content > table th,
.post_content > table td {
    padding: 8px 12px;
    font-size: 14px;
}
.post_content > table tr td:not(:first-child) {
    border-left: 2px solid #FFF;
}

/*------------ .post_header --------------*/
.post_eyecatch {
    width: 100vw; /* 109.7561% */
    max-width: 720px;
    margin-left: -4.87805%;
    margin-right: -4.87805%;
    margin-bottom: 20px;
}
.post_eyecatch-img {
    width: 100%;
    max-width: 720px;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.post_video {
    position: relative;
    width: 100vw; /* 109.7561% */
    max-width: 720px;
    margin-left: -4.87805%;
    margin-right: -4.87805%;
    margin-bottom: 20px;
}
.post_video.is-fixed {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 10;
    margin-left: auto;
}
.post_video.is-small {
    width: 50vw;
}
.post_video::before {
    display: block;
    padding-top: 56.25%;
    content: '';
}
.post_video-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: 0.2s;
}
.post_meta {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.post_category {
    margin-right: 6px;
    margin-bottom: 6px;
}
.post_category-link {
    display: inline-block;
    height: 23px;
    padding: 4px 6px;
    border: 2px solid #40D0B6;
    border-radius: 4px;
    color: #40D0B6;
    font-size: 12px;
    font-weight: bold;
}
.post_category-link:hover {
    background-color: #40D0B6;
    color: #FFF;
}
.post_date {
    display: flex;
    align-items: center;
    color: #A7A7A7;
    font-size: 12px;
}
.post_date-updated {
    margin-left: 6px;
}
.post_date-icon {
    margin-right: 2px;
}
.post_title {
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.08em;
}
.post_title--article {
    font-size: 21px;
}
.post_title--video {
    font-size: 18px;
}
.post_title--feature {
    font-size: 21px;
}
.post_title-icon {
    margin-right: 2px;
    color: #C4BD15;
    font-size: 120%;
}
.post_tags {
    display: flex;
    flex-wrap: wrap;
}
.post_tag {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 10px;
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid;
    font-size: 12px;
}
.post_tag:hover {
    background-color: #343B3B;
    color: #FFF;
}
.share-list {
    display: flex;
}
.share-list_item {
    display: block;
}
.share-list_item:not(:first-child) {
    margin-left: 8px;
}
.share-list_link,
.share-list_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #E5E6E6;
    border-radius: 50%;
    background-color: #FFF;
    color: #343B3B;
}
.share-list_icon {
    font-size: 24px;
} 
.share-list_link--x:hover {
    background-color: #000;
    color: #FFF;
}
.share-list_link--facebook:hover {
    background-color: #3B5998;
    color: #FFF;
}
.share-list_btn--copy:hover {
    background-color: #17C4BB;
    color: #FFF;
}
.copy-message {
    position: fixed;
    bottom: 48px;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 16px;
    color: #FFF;
    font-size: 14px;
    text-align: center;
    opacity: 1;
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
.copy-message.fade-out {
    animation: fadeOut 1.5s ease-out forwards;
}
.copy-message.success {
    background-color: #40D0B6;
}
.copy-message.error {
    background-color: #D0405A;
}

@media screen and (min-width: 721px) {
    .post_eyecatch, .post_video {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 1200px) {
    .post {
        padding-top: 80px;
    }
}

/*----------- .post_footer --------------*/
.post_author {
    margin-top: 1.5em;
    border-top: 1px solid #E5E6E6;
}
.author-box {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E6E6;
}
.author-box_label {
    display: inline-block;
    margin-bottom: 6px;
    padding: 4px 6px;
    background-color: #7A7A7A;
    border-radius: 2px;
    color: #FFF;
    font-size: 11px;
}
.author-box_name {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}
.author-box_desc {
    margin-top: 1em;
    font-size: 12px;
    line-height: 1.75;
}
.paywall {
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid #E5E6E6;
}
.post-video .paywall {
    margin-top: 24px;
    border-top: 1px solid #E5E6E6;
}
.post-article .paywall::before {
    position: absolute;
    top: -240px;
    left: 0;
    width: 100%;
    height: 240px;
    background-image: linear-gradient(to bottom, transparent 0, #fff 100%);
    content: '';
}
.paywall_logo {
    margin-bottom: 16px;
    text-align: center;
}
.paywall_ttl {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
}
.paywall_ttl-em {
    color: #40D0B6;
}
.paywall_plan {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: bold;
}
.paywall_price {
    color: #40D0B6;
    font-size: 36px;
    margin-left: 4px;
    margin-right: 4px;
}
.paywall_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.paywall_item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
}
.paywall_item-icon {
    margin-right: 8px;
}
.paywall_button {
    margin-top: 20px;
}
.paywall_button-item {
    display: block;
    margin-top: 8px;
    padding: 20px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}
.paywall_button--regist {
    background-color: #D08840;
    font-size: 16px;
    color: #FFF;
}
.paywall_button--login {
    background-color: #FFF;
    border: 2px solid #40D0B6;
    font-size: 14px;
    color: #40D0B6;
}
.paywall_button--regist:hover {
    background-color: #D06D40;
}
.paywall_button--login:hover {
    color: #FFF;
    background-color: #40D0B6;
}

.post_footer {
    padding-bottom: 40px;
    border-bottom: 1px solid #E5E6E6;
}
.post_footer .share-list {
    justify-content: flex-end;
}
/*----------- inner -------------*/
.inner {
    width: 91.11111%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/*----------- sidebar -------------*/

.sidebar {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.side-banner {
    margin-bottom: 20px;
}
.side-banner a {
    opacity: 1;
}
.side-banner a:hover {
    opacity: 0.8;
}
@media screen and (min-width: 1024px) {
    .index-contents_inner {
        display: flex;
    }
    .contents {
        max-width: 860px;
    }
    .sidebar {
        margin-left: 40px;
    }
}

/*-------------  icon  ----------------*/

  /* kabukatsu-icon */
  @font-face {
      font-family: 'kabukatsu-icon';
      src:  url('assets/fonts/kabukatsu-icon.eot');
      src:  url('assets/fonts/kabukatsu-icon.eot') format('embedded-opentype'),
        url('assets/fonts/kabukatsu-icon.ttf') format('truetype'),
        url('assets/fonts/kabukatsu-icon.woff') format('woff'),
        url('assets/fonts/kabukatsu-icon.svg') format('svg');
      font-weight: normal;
      font-style: normal;
      font-display: block;
  }
  [class^="icon-"], [class*=" icon-"] {
      font-family: 'kabukatsu-icon' !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }
.icon-clock:before {
    content: "\e901";
}
.icon-update:before {
    content: "\e914";
}
.icon-home:before {
    content: "\e907";
}
.icon-home_outline:before {
    content: "\e908";
}


/*-----------------  breadcrumb  ---------------------*/
.breadcrumb {
    padding-top: 10px;
    padding-bottom: 10px;
}
.breadcrumb_list {
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
}
.breadcrumb_item {
    display: flex;
    align-items: center;
}
.breadcrumb_item:not(:last-child)::after {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #A7A7A7;
    border-right: 1px solid #A7A7A7;
    transform: rotate(45deg);
    margin: 0 10px;
    content: "";
}
.breadcrumb_link {
    display: flex;
    align-items: center;
    color: #40D0B6;
}
.breadcrumb_link:hover {
    opacity: 0.75;
}
.breadcrumb_name {
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.5;
}
.breadcrumb_icon::before {
    display: inline-block;
    font-size: 16px;
}
@media screen and (min-width: 768px) {
    .breadcrumb {
        padding-top: 20px;
    }
}

/*--------記事一覧ページのスタイル ------------*/
.article-list-_contents,
.single-_contents {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.article-lists,
.single-posts {
    width: 70%;
}

.posts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.posts {
    width: calc(50% - 10px);
    background-color: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
}

.posts_link {
    text-decoration: none;
    color: inherit;
}

.posts_eyecatch {
    position: relative;
    width: 100%;
    padding-top: 66.6667%; /* 画像の縦横比を指定（高さ / 幅 * 100%）。例：高さが幅の66.6667%（3:2の比率） */
    overflow: hidden;
}

.posts_eyecatch-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.posts_meta {
    padding: 15px;
}

.posts_category {
    font-size: 12px;
    margin-bottom: 5px;
}

.posts_category-name {
    background-color: #0073aa;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
}

.posts_title {
    font-size: 18px;
    margin: 0 0 10px;
}

.posts_date {
    font-size: 12px;
    color: #999;
}

.posts_date-icon {
    margin-right: 5px;
}

/**
* ページネーション
*/
.pagination {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
}
.pagenation_list {
	text-align: center;
}
.pagenation_item {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 4px;
	font-size: 16px;
	line-height: 40px;
	border-radius: 50%;
	overflow: hidden;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
}
.pagenation_item:last-child {
	margin-right: 0;
}
.pagenation_item span {
	display: block;
	background-color: #cdeaea;
	color: #106064;
}
.pagenation_item a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #eee;
	color: #106064;
}
.pagenation_item a:hover {
	background-color: #cdeaea;
	color: #106064;
}
.pagenation_item.pagenation_control a::before {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}
.pagenation_first,
.pagenation_last,
.pagenation_ellipsis {
	display: none;
}

.pagenation_item .dots {
	background-color: rgb(244, 244, 244);
	color: #333;
}

.pagenation_item:has(.prev) {
	display: none;
}

.pagenation_item:has(.next) {
	width: 60px;
	border-radius: 20px;
}

@media screen and (min-width: 768px) {
	.pagination {
		margin-top: 56px;
		margin-bottom: 100px;
	}
	.pagenation_item {
		width: 53px;
		height: 53px;
		margin-right: 6px;
		font-size: 16px;
		line-height: 53px;
	}
	.pagenation_first,
	.pagenation_last,
	.pagenation_ellipsis {
		display: inline-block;
	}

	.pagenation_item:has(.next) {
		width: 100px;
		border-radius: 26px;
	}
}