@charset "UTF-8";

/*
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 899;
@include flex(row nowrap, flex-end, center);
width: 100%;
height: 80px;
padding: 10px 22px 10px 0;
background-color: $color-primary;

@include media(sp) {
height: 50px;
padding: 10px 15px 10px 0;
}

h1 {
position: absolute;
top: 0;
left: 0;
width: 400px;
height: 100px;
padding: 34px 22px 30px 18px;
background-color: #fff;
box-shadow: 0 3px 6px rgba(0,0,0,0.15);

@include media(sp) {
width: 200px;
height: 55px;
padding: 18px 10px 16px 10px;
}

img {
display: block;
width: 100%;
height: auto;
}
}

.logout_button {
width: 180px;
height: 50px;

@include media(sp) {
width: 100px;
height: 34px;
}

a {
@include flex(row wrap, center, center);
width: 100%;
height: 100%;
border-radius: 25px;
background-color: #fff;
color: $color-primary;
@include font(16, 2, 700, 0);
text-decoration: none;
transition: background-color .2s;

@include media(sp) {
font-size: 14px;
line-height: 1;
}

&:hover {
background-color: #CCD0F0;
}
}
}
}
*/
#main {
    background-color: #F2F5F9;
}

#main .lower_header {
    padding: 75px 20px 48px;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    #main .lower_header {
        padding: 30px 0 25px;
    }
}

#main .lower_header.text_center .lower_title {
    text-align: center;
}

#main .lower_header_inner,
#main .lower_contents_inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

    #main .lower_header_inner,
    #main .lower_contents_inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

#main .mypage_header {
    padding: 12px 20px;
}

@media screen and (max-width: 767px) {
    #main .mypage_header {
        padding: 12px 15px;
    }
}

#main .mypage_header .mypage_header_inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
}

@media screen and (max-width: 767px) {
    #main .mypage_header .mypage_header_inner {
        padding: 18px 16px;
    }
}

#main .mypage_header .mypage_header_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

#main .mypage_header .mypage_header_title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #1E293B;
}

#main .mypage_header .mypage_header_title::before {
    content: "";
    display: block;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3B82F6;
    box-shadow: 0 0 0 4px #DBEAFE;
}

#main .mypage_header .mypage_header_title .mypage_title_dot {
    display: block;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3B82F6;
    box-shadow: 0 0 0 4px #DBEAFE;
}

#main .mypage_header .mypage_user_wrap {
    margin-bottom: 20px;
}

#main .mypage_header .mypage_user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

#main .mypage_header .mypage_user_logo {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #DBEAFE;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#main .mypage_header .mypage_user_info {
    min-width: 0;
}

#main .mypage_header .mypage_user_company {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    color: #1E293B;
}

#main .mypage_header .mypage_user_name {
    margin: 4px 0 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    color: #64748B;
}

#main .mypage_header .mypage_my_card_button {
    display: none;
    flex: none;
    padding: 8px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    background-color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    color: #1E293B;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .15s, border-color .15s;
}

#main .mypage_header .mypage_my_card_button::before {
    content: "\1F4DD";
    display: inline-block;
    margin-right: 6px;
    font-size: 16px;
    line-height: 1;
}

#main .mypage_header .mypage_my_card_button:hover {
    background-color: #F8FAFC;
    border-color: #94A3B8;
}

#main .mypage_header .mypage_search_banner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(to right, #2563EB, #4F46E5);
    color: #fff;
}

@media screen and (max-width: 767px) {
    #main .mypage_header .mypage_search_banner {
        padding: 18px 16px;
    }
}

#main .mypage_header .mypage_search_banner_icon {
    flex: none;
    font-size: 28px;
    line-height: 1;
}

#main .mypage_header .mypage_search_banner_body {
    flex: 1 1 auto;
    min-width: 200px;
}

#main .mypage_header .mypage_search_banner_title {
    margin: 0 0 2px;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
}

#main .mypage_header .mypage_search_banner_desc {
    margin: 0;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.6;
    color: #DBEAFE;
}

#main .mypage_header .mypage_search_banner_button {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    border-radius: 12px;
    background-color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: #1D4ED8;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s;
}

#main .mypage_header .mypage_search_banner_button:hover {
    background-color: #EFF6FF;
}

#main .mypage_header .mypage_search_banner_arrow {
    font-size: 14px;
}

#main .mypage_header .mypage_jump_label {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    color: #94A3B8;
}

#main .mypage_header .mypage_jump_list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#main .mypage_header .mypage_jump_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid #E2E8F0;
    border-radius: 9999px;
    background-color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    color: #334155;
    text-decoration: none;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

#main .mypage_header .mypage_jump_link:hover {
    background-color: #EFF6FF;
    border-color: #93C5FD;
    color: #1D4ED8;
}

#main .mypage_header .mypage_jump_icon {
    font-size: 13px;
    line-height: 1;
}

#main .mypage_header .pickup.pickup-seminar {
    max-width: none;
    margin: 20px 0 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}

@media screen and (max-width: 767px) {
    #main .lower_contents_inner {
        padding-right: 0;
        padding-left: 0;
    }
}

#main .mypage_contents,
#main .login_contents {
    background-color: #F2F5F9;
    position: relative;
}

#main .mypage_contents::before,
#main .mypage_contents::after,
#main .login_contents::before,
#main .login_contents::after {
    position: absolute;
    display: block;
    content: none;
    width: 100px;
    height: 100%;
    z-index: 0;
}

#main .mypage_contents::before,
#main .login_contents::before {
    left: 0;
    bottom: 0;
    width: 318px;
    background: url(../../media/images/mypage/bg_left.svg) left bottom/100% no-repeat;
}

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

    #main .mypage_contents::before,
    #main .login_contents::before {
        width: 218px;
    }
}

#main .mypage_contents::after,
#main .login_contents::after {
    top: 0;
    right: 0;
    width: 300px;
    background: url(../../media/images/mypage/bg_right.svg) right top/100% no-repeat;
}

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

    #main .mypage_contents::after,
    #main .login_contents::after {
        width: 138px;
    }
}

#main .mypage_contents>*,
#main .login_contents>* {
    position: relative;
    z-index: 1;
}

#main .mypage_contents {
    padding: 150px 20px;
}

@media screen and (max-width: 767px) {
    #main .mypage_contents {
        padding: 100px 20px;
    }
}

#main .mypage_contents.release {
    padding: 12px 20px;
    background: transparent;
}

@media screen and (max-width: 767px) {
    #main .mypage_contents.release {
        padding: 12px 15px;
    }
}

#main .mypage_contents.release::before,
#main .mypage_contents.release::after {
    content: none;
}

#main .login_contents {
    padding: 106px 20px 117px;
}

@media screen and (max-width: 767px) {
    #main .login_contents {
        padding: 60px 20px;
    }
}

#main .login_contents.login_contents-flush {
    padding-top: 65px;
}

#main .login_contents.login_contents-flush .page_title_main {
    margin: -65px -20px 0;
}

#main .lower_contents {
    padding: 26px 26px 136px;
    background-color: #F2F5F9;
}

@media screen and (max-width: 767px) {
    #main .lower_contents {
        padding: 15px 15px 80px;
    }
}

#main section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 1280px) {
    #main section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 767px) {
    #main section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

#main {
    /*.mypage_title {
  	margin-bottom: 9px;
  	padding-left: 17px;
  	@include font(25, 1.36, 700, 0);
  	position: relative;

  	@include media(sp) {
  	padding-left: 12px;
  	font-size: 20px;
  }

  	&::before {
  	position: absolute;
  	top: 7px;
  	left: 0;
  	display: block;
  	content: "";
  	width: 5px;
  	height: calc(100% -  9px);
  	background-color: $color-blue;

  	@include media(sp) {
  	top: 5px;
  	width: 4px;
  	height: calc(100% -  7px);
  }
  }
  }*/
}

#main .user_name {
    margin: 0 0 0 35px;
    font-weight: 500;
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #707070;
}

@media screen and (max-width: 767px) {
    #main .user_name {
        margin: 0;
        font-size: 18px;
    }
}

