@charset "UTF-8";

/* ==========================================
   0. 全体設定・変数 (root)
   ========================================== */
:root {
    --c-font: #000000;
    --c-base: #f4f5f7;
    --c-main: #003f6c;
    --c-accent: #e0701e;
    --f-sans: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', '游ゴシック', sans-serif;
    --f-serif: 'Noto Serif JP', 'ヒラギノ明朝 ProN', '游明朝', serif;
}

/* ==========================================
   1. レイアウト (.ly_)
   ========================================== */
.ly_header {
    width: 100% !important;
    max-width: 100% !important;
    height: 140px !important;
    background-color: var(--c-base) !important;
}

.ly_header * {
    margin: 0;
    padding: 0;
    color: inherit;
    list-style: none;
    text-decoration: none;
}

.ly_header_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 15px;
    padding: 15px;
}

.ly_content {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}

.ly_content__top * {
    margin: 0;
    padding: 0;
    color: inherit;
    list-style: none;
    text-decoration: none;
}

.ly_section {
    padding: 80px 0;
}

.ly_aside {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    width: 240px;
    box-sizing: border-box;
}

.ly_aside * {
    margin: 0;
    padding: 0;
    color: inherit;
    text-decoration: none;
}

.ly_aside_inner {
    display: block;
}

.ly_footer {
    width: 100%;
}

.ly_footer * {
    margin: 0;
    padding: 0;
    color: inherit;
    list-style: none;
    text-decoration: none;
}

.ly_footer_inner {
    padding: 0 30px;
}

.ly_footer_inner__contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 40px;
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 2px solid #f2f2f2;
}

.ly_footer_inner__nav {
    padding: 80px 0 100px 0;
    background-color: #f7f3ef;
}

.ly_footer_inner__address {
    padding: 60px 0 30px 0;
    background-color: var(--c-main);
    text-align: center;
}

#leftcolumn {
    width: 240px !important;
}

#container {
    width: 100% !important;
    max-width: 1100px !important;
    padding-top: 80px !important;
}

#main_column.colnum2 {
    width: calc(100% - 240px - 40px) !important;
    max-width: 840px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: right !important;
}

#main_column h2 {
    margin: 0;
    padding: 0;
    border: none !important;
}

#main_column #mypagecolumn {
    margin-top: 0 !important;
}

ul#mypage_nav {
    margin-top: 20px !important;
}

/* ==========================================
   2. ブロック (.bl_)
   ========================================== */
/* Header Logo */
.bl_headerLogo {
    display: block;
    width: 190px;
    height: auto;
}

.bl_headerLogo_link {
    display: block;
    width: 100%;
}

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

/* Header Search */
.bl_headerSearch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px 0;
}

.bl_headerSearch_lead {
    font-size: 12px;
    font-weight: 500;
}

.bl_headerSearch_inner {
    width: 320px;
    height: 35px;
}

.bl_headerSearch_inner form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    border: 1px solid #d5d5d5 !important;
    border-radius: 3px !important;
}

.bl_headerSearch_inner form input[type='text'] {
    width: calc(100% - 40px) !important;
    height: 35px;
    padding: 0 10px;
    background-color: #ffffff;
    border: none !important;
    outline: none !important;
}

.bl_headerSearch_inner form input[type='submit'] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 35px;
    color: #ffffff;
    background-color: #d5d5d5;
    background-image: url('https://ec.sakamoto-corp.net/user_data/packages/raku2pc/image/icon_search.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
    border: none !important;
    outline: none !important;
    cursor: pointer;
}

.bl_loginForm {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0 20px;
    margin: 0 0 0 auto;
}

.bl_asideLoginForm {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 100%;
    margin: 0;
}

.bl_logoutLink_wrap {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0 5px;
    width: 75px;
    margin: 0 auto;
    border-bottom: 2px solid #444444;
}

.bl_logoutLink_wrap::after {
    display: inline-block;
    content: '';
    width: 5px;
    height: 5px;
    border-right: 2px solid #444444;
    border-bottom: 2px solid #444444;
    transform: rotate(-45deg);
}

