@charset "utf-8";

html {
    scroll-behavior: smooth;
    overflow: auto;
    /* スクロールは有効 */
    -ms-overflow-style: none;
    /* IE, Edge */
    scrollbar-width: none;
    /* Firefox */
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 1.2px;
    color: #3C5466;
    letter-spacing: 0;

}



/* -----------font-----------*/
.SourceHanSerifRegular {
    font-family: "source-han-serif-japanese", serif;
    font-weight: 400;
    font-style: normal;
}

/* -----------icomoon-----------*/
@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?thhrnp');
    src: url('../fonts/icomoon.eot?thhrnp#iefix') format('embedded-opentype'), url('../fonts/icomoon.ttf?thhrnp') format('truetype'), url('../fonts/icomoon.woff?thhrnp') format('woff'), url('../fonts/icomoon.svg?thhrnp#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block
}

@font-face {
    font-family: 'TsunagiGothic';
    src: url('../fonts/TsunagiGothic.ttf') format('truetype');
    font-weight: 900;
    font-display: block
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !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
}

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

.sp {
    display: block;
}

.tb {
    display: none;
}

.pc {
    display: none;
}

/* -----------共通-----------*/

main {
    padding: 85px 20px 0;
    height: 100%;
    overflow: hidden;
}

.sp_none {
    display: none;
}

.accent_font {
    font-family: 'TsunagiGothic', sans-serif;
}

.page_ttl {
    font-size: 20px;
    line-height: 49px;
    margin: 0 auto 20px;
    text-align: center;
}

.pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #3C5466;
    opacity: 0.8;
    font-weight: 500;
}

.pagination .page-numbers.next {
    color: #FDB71D;
}

.pagination .page-numbers .current {
    color: #FDB71D;
    opacity: 1;
}

.under_frame {
    width: 130%;
    position: relative;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.under_frame.mypage_under {
    width: 150%;
    height: unset;
    position: relative;
    bottom: -52px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: top;
    padding: 9% 0 0;
}

.to_mypage {
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #FDB71D;
    transition: all 0.3s ease;
    margin: 20px auto;
    max-width: 200px;
}

.to_mypage:hover {
    background-color: #3C5466;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.to_top {
    display: block;
    text-align: center;
    margin: 40px auto;
    color: #3C5466;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid #3C5466;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.to_top:hover {
    background-color: #3C5466;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
    .to_top {
        font-size: 18px;
        padding: 12px 30px;
    }
}

@media screen and (min-width: 960px) {
    .to_top {
        font-size: 20px;
        padding: 15px 40px;
    }
}

/* -----------SP header-----------*/
header {
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 99998;
    background: #fff;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 34px;
    position: relative;
    padding: 28px 20px 20px;
}

.header_inner a {
    width: unset;
    height: 100%;
}

.header_logo {
    width: unset;
    height: 100%;
}

.header_login {
    font-size: 16px;
    text-decoration: none;
    color: #3C5466;
}

.header_ham {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 10px 0 0;
    cursor: pointer;
}

.header_ham span {
    width: 30px;
    height: 3px;
    border-radius: 5px;
    background: #3C5466;
}

.header_menu {
    width: 320px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    transform: translateX(100%);
    transition: 0.3s;
}

.header_menu.active {
    transform: translateX(0);
}

.header_menu .menu_list {
    width: 320px;
    height: 100vh;
    background: #fff;
    position: fixed;
    padding: 28px 24px 0;
    right: 0;
    box-sizing: border-box;
}

.header_menu .menu_list .menu_close {
    text-align: right;
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 30px 0;
    cursor: pointer;
}

.header_menu .menu_list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 30px 0 30px;
}

.header_menu .menu_list ul li {
    border-bottom: 1px solid #3C5466;
}

.header_menu .header_menu_text {
    display: block;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #3C5466;
    padding: 0 10px;
}

.header_menu .menu_type {
    background: #3C5466;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 0 10px;
    margin: 20px 0 0 0;
}

.menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.menu_overlay.active {
    opacity: 1;
    visibility: visible;
}

/* -----------footer-----------*/

footer {
    background: #3C5466;
    padding: 25px 0;
    position: relative;
    z-index: 100;
}

.footer_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer_list {
    display: flex;
    flex-direction: column;
}

.footer_link {
    display: block;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    margin: 10px 0 20px;
}

.footer_inner small {
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    margin-top: 50px;
}

/* -----------top-----------*/

.slider-container {
    position: relative;
    width: 100%;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: 0.5s;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.top_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 9px;
    margin: 50px 0 60px 0;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

.top_mv {
    position: relative;
}

.top_mv_entry {
    background: #FDB71D;
    border-radius: 20px;
    border: 1px solid #fff;
    position: absolute;
    top: -62px;
    right: 0;
    padding: 0 8px 20px;
    text-decoration: none;
    color: #3C5466;
    transition: .5s;
}

.line_friend_add {
    display: block;
    width: 130px;
    position: absolute;
    top: -120px;
    right: 0;
    transition: .5s;
}

.top_mv_balloon {
    width: 114px;
    height: 22px;
    color: #C61D1D;
    font-size: 8px;
    line-height: 14px;
    font-weight: bold;
    letter-spacing: 0;
    text-align: center;
    position: relative;
    top: -6px;
    z-index: 10;
    background: url(../img/top_mv_balloon.webp)no-repeat center/cover;
}

.top_mv_comment {
    font-size: 11px;
    font-weight: bold;
    text-align: center;
}

.top_mv_main {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    position: relative;
    z-index: 10;
    text-shadow: 0px 0px 1px #fff, 0px 0px 1px #fff, 0px 0px 1px #fff, 0px 0px 1px #fff,
        0px 0px 1px #fff, 0px 0px 1px #fff, 0px 0px 1px #fff, 0px 0px 1px #fff,
        0px 0px 1px #fff, 0px 0px 1px #fff, 0px 0px 1px #fff, 0px 0px 1px #fff;
}

.top_mv_main_large {
    font-size: 24px;
}

/* .top_mv_main_large::before {
    content: "会員登録";
    position: absolute;
    left: 1px;
    top: 0;
    z-index: -1;
    color: #fff;
    -webkit-text-stroke: 2px #fff;
}
.top_mv_main_normal::before {
    content: "はこちら";
    position: absolute;
    left: 1px;
    top: 0;
    z-index: -1;
    color: #fff;
    -webkit-text-stroke: 2px #fff;
} */
.top_mv_index {
    font-size: min(36px, 9vw);
    font-weight: 900;
    line-height: 46px;
    letter-spacing: -0.03em;
}

.top_mv_index span {
    font-size: min(43px, 12vw);
    font-weight: 900;
    line-height: 46px;
    letter-spacing: 0.02em;
}

.top_mv_logo {
    width: 50%;
    max-width: 265px;
    margin: 35px 0 50px;
    position: relative;
    z-index: 100;
}

.top_mv_text {
    font-size: 18px;
    font-weight: 900;
    position: relative;
    z-index: 10;
    word-break: keep-all;
    overflow-wrap: anywhere;
    padding: 0 30px 0 0;
}

.top_mv_text .red-text {
    color: #C61D1D;
}

.top_mv_text .item1 {
    width: 250px;
    position: absolute;
    top: 80px;
    right: -110px;
    z-index: -1;
}

.top_mv_text .item2 {
    display: none;
}

.top_mv_text .item3 {
    display: none;
}

.top_mv_text .item4 {
    display: none;
}

/* -----------top_news-----------*/

.top_news {
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.top_news_en {
    font-size: 50px;
    font-weight: 900;
    text-align: center;
}

.top_news_ja {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.top_news_list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.top_news_item {
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #D9D9D9;
}

.top_news_item:last-child {
    border-bottom: none;
}

.top_news_link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #3C5466;
    background: #fff;
    padding: 10px 15px;
    transition: opacity 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.top_news_link:hover {
    opacity: 0.8;
}

.top_news_image_wrap {
    flex-shrink: 0;
    width: auto;
    height: 50px;
}

.top_news_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.top_news_content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.top_news_date {
    font-size: 14px;
    color: #AEBCC7;
    font-weight: bold;
    margin-bottom: 0;
}

.top_news_title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    color: #3C5466;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.top_about {
    background: #3C5466;
    padding: 80px 20px 120px;
    margin: 0 calc((100% - 100vw) / 2);
    position: relative;
    z-index: 10;
}

.top_about h2 {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.top_about_btn {
    width: 100%;
    color: #fff;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 15px 20px 15px 40px;
    box-sizing: border-box;
    margin: 20px 0 0 0;
    cursor: pointer;
}

.top_about_btn.active {
    background: #FDB71D;
}

.about_content {
    background: #fff;
    border-radius: 20px;
    padding: 30px 10px;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
}

.about_content.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    position: relative;
}

.about_content h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 110px;
    text-align: center;
    margin: 0 auto;
}

.about_content_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
}

.first_content img {
    width: 200px;
    display: block;
    margin: 30px auto;
}

.second_content img {
    width: 40px;
    display: block;
    margin: 20px auto;
}

.second_content .about_content_list {
    padding: 0 30px;
}