#main .user_name:after {
    margin-left: 12px;
    content: "様";
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
}

@media screen and (max-width: 767px) {
    #main .user_name:after {
        margin-left: 10px;
        font-size: 14px;
    }
}

#main .comingsoon_title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 40px;
    line-height: 0.85;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {
    #main .comingsoon_title {
        font-size: 30px;
    }
}

#main .comingsoon_label {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.67;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    #main .comingsoon_label {
        font-size: 13px;
    }
}

#main .page_title {
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 33px;
    line-height: 1.66;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    #main .page_title {
        margin-bottom: 25px;
        font-size: 28px;
    }
}

#main .mypage_title,
#main .lower_title {
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
    position: relative;
}

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

    #main .mypage_title,
    #main .lower_title {
        font-size: 22px;
    }
}

#main .mypage_title {
    margin-bottom: 10px;
}

#main .page_label,
#main .lower_label {
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.03em;
}

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

    #main .page_label,
    #main .lower_label {
        font-weight: 500;
        font-size: 14px;
        line-height: 1.8;
        letter-spacing: 0.03em;
    }
}

#main .page_label {
    text-align: center;
}

#main .lower_label {
    margin: 10px 0;
    padding-left: 36px;
}

@media screen and (max-width: 767px) {
    #main .lower_label {
        padding-left: 28px;
    }
}

#main .settings {
    width: 100%;
    max-width: 820px;
    margin: 184px auto 0;
    padding-top: 21px;
    border-top: 1px solid #B7B7B7;
}

@media screen and (max-width: 767px) {
    #main .settings {
        margin-top: 60px;
        padding: 21px 0 0;
    }
}

#main .settings_title {
    margin-bottom: 37px;
    padding-left: 18px;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.47;
    letter-spacing: 0.05em;
    position: relative;
}

@media screen and (max-width: 767px) {
    #main .settings_title {
        margin-bottom: 20px;
        padding-left: 15px;
        font-size: 17px;
    }
}

#main .settings_title::before {
    position: absolute;
    top: 9px;
    left: -3px;
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #1167E8;
}

@media screen and (max-width: 767px) {
    #main .settings_title::before {
        left: 0;
        width: 8px;
        height: 8px;
        border-radius: 4px;
    }
}

#main .settings_list {
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    list-style: none;
}

@media screen and (max-width: 767px) {
    #main .settings_list {
        justify-content: center;
    }
}

#main .settings_list li {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: 400px;
    border-radius: 5px;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    #main .settings_list li {
        flex: 0 0 100%;
    }
}

#main .settings_list li a {
    display: block;
    padding: 27px 20px 21px;
    color: #333;
    text-align: center;
    text-decoration: none;
    position: relative;
}

@media screen and (max-width: 767px) {
    #main .settings_list li a {
        padding: 20px 20px 21px;
    }
}

#main .settings_list li a::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    content: "";
}

#main .settings_list li.edit a::before {
    top: 27px;
    width: 33px;
    height: 31px;
    background: url(../../media/images/mypage/icon_edit.svg) center/100% no-repeat;
}

#main .settings_list li.change a::before {
    top: 30px;
    width: 39px;
    height: 23px;
    background: url(../../media/images/mypage/icon_change.svg) center/100% no-repeat;
}

#main .settings_list_title {
    display: inline-block;
    margin-top: 45px;
    margin-bottom: 5px;
    padding-right: 20px;
    font-weight: 700;
    font-size: 17px;
    line-height: 2;
    letter-spacing: 0;
    position: relative;
}

@media screen and (max-width: 767px) {
    #main .settings_list_title {
        font-size: 15px;
    }
}

#main .settings_list_title:after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 8px;
    height: 12px;
    background: url(../../media/images/mypage/arrow.svg) center/100% no-repeat;
}

#main .settings_list_label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
}

@media screen and (max-width: 767px) {
    #main .settings_list_label {
        font-size: 12px;
    }
}

#main ul.index_list {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 40px;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    #main ul.index_list {
        gap: 15px 0;
        flex-wrap: wrap;
        padding: 0 20px;
    }
}

#main ul.index_list>li {
    flex: 1 1 25%;
    height: 60px;
    border-right: 1px solid #AEB7C5;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0;
    visibility: hidden;
}

#main ul.index_list>li.show {
    visibility: visible;
}

@media screen and (max-width: 1280px) {
    #main ul.index_list>li {
        height: 82px;
    }
}

@media screen and (max-width: 767px) {
    #main ul.index_list>li {
        flex: 1 1 50%;
        height: 50px;
        font-size: 12px;
    }
}

#main ul.index_list>li:first-of-type {
    border-left: 1px solid #AEB7C5;
}

@media screen and (max-width: 767px) {
    #main ul.index_list>li:nth-child(odd) {
        border-left: 1px solid #AEB7C5;
    }
}

#main ul.index_list>li a {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 10px 33px;
    color: #1B2684;
    text-decoration: none;
    text-align: center;
    position: relative;
    transition: opacity 0.2s;
}

#main ul.index_list>li a::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) rotate(90deg);
    display: block;
    content: "";
    width: 23px;
    height: 23px;
    border-radius: 12px;
    background: #1B2684 url(../../media/images/common/arrow_next_white.svg) center/11px 8px no-repeat;
}

#main ul.index_list>li a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    #main ul.index_list.multiline {
        padding: 0 10px;
    }
}

#main ul.index_list.multiline>li {
    height: auto;
}

#main ul.index_list.multiline>li[style] {
    display: none;
}

#main .pickup {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 16px;
    background-color: #fff;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    scroll-margin-top: 85px;
}

@media screen and (max-width: 767px) {
    #main .pickup {
        padding: 18px 16px;
    }
}

#main .pickup+.pickup {
    margin-top: 24px;
}

#main .pickup .pickup_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

#main .pickup_title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1E293B;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
}

#main .pickup_title::before {
    content: "";
    display: block;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3B82F6;
    box-shadow: 0 0 0 4px #DBEAFE;
}

#main .pickup .pickup_title_dot {
    display: block;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3B82F6;
    box-shadow: 0 0 0 4px #DBEAFE;
}

#main .pickup .pickup_head_link {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border: 1px solid #BFDBFE;
    border-radius: 9999px;
    background-color: #EFF6FF;
    color: #1D4ED8;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
}

#main .pickup .pickup_head_link:hover {
    background-color: #DBEAFE;
}

#main .pickup .pickup_head_arrow {
    font-size: 13px;
}

#main .pickup_label {
    margin: 0 0 16px;
    color: #64748B;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
}

#main .pickup-seminar {
    position: relative;
}

#main .pickup-seminar .pickup_seminar_layout::after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (min-width: 768px) {
    #main .pickup-seminar .pickup_seminar_layout:has(.nodata) {
        padding-bottom: 127px;
    }
}

@media screen and (max-width: 767px) {
    #main .pickup-seminar .pickup_seminar_layout {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}

#main .pickup-seminar .pickup_seminar_main {
    position: relative;
    min-width: 0;
}

@media screen and (max-width: 767px) {
    #main .pickup-seminar .pickup_seminar_main {
        display: contents;
    }
}

@media screen and (max-width: 767px) {
    #main .pickup-seminar .pickup_seminar_main .pickup_head {
        order: 1;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    #main .pickup-seminar .pickup_seminar_main .pickup_label {
        order: 2;
        margin-bottom: 0;
    }
}

#main .pickup-seminar .pickup_seminar_main .nodata {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    right: 0;
    width: auto;
    background-color: transparent;
}

@media screen and (max-width: 767px) {
    #main .pickup-seminar .pickup_seminar_main .nodata {
        position: static;
        width: 100%;
        background-color: #fff;
        order: 5;
    }
}

#main .pickup-seminar .pickup_seminar_side {
    float: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-left: 16px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    #main .pickup-seminar .pickup_seminar_side {
        display: contents;
    }
}

@media screen and (max-width: 767px) {
    #main .pickup-seminar .pickup_seminar_side .pickup_head_link {
        order: 3;
        align-self: flex-end;
    }
}