.bl_logoutLink {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding-bottom: 0px;
    font-size: 12px;
    font-weight: 500;
    background-color: transparent !important;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer !important;
}

/* Header Name */
.bl_headerName {
    font-weight: 400;
    text-align: left;
}

.bl_headerName_welcome {
    font-size: 12px;
}

.bl_headerName_pt {
    font-size: 10px;
}

.bl_headerName_text {
    font-size: 16px;
}

/* Header Guide */
.bl_headerGuide_list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 15px;
}

.bl_headerGuide_item {
    text-align: center;
}

.bl_headerGuide_link {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    cursor: pointer !important;
}

.bl_headerGuide_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 29px;
}

.bl_headerGuide_icon img {
    display: block;
    width: auto;
    height: auto;
}

.bl_headerGuide_text {
    font-size: 12px;
    font-weight: 400;
}

/* Header Nav */
.bl_headerNav {
    display: block;
    width: 100%;
    color: #ffffff !important;
    background-color: var(--c-main);
}

.bl_headerNav_list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.bl_headerNav_item {
    display: block;
    position: relative;
}

.bl_headerNav_link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 1em;
    width: 100%;
    height: 50px;
    color: #ffffff !important;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}

.bl_headerNav_item:has(.bl_headerNavSub_list) .bl_headerNav_link::after {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
}

.bl_headerNavSub_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--c-main);
    position: absolute;
    z-index: 5;
}

.bl_headerNavSub_item {
    display: block;
    width: 100%;
    height: 50px;
}

.bl_headerNavSub_link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #ffffff !important;
}
/* breadcrumb */
.bl_breadcrumb {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 0 30px 0;
    font-size: 12px;
}

.bl_breadcrumb_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 0;
}

.bl_breadcrumb_item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.bl_breadcrumb_item:not(:last-child):after {
    display: inline-block;
    content: '';
    width: 5px;
    height: 5px;
    margin: 0 0.5em;
    border-top: 2px solid #d5d5d5;
    border-right: 2px solid #d5d5d5;
    transform: rotate(45deg);
}

.bl_breadcrumb_item__home::before {
    display: inline-block;
    content: '';
    width: 17px;
    height: 15px;
    margin-right: 5px;
    background-image: url('https://ec.sakamoto-corp.net/user_data/packages/raku2pc/image/icon_home.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.bl_breadcrumb_link {
    font-weight: 500;
    text-decoration: none !important;
    line-height: 1;
}

/* Beginner Guide */
.bl_beginnerGuide_link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: calc(240px - 40px - 2px);
    height: 50px;
    padding: 0 20px;
    color: var(--c-main) !important;
    background-color: #ffffff;
    border: 1px solid var(--c-main);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.bl_beginnerGuide_link::before {
    display: inline-block;
    content: '';
    width: 17px;
    height: 25px;
    background-image: url('https://ec.sakamoto-corp.net/user_data/packages/raku2pc/image/icon_beginner.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.bl_beginnerGuide_link::after {
    display: inline-block;
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #959595;
    border-right: 2px solid #959595;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
}

/* Aside Member */
.bl_asideMember {
    width: 100%;
}

.bl_asideMember_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px 0;
    width: 100%;
}

.bl_asideMember_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px 0;
    width: calc(100% - 30px);
    padding: 20px 15px;
    background-color: #f7f3ef;
    text-align: center;
}

.bl_asideMember_item:nth-child(1) {
    border-radius: 5px 5px 0 0;
}

.bl_asideMember_item:nth-child(2) {
    border-radius: 0 0 5px 5px;
}

.bl_asideMember_lead {
    color: #444444;
    font-size: 14px;
    font-weight: 600;
}

.bl_asideMember_link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 35px;
    margin: 0 auto;
    color: #ffffff !important;
    background-color: var(--c-main);
    border-radius: 35px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.bl_asideMember_link__new {
    background-color: var(--c-accent);
}