.about_content .second_content_detail {
    width: 100%;
    border: 3px solid #FDB71D;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.about_content .second_content_detail h4 {
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.about_content .second_content_detail p {
    font-size: 15px;
    font-weight: 500;
}

.about_content .third_content_detail {
    width: 100%;
    height: 150px;
    border: 3px solid #FDB71D;
    border-radius: 100px;
    padding: 14px;
    font-size: 14px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_content .third_content_detail h4 {
    color: #C61D1D;
    font-size: 20px;
    font-weight: bold;
    word-break: keep-all;
    overflow-wrap: anywhere;
}


.top_contents {
    width: calc(100% + 20px);
    transform: translateX(-10px);
    padding: 80px 0px 120px;
}

.top_contents_en {
    font-size: 50px;
    font-weight: 900;
    text-align: center;
}

.top_contents_ja {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.top_contents_list {
    max-width: 960px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin: 25px auto 0 auto;
}

.blur_item {
    position: relative;
}

.blur_item::after {
    content: "";
    font-size: 24px;
    font-weight: 900;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    inset: -4px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
}


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

    /* -----------top_news-----------*/

    .top_news {
        padding: 40px 20px;
    }

    .top_news_list {
        flex-direction: column;
    }

    .top_news_item {
        width: 100%;
        height: 70px;
        border-bottom: 1px solid #D9D9D9;
    }

    .top_news_item:last-child {
        border-bottom: none;
    }

    .top_news_link {
        flex-direction: row;
        gap: 15px;
        height: 100%;
        box-sizing: border-box;
    }

    .top_news_date {
        font-size: 12px;
    }

}


.top_contents_item {
    width: calc(50% - 5px);
    padding: 30px 6px;
    margin: 20px 0 0 0;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 4px 8.7px rgba(65, 103, 131, 0.17);
}

.top_contents_item .item_title {
    font-weight: 900;
}

.top_contents_item .item_title .item_title_small {
    font-weight: 900;
    font-size: 15px;
    line-height: 6px;
    display: block;
}

.top_contents_item .item_image {
    width: 82px;
    margin: 15px 0 0 0;
}

.top_contents_item .item_detail1 {
    margin: 30px 0 20px 0;
    font-size: 13px;
    letter-spacing: -0.03em;
}

.top_contents_item .item_detail2 {
    font-size: 12px;
    letter-spacing: -0.03em;
}

.top_cta {
    margin: 0 -15px 50px -15px;
}

.top_cta_item {
    max-width: 380px;
    border: 4px solid #3C5466;
    border-radius: 17px;
    position: relative;
    padding: 40px 35px 30px;
    overflow: hidden;
    letter-spacing: -0.03em;
    box-sizing: border-box;
    margin: 0 auto;
}

.top_cta_item .recruiting {
    position: absolute;
    top: -2px;
    left: -4px;
    font-size: 12px;
    line-height: 15px;
    font-weight: 900;
    color: #fff;
    padding: 7px 35px;
}

.top_cta_item .recruiting::before {
    content: "";
    width: 100%;
    height: 30px;
    position: absolute;
    top: -2px;
    left: -4px;
    z-index: -1;
    background: #3C5466;
    border-bottom-right-radius: 10px;
    transform: skewX(-25deg);
}

.top_cta_item .flex_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 900;
}

.top_cta_item .flex_text_first {
    font-size: 14px;
    background: linear-gradient(to top, #FDB71D 2px, transparent 2px);
}

.top_cta_item .flex_text_second {
    border: solid #3C5466;
    border-width: 1.2px 0 0 1.2px;
    padding: 8px 10px;
    position: relative;
    margin: 0 0 10px 0;
}

.top_cta_item .flex_text_second::before {
    content: "";
    width: calc(100% + 3px);
    height: 6px;
    position: absolute;
    bottom: -1px;
    right: -4px;
    transform: translateY(100%) skewX(40deg);
    background: #FDB71D;
}

.top_cta_item .flex_text_second::after {
    content: "";
    width: 5px;
    height: calc(100% + 2px);
    position: absolute;
    top: 2px;
    right: -1.6px;
    transform: translateX(100%) skewY(50deg);
    background: #FDB71D;
}

.top_cta_item .flex_text_second .catchphase {
    font-size: 12px;
    display: block;
    line-height: 1.4;
}

.top_cta_item .flex_text_second .name {
    font-size: 14px;
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1.4;
}

.top_cta_item .flex_text_second .small {
    font-size: 8px;
    display: block;
}

.top_cta_item p:nth-of-type(2) {
    font-size: 16px;
    font-weight: 900;
}

.top_cta_item p:last-of-type {
    font-size: min(30px, 7.4vw);
    font-weight: 900;
    line-height: 1;
}

.top_aim {
    max-width: 900px;
    margin: 0 auto;
}

.top_aim_image {
    width: 152px;
    display: block;
    margin: 0 auto 20px;
}

.top_aim_title {
    font-size: 50px;
    line-height: 70px;
    font-weight: 900;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.top_aim_list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 50px auto;
}

.top_aim .aim_item {
    border: 4px solid #3C5466;
    border-radius: 20px;
    text-align: center;
    padding: 20px 15px;
}

.top_aim .aim_item h3 {
    font-size: 26px;
    font-weight: bold;
    color: #FDB71D;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.top_aim .aim_item p {
    font-size: 20px;
    padding: 10px 20px 0;
}

.top_aim_phase {
    padding: 50px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top_aim_phase .phase_item {
    text-align: center;
}

.top_aim_phase .phase_item h3 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.top_aim_phase .phase_first h3 {
    font-size: 24px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.top_aim_phase .phase_first h3 .title_appeal {
    width: 25px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
}

.top_aim_phase .phase_item h3 span {
    font-size: 28px;
    font-weight: 900;
}

.top_aim_phase .phase_first h3 span {
    font-size: 28px;
}

.top_aim_phase .phase_item .phase_image {
    width: 110px;
    margin: 22px auto 50px;
}

.top_aim_phase .phase_first .phase_image {
    width: 146px;
}

.top_aim_phase .phase_item .phase_year {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.top_aim_phase .phase_item .phase_year span {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.top_aim_phase .phase_item .phase_detail {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.top_aim_phase .pase_dots {
    width: 5px;
    flex-shrink: 0;
    display: block;
    margin: 50px auto;
}


.top_message {
    background: #3C5466;
    padding: 100px 0;
    margin: 0 -20px;
    text-align: center;
}

.top_message_title {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
}

.top_message_text {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-height: 49px;
    margin: 50px auto;
    letter-spacing: 0.01em;
    padding: 0 14px;
}

.top_message_text span {
    font-size: 23px;
    font-weight: 900;
    color: #fff;
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-height: 49px;
}


.top_flow {
    padding: 60px 0;
}

.top_flow_title {
    font-size: 50px;
    line-height: 65px;
    font-weight: 900;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.top_flow_wrap .flow_step {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 50px -10px 0;
}

.top_flow_wrap .flow_step .step_icon {
    width: 96px;
    aspect-ratio: 1;
    background: #FDB71D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    flex-shrink: 0;
    position: relative;
}

.top_flow_wrap .flow_step .step_icon::after {
    content: "";
    width: 1px;
    height: calc(100% + 50px);
    position: absolute;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    background: #FDB71D;
}

.top_flow_wrap .flow_step:last-of-type .step_icon::after {
    display: none;
}

.top_flow_wrap .flow_step .step_icon_text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.top_flow_wrap .flow_step .step_icon_num {
    font-size: 32px;
    line-height: 38px;
    font-weight: 900;
}

.top_flow_wrap .flow_step .step_content h3 {
    font-size: 24px;
    line-height: 40px;
    font-weight: 900;
}

.top_flow_wrap .flow_step .step_content p {
    font-size: 16px;
    line-height: 40px;
    font-weight: bold;
    margin: 6px 0 0 0;
}

.top_flow_wrap .flow_step .step_content .step_content_entry {
    color: #FDB71D;
}

/* -----------login & register-----------*/

.login .swpm-remember-me,
.login .swpm-login-form-register-link,
.register .swpm-membership-level-row {
    display: none;
}

.login,
.register {
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 0;
    margin: 0 auto;
}

.swpm-login-widget-form,
.swpm-registration-widget-form {
    width: 100%;
}

.swpm-login-widget-form .swpm-username-input input,
.swpm-login-widget-form .swpm-password-input input,
.swpm-registration-widget-form .swpm-form-input-wrap input[type="text"],
.swpm-registration-widget-form .swpm-form-input-wrap input[type="password"] {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 40px;
    letter-spacing: 2px;
    box-sizing: border-box;
}

.swpm-login-form-inner .swpm-login-submit {
    width: fit-content;
    margin: 20px auto;
}

.swpm-login-form-inner .swpm-login-submit input,
.swpm-registration-submit-section button,
.swpm-edit-profile-submit-section button {
    background: #FDB71D;
    border: none;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    padding: 10px 0;
}

.swpm-forgot-pass-link {
    text-align: center;
}

.swpm-login-form-pw-reset-link {
    color: #0F72AB;
    font-size: 14px;
    text-decoration: none;
}

.register .swpm-registration-form-section {
    display: flex;
    flex-direction: column;

}

.register .swpm-form-row:nth-of-type(1) {
    order: 1;
}

.register .swpm-form-row:nth-of-type(2) {
    order: 2;
}

.register .swpm-form-row:nth-of-type(3) {
    order: 3;
}

.register .swpm-form-row:nth-of-type(4) {
    order: 4;
}

.register .swpm-form-row:nth-of-type(5) {
    order: 5;
}

.register .swpm-form-row:nth-of-type(6) {
    order: 6;
}

.register .swpm-registration-submit-section {
    order: 10;
}

.register .swpm-before-registration-submit-section {
    order: 7;
}

/* -----------mypage-----------*/

.mypage {
    margin: 60px 0 0;
}

.mypage_scroll {
    overflow-x: scroll;
    position: relative;
    padding: 0 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mypage_scroll::-webkit-scrollbar {
    display: none;
}

.mypage_wrap {
    display: flex;
    width: 600px;
    height: 380px;
    margin: 0 auto;
    position: relative;
    margin: 0 auto 0;
}

.mypage_item {
    width: 140px;
    display: block;
    text-decoration: none;
    position: absolute;
    top: 130px;
    left: -180px;
    transition: 0.3s;
}

.mypage_item:hover {
    transform: translateY(-10px);
}

.mypage_item:nth-of-type(1) {
    top: 45px;
    left: 22%;
}

.mypage_item:nth-of-type(2) {
    top: 30%;
    left: 43%;
}

.mypage_item:nth-of-type(3) {
    top: 10px;
    left: 48%;
}

.mypage_item:nth-of-type(4) {
    top: 9%;
    left: 70%;
}

.mypage_item:nth-of-type(5) {
    top: 46%;
    left: 21%;
}

.mypage_item:nth-of-type(6) {
    top: 63%;
    left: 40%;
}

.mypage_item:nth-of-type(7) {
    top: 40%;
    left: 69%;
}

.mypage_item:nth-of-type(8) {
    top: 25%;
    left: 0px;
}

.mypage_item .mypage_image {
    width: 100%;
}

.mypage_item .mypage_ttl {
    width: 115px;
    font-size: 12px;
    line-height: 25px;
    border-radius: 100px;
    background: #fff;
    border: 3px solid #3C5466;
    color: #3C5466;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: -30px;
}


/* -----------profile-----------*/

.profile {
    width: min(100%, 730px);
    margin: 0 auto;
}

.profile .profile_icon {
    width: 126px;
    height: 126px;
    display: block;
    margin: 0 auto;
}

.profile .profile_title {
    font-size: 12px;
    line-height: 20px;
    color: #777E90;
}

.profile .swpm-form-username-input-wrap {
    margin: 16px auto 34px;
    font-size: 32px;
    line-height: 56px;
    text-align: center;
}

.profile .swpm-form-username-label-wrap {
    display: none;
}

.profile .swpm-form-row {
    display: flex;
    align-items: center;
}

.profile .swpm-form-label-wrap {
    width: 65px;
    font-size: 16px;
    line-height: 38px;
    flex-shrink: 0;
    margin: 0 15px 0 0;
    color: #A0A0A0;
}

.profile .swpm-form-input-wrap {
    flex-grow: 1;
}

.profile .swpm-form-input-wrap input[type="text"] {
    width: 100%;
    box-sizing: border-box;
}

.profile .swpm-form-field {
    font-size: 16px;
    line-height: 32px;
    color: #3C5466;
}

.swpm-edit-profile-submit-section button {
    margin: 0px auto;
    display: none;
}

.profile input:disabled {
    background: none;
    border: none;
}

.profile .swpm-profile-account-delete-section a {
    text-decoration: none;
}

.profile .swpm-profile-account-delete-section a .swpm-account-delete-button {
    width: 240px;
    border: solid 1px #3C5466;
    color: #3C5466;
    font-size: 14px;
    line-height: 14px;
    padding: 10px 0;
    margin: 0px auto;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.profile .swpm-profile-account-delete-section a .swpm-account-delete-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0.5;
}


.profile .swpm-password-row,
.profile .swpm-repass-row,
.profile .swpm-country-row,
.profile .swpm-street-row,
.profile .swpm-company-row,
.profile .swpm-membership-level-row {
    display: none;
}

.button_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    margin: 20px auto;
}

@media screen and (max-width: 767px) {
    .button_flex {
        flex-direction: column;
    }
}

.edit_button {
    width: 240px;
    cursor: pointer;
    background: #3C5466;
    border: none;
    font-size: 14px;
    font-weight: bold;
    line-height: 2.4;
    color: #fff;
    padding: 10px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.edit_mode .swpm-profile-submit-button {
    display: block;
}

.edit_mode .edit_button {
    display: none;
}

.edit_button:hover {
    background: #3C5466;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* -----------specific-transactions-----------*/

.specific {
    padding: 20px 0;
}

.specific .specific_wrap {
    max-width: 764px;
    padding: 0 15px;
    margin: 0 auto;
}

.specific .specific_wrap .specific_ttl {
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    margin: 32px 0 10px;
}

.specific .specific_wrap .specific_text {
    font-size: 20px;
    line-height: 1.5;
    padding: 0 0 14px;
    border-bottom: 1px solid #D9D9D9;
}

.specific_to_top {
    display: block;
    margin: 32px auto;
    text-align: center;
    color: #3C5466;
    font-size: 16px;
    line-height: 32px;
    text-underline-offset: 3px;
}

/* -----------news-----------*/

.news {
    max-width: 1000px;
    margin: 0 auto;
}

.news .tab_wrap {
    display: flex;
}

.news .tab_wrap p {
    width: 50%;
    text-align: center;
    font-size: 20px;
    line-height: 54px;
    color: #3C5466;
    background: #E6E8EC;
    position: relative;
}

.news .tab_item:nth-of-type(1) {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.news .tab_item:nth-of-type(2) {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.news .tab_item {
    cursor: pointer;
}


.news .tab_wrap .active_tab {
    color: #fff;
    background: #FDB71D;
}

.news .tab_wrap .active_tab::after {
    content: "";
    width: 10px;
    height: 6px;
    background: #FDB71D;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0px);
}

.news .news_list,
.news .event_list {
    border-radius: 10px;
    margin: 20px 0;
    padding: 70px 20px;
    box-shadow: 0 4px 9px rgba(60, 84, 102, 0.4);
}

.news .news_content {
    max-width: 660px;
    margin: 0 auto;
    border-bottom: 1px solid #D9D9D9;
    padding: 10px 0;
    color: #3C5466;
    text-decoration: none;
}

.news .news_content a {
    color: #3c5466;
    display: flex;
    align-items: center;
    gap: 30px;
    text-decoration: none;
}

.news .news_content .news_image_wrap {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
}

.news .news_content .news_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.news .news_content .news_text_wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news .news_content .content_date {
    font-size: 14px;
    line-height: 1.5;
    color: #AEBCC7;
    font-weight: bold;
    margin: 0;
}

.news .news_content .content_ttl {
    font-size: 18px;
    font-weight: bold;
    line-height: 25px;
    margin: 0;
}

.news .event_list .event_header {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.news .event_list .event_header p {
    font-weight: 600;
}

.news .event_list .event_header .month_prev,
.news .event_list .event_header .month_next {
    cursor: pointer;
}

.news .event_list .event_item {
    max-width: 660px;
    margin: 0 auto;
    border-bottom: 1px solid #D9D9D9;
}

.news .event_list .event_item .event_link {
    display: flex;
    align-items: center;
    gap: 45px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.news .event_list .event_item .event_link:hover {
    opacity: 0.8;
}

.news .event_list .event_item .event_image_wrap {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
}

.news .event_list .event_item .event_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.news .event_list .event_item .event_date {
    font-size: 36px;
    line-height: 72px;
}

.news .event_list .event_item .event_date .day_of_week {
    font-size: 14px;
    line-height: 72px;
}

.news .event_list .event_item .event_content {
    display: flex;
    flex-direction: column;
}

.news .event_list .event_item .event_content .event_name {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    color: #3C5466;
}

.news .event_list .event_item .event_content .event_time {
    font-size: 10px;
    line-height: 21px;
    font-weight: 700;
    color: #A0A0A0;
}

.news .event_list .event_item .event_date.saturday {
    color: #0F72AB;
}

.news .event_list .event_item .event_date.sunday {
    color: #AB430F;
}

.news .more_button {
    display: block;
    text-align: center;
    text-decoration: none;
    margin: 40px auto;
}

/* -----------lesson-----------*/

.lesson .lesson_tab {
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
}

.lesson .lesson_tab_item {
    width: calc((100% - 40px) / 3);
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    background: #D9D9D9;
    border-radius: 10px;
    padding: 13px 0;
    text-align: center;
    cursor: pointer;
}

.lesson .lesson_tab_item.active {
    background: #FDB71D;
    color: #fff;
}

.lesson .lesson_category_videos.active {
    max-width: 1130px;
    margin: 70px auto 0;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.lesson .lesson_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lesson .lesson_video {
    border-radius: 10px;
    overflow: hidden;
}

.lesson .lesson_item h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 29px;
}

.lesson_category_videos {
    display: none;
}

.lesson_category_videos.active {
    display: block;
}


.contact {
    max-width: 640px;
    margin: 0 auto;
}

.contact form p {
    margin: 12px 0 0 0;
}

.contact label {
    font-size: 20px;
    line-height: 20px;
}

.contact .wpcf7-form-control {
    width: 100%;
    box-sizing: border-box;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 40px;
    margin: 10px 0 0 0;
}

.contact .submit_button {
    width: 150px;
    cursor: pointer;
    background: #FDB71D;
    border: none;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    padding: 10px 0;
    margin: 20px auto;
}

.contact .wpcf7-form-control.wpcf7-textarea {
    resize: none;
    height: 280px;
    line-height: 20px;
}

/* -----------privacy-----------*/

.privacy {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy h2 {
    font-size: 24px;
    color: #3C5466;
    margin: 40px 0 20px;
    font-weight: bold;
    border-left: 5px solid #FDB71D;
    padding-left: 15px;
}

.privacy h3 {
    font-size: 20px;
    color: #3C5466;
    margin: 30px 0 15px;
    font-weight: bold;
}

.privacy p {
    font-size: 16px;
    line-height: 1.8;
    color: #3C5466;
    margin-bottom: 15px;
}

.privacy .num_list {
    padding: 0 0 0 20px;
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.privacy .num_list::before {
    content: var(--i);
    position: absolute;
    left: 0px;
    top: 0;
    line-height: 22px;
    color: #FDB71D;
    font-weight: bold;
}

.privacy ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy li {
    font-size: 16px;
    line-height: 1.8;
    color: #3C5466;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.privacy li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #FDB71D;
}

.privacy .privacy_date {
    text-align: right;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #D9D9D9;
}

.privacy .privacy_date p {
    font-size: 14px;
    color: #A0A0A0;
}

@media screen and (min-width: 768px) {
    .privacy {
        padding: 0 40px;
    }

    .privacy h2 {
        font-size: 28px;
    }

    .privacy h3 {
        font-size: 24px;
    }

    .privacy p,
    .privacy li {
        font-size: 18px;
    }
}

@media screen and (min-width: 960px) {
    .privacy {
        padding: 0 60px;
    }

    .privacy h2 {
        font-size: 32px;
    }
}

/* -----------about-----------*/

.about .about_ttl {
    font-size: 50px;
    line-height: 75px;
    font-weight: 900;
}

.about .about_caption {
    font-size: 16px;
    line-height: 26px;
    margin: 50px 10px 0 10px;
}

.about .about_caption img {
    display: block;
    box-sizing: border-box;
    padding: 20px;
}

.about_recommendation {
    padding: 30px 0 110px;
    margin: 0 -20px;
    background: #DBF2E169;
}

.about_recommendation .about_recommendation_ttl {
    font-size: 32px;
    line-height: 120px;
    text-align: center;
}

.about_recommendation .second_content_detail {
    width: min(240px, 100%);
    border: 3px solid #3C5466;
    border-radius: 10px;
    padding: 30px 10px;
    box-sizing: border-box;
    margin: 0 auto;
    background: #fff;
}

.about_recommendation .second_content_detail img {
    width: 60px;
    display: block;
    margin: 20px auto;
}

.about_recommendation .second_content_detail h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    word-break: keep-all;
    overflow-wrap: anywhere;
    letter-spacing: -1px;
}

.about_recommendation .second_content_detail p {
    font-size: 15px;
    font-weight: 400;
}

.about_advantage {
    margin: 0 auto 60px;
}

.about_advantage .about_advantage_content h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 110px;
    text-align: center;
}

.about_advantage .about_advantage_content .third_content_detail {
    width: 100%;
    min-height: 100px;
    border: 3px solid #FDB71D;
    border-radius: 100px;
    padding: 14px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_advantage .about_advantage_content .third_content_detail h4 {
    color: #C61D1D;
    font-size: 20px;
    font-weight: bold;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.about_advantage .about_advantage_content .third_content_detail p {
    word-break: keep-all;
    overflow-wrap: anywhere;
    font-size: 14px;
}

.about_aim .about_aim_phase {
    padding: 40px 0 20px;
}

.about_aim .about_aim_image {
    margin: 0 40px 20px auto;
}

/* -----------rikako room-----------*/

.rikako_ttl {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    margin: 80px auto 50px;
}

.rikako_profile .rikako_profile_wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto 60px;
}

.rikako_profile .rikako_profile_wrap .profile_image {
    object-fit: cover;
}

.rikako_profile .profile_content h3 {
    font-size: 34px;
    font-weight: 900;
}

.rikako_profile .profile_content .name_kana {
    font-size: 16px;
    line-height: 30px;
}

.rikako_profile .profile_content .name {
    font-size: 30px;
    line-height: 1;
}

.rikako_profile .profile_content .profile_text {
    font-size: 16px;
    line-height: 27px;
    margin: 35px auto 16px;
}

.rikako_profile .profile_content .career {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 16px;
}

.rikako_profile .profile_content .career .career_head {
    font-weight: 900;
}

.rikako_profile .profile_content .career .career_item {
    display: flex;
    gap: 14px;
}

.rikako_profile .profile_content .career .career_item .career_item_year {
    margin: 0 20px 0 0;
}

.rikako_sec_ttl {
    font-size: 36px;
    line-height: 52px;
    font-weight: 900;
    text-align: center;
}

.rikako_sec_text {
    font-size: 16px;
    text-align: center;
    margin: 25px auto 40px;
}

.rikako_character {
    padding: 80px 20px;
    background: rgba(219, 242, 225, 0.41);
    margin: 0 calc(50% - 50vw);
}

.rikako_character .rikako_character_list {
    max-width: 920px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;

}

.rikako_character .rikako_character_list img {
    width: calc((100% - 20px) / 3);
    max-width: 240px;
    object-fit: contain;
    aspect-ratio: 1;
    cursor: pointer;
}

.rikako_character .rikako_character_display {
    margin: 0 auto;
}

.rikako_character .rikako_character_display img {
    max-width: 380px;
    margin: 0 auto;
    display: block;
}

.rikako_character .display_name {
    font-size: 24px;
    line-height: 52px;
    font-weight: 900;
    text-align: center;
    margin: 30px auto 20px;
}

.rikako_character .display_description {
    width: fit-content;
    font-size: 16px;
    padding: 0 17px;
    margin: 0 auto;
}

.rikako_blog {
    padding: 50px 0 0;
}

.rikako_blog .rikako_blog_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.rikako_blog .rikako_blog_item {
    width: 100%;
    font-size: 20px;
    color: #3C5466;
    text-decoration: none;
}

.rikako_blog .rikako_blog_item .blog_image {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    border-radius: 10px;
}

.rikako_blog .to_blog {
    width: fit-content;
    display: block;
    height: auto;
    background: #FDB71D;
    border: none;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    padding: 14px 20px;
    margin: 40px auto 60px;
    text-decoration: none;
}

/* -----------blog-----------*/

.blog .blog_item {
    text-decoration: none;
}

.blog .blog_item p {
    font-size: 20px;
    line-height: 29px;
    color: #333;
}

.blog .blog_image,
.single_content .blog_image {
    display: block;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.single_content .blog_image {
    aspect-ratio: initial;
    margin: 0 auto 50px;
}

.wp-block-image img {
    max-width: 800px !important;
    margin: 50px auto !important;
    display: block !important;
}

/* -----------投稿(お知らせ記事) ページ-----------*/

.single_content {
    margin: 0;
}

.single_content .single_content_wrap {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 10px 10px;
}

.single_content .single_content_info h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 0 auto 8px;
    border-bottom: 1px solid #3C5466;
    display: flex;
    align-items: center;
    gap: 6.5px;
}

.single_content .date_wrap {
    display: flex;
    gap: 6px;
    color: #707070;
    font-size: 12px;
    margin: 0 0 20px;
}

.single_content .event_date_wrap {
    font-size: 20px;
    font-weight: bold;
    color: #3C5466;
    margin: 20px 0 30px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
}

.single_content .event_date_wrap .event_date_item,
.single_content .event_date_wrap .event_time_item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.single_content .event_date_wrap .event_label {
    font-size: 14px;
    font-weight: bold;
    color: #AEBCC7;
    letter-spacing: 0.05em;
}

.single_content .event_date_wrap p {
    font-size: 20px;
    font-weight: bold;
    color: #3C5466;
    margin: 0;
}

.single_content .content {
    font-size: 14px;
}

.single_content .content h2.wp-block-heading {
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0 12px;
    color: #3C5466;
    border-bottom: solid 3px #3C5466;
}

.single_content .content h3.wp-block-heading {
    font-size: 12px;
    font-weight: bold;
    margin: 15px 0 8px;
    color: #3C5466;
    border-left: solid 5px #3C5466;
    text-align: left;
    padding-left: 5px;
}

.single_content .btn {
    width: fit-content;
    display: block;
    height: auto;
    background: #FDB71D;
    border: none;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    padding: 14px 20px;
    margin: 40px auto 60px;
    text-decoration: none;
}

/* -----------ipad-----------*/

@media screen and (min-width:640px) {

    .sp {
        display: none;
    }

    .tb {
        display: block;
    }

    .pc {
        display: none;
    }

    /* -----------共通-----------*/

    .under_frame {
        bottom: -60px;
    }

    .under_frame.mypage_under {
        position: relative;
        left: 50%;
        bottom: -68px;
        transform: translateX(-50%);
        object-fit: cover;
        object-position: top;
    }

    /* -----------SP header-----------*/

    .header_inner {
        height: 38px;
    }

    /* -----------footer-----------*/



    /* -----------top-----------*/

    .top_mv_index {
        font-size: min(100px, 8vw);
        line-height: 1.3;
    }

    .top_mv_index span {
        font-size: min(120px, 10vw);
        line-height: 1.3;
    }

    .top_mv_entry {
        padding: 0 15px 25px;
    }

    .line_friend_add {
        width: 200px;
        top: -140px;
    }

    .top_mv_balloon {
        width: 170px;
        height: 33px;
        line-height: 23px;
        font-size: 12px;
    }

    .top_mv_main {
        font-size: 30px;
        line-height: 1.2;
    }

    .top_mv_main_large {
        font-size: 35px;
    }

    .top_mv_text .item1 {
        width: 250px;
        position: absolute;
        top: -220px;
        right: 120px;
        z-index: -1;
    }

    .top_mv_text .item2 {
        display: block;
        width: 250px;
        position: absolute;
        top: -260px;
        right: -120px;
        z-index: -1;
    }

    .top_mv_text .item3 {
        display: block;
        width: 250px;
        position: absolute;
        top: 20px;
        right: -70px;
        z-index: -1;
    }

    .top_mv_text .item4 {
        display: block;
        width: 250px;
        position: absolute;
        top: -60px;
        right: -300px;
        z-index: -1;
    }

    .about_content {
        padding: 30px 50px;
    }


    .top_contents_item {
        width: calc((100% / 3) - 30px);
        margin: 20px 0 0 0;
    }

    .top_aim_image {
        width: 270px;
        margin: 0 auto 20px 0;
    }

    .top_aim_phase {
        padding: 120px 0 200px;
        flex-direction: row;
    }

    .top_aim_phase .phase_first .phase_image {
        margin: 25px auto 30px;
    }

    .top_aim_phase .phase_first .phase_detail {
        margin: 0 0 40px;
    }

    .top_aim_phase .pase_dots {
        transform: rotate(90deg);
    }

    /* -----------top_news-----------*/

    .top_news {
        padding: 80px 40px;
    }


    .top_news_item {
        height: 70px;
        border-bottom: 1px solid #D9D9D9;
    }

    .top_news_item:last-child {
        border-bottom: none;
    }

    .top_news_link {
        gap: 25px;
        height: 100%;
        box-sizing: border-box;
    }

    .top_news_date {
        font-size: 14px;
    }

    .top_flow {
        padding: 60px 0 100px;
    }

    .top_flow_wrap {
        max-width: fit-content;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* -----------lesson-----------*/

    .lesson .lesson_category_videos.active {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 24px;
    }

    .lesson .lesson_item {
        width: calc((100% - 54px) / 3);
    }

    /* -----------about-----------*/

    .about {
        padding: 40px 10%;
    }

    .about .about_caption {
        font-size: 20px;
        line-height: 34px;
        display: flex;
        align-items: flex-start;
    }

    .about .about_caption img {
        width: 390px;
    }

    .about_recommendation .about_content_list {
        max-width: 500px;
        flex-direction: row;
        margin: 0 auto;
    }

    .about_aim .about_aim_phase {
        padding: 50px 0 80px;
    }

    /* -----------rikako-room----------*/

    .rikako_character .rikako_character_list {
        gap: 40px;
    }

    .rikako_character .rikako_character_list img {
        width: calc((100% - 160px) / 5);
        object-fit: contain;
    }

    .rikako_character .display_name {
        margin: 60px auto 20px;
    }

}

/* -----------PC-----------*/

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


    body {
        font-size: 15px;
    }

    .sp {
        display: none;
    }

    .tb {
        display: block;
    }

    .pc {
        display: block;
    }

    /* -----------共通-----------*/

    .sp_none {
        display: block;
    }

    .sp_only {
        display: none;
    }

    .page_ttl {
        font-size: 32px;
        line-height: 72px;
        margin: 0 auto 60px;
    }

    .under_frame {
        width: 130%;
        bottom: -10px;
        height: 350px;
        object-fit: cover;
        object-position: top;
    }

    .under_frame.mypage_under {
        width: 90%;
        max-width: 1600px;
        bottom: -80px;
        padding: 0;
    }

    /* -----------PC header-----------*/


    /* -----------footer-----------*/

    footer {
        padding: 125px 0 10px;
    }


    .footer_list {
        flex-direction: row;
        gap: 50px;
    }

    .footer_link {
        font-size: 20px;
        line-height: 32px;
    }

    .footer_inner small {
        font-size: 20px;
        line-height: 32px;
    }

    /* -----------top-----------*/

    /* -----------top_news-----------*/

    .top_news {
        padding: 100px 60px;
    }

    .top_news_item {
        height: 70px;
        border-bottom: 1px solid #D9D9D9;
    }

    .top_news_item:last-child {
        border-bottom: none;
    }

    .top_news_link {
        gap: 30px;
        height: 100%;
        box-sizing: border-box;
    }

    .top_news_date {
        font-size: 16px;
    }

    .top_mv {
        padding: 0 100px;
    }

    .slider-container {
        width: calc(100vw - 40px);
        margin: 0 -100px;
    }

    .top_mv_entry {
        top: -100px;
        right: -100px;
    }

    .line_friend_add {
        top: -180px;
        right: -100px;
    }

    .top_mv_text .item1 {
        right: 170px;
    }

    .top_mv_text .item2 {
        right: -110px;
    }

    .top_mv_text .item3 {
        right: -20px;
    }

    .top_about {
        padding: 80px 6vw 120px;
    }

    .top_aim {
        max-width: 1100px;
        padding: 0 100px;
        box-sizing: border-box;
    }

    .top_aim_image {
        width: 340px;
        margin: 0 auto -50px max(calc(50% - 48vw), -140px);
    }

    .top_about {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .top_about h2 {
        width: 100%;
    }

    .top_about_btn_wrap {
        width: calc(40% - 30px);
    }

    .top_about_list {
        width: 60%;
    }

    .top_about .about_content_list {
        flex-direction: row;
    }

    .top_about .about_content .second_content_detail {
        width: calc(50% - 8px);
    }

    .top_about .about_content .third_content_detail {
        height: 110px;
    }

    /* -----------login & register-----------*/

    .swpm-login-widget-form .swpm-username-input input,
    .swpm-login-widget-form .swpm-password-input input,
    .swpm-registration-widget-form .swpm-form-input-wrap input[type="text"],
    .swpm-registration-widget-form .swpm-form-input-wrap input[type="password"] {
        font-size: 20px;
        line-height: 40px;
        letter-spacing: 1px;
    }

    .swpm-login-form-inner .swpm-login-submit input,
    .swpm-registration-submit-section button {
        font-size: 20px;
        line-height: 20px;
    }

    .swpm-login-form-pw-reset-link {
        font-size: 20px;
    }


    /* -----------mypage-----------*/

    .mypage {
        padding: 60px 0 100px;
    }

    .mypage_wrap {
        width: 1000px;
        height: 600px;
    }

    .mypage_item {
        width: 250px;
    }

    .mypage_item .mypage_ttl {
        width: 175px;
        font-size: 18px;
        line-height: 35px;
        border: 5px solid #3C5466;
        top: -50px;
    }

    /* -----------news-----------*/

    .news .tab_wrap p {
        line-height: 70px;
    }

    /* -----------about-----------*/

    .about {
        padding: 120px 10%;
    }

    .about .about_ttl {
        font-size: 80px;
        line-height: 120px;
    }

    .about .about_caption {
        font-size: 30px;
        line-height: 50px;
    }

    .about_recommendation .about_content_list {
        max-width: 1020px;
        flex-direction: row;
        margin: 0 auto;
    }

    .about_advantage {
        margin: 0 auto 120px;
    }

    .about_advantage .about_content_list {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .about_advantage .about_advantage_content .third_content_detail {
        width: 45%;
        height: 100px;
    }

    .about_advantage .about_advantage_content .third_content_detail p {
        word-break: keep-all;
        overflow-wrap: anywhere;
        font-size: 16px;
    }

    .about_aim {
        padding: 0 100px 60px;
    }


    /* -----------rikako room-----------*/

    .rikako_ttl {
        margin: 80px auto 100px;
    }

    .rikako_profile .rikako_profile_wrap {
        max-width: 950px;
        margin: 0 auto 120px;
        flex-direction: row;
        justify-content: space-between;
    }

    .rikako_profile .rikako_profile_wrap .profile_image {
        width: 40%;
    }

    .rikako_profile .rikako_profile_wrap .profile_content {
        max-width: 388px;
        flex-shrink: 0;
    }

    .rikako_blog .rikako_blog_wrap {
        flex-direction: row;
    }

    .rikako_blog .rikako_blog_item {
        max-width: 355px;
    }

    /* -----------投稿(お知らせ記事) ページ-----------*/

    .single_content .sec_inner {
        padding: 0px 20px 120px;
        font-size: 16px;
    }

    .single_content .single_content_wrap {
        padding: 50px 100px;
    }

    .single_content .single_content_info {
        font-size: 18px;
    }

    .single_content .single_content_info h3 {
        font-size: 30px;
    }

    .single_content .event_date_wrap {
        font-size: 24px;
        margin: 25px 0 35px;
        gap: 40px;
    }

    .single_content .event_date_wrap .event_label {
        font-size: 16px;
    }

    .single_content .event_date_wrap p {
        font-size: 24px;
    }

    .single_content .new_label {
        font-size: 17px;
        padding: 4px 10px;
    }

    .single_content .content_post {
        font-size: 16px;
        gap: 24px;
    }

    .single_recruit .content_post {
        font-size: 16px;
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        gap: 24px;
    }

    .single_content .content h2.wp-block-heading {
        font-size: 24px;
        border-bottom: solid 3px #3C5466;
    }

    .single_content .content h3.wp-block-heading {
        font-size: 18px;
        border-left: solid 5px #3C5466;
    }

    .single_content .navigation_buttons .btn {
        font-size: 16px;
    }
}


/* 会員登録&会員情報ページで追加したCSS */
.register {
    max-width: 640px;
}

fieldset {
    min-width: unset;
}

.swpm-form-builder-container {
    width: 100%;
}

.register h2 {
    font-size: 24px;
    font-weight: bold;
}

.swpm-item-file-upload div {
    width: 100%;
}

.swpm-item-file-upload img {
    width: 140px;
    aspect-ratio: 1;
    max-height: unset !important;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 20px auto;
}

.swpm-item {
    display: flex;
    flex-direction: column;
    font-size: 20px;
}

.swpm-desc {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 1px;
    margin: 12px 0 10px 0;
}

.swpm-text {
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 1px;
}

.swpm-fieldset .swpm-item-password {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.register .swpm-submit,
.profile .swpm-submit {
    width: 240px;
    cursor: pointer;
    background: #FDB71D;
    border: none;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    padding: 10px 0;
    margin: 0 auto;
}

.register input[type="password"],
.profile input[type="password"] {
    width: 100%;
    box-sizing: border-box;
}

.swpm-required-asterisk {
    display: none;
}

fieldset h3,
#item-swpm-168 #item-swpm-171 {
    display: none;
}

label.swpm-form-builder-error {
    color: red;
}

/* 会員情報ページのみのスタイル */
.profile .swpm-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

.profile .swpm-item {
    font-size: 16px;
}

.profile .swpm-desc {
    width: 310px;
    font-size: 16px;
    line-height: 38px;
    letter-spacing: 1px;
    color: #A0A0A0;
    margin: 0;
}

.profile .swpm-text {
    flex-grow: 1;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 1px;
}

.profile .swpm-submit {
    margin: 10px auto 20px;
    padding: 7px 0;
    background: #2180e9;
}

.profile.edit_mode .swpm-item-submit {
    display: block;
}

.profile.edit_mode .swpm-item-password {
    display: flex;
}

.profile .swpm-item {
    order: 10;
}

.swpm-stripe-cancel-error-msg {
    text-align: center;
}

.accordion-button {
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #38d81f;
    transition: all 0.3s ease;
    width: 240px;
    line-height: 2;
    border: none;
    cursor: pointer;
}

@media screen and (min-width:960px) {
    .profile .swpm-item {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 15px;
        line-height: 38px;
    }

    .profile .swpm-item-password {
        flex-direction: column;
        gap: 5px;
    }

    .profile .swpm-item-password div {
        width: 100%;
    }
}

/* 有料会員へのページスタイル */
[class$="-payment"] {
    font-size: 20px;
    text-align: center;
}

[class$="-payment"] p {
    padding: 20px 0 10px;
}

.payment-button-area {
    max-width: 500px;
    text-align: center;
}

.stripe-button-el {
    display: block !important;
    margin: 0 auto !important;
    background: none !important;
    box-shadow: none !important;
    width: 100% !important;
}

.stripe-button-el span {
    height: auto !important;
    background: #C61D1D !important;
    border: none !important;
    font-size: 14px !important;
    line-height: 2.4 !important;
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    width: auto !important;
    min-width: 240px !important;
    box-sizing: border-box;
}

.stripe-button-el span:hover {
    border: solid 1px #C61D1D !important;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(198, 29, 29, 0.4),
        0 0 30px rgba(198, 29, 29, 0.2) !important;
}

.swpm-stripe-subscription-cancel-link {
    margin-top: 15px;
}

.swpm-stripe-subscription-cancel-link button {
    background: none;
    border: 2px solid #3C5466;
    color: #3C5466;
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swpm-stripe-subscription-cancel-link button:hover {
    background: #3C5466;
    color: #fff;
}

.error-msg {
    margin-top: 12px;
    font-size: 11px;
}


/* 未ログイン時「ログインページへ」のスタイル */
.not-logged-in {
    text-align: center;
    margin: 50px auto;
}

.not-logged-in .btn {
    width: fit-content;
    display: block;
    height: auto;
    background: #FDB71D;
    border: none;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    padding: 10px 20px;
    margin: 20px auto 60px;
    text-decoration: none;
}




/* 20250418 */
/* simple member */
.swpm-partial-protection-msg {
    display: none;
}


.button-disabled {
    pointer-events: none !important;
    opacity: 0.5;
    cursor: not-allowed;
}


.login {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(60, 84, 102, 0.1);
}

.login .page_ttl {
    font-size: 24px;
    color: #3C5466;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.swpm-login-widget-logged {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.swpm-logged-username,
.swpm-logged-status,
.swpm-logged-membership,
.swpm-logged-expiry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f5f7fa;
    border-radius: 5px;
    border: 1px solid #e6e8ec;
}

.swpm-logged-label {
    color: #3C5466;
    font-weight: bold;
    font-size: 14px;
    margin-right: 15px;
}

.swpm-logged-value {
    color: #0F72AB;
    font-size: 14px;
}

.swpm-logged-logout-link {
    text-align: center;
    margin-top: 20px;
}

.swpm-logged-logout-link a {
    color: #0F72AB;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 20px;
    border: 2px solid #3C5466;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.swpm-logged-logout-link a:hover {
    background-color: #3C5466;
    color: #fff;
}

.login p {
    text-align: center;
    margin-top: 20px;
}

.login p a {
    color: #0F72AB;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 20px;
    border: 2px solid #3C5466;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.login p a:hover {
    background-color: #3C5466;
    color: #fff;
}

.hide-rego-form-msg {
    margin-top: 5rem;
}


.character-container {
    position: relative;
    width: 100%;
    height: auto;
}

.character {
    position: absolute;
    width: 15%;
    max-width: 150px;
    min-width: 80px;
    transition: transform 0.3s ease;
}

.character-1 {
    top: -7%;
    left: 30%;
    animation: float1 3s ease-in-out infinite;
}

.character-2 {
    top: 39%;
    left: 61%;
    animation: float2 3.5s ease-in-out infinite;
}

.character-3 {
    top: 23%;
    left: 48%;
    animation: float3 4s ease-in-out infinite;
}

.character-4 {
    top: -13%;
    left: 70%;
    animation: float4 3.2s ease-in-out infinite;
}

.character-5 {
    top: 42%;
    left: 20%;
    animation: float5 3.8s ease-in-out infinite;
}

.character:hover {
    transform: scale(1.1);
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}

@media screen and (max-width: 960px) {
    .character {
        width: 18%;
        min-width: 60px;
    }

    .character-1 {
        top: 10%;
        left: 25%;
    }

    .character-2 {
        top: 42%;
        left: 72%;
    }

    .character-3 {
        top: 30%;
        left: 48%;
    }

    .character-4 {
        top: 0%;
        left: 78%;
    }

    .character-5 {
        top: 48%;
        left: 6%;
    }
}

@media screen and (max-width: 768px) {
    .character {
        width: 20%;
        min-width: 50px;
    }

    .character-1 {
        top: 8%;
        left: 20%;
    }

    .character-2 {
        top: 52%;
        left: 70%;
    }

    .character-3 {
        top: 35%;
        left: 48%;
    }

    .character-4 {
        top: 0;
        left: 74%;
    }

    .character-5 {
        top: 49%;
        left: 4%;
    }
}

@media screen and (max-width: 480px) {
    .character {
        width: 20%;
        min-width: 40px;
    }

    .character-1 {
        top: 14%;
        left: 15%;
    }

    .character-2 {
        top: 56%;
        left: 70%;
    }

    .character-3 {
        top: 40%;
        left: 46%;
    }

    .character-4 {
        top: 6%;
        left: 76%;
    }

    .character-5 {
        top: 56%;
        left: 5%;
    }
}



.swpm-stripe-cancel-error-msg {
    display: none;
}

/* Instagram Reel Section */

.top_youtube {
    padding: 120px 0;
    width: 100%;
}

.top_youtube h2 {
    font-size: 50px;
    font-weight: 900;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.youtube_container {
    max-width: 1200px;
    margin: 0 auto;
}

.top_youtube .youtube_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.top_youtube .youtube_video {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8.7px rgba(65, 103, 131, 0.17);
}

.top_youtube .youtube_video iframe {
    width: 100%;
    height: 100%;
}

.top_youtube .youtube_text {
    text-align: center;
    max-width: 600px;
}

.top_youtube .youtube_text h3 {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.top_youtube .youtube_text p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
}

.top_youtube .youtube_button {
    display: inline-block;
    background: #FDB71D;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.top_youtube .youtube_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8.7px rgba(65, 103, 131, 0.17);
}

@media screen and (min-width: 768px) {
    .top_youtube .youtube_content {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
    }

    .top_youtube .youtube_video {
        max-width: 450px;
    }

    .top_youtube .youtube_text {
        text-align: left;
    }
}

@media screen and (min-width: 960px) {
    .top_youtube .youtube_video {
        max-width: 560px;
    }

    .top_youtube .youtube_text h3 {
        font-size: 28px;
    }

    .top_youtube .youtube_text p {
        font-size: 18px;
    }

    .top_youtube .youtube_button {
        font-size: 18px;
        padding: 15px 40px;
    }
}

/* Top YouTube List */
.top_youtube_list {
    margin: 0 0 80px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.top_youtube_list .youtube_list_container {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: min-content;
}

.top_youtube_list .youtube_list_item {
    flex: 0 0 auto;
    max-width: 560px;
    width: calc(100vw - 100px);
}

.top_youtube_list .youtube_list_video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8.7px rgba(65, 103, 131, 0.17);
}

.top_youtube_list .youtube_list_video iframe {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) {

    .top_youtube_list .youtube_list_container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
        justify-content: center;
    }

    .top_youtube_list .youtube_list_item {
        width: calc(33.333% - 20px);
        min-width: 280px;
        max-width: 380px;
    }
}

@media screen and (min-width: 960px) {
    .top_youtube_list .youtube_list_container {
        padding: 0 60px;
    }

    .top_youtube_list .youtube_list_item {
        width: calc(33.333% - 20px);
        min-width: 320px;
        max-width: 400px;
    }
}

/* Instagram Section in About */
.instagram_section {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    margin: 30px auto;
    width: 100%;
    box-sizing: border-box;
}

.instagram_section .instagram_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.instagram_section .instagram_video {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8.7px rgba(65, 103, 131, 0.17);
}

.instagram_section .instagram_video iframe {
    width: 100%;
    height: 100%;
}

.instagram_section .instagram_text {
    text-align: center;
    max-width: 600px;
}

.instagram_section .instagram_text h3 {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.instagram_section .instagram_text p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
}

.instagram_section .instagram_button {
    display: inline-block;
    background: #FDB71D;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.instagram_section .instagram_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8.7px rgba(65, 103, 131, 0.17);
}

@media screen and (min-width: 768px) {
    .instagram_section .instagram_content {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
    }

    .instagram_section .instagram_video {
        max-width: 350px;
    }

    .instagram_section .instagram_text {
        text-align: left;
    }
}

@media screen and (min-width: 960px) {
    .instagram_section {
        padding: 40px;
    }

    .instagram_section .instagram_video {
        max-width: 400px;
    }

    .instagram_section .instagram_text h3 {
        font-size: 28px;
    }

    .instagram_section .instagram_text p {
        font-size: 18px;
    }

    .instagram_section .instagram_button {
        font-size: 18px;
        padding: 15px 40px;
    }
}

.instagram-embed-wrapper {
    max-width: 100%;
    overflow: hidden;
    background: transparent;
    display: flex;
    justify-content: center;
}

.instagram-embed-wrapper iframe {
    width: 100%;
    max-width: 400px;
    /* 推奨幅。必要に応じて調整 */
    height: 480px;
    /* 高さはリールに合わせて調整 */
    border: none;
    background: transparent;
    margin: 0;
    padding: 0;
    display: block;
}


.level-4-payment {
    height: 300px;
}

.grecaptcha-badge {
    visibility: hidden;
}


/* 利用規約ページ */
.term_service {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.term_service_price {
    text-align: center;
    margin-bottom: 40px;
}

.term_service_price p:first-child {
    font-size: 24px;
    color: #3C5466;
    margin-bottom: 10px;
}

.term_service_price p:last-child {
    font-size: 48px;
    font-weight: 900;
    color: #FDB71D;
}

.term_service_features {
    margin-bottom: 40px;
}

.term_service_feature_item {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8.7px rgba(65, 103, 131, 0.17);
}

.term_service_feature_item h3 {
    font-size: 20px;
    color: #3C5466;
    margin-bottom: 15px;
    font-weight: bold;
}

.term_service_feature_item p {
    font-size: 16px;
    line-height: 1.8;
    color: #3C5466;
}

.term_service_feature_item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.term_service_feature_item li {
    font-size: 16px;
    line-height: 1.8;
    color: #3C5466;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.term_service_feature_item li span {
    color: #FDB71D;
    position: absolute;
    left: 0;
}

.term_service_cta {
    text-align: center;
}

.term_service_content {
    max-width: 800px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.term_service_section {
    margin-bottom: 40px;
}

.term_service_section h2 {
    font-size: 20px;
    color: #3C5466;
    margin-bottom: 20px;
    font-weight: bold;
    border-left: 5px solid #FDB71D;
    padding-left: 15px;
}

.term_service_section p {
    font-size: 16px;
    line-height: 1.8;
    color: #3C5466;
    margin-bottom: 15px;
}

.term_service_section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.term_service_section li {
    font-size: 16px;
    line-height: 1.8;
    color: #3C5466;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.term_service_section li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #FDB71D;
}

.term_service_date {
    text-align: right;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #D9D9D9;
}

.term_service_date p {
    font-size: 14px;
    color: #A0A0A0;
}

@media screen and (min-width: 768px) {

    .term_service,
    .term_service_content {
        padding: 0 40px;
    }

    .term_service_feature_item h3,
    .term_service_section h2 {
        font-size: 24px;
    }

    .term_service_feature_item p,
    .term_service_feature_item li,
    .term_service_section p,
    .term_service_section li {
        font-size: 18px;
    }
}

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

    .term_service,
    .term_service_content {
        padding: 0 60px;
    }

    .term_service_price p:first-child {
        font-size: 28px;
    }

    .term_service_price p:last-child {
        font-size: 56px;
    }

    .term_service_section h2 {
        font-size: 28px;
    }
}









/* -----------Apparel Page----------- */
.apparel {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    position: relative;
}

.apparel_hero_bg {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.apparel_mv_image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.apparel_hero_content {
    position: relative;
    z-index: 2;
    background: rgba(60, 84, 102, 0.8);
    padding: 40px 20px;
    border-radius: 20px;
    margin: 0 20px;
    backdrop-filter: blur(10px);
    color: #fff;
}

.apparel_ttl {
    font-size: 32px;
    line-height: 56px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.apparel_caption {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.yummyrose_coupon_section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.yummyrose_coupon_container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.yummyrose_content_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.yummyrose_intro {
    width: 100%;
    margin: 0;
    padding: 0;
}

.yummyrose_ttl {
    margin-bottom: 30px;
    text-align: center;
}

.yummyrose_ttl img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.yummyrose_content {
    margin-bottom: 40px;
}

.yummyrose_content p {
    font-size: 16px;
    line-height: 1.8;
    color: #3C5466;
}

.yummyrose_features {
    width: 100%;
    margin: 0;
    padding: 0;
}

.coupon_section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.coupon_container {
    text-align: center;
}

.coupon_ttl {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #3C5466;
}

.coupon_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coupon_card {
    background: linear-gradient(135deg, #FDB71D 0%, #ffd700 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(253, 183, 29, 0.3);
    color: #fff;
    flex: 1;
}

.coupon_code {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.coupon_label {
    font-size: 14px;
    color: #3C5466;
    font-weight: bold;
}

.coupon_value {
    font-size: 32px;
    color: #FDB71D;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.coupon_description {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.coupon_info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon_terms {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.5;
    color: #3C5466;
}


.categories_ttl {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #3C5466;
    text-align: center;
}

.category_link {
    display: inline-block;
    background: #FDB71D;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.category_link:hover {
    background: #3C5466;
    transform: translateY(-2px);
}

.yummyrose_cta {
    width: min(100%, 730px);
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.yummyrose_button {
    display: inline-block;
    background: #3C5466;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 183, 29, 0.3);
}

.yummyrose_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 183, 29, 0.4);
    background: #e6a800;
}

@media screen and (min-width: 768px) {
    .apparel_hero_bg {
        height: 500px;
    }

    .apparel_ttl {
        font-size: 36px;
    }

    .yummyrose_ttl img {
        max-width: 250px;
    }

    .coupon_ttl,
    .categories_ttl {
        font-size: 32px;
    }

    .yummyrose_coupon_container {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .yummyrose_content_wrap {
        flex: 2;
    }

    .coupon_section {
        width: 40%;
    }

    .coupon_content {
        flex-direction: column;
        gap: 20px;
    }

    .coupon_card {
        padding: 30px 20px;
    }

    .apparel_icons span {
        font-size: 32px;
    }
}

@media screen and (min-width: 960px) {
    .apparel_hero_bg {
        height: 600px;
    }

    .apparel_ttl {
        font-size: 40px;
    }

    .yummyrose_ttl img {
        max-width: 300px;
    }

    .coupon_ttl,
    .categories_ttl {
        font-size: 36px;
    }

    .yummyrose_coupon_container {
        gap: 80px;
    }

    .coupon_content {
        gap: 30px;
    }

    .coupon_card {
        padding: 40px 30px;
    }

    .apparel_icons span {
        font-size: 40px;
    }
}

@media screen and (min-width: 960px) {
    .apparel_ttl {
        font-size: 25px;
    }

    .yummyrose_ttl img {
        max-width: 200px;
    }

    .coupon_ttl,
    .categories_ttl {
        font-size: 36px;
    }
}

/* -----------ショップ一覧ページ----------- */

.archive_shop_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0 50px;
}

.archive_shop_item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive_shop_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.archive_shop_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.archive_shop_logo {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 120px;
}

.archive_shop_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.archive_shop_no_items {
    text-align: center;
    grid-column: 1 / -1;
    margin: 40px 0;
    font-size: 16px;
    color: #666;
}

.to_mypage {
    display: block;
    text-align: center;
    background: #3C5466;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin: 30px auto 20px;
    max-width: 200px;
    transition: background-color 0.3s ease;
}

.to_mypage:hover {
    background: #2a3d4b;
}


/* タブレット以上 */
@media screen and (min-width: 768px) {
    .archive_shop_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 40px 0 60px;
    }

    .archive_shop_logo {
        padding: 30px;
        height: 150px;
    }
}

/* PC */
@media screen and (min-width: 960px) {
    .archive_shop_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin: 50px 0 80px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .archive_shop_logo {
        padding: 40px;
        height: 180px;
    }
}

/* -----------ショップ詳細ページ----------- */
.single_shop_hero {
    margin-bottom: 40px;
}

.single_shop_mv_image {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single_shop_mv_image img {
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
    border-radius: 10px;
}


.single_shop_intro {
    margin-bottom: 40px;
}

.single_shop_title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #3C5466;
}

.single_shop_description {
    line-height: 1.8;
    color: #666;
}

.single_shop_features {
    margin-top: 40px;
}

.single_shop_info_section {
    margin-top: 40px;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.single_shop_price_ttl {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    color: #3C5466;
}

.single_shop_price_content {
    display: flex;
    justify-content: center;
}

.single_shop_price_card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 200px;
}

.single_shop_price_display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.single_shop_price_label {
    font-size: 14px;
    color: #666;
}

.single_shop_price_value {
    font-size: 24px;
    font-weight: bold;
    color: #3C5466;
}

.single_shop_coupon_info {
    margin-top: 20px;
    text-align: center;
}

.single_shop_cta {
    text-align: center;
    margin: 40px 0;
}

.single_shop_button {
    display: inline-block;
    background: linear-gradient(135deg, #FDB71D 0%, #f39c12 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 183, 29, 0.3);
}

.single_shop_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 183, 29, 0.4);
}

.single_shop_navigation {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 20px 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.single_shop_back_btn {
    display: block;
    text-align: center;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    background: #f0f0f0;
    color: #3C5466;
    border: 2px solid #3C5466;
    transition: all 0.3s ease;
}

.single_shop_back_btn:hover {
    background: #3C5466;
    color: #fff;
    transform: translateY(-2px);
}

/* タブレット以上 */
@media screen and (min-width: 768px) {

    .single_shop_mv_image img {
        max-width: 350px;
        max-height: 350px;
    }

    .single_shop_title {
        font-size: 28px;
    }

    .single_shop_navigation {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin: 50px auto 40px;
    }

    .single_shop_back_btn {
        max-width: 200px;
    }
}

/* PC */
@media screen and (min-width: 960px) {
    .single_shop_mv_image img {
        max-width: 450px;
        max-height: 450px;
    }


    .single_shop_title {
        font-size: 32px;
    }
}

/* -----------top_cta_2-----------*/

.top_cta_2 {
    padding: 80px 20px;
    text-align: center;
}

.price_cta_container {
    max-width: 320px;
    background: #fff;
    border: 3px solid #3C5466;
    border-radius: 15px;
    padding: 30px 20px;
    margin: 0 auto;
    box-shadow: 0 4px 8.7px rgba(65, 103, 131, 0.17);
}

.price_display {
    margin-bottom: 20px;
}

.price_label {
    font-size: 18px;
    color: #3C5466;
    margin-bottom: 10px;
    font-weight: bold;
}

.price_value {
    font-size: 36px;
    font-weight: 900;
    color: #FDB71D;
    line-height: 1;
    margin-bottom: 5px;
}

.price_yen {
    font-size: 18px;
    font-weight: 900;
}

.price_note {
    font-size: 14px;
    color: #3C5466;
}

.registration_button {
    display: inline-block;
    background: #FDB71D;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8.7px rgba(253, 183, 29, 0.3);
}

.registration_button:hover {
    transform: translateY(-2px);
    background: #e6a800;
    box-shadow: 0 6px 12px rgba(253, 183, 29, 0.4);
}

@media screen and (min-width: 768px) {
    .top_cta_2 {
        padding: 80px 20px;
    }

    .price_cta_container {
        max-width: 360px;
        padding: 35px 30px;
    }

    .price_label {
        font-size: 18px;
    }

    .price_value {
        font-size: 42px;
    }

    .price_yen {
        font-size: 21px;
    }

    .registration_button {
        font-size: 18px;
        padding: 14px 32px;
    }
}

@media screen and (min-width: 960px) {
    .top_cta_2 {
        padding: 100px 20px;
    }

    .price_cta_container {
        max-width: 400px;
        padding: 40px 35px;
    }

    .price_label {
        font-size: 20px;
    }

    .price_value {
        font-size: 48px;
    }

    .price_yen {
        font-size: 24px;
    }

    .registration_button {
        font-size: 20px;
        padding: 16px 36px;
    }
}

/* Top Membership Benefits Section - 入会のメリット */
.top_membership_benefits {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.top_membership_benefits_title {
    font-size: 36px;
    font-weight: 900;
    color: #3C5466;
    margin-bottom: 40px;
    text-align: center;
}

.top_membership_benefits_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.top_membership_benefit_item {
    width: 100%;
    min-height: 140px;
    border: 3px solid #FDB71D;
    border-radius: 10px;
    padding: 20px 24px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    transition: all 0.3s ease;
}

.top_membership_benefit_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(253, 183, 29, 0.3);
}

.top_membership_benefit_item_title {
    color: #C61D1D;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-height: 1.4;
}

.top_membership_benefit_item_text {
    font-size: 14px;
    color: #3C5466;
    line-height: 1.8;
    word-break: keep-all;
    overflow-wrap: anywhere;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .top_membership_benefits {
        padding: 100px 40px;
    }

    .top_membership_benefits_title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .top_membership_benefits_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .top_membership_benefit_item {
        min-height: 160px;
        padding: 25px 30px;
    }

    .top_membership_benefit_item_title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .top_membership_benefit_item_text {
        font-size: 15px;
    }
}

@media screen and (min-width: 960px) {
    .top_membership_benefits {
        padding: 120px 60px;
    }

    .top_membership_benefits_title {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .top_membership_benefits_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 1000px;
    }

    .top_membership_benefit_item {
        min-height: 200px;
    }

    .top_membership_benefit_item_title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .top_membership_benefit_item_text {
        font-size: 17px;
        line-height: 1.9;
    }
}



/* YouTubeブロックを常に16:9で表示（上下の黒余白を回避）*/
.wp-block-embed-youtube .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    /* 16:9 */
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

/* 埋め込みiframeをフィットさせる */
.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* テーマ側の max-width/固定高さがある場合の保険 */
.wp-block-embed-youtube {
    max-width: 100% !important;
}

/* アクセス拒否メッセージ用スタイル */
.access-denied {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.access-denied-message {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.access-denied-message p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.access-denied-message p:last-child {
    margin-bottom: 0;
}

.access-denied-message a {
    color: #FDB71D;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.access-denied-message a:hover {
    color: #e6a800;
}

@media screen and (max-width: 768px) {
    .access-denied {
        padding: 20px 15px;
    }

    .access-denied-message {
        padding: 30px 20px;
    }
}

/* パスワードリセット送信完了メッセージ用スタイル */
.reset-success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reset-success-message .success-content h3 {
    color: #155724;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.reset-success-message .success-content p {
    color: #155724;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
}

.reset-success-message .success-content p:last-of-type {
    margin-bottom: 25px;
}

.reset-success-message .success-actions {
    margin-top: 25px;
}

.reset-success-message .btn-back-to-login {
    display: inline-block;
    background: #FDB71D;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.reset-success-message .btn-back-to-login:hover {
    background: #e6a800;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .reset-success-message {
        padding: 20px;
        margin: 15px 0;
    }

    .reset-success-message .success-content h3 {
        font-size: 20px;
    }

    .reset-success-message .success-content p {
        font-size: 14px;
    }
}

/* パスワードリセットページ用スタイル */
.reset-request-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reset-request-container h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3C5466;
    text-align: center;
}

.reset-request-container p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

/* SimpleMemberパスワードリセットフォームのスタイリング */
.swpm-pw-reset-widget-form {
    max-width: 100%;
}

.swpm-pw-reset-widget-form .swpm-pw-reset-email-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #3C5466;
}

.swpm-pw-reset-widget-form .swpm-pw-reset-text {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.swpm-pw-reset-widget-form .swpm-pw-reset-text:focus {
    outline: none;
    border-color: #FDB71D;
}

.swpm-pw-reset-widget-form .swpm-pw-reset-submit {
    width: 100%;
    background: #FDB71D;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.swpm-pw-reset-widget-form .swpm-pw-reset-submit:hover {
    background: #e6a800;
}

.swpm-pw-reset-widget-form .swpm-pw-reset-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* パスワードリセットページ全体のスタイル */
.password-reset {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.password-reset .page_ttl {
    text-align: center;
    margin-bottom: 30px;
}

.back-to-login {
    text-align: center;
    margin-top: 30px;
}

.back-to-login a {
    color: #FDB71D;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-to-login a:hover {
    color: #e6a800;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .password-reset {
        padding: 20px 15px;
    }

    .reset-request-container {
        padding: 20px;
    }

    .reset-request-container h3 {
        font-size: 16px;
    }

    .reset-request-container p {
        font-size: 14px;
    }
}