#main .pickup-seminar .pickup_seminar_qr {
    display: none;
    flex: none;
    width: 130px;
    height: 130px;
    border-radius: 12px;
    background-color: #F8FAFC;
    border: 1px dashed #CBD5E1;
}

@media screen and (max-width: 767px) {
    #main .pickup-seminar .pickup_seminar_qr {
        width: 72px;
        height: 72px;
        order: 4;
        align-self: flex-end;
    }
}

#main .pickup-seminar .offer_row_list {
    overflow: hidden;
    min-width: 240px;
}

@media screen and (max-width: 767px) {
    #main .pickup-seminar .offer_row_list {
        order: 5;
    }
}

#main .pickup-seminar .offer_row_list .offer_row {
    cursor: default;
}

#main .pickup-seminar .offer_row_list .offer_row:hover {
    color: #334155;
}

#main .message_list {
    margin: 0;
    padding: 0;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background-color: #fff;
    list-style: none;
    overflow: hidden;
}

#main .message_list>li {
    border-bottom: 1px solid #F1F5F9;
}

#main .message_list>li:last-child {
    border-bottom: none;
}

#main .message_list>li>a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: #334155;
    text-decoration: none;
    transition: background-color 0.15s;
}

#main .message_list>li>a:hover {
    background-color: #F8FAFC;
}

#main .message_list>li .message_dot {
    visibility: hidden;
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F43F5E;
}

#main .message_list>li .message_dot.unread {
    visibility: visible;
}

#main .message_list>li .image {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
}

#main .message_list>li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#main .message_list>li .message {
    flex: 1 1 auto;
    min-width: 0;
}

#main .message_list>li .message_from {
    margin: 0;
    color: #1E293B;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
}

#main .message_list>li .message_outline {
    margin: 2px 0 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #64748B;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0;
}

#main .message_list>li .message_time {
    flex: none;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: #F1F5F9;
    color: #94A3B8;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0;
    white-space: nowrap;
}

#main .message_excluded {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0 0;
    color: #94A3B8;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0;
}

#main .message_excluded strong {
    font-weight: 700;
    color: #64748B;
}

#main .message_excluded_icon {
    flex: none;
    font-size: 14px;
    line-height: 1;
}

#main .matching_pill_list {
    display: flex;
    flex-flow: row wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#main .matching_pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #A7F3D0;
    border-radius: 12px;
    background-color: #ECFDF5;
    color: #065F46;
    cursor: pointer;
    transition: background-color 0.15s;
}

#main .matching_pill:hover {
    background-color: #D1FAE5;
}

#main .matching_pill_name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
}

#main .pickup_badge {
    display: none;
    align-items: center;
    padding: 2px 10px;
    border-radius: 9999px;
    border: 1px solid;
    white-space: nowrap;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
}

#main .pickup_badge.amber {
    border-color: #FDE68A;
    background-color: #FFFBEB;
    color: #B45309;
}

#main .pickup_badge.blue {
    border-color: #BFDBFE;
    background-color: #EFF6FF;
    color: #1D4ED8;
}

#main .offer_row_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

#main .offer_row_list>li+li {
    margin-top: 6px;
}

#main .offer_row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    margin: 0 -8px;
    border-radius: 8px;
    cursor: pointer;
    color: #334155;
    transition: color 0.15s;
}

#main .offer_row:hover {
    color: #1D4ED8;
}

#main .offer_row.read {
    color: #94A3B8;
}

#main .offer_row.read:hover {
    color: #94A3B8;
}

#main .offer_row_badge {
    display: inline-flex;
    flex: none;
    align-items: center;
    visibility: hidden;
    height: 22px;
    padding: 0 10px;
    border-radius: 9999px;
    background-color: #EB126D;
    color: #fff;
    white-space: nowrap;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0;
}

#main .offer_row_badge.is-unread {
    visibility: visible;
}

#main .offer_row_date {
    flex: none;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: #F1F5F9;
    color: #94A3B8;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0;
}

#main .offer_row.read .offer_row_date {
    background-color: #F8FAFC;
    color: #CBD5E1;
}

#main .offer_row_text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 500;
}

#main .offer_row.read .offer_row_text {
    font-weight: 400;
}

#main .offer_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

#main .offer_list>li+li {
    margin-top: 14px;
}

#main .offer_list_row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid #E3E7EF;
    border-radius: 14px;
    background-color: #fff;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s, background-color 0.2s;
}

#main .offer_list_row:hover {
    border-color: #1B2684;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.12);
}

#main .offer_list_row.denied {
    opacity: 0.7;
}

#main .offer_list_row.sent .cancel_offer {
    width: 100%;
    display: flex;
    justify-content: center;
}

#main .offer_list_row.sent .cancel_offer .button_wrap {
    margin-top: 14px;
}

#main .offer_list_row.sent .cancel_offer .button_wrap .button_action {
    width: 160px;
    height: 32px;
    font-size: 12px;
    opacity: 0.8;
}

#main .offer_list_row.unmatched {
    background-color: #F8FAFC;
    border-color: #E2E8F0;
}

#main .offer_list_row.unmatched .offer_list_row_company,
#main .offer_list_row.unmatched .offer_list_row_outline {
    border-left-color: #E2E8F0;
}

#main .offer_list_row.unmatched .tag_list li {
    border-color: #CBD5E1;
    background-color: #E2E8F0;
    color: #64748B;
}

#main .offer_list_row.unmatched .company,
#main .offer_list_row.unmatched .headline {
    color: #64748B;
}

#main .offer_list_row.unmatched .website a,
#main .offer_list_row.unmatched .message {
    color: #94A3B8;
}

@media screen and (max-width: 767px) {
    #main .offer_list_row {
        padding: 16px 15px;
    }
}

#main .offer_list_row_status {
    flex: 0 0 150px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

@media screen and (max-width: 767px) {
    #main .offer_list_row_status {
        flex: 1 1 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

#main .offer_list_row_status_top {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

#main .offer_list_row_date {
    color: #94A3B8;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0;
}

#main .offer_match_badge {
    display: inline-flex;
    align-items: center;
    flex: none;
    height: 20px;
    padding: 0 8px;
    border-radius: 9999px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
}

#main .offer_match_badge-matched {
    border: 1px solid #A7F3D0;
    background-color: #ECFDF5;
    color: #047857;
}

#main .offer_match_badge-unmatched {
    border: 1px solid #CBD5E1;
    background-color: #E2E8F0;
    color: #64748B;
}

#main .offer_list_row_company {
    flex: 0 0 220px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 16px;
    border-left: 1px solid #F1F5F9;
}

#main .offer_list_row_company .image {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #F1F5F9;
    border: 1px solid #E3E7EF;
}

#main .offer_list_row_company .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#main .offer_list_row_company .image-empty {
    background-color: #F1F5F9;
}

#main .offer_list_row_company .text {
    min-width: 0;
}

#main .offer_list_row_company .tag_list {
    margin-bottom: 4px;
    padding-right: 0;
    gap: 4px;
}

#main .offer_list_row_company .tag_list li {
    padding: 2px 8px 3px;
    font-size: 10px;
}

#main .offer_list_row_company .tag_list li.startup,
#main .offer_list_row_company .tag_list li.enterprise,
#main .offer_list_row_company .tag_list li.etc {
    border-color: transparent;
    background-color: #F1F5F9;
    color: #475569;
    font-size: 11px;
}

#main .offer_list_row_company .company {
    margin: 0;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #334155;
}

#main .offer_list_row_company .company span.ja {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
}

#main .offer_list_row_company .company span.en {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
    margin-top: 1px;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #94A3B8;
}

#main .offer_list_row_company .website {
    margin: 2px 0 0;
}

#main .offer_list_row_company .website a {
    font-weight: 500;
    font-size: 10px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #1167E8;
}

@media screen and (max-width: 767px) {
    #main .offer_list_row_company {
        flex: 1 1 100%;
        padding-left: 0;
        padding-top: 12px;
        margin-top: 12px;
        border-left: none;
        border-top: 1px solid #F1F5F9;
    }
}