.bl_asideMember_link::after {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
}

/* Banner List */
.bl_bnrList {
    display: block;
    margin-bottom: 40px;
}

.bl_bnrList_list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px 0;
}

.bl_bnrList_link {
    display: block;
    border-radius: 5px;
}

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

/* Aside Nav */
.bl_asideNav {
    display: block;
    margin-bottom: 40px;
}

.bl_asideNav_list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px 0;
    line-height: 2;
}

.bl_asideNav_item {
    display: block;
    font-size: 14px;
}

.bl_asideNav_link {
    display: inline-block;
    color: var(--c-main) !important;
    font-weight: 600;
}

.bl_asideNavSub_list {
    margin: 0 0 0 1.5em;
}

.bl_asideNavSub_item {
    display: list-item;
    list-style: disc !important;
}

.bl_asideNavSub_link {
    display: inline-block;
    font-weight: 500;
}

/* Contact List */
.bl_contactList_wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 40px !important;
    width: calc(100% - 40px) !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    background-color: transparent !important;
}

.bl_contactList_wrap h2 {
    min-width: 130px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bl_contactList {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 0 40px !important;
    background-color: transparent !important;
}

.bl_contactList_item {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 400px !important;
    height: 140px;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #f7f7f7 !important;
    border: none !important;
    border-radius: 10px;
}

.bl_contactList_title {
    margin-bottom: 0.5em;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* Footer Nav */
.bl_footerNav {
    width: calc(100% - 60px);
    max-width: 900px;
    margin: 60px auto 0 auto;
    font-size: 14px;
}

.bl_footerNav_lead {
    color: var(--c-main) !important;
    font-size: 18px !important;
    font-family: var(--f-serif) !important;
    font-weight: 700 !important;
    text-align: center !important;
    color: var(--c-main) !important;
    background-color: transparent !important;
}

.bl_footerNav_list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 0 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
}

.bl_footerNav_item {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background-color: transparent !important;
}

.bl_footerNav_link {
    display: block !important;
    width: 100% !important;
    color: var(--c-main) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: left !important;
}

.bl_footerNavSub_list {
    display: flex !important;
    flex-direction: column !important;
    margin: 1em 0 0 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    line-height: 2.5 !important;
}

.bl_footerNavSub_item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background-color: transparent !important;
}

.bl_footerNavSub_link {
    display: block !important;
    width: 100% !important;
    font-size: 14px !important;
    text-align: left !important;
    color: #333333 !important;
    background-color: transparent !important;
    border: none !important;
    line-height: 2.5 !important;
    cursor: pointer;
}

.bl_footerNavSub_link:hover {
    text-decoration: underline !important;
    opacity: 0.8 !important;
}

/* Footer Logo & Address & Copyright */
.bl_footerLogo_link {
    display: block;
    width: 190px;
    height: auto;
    margin: 0 auto;
}

.bl_footerAddress {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px 1em;
    width: 360px;
    margin: 30px auto;
    text-align: center;
}

.bl_footerAddress_text {
    color: #ffffff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

.bl_copyright {
    text-align: center;
}

.bl_copyright_text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
}

/* ==========================================
   3. エレメント (.el_)
   ========================================== */
.el_btn_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.el_btn_wrap__left {
    align-items: flex-start !important;
}

.el_btn_wrap__row {
    flex-direction: row;
}

.el_btn_lead {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px 0;
    color: var(--c-main);
    font-weight: 600;
}

.el_btn_leadSub {
    display: inline-block;
    font-size: 16px;
    text-align: center;
}

.el_btn_leadMain {
    display: inline-block;
    font-size: 20px;
    text-align: center;
}

.el_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 45px;
    color: #ffffff !important;
    background-color: var(--c-main);
    border: 2px solid var(--c-main);
    border-radius: 45px;
    font-size: 16px !important;
    font-weight: 600 !important;
    position: relative;
    transition: 0.3s all;
}

.el_btn:hover {
    color: var(--c-main) !important;
    background-color: #ffffff;
    transition: 0.3s all;
}

.el_btn::after {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    position: absolute;
    right: 20px;
    transition: 0.3s all;
}

.el_btn:hover:after {
    border-right: 2px solid var(--c-main);
    border-bottom: 2px solid var(--c-main);
    transition: 0.3s all;
}

.el_btn__modifier {
    color: var(--c-main) !important;
    background-color: #ffffff;
}

.el_btn__modifier:hover {
    color: #ffffff !important;
    background-color: var(--c-main);
}

.el_btn__modifier::after {
    border-right: 2px solid var(--c-main);
    border-bottom: 2px solid var(--c-main);
}

.el_btn__modifier:hover:after {
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

.el_btn__accent {
    color: #ffffff !important;
    background-color: var(--c-accent);
    border: 2px solid var(--c-accent);
    box-shadow: 3px 5px 0 #aa4800;
}

.el_btn__accent:hover {
    color: var(--c-accent) !important;
    box-shadow: 3px 5px 0 var(--c-accent);
}

.el_btn__accent:hover:after {
    border-right: 2px solid var(--c-accent);
    border-bottom: 2px solid var(--c-accent);
}

.el_headingLv2 {
    margin-bottom: 40px;
    border: none !important;
    text-align: center;
    background-color: transparent !important;
    text-align: center;
}

.el_headingLv2_title {
    display: block;
    color: #000000 !important;
    font-size: 20px;
    font-weight: 600;
}

.el_headingLv2_sub {
    display: block;
    color: #1a72a8 !important;
    font-size: 12px;
    font-weight: 500;
}

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

.el_accordion {
    padding: 20px;
    background-color: #f7f3ef;
}

.el_accordion_dt {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 10px;
    position: relative;
    cursor: pointer;
}

.el_accordion_dt::after {
    display: inline-block;
    content: '＋';
    color: var(--c-main);
    font-size: 24px;
    font-weight: 900;
    position: absolute;
    right: 0;
}

.el_accordion_dt.is_show::after {
    content: '－';
}

.el_accordion_dd {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 10px;
    padding-top: 20px;
}

.el_asideHead {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 20px;
    margin-bottom: 30px;
    padding: 10px;
    color: #000000;
    background-color: #f2f2f2;
    font-size: 12.6px;
    font-weight: 500;
}

/* Contact Link Base */
.el_contactLink {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    width: calc(240px - 30px);
    height: 50px;
    padding: 0 15px;
    background-color: transparent;
    border: 2px solid #d5d5d5;
    border-radius: 50px;
}

.el_contactLink__footer {
    width: calc(285px - 30px);
    height: 65px;
    border-radius: 65px;
    background-color: #ffffff;
}

.el_contactLink_icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 25px;
}

.el_contactLink_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

.el_contactLink_text {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.el_contactLink_text__tel {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.el_contactLink_span {
    display: block;
    font-size: 8px;
    font-weight: 500;
}

.el_pageHeading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: calc(100% - 40px);
    height: 240px;
    margin: 0 auto;
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.el_pageHeading__beginner {
    background-image: url('https://ec.sakamoto-corp.net/user_data/packages/raku2pc/image/about/bg_aboutHead.webp');
}

.el_pageHeading_sub {
    color: #ffffff;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 20px;
    font-weight: 600;
}

.el_pageHeading_main {
    color: #ffffff;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 30px;
    font-weight: 600;
}

/* ==========================================
   4. ヘルパー・モディファイア (.hp_)
   ========================================== */
.hp_color__main {
    color: var(--c-main) !important;
}

.hp_color__accent {
    color: var(--c-accent) !important;
}

/* ==========================================
   5. javaScript (.js_)
   ========================================== */
.js_headerNavSub_list {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
}

.js_headerNavSub_list.is_show {
    visibility: visible;
    opacity: 1;
    transition: 0.3s all;
}