#main .offer_list_row_outline {
    flex: 1 1 0%;
    min-width: 0;
    position: relative;
    padding-left: 16px;
    padding-right: 0;
    border-left: 1px solid #F1F5F9;
}

#main .offer_list_row_outline .headline {
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #1E293B;
}

#main .offer_list_row_outline .offer_list_row_corner~.headline {
    padding-right: 152px;
}

#main .offer_list_row_outline .message {
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #64748B;
}

@media screen and (max-width: 767px) {
    #main .offer_list_row_outline {
        flex: 1 1 100%;
        padding-left: 0;
        padding-right: 0;
        padding-top: 12px;
        margin-top: 12px;
        border-left: none;
        border-top: 1px solid #F1F5F9;
    }
}

#main .offer_list_row_corner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

#main .offer_list_row_denied_label {
    font-weight: 700;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #94A3B8;
    white-space: nowrap;
}

#main .offer_list_favorite {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

#main .offer_list_favorite svg {
    fill: #1B2684;
    stroke: #1B2684;
    stroke-width: 1.5px;
}

#main .button_link {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
    width: 320px;
    max-width: 90%;
    height: 60px;
    margin: 50px auto 0;
    border-radius: 30px;
    background-color: #1B2684;
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0;
    text-decoration: none;
    position: relative;
    transition: opacity 0.2s;
}

@media screen and (max-width: 767px) {
    #main .button_link {
        height: 50px;
        margin: 30px auto 0;
        font-size: 15px;
        width: 230px;
    }
}

#main .button_link::after {
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: #fff url(../../media/images/common/arrow_next.svg) center/11px 8px no-repeat;
}

#main .button_link:hover {
    opacity: 0.8;
}

#main {
    /* 記事ページのボタン */
}

#main section.bg_area a.button_back,
#main section.mobility_list a.button_back {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
    width: 320px;
    max-width: 90%;
    height: 60px;
    margin: 50px auto 0;
    border-radius: 30px;
    background-color: #1B2684;
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0;
    text-decoration: none;
    position: relative;
    transition: opacity 0.2s;
}

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

    #main section.bg_area a.button_back,
    #main section.mobility_list a.button_back {
        height: 50px;
        margin: 30px auto 0;
        font-size: 15px;
        width: 230px;
    }
}

#main section.bg_area a.button_back::after,
#main section.mobility_list a.button_back::after {
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: #fff url(../../media/images/common/arrow_next.svg) center/11px 8px no-repeat;
}

#main section.bg_area a.button_back:hover,
#main section.mobility_list a.button_back:hover {
    opacity: 0.8;
}

#main section.bg_area a.button_back::before,
#main section.mobility_list a.button_back::before {
    position: absolute;
    top: 50%;
    right: auto;
    left: 13px;
    transform: scale(-1, 1) translateY(-50%);
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: #fff url(../../media/images/common/arrow_next.svg) center/11px 8px no-repeat;
}

#main section.bg_area a.button_back::after,
#main section.mobility_list a.button_back::after {
    content: none !important;
}

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

    #main section.bg_area a.button_back,
    #main section.mobility_list a.button_back {
        width: 230px;
    }
}

#main .consult_inner {
    display: flex;
    align-items: flex-end;
    flex-flow: row nowrap;
    gap: 65px;
    max-width: 1085px;
    margin: 0 auto;
    padding: 102px 0 103px;
}

@media screen and (max-width: 1024px) {
    #main .consult_inner {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    #main .consult_inner {
        gap: 30px;
        padding: 50px 0;
    }
}

#main .consult_inner_text {
    flex: 1 1 auto;
}

#main .consult_title {
    margin-bottom: 17px;
    color: #1167E8;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 0;
}

@media screen and (max-width: 767px) {
    #main .consult_title {
        font-size: 18px;
    }
}

#main .consult p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0;
}

@media screen and (max-width: 767px) {
    #main .consult p {
        font-size: 14px;
    }
}

#main .consult a.button_link {
    flex: 0 0 360px;
    max-width: 100%;
    height: 75px;
    margin-top: 0;
    border-radius: 38px;
    background-color: #1167E8;
}

@media screen and (max-width: 767px) {
    #main .consult a.button_link {
        height: 60px;
    }
}

#main .consult a.button_link::after {
    content: none;
}

#main .mypage_footer {
    padding: 89.5px;
    padding-top: 12px;
    background-color: #F2F5F9;
}

@media screen and (max-width: 1280px) {
    #main .mypage_footer {
        padding: 50px;
        padding-top: 12px;
    }
}

@media screen and (max-width: 767px) {
    #main .mypage_footer {
        padding: 30px 0;
        padding-top: 12px;
    }
}

#main .mypage_footer .other {
    max-width: 1120px;
    margin: 0 auto;
    scroll-margin-top: 85px;
}

#main .mypage_footer .other+.other {
    margin-top: 24px;
}

#main .mypage_footer .other#matching_card,
#main .mypage_footer .other#settings,
#main .mypage_footer .other#for_use {
    padding: 24px 28px;
    background-color: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

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

    #main .mypage_footer .other#matching_card,
    #main .mypage_footer .other#settings,
    #main .mypage_footer .other#for_use {
        padding: 20px;
    }
}

#main .mypage_footer .other_title {
    margin-bottom: 20px;
    padding-left: 20px;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.47;
    letter-spacing: 0.05em;
    position: relative;
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other_title {
        padding-left: 18px;
        font-size: 17px;
    }
}

#main .mypage_footer .other_title::before {
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3B82F6;
    box-shadow: 0 0 0 4px #DBEAFE;
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other_title::before {
        width: 10px;
        height: 10px;
    }
}

#main .mypage_footer .other_head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 12px;
}

#main .mypage_footer .other .my_card_preview_trigger {
    display: none;
    flex: none;
    margin: 0 0 20px;
    padding: 8px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    background-color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    color: #1E293B;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .15s, border-color .15s;
}

#main .mypage_footer .other .my_card_preview_trigger::before {
    content: "\1F4DD";
    display: inline-block;
    margin-right: 6px;
    font-size: 16px;
    line-height: 1;
}

#main .mypage_footer .other .my_card_preview_trigger:hover {
    background-color: #F8FAFC;
    border-color: #94A3B8;
}

#main .mypage_footer .other .company_list {
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other .company_list {
        flex-wrap: wrap;
    }
}

#main .mypage_footer .other .company_list>li {
    flex-basis: 50%;
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other .company_list>li {
        flex-basis: 100%;
    }
}

#main .mypage_footer .other .company_list>li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 32px 40px;
    border-radius: 5px;
    background-color: #1B2684;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other .company_list>li a {
        padding: 20px;
    }
}

#main .mypage_footer .other .company_list>li a:hover {
    opacity: 0.8;
}

#main .mypage_footer .other .company_list>li a span.caption {
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.67;
    letter-spacing: 0;
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other .company_list>li a span.caption {
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 1.3;
    }
}

#main .mypage_footer .other .company_list>li a span.desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.44;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other .company_list>li a span.desc {
        font-size: 14px;
    }
}

#main .mypage_footer .other .settings_list {
    gap: 17px;
}

#main .mypage_footer .other .settings_list>li {
    flex: 0 0 calc((100% - 34px) / 3);
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other .settings_list>li {
        flex-basis: 100%;
        max-width: unset;
    }
}

#main .mypage_footer .other .settings_list>li>a {
    padding: 15px 20px;
    text-align: left;
    position: relative;
    z-index: 1;
}

#main .mypage_footer .other .settings_list>li>a::before {
    position: absolute;
    inset: 0;
    transform: unset;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-image: linear-gradient(48deg, #0548CA 6%, #3E7BD6 48%, #28E5F1 100%);
    content: "";
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
}

#main .mypage_footer .other .settings_list>li>a::after {
    position: absolute;
    inset: 1px;
    z-index: -1;
    display: block;
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: #fff;
    border-radius: 4px;
}

#main .mypage_footer .other .settings_list>li>a:hover::before {
    visibility: visible;
    opacity: 1;
}

#main .mypage_footer .other .settings_list>li.edit .settings_list_title {
    padding-left: 34px;
}

#main .mypage_footer .other .settings_list>li.edit .settings_list_title::before {
    top: 2px;
    width: 24px;
    height: 26px;
    background: url(../../media/images/mypage/icon_edit.svg) center/100% no-repeat;
}

#main .mypage_footer .other .settings_list>li.change .settings_list_title {
    padding-left: 37.7px;
}

#main .mypage_footer .other .settings_list>li.change .settings_list_title::before {
    top: 8px;
    width: 28px;
    height: 16px;
    background: url(../../media/images/mypage/icon_change.svg) center/100% no-repeat;
}

#main .mypage_footer .other .settings_list>li.withdraw .settings_list_title {
    padding-left: 33.7px;
}

#main .mypage_footer .other .settings_list>li.withdraw .settings_list_title::before {
    top: 3px;
    width: 24px;
    height: 26px;
    background: url(../../media/images/mypage/icon_withdraw.svg) center/100% no-repeat;
}

#main .mypage_footer .other .settings_list>li.rule .settings_list_title {
    padding-left: 30px;
}

#main .mypage_footer .other .settings_list>li.rule .settings_list_title::before {
    top: 3px;
    width: 20px;
    height: 23px;
    background: url(../../media/images/mypage/icon_rule.svg) center/100% no-repeat;
}

#main .mypage_footer .other .settings_list>li.cookie .settings_list_title {
    padding-left: 33.7px;
}

#main .mypage_footer .other .settings_list>li.cookie .settings_list_title::before {
    top: 3px;
    width: 23px;
    height: 23px;
    background: url(../../media/images/mypage/icon_cookie.svg) center/100% no-repeat;
}

#main .mypage_footer .other .settings_list>li.manual .settings_list_title {
    padding-left: 30.7px;
}

#main .mypage_footer .other .settings_list>li.manual .settings_list_title::before {
    top: 3px;
    width: 20px;
    height: 28px;
    background: url(../../media/images/mypage/icon_manual.svg) center/100% no-repeat;
}

#main .mypage_footer .other .settings_list_title {
    width: 100%;
    margin-top: 0;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #B7B7B7;
    font-weight: 700;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0;
    position: relative;
}

#main .mypage_footer .other .settings_list_title::before {
    position: absolute;
    left: 0;
    display: block;
    content: "";
}

#main .mypage_footer .other .settings_list_title::after {
    top: 9px;
    transform: unset;
}

#main .mypage_footer .other .settings_list_title.single {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#main .mypage_footer .other .settings_list_label {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0;
}

#main .mypage_footer .other .account_card_list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other .account_card_list {
        gap: 12px;
    }
}

#main .mypage_footer .other .account_card_list>li {
    flex: 0 0 calc((100% - 32px) / 3);
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other .account_card_list>li {
        flex-basis: 100%;
    }
}

#main .mypage_footer .other .account_card_list>li>a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    padding: 18px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    background-color: #fff;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

#main .mypage_footer .other .account_card_list>li>a:hover {
    border-color: #BFDBFE;
    box-shadow: 0 10px 24px -12px rgba(15, 23, 42, 0.18);
    transform: translateY(-2px);
}

#main .mypage_footer .other .account_card_head {
    display: flex;
    align-items: center;
    gap: 10px;
}

#main .mypage_footer .other .account_card_icon {
    flex: 0 0 auto;
    font-size: 22px;
    line-height: 1;
}

#main .mypage_footer .other .account_card_title {
    display: block;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #1E293B;
    text-decoration: none;
}

#main .mypage_footer .other .account_card_desc {
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #64748B;
    text-decoration: none;
}

#main .mypage_footer .other .account_group+.account_group {
    margin-top: 28px;
}

#main .mypage_footer .other .account_group_label {
    margin: 0 0 16px;
    padding-left: 20px;
    color: #64748B;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    position: relative;
}

@media screen and (max-width: 767px) {
    #main .mypage_footer .other .account_group_label {
        padding-left: 18px;
        font-size: 13px;
    }
}

#main .mypage_footer .other .account_group_label::before {
    position: absolute;
    top: 6px;
    left: 0;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #94A3B8;
}

#main .nodata {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
    min-height: 270px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}

#main .nodata p {
    color: #909090;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    #main .nodata p {
        font-size: 14px;
    }
}

#main .nodata p.message_desc {
    position: relative;
}

#main .nodata p.message_desc::before {
    content: "";
    position: absolute;
    top: -26px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: url(../../media/images/common/icon_message.svg) center top/18px no-repeat;
    transform: translateX(-50%);
}

#main .nodata p a {
    border-bottom: 1px solid #1167E8;
    color: #1167E8;
    text-decoration: none;
    transition: border-color 0.1s;
}

#main .nodata p a:hover {
    border-color: rgba(255, 255, 255, 0);
}

#main .nodata.nodata-compact {
    min-height: 111px;
}

#main .mypage_header.content_list_menu {
    padding: 60px 0;
    background-color: #fff;
    max-width: 893px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    #main .mypage_header.content_list_menu {
        padding: 30px 0 25px;
    }
}

#main .mypage_header.content_list_menu.content_list_menu_wide {
    max-width: 1000px;
}

#main .mypage_header.content_list_menu .index_list {
    padding: 0;
    margin-top: 0;
}

#main .mypage_header.content_list_menu .index_list li {
    max-width: 220px;
}

#main .contens_list_wrap {
    background-color: #F2F5F9;
    width: 100%;
}

#main .contens_list_wrap .contents_list {
    padding: 70px 0px 70px 0px;
    margin: 0 50px;
    max-width: 1300px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    #main .contens_list_wrap .contents_list {
        padding: 20px 0;
    }
}

#main .contens_list_wrap .contents_list {
    /*
  	.article {
  	&[id] {
  	margin-top: -80px;
  	padding-top: 80px;

  	@include media(sp) {
  	margin-top: -50px;
  	padding-top: 50px;
  }
  }
  }
  	*/
}

#main .contens_list_wrap .contents_list .article:has(.topic_list:empty) {
    display: none;
}

#main .contens_list_wrap .contents_list .section_list {
    max-width: 1200px;
    margin: 30px auto 0;
}

@media screen and (max-width: 767px) {
    #main .contens_list_wrap .contents_list .section_list {
        margin: 0 auto;
    }
}

#main .contens_list_wrap .contents_list .section_list .contens_title {
    background: #1B2684;
    font-size: 22px;
    color: #ffffff;
    padding: 8px 5px 8px 20px;
    line-height: 1.5454545455;
    font-weight: 700;
    font-style: normal;
}

@media screen and (max-width: 767px) {
    #main .contens_list_wrap .contents_list .section_list .contens_title {
        font-size: 17px;
    }
}

#main .contens_list_wrap .contents_list .top_contents_area {
    max-width: 1400px;
}

#main .contens_list_wrap .contents_list .report .matching_report {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    #main .contens_list_wrap .contents_list .report .matching_report .topic_item .wrap .thumbnail {
        margin-bottom: 0;
    }
}

#main .contens_list_wrap .contents_list .report .matching_report .topic_item .wrap .title {
    color: #333333;
}

#main .topic_list {
    display: flex;
    flex-grow: 0;
    flex-wrap: wrap;
    margin: 30px 0 80px 0;
    gap: 20px 2%;
}

@media screen and (max-width: 1024px) {
    #main .topic_list {
        gap: 20px 3%;
    }
}

@media screen and (max-width: 767px) {
    #main .topic_list {
        display: inline-block;
        margin-bottom: 20px;
        margin-top: 15px;
    }
}

#main .topic_list.no_comment .caption {
    display: none;
}

#main .topic_list .topic_item {
    flex: 0 0 23.5%;
}

@media screen and (max-width: 1024px) {
    #main .topic_list .topic_item {
        flex: 0 0 31%;
    }
}

@media screen and (max-width: 767px) {
    #main .topic_list .topic_item {
        display: block;
        margin-bottom: 10px;
    }
}

#main .topic_list .topic_item a {
    display: block;
    background-color: #FFFFFF;
    height: 100%;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-decoration: none;
}

@media (hover: hover) {
    #main .topic_list .topic_item a .thumbnail::after {
        transition: 0.3s;
    }

    #main .topic_list .topic_item a .thumbnail img {
        transition: 0.3s;
    }

    #main .topic_list .topic_item a:hover .thumbnail::after {
        transform: scale(1.05);
    }

    #main .topic_list .topic_item a:hover .thumbnail img {
        transform: scale(1.05);
    }
}

#main .topic_list .topic_item .wrap {
    padding: 20px;
}

@media screen and (max-width: 767px) {
    #main .topic_list .topic_item .wrap {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-evenly;
        /*padding:15px;*/
        padding: 12px;
        column-gap: 12px;
    }
}

#main .topic_list .topic_item .wrap .title {
    color: #1B2684;
}

@media screen and (max-width: 767px) {
    #main .topic_list .topic_item .wrap .title {
        flex: 0 0 48%;
        font-size: 14px;
        flex: 1;
    }
}

#main .topic_list .topic_item .wrap .caption {
    color: #333333;
}

@media screen and (max-width: 767px) {
    #main .topic_list .topic_item .wrap .caption {
        font-size: 13px;
    }
}

#main .topic_list .topic_item .wrap .thumbnail {
    position: relative;
    aspect-ratio: 340/192;
    width: 100%;
    margin-bottom: 12px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    #main .topic_list .topic_item .wrap .thumbnail {
        flex: 0 0 48%;
        margin-bottom: 0;
    }
}

#main .topic_list .topic_item .wrap .thumbnail img {
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#main .topic_list .topic_item .wrap .thumbnail {
    position: relative;
    overflow: hidden;
}

#main .topic_list .topic_item .wrap .thumbnail.youtube::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../media/images/mypage/logo_youtube.svg) no-repeat center/50px;
}

@media screen and (max-width: 1024px) {
    #main .topic_list .topic_item .wrap .thumbnail.youtube::after {
        background-size: 30px;
    }
}

#main .topic_list .topic_item .wrap .img {
    position: relative;
    aspect-ratio: 245/138;
}

#main .topic_list .topic_item .wrap .img img {
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#main .topic_list .topic_item .wrap .caption {
    margin: 16px 0 0 0;
}

@media screen and (max-width: 767px) {
    #main .topic_list .topic_item .wrap .caption {
        flex: 1 1 auto;
        margin: 0;
        margin-top: 12px;
    }
}

@media screen and (max-width: 767px) {
    #main .topic_list.nocard_list {
        margin-top: 20px;
    }
}

#main .topic_list.nocard_list .topic_item a {
    background-color: transparent;
    box-shadow: none;
}

#main .topic_list.nocard_list .topic_item .wrap {
    padding: 0;
}

#main .topic_list.nocard_list .topic_item .wrap .title {
    color: #333333;
    font-size: 15px;
}

#main .topic_list.nocard_list .caption {
    display: none;
}

#main .matching {
    background-color: #FFFFFF;
    padding: 0px 165px 0px 150px;
    overflow: hidden;
}

@media print,
screen and (max-width: 1199px) {
    #main .matching {
        padding: 0 70px;
    }
}

@media screen and (max-width: 1024px) {
    #main .matching {
        padding: 0 50px;
    }
}

@media screen and (max-width: 767px) {
    #main .matching {
        padding: 0;
    }
}

#main .matching .matching_consult {
    padding-top: 85.71px;
}

@media screen and (max-width: 767px) {
    #main .matching .matching_consult {
        padding: 120px 0px 80px;
    }
}

@media screen and (max-width: 767px) {
    #main .matching .matching_consult .consult_button {
        margin: 0 auto;
    }
}

#main .matching .matching_consult .button_link {
    width: 360px;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    #main .matching .matching_consult .button_link {
        width: 300px;
    }
}

#main .matching::before {
    left: 0;
    bottom: 0;
    width: 160px;
    height: 140px;
    background: url(../../media/images/mypage/bg_left_s.svg) left bottom/100% no-repeat;
}

@media screen and (max-width: 767px) {
    #main .matching::before {
        aspect-ratio: 160/140;
        width: 30%;
    }
}

#main .matching::after {
    top: unset;
    right: 0;
    top: -168px;
    width: 240px;
    height: 277px;
    background: url(../../media/images/mypage/bg_right_s.svg) right bottom/contain no-repeat;
}

@media screen and (max-width: 767px) {
    #main .matching::after {
        aspect-ratio: 240/277;
        width: 75%;
    }
}

#main .detail_contents {
    background-color: #F2F5F9;
}

:root {
    --color-2025-main: #1B2684;
    --color-2025-sub: #1167E8;
}

#main .top_release_list {
    max-width: 790px;
    background-color: #fff;
    margin-top: 10px;
    padding-right: 40px;
    padding-left: 98px;
    padding-top: 19px;
    padding-bottom: 19px;
}

#main .top_release_list .top_release_inner .top_release_list_title {
    flex: 0 0 142px;
    margin-right: 40px;
}

#main .top_release_list .top_release_inner .release_list_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

#main .top_release_list .top_release_inner .release_list_list li {
    font-size: 13px;
    line-height: 1.65;
}

#main .top_release_list .top_release_inner .release_list_list li:hover {
    opacity: 0.7;
}

#main .top_release_list .top_release_inner .top_release_title_main {
    font-size: 17px;
}

@media screen and (max-width: 1024px) {
    #main .top_release_list .top_release_inner .top_release_title_main {
        font-size: 15px;
    }
}

@media screen and (max-width: 767px) {
    #main .top_release_list .top_release_inner .top_release_title_main {
        display: table;
        margin: 0 auto 20px;
        font-size: 15px;
    }
}

#main .release_list {
    padding: 23px 15px 31px;
}

@media screen and (max-width: 767px) {
    #main .release_list {
        padding: 30px 15px 31px;
    }
}

#main .release_list .release_list_inner {
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1060px;
}

@media screen and (max-width: 767px) {
    #main .release_list .release_list_inner {
        display: flex;
        flex-direction: column;
    }
}

#main .release_list .release_list_title {
    flex: 0 0 284px;
    margin-top: 19px;
    margin-right: 70px;
    padding-top: 11px;
    padding-bottom: 23px;
    padding-left: 7px;
    border-right: 1px solid var(--color-2025-main);
}

@media screen and (max-width: 1024px) {
    #main .release_list .release_list_title {
        margin-right: 40px;
        flex: 0 0 240px;
    }
}

@media screen and (max-width: 767px) {
    #main .release_list .release_list_title {
        display: contents;
        flex: 1 1 auto;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        border: none;
    }
}

#main .release_list .release_list_title .release_list_title_inner {
    display: table;
    margin: 0;
}

@media screen and (max-width: 767px) {
    #main .release_list .release_list_title .release_list_title_inner {
        display: contents;
        margin: 0;
    }
}

#main .release_list .release_list_title a {
    display: table;
    margin: 22px auto 0;
    font-weight: 700;
    font-size: 15px;
    color: var(--color-2025-main);
}

@media screen and (max-width: 767px) {
    #main .release_list .release_list_title a {
        order: 3;
        font-size: 14px;
    }
}

#main .release_list .release_list_title a:hover {
    opacity: 0.7;
}

#main .release_list .release_list_title_main {
    margin: 0 0 12px;
    padding: 0;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    color: var(--color-2025-main);
}

@media screen and (max-width: 1024px) {
    #main .release_list .release_list_title_main {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    #main .release_list .release_list_title_main {
        display: table;
        margin: 0 auto 20px;
        font-size: 20px;
    }
}

#main .release_list .release_list_title_main .en {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    text-transform: capitalize;
    text-align: center;
    color: var(--color-2025-sub);
}

@media screen and (max-width: 767px) {
    #main .release_list .release_list_title_main .en {
        font-size: 13px;
    }
}

#main .release_list .release_list_main {
    flex: 1 1 auto;
}

@media screen and (max-width: 767px) {
    #main .release_list .release_list_main {
        display: contents;
        margin: 0;
    }
}

#main .top_release_list {
    padding-right: 98px;
    padding-left: 40px;
    padding-top: 19px;
    padding-bottom: 19px;
}

#main .release_list_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

#main .release_list_list>li {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.65;
    border-bottom: 1px solid #AEB7C5;
}

@media screen and (max-width: 767px) {
    #main .release_list_list>li {
        font-size: 13px;
        line-height: 1.5;
    }
}

#main .release_list_list>li a {
    display: table;
    position: relative;
    padding: 11px 10px 10px;
    color: #333333;
    text-decoration: none;
}

#main .release_list_list>li a:hover {
    opacity: 0.7;
}

#main .release_list_list>li a::before {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
    top: 21px;
    left: 0px;
    width: 6px;
    height: 6px;
    background-color: var(--color-2025-sub);
}

#main .release_list_list>li a[href^=http]::after {
    content: "";
    display: inline-block;
    margin-left: 12px;
    width: 14px;
    height: 14px;
    background: url(../../media/images/mypage/icon_exlink.svg) no-repeat center/cover;
}

#main .my_release_list {
    padding: 12px 20px;
}

@media screen and (max-width: 767px) {
    #main .my_release_list {
        padding: 12px 15px;
    }
}

#main .my_release_list .my_release_list_inner {
    max-width: 1120px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    padding: 24px;
}

@media screen and (max-width: 767px) {
    #main .my_release_list .my_release_list_inner {
        padding: 18px 16px;
    }
}

#main .my_release_list .my_release_list_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

#main .my_release_list .my_release_list_title_main {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #1E293B;
}

#main .my_release_list .my_release_list_title_main::before {
    content: "";
    display: block;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3B82F6;
    box-shadow: 0 0 0 4px #DBEAFE;
}

#main .my_release_list .my_release_list_link {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 2px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    color: #94A3B8;
}

#main .my_release_list .my_release_list_link:hover {
    color: #475569;
}

#main .my_release_list .my_release_list_link .my_release_list_arrow {
    font-size: 14px;
}

#main .my_release_list_main {
    padding: 0;
}

#main .my_release_list_main .no_topics {
    color: #333333;
    padding-top: 32px;
}

@media screen and (max-width: 767px) {
    #main .my_release_list_main .no_topics {
        padding-top: 20px;
        padding-bottom: 10px;
        font-size: 14px;
    }
}

#main .my_release_list_main .my_release_list_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

#main .my_release_list_main .my_release_list_list .my_release_list_item {
    border-bottom: 1px solid #F1F5F9;
}

#main .my_release_list_main .my_release_list_list .my_release_list_item:last-child {
    border-bottom: none;
}

#main .my_release_list_main .my_release_list_list .my_release_list_item_link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 -8px;
    padding: 12px 8px;
    border-radius: 8px;
    color: #334155;
    text-decoration: none;
    transition: background-color 0.15s;
}

#main .my_release_list_main .my_release_list_list .my_release_list_item_link:hover {
    background-color: #F8FAFC;
}

@media screen and (max-width: 767px) {
    #main .my_release_list_main .my_release_list_list .my_release_list_item_link {
        flex-wrap: wrap;
    }
}

#main .my_release_list_main .my_release_list_list .my_release_list_date {
    flex: none;
    margin-top: 2px;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: #F1F5F9;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.4;
    color: #94A3B8;
}

#main .my_release_list_main .my_release_list_list .my_release_list_new {
    visibility: hidden;
    display: inline-block;
    flex: none;
    margin-top: 2px;
    padding: 2px 6px;
    border: 1px solid #DBEAFE;
    border-radius: 4px;
    background-color: #EFF6FF;
    font-weight: 700;
    font-size: 10px;
    line-height: 1.4;
    color: #1D4ED8;
}

#main .my_release_list_main .my_release_list_list .my_release_list_new.new {
    visibility: visible;
}

#main .my_release_list_main .my_release_list_list:not(:has(.my_release_list_new.new)) .my_release_list_new {
    display: none;
}

#main .my_release_list_main .my_release_list_list .my_release_list_item_title {
    flex: 1 1 auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.55;
    color: #334155;
}

#main .content_main_list {
    padding: 12px 20px;
}

@media screen and (max-width: 767px) {
    #main .content_main_list {
        padding: 12px 15px;
    }
}

#main .content_main_list .content_main_list_inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
}

@media screen and (max-width: 767px) {
    #main .content_main_list .content_main_list_inner {
        padding: 18px 16px;
    }
}

#main .content_main_list .content_list_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

#main .content_main_list .content_list_title_main {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #1E293B;
}

#main .content_main_list .content_list_title_main::before {
    content: "";
    display: block;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3B82F6;
    box-shadow: 0 0 0 4px #DBEAFE;
}

#main .content_main_list .content_list_title_main.title-multiline {
    line-height: 1.25;
}

#main .content_main_list .content_list_title_dot {
    display: block;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3B82F6;
    box-shadow: 0 0 0 4px #DBEAFE;
}

#main .content_main_list .content_list_head_link {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border: 1px solid #BFDBFE;
    border-radius: 9999px;
    background-color: #EFF6FF;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    color: #1D4ED8;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s;
}

#main .content_main_list .content_list_head_link:hover {
    background-color: #DBEAFE;
}

#main .content_main_list .content_list_head_arrow {
    font-size: 13px;
}

#main .content_list_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media screen and (max-width: 1024px) {
    #main .content_list_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    #main .content_list_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

#main .content_list_link {
    display: block;
    color: inherit;
    text-decoration: none;
}

#main .content_list_thumb {
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    background-color: #F1F5F9;
    box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

#main .content_list_thumb.youtube::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../media/images/mypage/logo_youtube.svg) no-repeat center/50px;
}

@media screen and (max-width: 1024px) {
    #main .content_list_thumb.youtube::after {
        background-size: 30px;
    }
}

#main .content_list_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

#main .content_list_link:hover .content_list_thumb {
    box-shadow: 0 4px 10px 0 rgba(15, 23, 42, 0.12);
}

#main .content_list_link:hover .content_list_thumb img {
    transform: scale(1.05);
}

#main .content_list_title {
    margin: 10px 0 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    color: #1E293B;
    transition: color 0.15s;
}

#main .content_list_link:hover .content_list_title {
    color: #1D4ED8;
}

#main .content_list_desc {
    margin: 4px 0 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.6;
    color: #64748B;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#main .banner_link {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 1;
    width: 160px;
    border: 2px solid #FFFFFF;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px 0px 0px 10px;
    font-size: 14px;
    display: block;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-right: none;
}

#main .banner_link .banner_link_inner {
    position: relative;
    padding: 18px 20px 21px 20px;
    background: linear-gradient(94.93deg, #C50086 5%, #000199 50%, #C50086 100%);
    background-size: 200% 100%;
    background-position: 0 0;
    transition: background 0.5s ease;
    border-radius: 8px 0px 0px 8px;
}

#main .banner_link .banner_link_inner::before {
    content: "";
    display: block;
    margin: 0 auto 5px;
    aspect-ratio: 18/21;
    width: 18px;
    background: url(../../media/images/mypage/vector.svg) no-repeat center/100%;
}

@media screen and (max-width: 767px) {
    #main .banner_link .banner_link_inner {
        padding: 10px;
    }
}

@media (hover) {
    #main .banner_link:hover .banner_link_inner {
        background-position: -100% 0;
    }
}

@media screen and (max-width: 767px) {
    #main .banner_link {
        top: auto;
        bottom: 60px;
        width: 120px;
        font-size: 12px;
    }
}

#main .banner_link .banner_text {
    margin-top: 5px;
}

#main .banner_link .banner_img {
    margin: 0 46px;
}

#main .login_wrap {
    width: 100%;
    max-width: 1050px;
    margin: 36px auto 55px;
    padding: 70px 20px 82px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

@media screen and (max-width: 767px) {
    #main .login_wrap {
        padding: 40px 20px 50px;
    }
}

#main .login_wrap dl {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 70px;
}

@media screen and (max-width: 767px) {
    #main .login_wrap dl {
        margin: 0 auto 50px;
    }
}

#main .login_wrap dl dt {
    margin-bottom: 4px;
    color: #4F4F4F;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0;
}

@media screen and (max-width: 767px) {
    #main .login_wrap dl dt {
        margin-bottom: 6px;
    }
}

#main .login_wrap dl dd {
    margin: 0;
}

#main .login_wrap dl dd+dt {
    margin-top: 34px;
}

#main .login_wrap dl dd .login_link {
    text-align: right;
}

#main .login_wrap dl dd a {
    display: inline-block;
    padding-bottom: 2px;
    color: #1167E8;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
    text-decoration: none;
    border-bottom: 1px solid #1167E8;
}

#main .login_wrap input[type=text],
#main .login_wrap input[type=password] {
    height: 60px;
    font-size: 16px;
}

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

    #main .login_wrap input[type=text],
    #main .login_wrap input[type=password] {
        height: 50px;
    }
}

#main .login_wrap .input_wrap {
    position: relative;
}

#main .login_wrap .input_wrap+.login_link {
    margin-top: 5px;
}

#main .login_wrap.profile_wrap {
    padding: 40px 40px;
}

@media screen and (max-width: 767px) {
    #main .login_wrap.profile_wrap {
        padding: 20px 10px;
    }
}

#main .login_wrap.profile_wrap .profile {
    width: 100%;
    border-spacing: 0;
}

#main .login_wrap.profile_wrap .profile th,
#main .login_wrap.profile_wrap .profile td {
    padding: 16px 10px;
    border-bottom: 1px solid #ddd;
}

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

    #main .login_wrap.profile_wrap .profile th,
    #main .login_wrap.profile_wrap .profile td {
        font-size: 14px;
    }
}

#main .login_wrap.profile_wrap .profile th {
    width: 30%;
    text-align: left;
}

#main .login_wrap.profile_wrap .profile th.middle {
    width: 50%;
}

#main .login_wrap.profile_wrap .profile td {
    overflow-wrap: anywhere;
    word-break: break-all;
}

#main .login_wrap.profile_wrap .profile .item+.item::before {
    content: "、";
}

#main .login_wrap.profile_wrap .profile .logo {
    width: 200px;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 10px;
    border: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
    #main .login_wrap.profile_wrap .profile {
        display: block;
    }

    #main .login_wrap.profile_wrap .profile thead,
    #main .login_wrap.profile_wrap .profile tbody,
    #main .login_wrap.profile_wrap .profile tr,
    #main .login_wrap.profile_wrap .profile th,
    #main .login_wrap.profile_wrap .profile td {
        display: block;
        width: auto !important;
        border: none;
    }

    #main .login_wrap.profile_wrap .profile th {
        padding: 10px 0 5px;
    }

    #main .login_wrap.profile_wrap .profile td {
        padding: 5px 0 10px;
    }
}

#main .login_wrap.profile_wrap .form_section {
    border-bottom: none !important;
}

@media screen and (max-width: 767px) {
    #main .login_wrap.profile_wrap .form_section {
        border-bottom: 1px solid #ccc !important;
    }
}

@media screen and (min-width: 768px) {
    #main .login_wrap.cancel_wrap {
        padding-right: 100px;
        padding-left: 100px;
    }
}

#main .login_wrap.cancel_wrap .field input[type=checkbox]+label {
    font-size: 16px !important;
}

#main .login_wrap.cancel_wrap .field input[type=checkbox]+label::before {
    top: 6px;
}

#main .login_wrap.cancel_wrap .field input[type=checkbox]+label::after {
    top: 9px;
}

#main .login_wrap.cancel_wrap .field .button_wrap .button_action {
    width: 240px;
    height: 50px;
    border-radius: 25px;
    border: 1px solid #1B2684;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    background-color: #fff;
    color: #1B2684;
    transition: background-color 0.2s;
}

.to_registration {
    text-align: center;
}

.to_registration_label {
    margin: 0 0 17px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
    .to_registration_label {
        font-size: 13px;
    }
}

.to_registration .button.send {
    width: 320px;
}

.to_mypage {
    margin-top: 50px;
}

.to_mypage .button.return {
    width: 240px;
    height: 50px;
}

.to_mypage .button.return a {
    padding-left: 20px;
}

.to_mypage .button.return a::before {
    width: 24px;
    height: 24px;
    background-size: contain;
}

@media screen and (max-width: 767px) {
    .to_mypage {
        margin-top: 30px;
    }

    .to_mypage .button.return {
        width: 200px;
        height: 45px;
    }

    .to_mypage .button.return a {
        padding-left: 20px;
    }

    .to_mypage .button.return a::before {
        width: 20px;
        height: 20px;
        background-size: contain;
    }
}

/* フッターは共通デザイン（css/common_2026.css）に統一するため、当ファイル独自の.footer系ルールは廃止 */

.matching #main .lower_contents,
.message #main .lower_contents {
    padding-top: 70px;
}

.offer #main .offer_list_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
    .offer #main .offer_list_head {
        margin-bottom: 16px;
    }
}

.offer #main .tab_switch {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    padding: 4px;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

@media screen and (max-width: 767px) {
    .offer #main .tab_switch {
        width: 100%;
    }
}

.offer #main .tab_switch li {
    flex: none;
}

@media screen and (max-width: 767px) {
    .offer #main .tab_switch li {
        flex: 1 1 50%;
    }
}

.offer #main .tab_switch li a {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #64748B;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s;
}

@media screen and (max-width: 767px) {
    .offer #main .tab_switch li a {
        padding: 10px 12px;
    }
}

.offer #main .tab_switch li:not(.active) a:hover {
    color: #1E293B;
}

.offer #main .tab_switch li.active a {
    background-color: #1B2684;
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.offer #main .offer_list_count {
    font-size: 12px;
    font-weight: 500;
    color: #64748B;
}

.offer #main .offer_list_note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 16px;
    border: 1px solid #FDE68A;
    border-radius: 12px;
    background-color: #FFFBEB;
    color: #92400E;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0;
}

.offer #main .offer_list_note strong {
    font-weight: 700;
}

.offer #main .offer_list_note_icon {
    flex: none;
    font-size: 16px;
    line-height: 1;
    margin-top: 1px;
}

.offer #main .lower_contents_inner {
    display: none;
}

.offer #main .lower_contents_inner.show {
    display: block;
}

#main div.movie {
    width: 100%;
    max-width: unset;
    padding: 91.5px 0;
    background-color: #F2F5F9;
}

@media screen and (max-width: 1280px) {
    #main div.movie {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media screen and (max-width: 767px) {
    #main div.movie {
        padding: 30px 15px;
    }
}

#main div.movie h2 {
    text-align: center;
    color: #1B2684;
    font-weight: 700;
}

#main div.movie h2 .l1 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
    #main div.movie h2 .l1 {
        font-size: 24px;
    }
}

#main div.movie h2 .l2 {
    display: block;
    opacity: 0.5;
    margin-top: 5px;
    font-family: "DIN Alternate", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    color: #333;
}

@media screen and (max-width: 767px) {
    #main div.movie h2 .l2 {
        font-size: 14px;
    }
}

#main div.movie ul {
    display: flex;
    flex-flow: row wrap;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    #main div.movie ul {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    #main div.movie ul {
        justify-content: center;
        margin-top: 20px;
    }
}

#main div.movie ul li {
    flex: 0 1 calc((100% - 75px) / 4);
}

@media screen and (max-width: 1024px) {
    #main div.movie ul li {
        flex: 0 1 calc((100% - 20px) / 2);
    }
}

@media screen and (max-width: 767px) {
    #main div.movie ul li {
        flex: 0 0 350px;
    }
}

#main div.movie ul li iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9;
}

#main div.movie ul li .iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

#main div.movie ul li .iframe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#main div.movie ul li h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.625;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
    #main div.movie ul li h3 {
        font-size: 14px;
    }
}

#main div.movie ul li p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
    #main div.movie ul li p {
        font-size: 13px;
    }
}

/*# sourceMappingURL=mypage.css.map */