/* インナー */
.contents {
    overflow: hidden;
}

.page {
    padding: 100px 0;
}

.area_full {
    max-width: 100%;
    margin: 0 auto;
}

.inner {
    max-width: 1000px;
    margin: 0 auto;
}

.inner_w {
    max-width: 1200px;
    margin: 0 auto;
}

.inner_m {
    padding: 0 32px;
}

.inner_s {
    max-width: 768px;
    margin: 0 auto;
}

.section {
    padding: 72px 0;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.first_section {
    padding-top: 0 !important;
}

.first_section::before {
    content: none;
}

.last_section {
    margin-bottom: 0 !important;
}

.section.last_section {
    padding-bottom: 0 !important;
}

@media screen and (max-width: 1200px) {
    .inner_w {
        padding: 0 16px;
    }
}
@media screen and (max-width: 1000px) {
    .inner,
    .inner_s {
        padding: 0 16px;
    }
}

@media screen and (max-width: 768px) {
    .contents {
        padding: 0;
    }

    .contents.page {
        padding: 32px 0;
    }

    .inner_m {
        padding: 0;
    }

    .inner_w {
        padding: 0 16px;
    }

    .inner,
    .inner_s {
        padding: 0 16px;
    }

    .section {
        padding: 32px 0;
    }
}

/* 位置調整 */
.adjust_center {
    display: flex;
    justify-content: center;
}

.adjust_right {
    display: flex;
    justify-content: flex-end;
}



/*---------------------------------------------------
    header
---------------------------------------------------*/
.header {
    background-color: #fff;
}

.header_top {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header_inner {
    width: 100%;
    /*max-width: 1200px;*/
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 999;
    padding: 0 16px;
    border-bottom: 1px solid #ddd;
}

.sitename a {
    width: auto;
    height: 100%;
}

.sitename img {
    height: 40px;
}

footer .sitename img {
    height: 60px;
}

.sitename_text {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-top: 2px;
}

.sitename_sub {
    margin-left: 23px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
}

.header_inner .snav {
    display: flex;
    gap: 8px 0;
    position: absolute;
    top: 17px;
    right: 0;
}

.gnav_wrap .snav.sp_snav {
    display: none;
}

.snav_head {
    display: none;
}

.snav_btn {
    display: block;
    padding: 16px 32px;
    background-color: #000;
    color: #fff;
}

.snav_btn.snav_cta2 {
    background-color: #000;
}

.snav_btn.snav_cta1 {
    background-color: #555;
}

.snav_btn span {
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    text-align: center;
}

.header_top .snav {
    position: static;
    top: inherit;
    right: inherit;
}

.header_top .snav,
.header_top .sitename{
    flex-shrink: 0;
}

.header_top .snav .snav_btn:first-child{
    margin-right: clamp(0.8rem, 1.0vw, 2.0rem);
}

.top_gnav {
    display: flex;
    align-items: center;
    position: static;
    flex-shrink: 1;
}

.menu {
    height: 80px;
    display: flex;
    align-items: center;
    flex-shrink: 1;
    margin-right: clamp(1.0rem, 1.0vw, 2.0rem);
}

.gnav {
    gap: 0;
    display: flex;
    flex-shrink: 1;
}

.gnav>li {
    height: 80px;
    display: flex;
    align-items: center;
}

.gnav li a,
.gnav li span {
    display: flex;
    align-items: center;
    color: #222222;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    padding: 0 22px;
}
.gnav li a:hover {
    color: #666;
}


/* 下層ヘッダー */
.lower .header_inner {
    flex-direction: column;
    position: relative;
    border-bottom: none;
}

.lower .header_top {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lower_gnav {
    display: flex;
    align-items: center;
    gap: 0 40px;
    position: static;
    justify-content: center;
    background-color: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 99;
}

.lower .menu {
    height: 60px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    justify-content: center;
}

.lower .gnav>li {
    height: 60px;
}

#sp_menu {
    display: none;
}

.gnav li span.has_mega_title {
    position: relative;
    padding-right: 16px;
}

.gnav li span.has_mega_title::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 7px;
    height: 7px;
    border: solid #000;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.lower .gnav li span.has_mega_title::after {
    border: solid #222;
    border-width: 0 1px 1px 0;
}

:root {
    --scrollbar: 0;
}

.mega_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-left: calc(-50vw + 50%);
    width: 100vw;
    background: rgba(255, 255, 255, 1);
    padding: 24px;
    z-index: 1000;
}

.mega_menu.top {
    background: #dddddd;
}

.mega_menu_inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.mega_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega_menu_list {
    display: flex;
    gap: 8px 24px;
    flex-wrap: wrap;
}

.mega_menu_list li {
    width: calc(calc(100% - 24px) / 2);
}

.mega_menu_list li a {
    display: block;
    padding: 16px 24px;
    border: 1px solid #000;
    color: #000;
    position: relative;
    background: #ffffff;
}

.mega_menu_list li a:hover {
    background-color: #212121;
}

.mega_menu_list li a::before,
.mega_menu_list li a::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 36px;
    right: 24px;
}

.mega_menu_list li a::before {
    width: 16px;
    height: 2px;
    background-color: #212121;
}

.mega_menu_list li a::after {
    width: 8px;
    height: 8px;
    border: solid #212121;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    bottom: 33px;
}

.mega_menu_list li a:hover::before {
    background-color: #ffffff;
}

.mega_menu_list li a:hover::after {
    border-color: #ffffff;
}

.mega_menu ul li:last-child {
    margin-bottom: 0;
}

.lower .mega_menu {
    background: rgba(0, 0, 0, 1);
    border-top: 1px solid #333;
}

.lower .mega_menu_list li a {
    border: 1px solid #fff;
    color: #000;
}

.lower .mega_menu_list li a:hover {
    color: #fff;
}

/* ドロップメニュー */
.dropdown {
    position: relative;
}

.dropdown-nav {
    background: #fff;
    padding: 10px 20px;
    font-family: sans-serif;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    min-width: 340px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    position: relative;
    padding-left: 10px;
}

.dropdown-menu li:not(:last-child) {
    margin-bottom: 15px;
}

.dropdown-menu li a::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    border: solid #000;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-10px);
}

.gnav li span.dropdown-toggle {
    display: inline-block;
    position: relative;
    padding-right: 15px !important;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 7px;
    right: 0;
    width: 10px;
    height: 6px;
    background-color: #000;
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}


/* LP用シンプルヘッダー */
.simple.header {
    border-bottom: 1px solid #ddd;
}

.simple .header_inner {
    flex-direction: column;
    height: 60px;
    position: relative;
}

.simple .sitename img {
    width: 200px;
}

.simple .header_top {
    padding-top: 0;
}

/* header_type1 */
.header_type1 .gnav li a,
.header_type1 .gnav li span{
    white-space: nowrap;
}
@media screen and (max-width: 1520px) {
    .header_type1 .gnav li a,
    .header_type1 .gnav li span{
        padding: 0 clamp(1.6rem, 1.25vw, 2.2rem);
    }
}
@media screen and (max-width: 1280px) {
    .header_type1 .gnav li a,
    .header_type1 .gnav li span {
        font-size: clamp(1.3rem, 1.18vw, 1.5rem);
        padding: 0 clamp(0.6rem, 0.7vw, 1.6rem);
    }
    .header_type1 .snav_btn {
        display: block;
        padding: 16px 18px;
    }
    .header_type1 .snav_btn span {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 1023px) {
    #sp_menu {
        display: block;
        width: 60px;
        height: 60px;
        position: absolute;
        right: 0;
        top: 0;
    }

    #gnavi {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 999;
    }

    #gnavi.active {
        display: block;
        padding: 24px 0;
    }

    #sp_menu .open {
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
        margin: 10px;
        cursor: pointer;
        z-index: 1000;
    }

    #sp_menu .open span {
        display: block;
        height: 2px;
        background: #000;
        margin: 8px 0;
        border-radius: 2px;
    }

    .sitename {
        padding-left: 16px;
    }

    .sitename img {
        height: 40px;
        width: auto;
    }

    .menu {
        position: static;
        transform: inherit;
        display: block;
        height: auto;
    }

    .gnav {
        display: block;
        padding: 0 24px;
    }

    .gnav li a, .gnav li span {
        padding: 8px 0;
        height: 40px;
        line-height: 40px;
    }

    .gnav>li>a {
        line-height: 20px;
    }

    .gnav>li {
        display: block;
        height: inherit;
    }

    .sitename_text {
        display: none;
    }

    .sitename_sub {
        font-size: 1.4rem;
    }

    /*.header {
        overflow: inherit;
    }*/

    .header_inner,
    .lower .header_inner {
        height: 60px;
        padding: 0;
    }

    .header_top {
        height: 60px;
        padding-top: 0;
    }

    .lower .menu {
        height: auto;
    }

    .lower .gnav>li {
        display: block;
        height: inherit;
    }

    .header_top .snav {
        padding: 24px 24px 0;
    }

    .lower .header_top .snav {
        display: none;
    }

    .gnav_wrap .snav.sp_snav {
        display: flex;
        gap: 8px;
    }

    .gnav_wrap .snav {
        position: inherit;
        top: inherit;
        right: inherit;
        padding: 24px 24px 0;
    }

    .snav_head {
        display: block;
        color: #000;
        text-align: center;
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .snav_btn {
        border: 1px solid #fff;
    }

    .gnav_inner {
        position: relative;
    }

    .mega_menu {
        /*display: block;*/
        position: inherit;
        top: inherit;
        left: inherit;
        padding: 0;
        margin: 8px 0;
        width: 100%;
    }

    .gnav li span.has_mega_title::after {
        top: 12px;
    }

    .mega_menu_list {
        display: flex;
        gap: 8px 24px;
        flex-wrap: wrap;
    }

    .mega_menu_list li {
        width: 100%;
    }

    .mega_menu_list li a {
        display: block;
        padding: 8px;
        font-size: 1.3rem;
    }

    .mega_menu ul li:last-child {
        margin-bottom: 0;
    }

    .simple .sitename img {
        height: 40px;
        width: auto;
    }

    .dropdown-toggle {
        padding-right: 15px !important;
    }

    .dropdown-toggle::after {
        top: 16px;
    }

    .dropdown-menu {
        position: static;
        padding: 0;
        border: none;
        height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .dropdown.open .dropdown-menu {
        height: auto;
        opacity: 1;
        visibility: visible;
        padding: 10px 0;
        transform: inherit;
    }

    .dropdown-menu li a {
        padding: 0 0 0 10px;
        line-height: 1.5;
    }

    .dropdown-menu li:not(:last-child) {
        margin-bottom: 8px;
    }
}

@media screen and (min-width: 961px) {
    .has_mega:hover .mega_menu {
        display: block;
    }
}

@media screen and (max-width: 960px) {
    .has_mega.is-open .mega_menu {
        display: block;
    }
}

/*---------------------------------------------------
    Footer
---------------------------------------------------*/
.footer {
    background-color: #000000;
    color: #fff;
}

.footer_inner {
    margin: 0 auto;
    padding: 56px 0;
    max-width: 1000px;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 24px 80px;
    align-items: flex-start;
}

.fnav {
    flex-shrink: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 0;
    width: 100%;
}

.fnav a {
    font-size: 1.4rem;
    line-height: 1.6;
}

.fnav .fnav_first {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1.4rem;
    line-height: 1.6;
}

.fnav_contents {
    flex-basis: 40%;
}

.fnav_contents:nth-child(1),
.fnav_contents:nth-child(4) {
    flex-basis: 15%;
}

.fnav a:hover {
    text-decoration: underline;
}

.fnav_second li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 4px;
}

.fnav_second li::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 14px;
    left: 0;
    width: 8px;
    height: 1px;
    background-color: #fff;
}

.footer .sitename {
    width: 220px;
}

/* fnav シンプル横並び */
.fnav.fnav_colx{
    display: flex;
    gap: 8px 72px;
}
.fnav_colx .fnav_contents {
    flex-basis: auto;
}

/* fnav_info */
.fnav_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.fnav_info .sitename span {
    width: 120px;
    height: auto;
}

.fnav_info .site_copy {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 8px;
}

.fnav_info .fnav_company {
    margin-top: 40px;
    line-height: 1.6;
    font-size: 1.3rem;
}

.footer .snav {
    padding: 0;
    flex-shrink: 0;
    position: inherit;
    top: inherit;
    right: inherit;
    display: flex;
    gap: 8px 24px;
}

.footer .snav_btn {
    width: 240px;
    background-color: transparent;
    border: 1px solid #fff;
}

.footer .snav_btn:hover {
    background-color: rgba(0, 0, 0, 0.25);
}

/* sub_fnav */
.sub_fnav {
    background-color: #000000;
    padding: 16px 0 56px 0;
    color: #fff;
}

.sub_fnav .footer_inner {
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}

.sub_fnav .fnav {
    gap: 4px 16px;
}

.sub_fnav .fnav li a {
    font-size: 1.4rem;
    line-height: 1.2;
}

#copyright {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.3;
    display: block;
    text-align: left;
}

.simple .sub_fnav {
    padding: 16px 0 56px 0;
}

@media screen and (max-width: 768px) {
    .footer_inner {
        padding: 32px 24px;
        flex-direction: column;
    }

    .fnav {
        flex-wrap: wrap;
        gap: 8px 0;
    }

    .fnav li a {
        font-size: 1.3rem;
    }

    .fnav_contents,
    .fnav_contents:nth-child(1),
    .fnav_contents:nth-child(4) {
        flex-basis: 100%;
    }

    .fnav a.fnav_first {
        margin-bottom: 8px;
    }

    .fnav_second li::before {
        top: 9px;
    }

    .fnav_info {
        display: block
    }

    .fnav_info .fnav_company {
        margin-top: 24px;
        line-height: 1.6;
        font-size: 1.4rem;
    }

    .fnav_info .sitename {
        padding-left: 0;
    }

    .footer .snav_btn {
        width: 100%;
        max-width: 480px;
    }

    .snav {
        flex-direction: column;
    }

    .sub_fnav {
        padding: 0;
        color: #fff;
    }

    .sub_fnav .footer_inner {
        padding: 16px 24px;
        flex-direction: column;
        align-items: center;
    }

    .simple .fnav li {
        width: auto;
    }

    #copyright {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }

    .fnav.fnav_colx{
        flex-direction: column;
    }
}

/*---------------------------------------------------
    CTA
---------------------------------------------------*/
.cta_area {
    background-color: #fff;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 56px 0;
}

.inner .cta_area {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    margin-bottom: 0px;
}

.cta_copy {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 60px;
    text-align: center;
}

.cta_copy_m {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: center;
}

.cta_copy_s {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center;
    margin-top: 24px;
}

.cta_text {
    margin: 48px 0;
}

.cta_text p {
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 2.0;
}

.cta_text_l {
    font-size: 2.0rem;
}

.cta_btn_block {
    display: flex;
    justify-content: center;
    gap: 16px 24px;
}

.cta_btn_block2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px 40px;
}

.cta_btn {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.page_btn {
    width: 100%;
    max-width: 480px;
    text-align: center;
    margin: 0 auto;
}

.btn_basic {
    display: block;
    background-color: #000;
    border: 1px solid #000;
    width: 100%;
    color: #fff;
    border-radius: 3px;
}

.btn_cta1 {
    background-color: #555;
    border: 1px solid #000;
}

.btn_cta1:hover {
    background-color: #333;
}

.btn_basic span {
    display: block;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    padding: 24px;
}

.btn_basic em {
    font-style: normal;
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}

.cta_btn.big_btn {
    width: 100%;
    max-width: 560px;
    text-align: center;
}

.micro_copy_under {
    font-size: 1.6rem;
    line-height: 1.4 !important;
    margin-top: 16px;
}

.micro_copy_top {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
    .cta_area {
        padding: 40px 0;
    }

    .inner .cta_area {
        margin-bottom: 40px;
    }

    .cta_text p {
        font-size: 1.4rem;
    }

    .cta_copy {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .cta_copy_m {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .cta_copy_s {
        font-size: 1.4rem;
        margin-top: 16px;
    }

    .cta_btn_block {
        flex-direction: column;
    }

    .btn_basic span {
        font-size: 1.4rem;
    }

    .micro_copy_under {
        font-size: 1.2rem;
        margin-top: 8px;
    }

    .micro_copy_top {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .cta_btn_block2 {
        gap: 40px 40px;
    }
}

/*---------------------------------------------------
    ページ内ボタン
---------------------------------------------------*/
.more {
    width: 100%;
    max-width: 480px;
}

/*---------------------------------------------------
    パンくず 
---------------------------------------------------*/
.breadcrumbs {
    padding: 16px 0 24px;
}

.breadcrumbs ol {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
}

.breadcrumbs li:not(:nth-of-type(1)) {
    position: relative;
}

.breadcrumbs li:not(:nth-of-type(1))::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border: solid #888;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    margin-right: 10px;
    margin-bottom: 1px;
}

.breadcrumbs li a {
    font-size: 1.4rem;
    line-height: 1.0;
}

.breadcrumbs li:nth-last-of-type(1) a {
    color: #555;
}

@media screen and (max-width: 1040px) {
    .breadcrumbs {
        padding: 8px 16px;
    }

    .breadcrumbs li a {
        font-size: 1.3rem;
        line-height: 1.2;
    }
}

@media screen and (max-width: 768px) {
    .breadcrumbs ol {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: block;
    }

    .breadcrumbs ol li {
        display: inline;
        white-space: nowrap;
    }
}

/*---------------------------------------------------
    TOP MVエリア
---------------------------------------------------*/
.mv_area {
    background-color: #e2e2e2;
    display: flex;
    align-items: center;
    padding: 116px 0;
}

.mv_area.top {
    height: 80vh;
    padding: 112px 0;
    background-color: #2b2b2b;
}

.mv_area.top .colx {
    margin-bottom: 0;
}

.mv_inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.mv_copy_lv1 {
    font-size: 4.0rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
}

.mv_copy_lv2 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 60px;
}

.mv_copy_read {
    font-size: 2.0rem;
    line-height: 2.0;
}

.mv_btn_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

.btn_dl {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    border-radius: 3px;
}

.btn_dl span {
    position: relative;
    padding: 24px 0 24px 40px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.btn_dl span::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 32px;
    height: 32px;
    background: url(/images/common/icon_cloud.svg) no-repeat center center;
    background-size: 32px 32px;
    transform: translateY(-50%);
}



.mv_copy_s {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 60px 0 0;
}

.mv_copy_s.copy_colx {
    flex-direction: row;
    gap: 16px 40px;
}

.mv_copy_s_box {
    display: flex;
    align-items: center;
    gap: 0 16px;
}

.mv_copy_s_icon {
    width: 40px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mv_icon_img {
    width: auto;
    height: 32px;
}

.mv_copy_s_text {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 600;
}

.mv_top_box {
    border: 1px solid #000;
    background-color: #fff;
    padding: 32px;
    text-align: center;
}

.mv_top_box:hover {
    opacity: 0.8;
}

.mv_top_head {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.mv_box_head {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
}

.mv_box_head span {
    font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
    .mv_area {
        height: inherit;
        padding: 40px 0;
    }

    .mv_area.top {
        padding: 32px 0;
    }

    .mv_top_head {
        font-size: 2.0rem;
        min-height: inherit;
        margin-bottom: 8px;
    }

    .mv_top_box {
        padding: 16px;
        text-align: center;
    }

    .mv_box_head {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .mv_box_head span {
        font-size: 1.8rem;
    }

    .mv_copy_lv1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .mv_copy_lv2 {
        font-size: 2.0rem;
        margin-bottom: 20px;
    }

    .mv_copy_read {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .mv_inner {
        padding: 0 24px;
    }

    .btn_dl span {
        font-size: 1.4rem;
    }

    .mv_copy_s {
        margin: 24px 0 0;
    }

    .mv_copy_s_text {
        font-size: 1.4rem;
    }
}

/*---------------------------------------------------
    タイトルエリア
---------------------------------------------------*/
main {
    position: relative;
}

.title_area {
    background-color: #f8f9fa;
}

.title_area .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    position: relative;
}

.page_title {
    font-size: 4.0rem;
    font-weight: 600;
}

.title_area .breadcrumbs {
    position: absolute;
    top: 0;
    left: 0;
}

.lower.title_area {
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .title_area .inner {
        min-height: 160px;
    }

    .page_title {
        font-size: 2.4rem;
    }
}

/*---------------------------------------------------
    見出し/コピーテキスト
---------------------------------------------------*/
.head_lv1 {
    font-size: 4.0rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 72px;
    text-align: center;
}

.head_lv2 {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 56px;
    text-align: center;
}

.head_lv2_pt2 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 88px;
}

.head_lv3 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 32px;
}

.head_lv4 {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 32px;
}

.head_lv5 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
}

.head_sub {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
    text-align: center;
}

.head_s {
    font-size: 60%;
    display: block;
}

.text_center {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .head_lv1 {
        font-size: 2.8rem;
        margin-bottom: 32px;
    }

    .head_lv2 {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }

    .head_lv2_pt2 {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }

    .head_lv3 {
        font-size: 2.0rem;
        margin-bottom: 16px;
    }

    .head_lv4 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .head_lv5 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .head_sub {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
}

.copy_lv2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 40px;
}

.copy_lv2_pt2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 32px;
}

.copy_lv3 {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 32px;
}

.ornament_lv2 {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.0;
    font-weight: bold;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .copy_lv2 {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .copy_lv2_pt2 {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .copy_lv3 {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .ornament_lv2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
}


/*---------------------------------------------------
    テキスト
---------------------------------------------------*/
main p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.0;
}

.read_text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.0;
    margin-bottom: 24px;
}

.text_area p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.0;
    margin-bottom: 24px;
}

.copy_text {
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 24px;
}

.copy_text_center {
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: center;
}

.intro_text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.0;
    margin-bottom: 24px;
    text-align: center;
}

.intro_copy p {
    font-weight: 600;
}

.section .read_text.last_text {
    margin-bottom: 0;
}

.s_text {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.0;
    margin-bottom: 24px;
}

.accent {
    font-weight: 600 !important;
}

.note,
.note p {
    font-size: 1.3rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.marker {
    background: linear-gradient(transparent 10%, rgb(255, 255, 175) 60%);
}

@media screen and (max-width: 768px) {
    main p {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .read_text {
        font-size: 1.4rem;
    }

    .intro_text {
        font-size: 1.4rem;
    }

    .copy_text {
        font-size: 1.4rem;
        margin-bottom: 24px;
    }

    .text_area p {
        font-size: 1.4rem;
        margin-bottom: 24px;
    }
}

/*---------------------------------------------------
    リンク、ボタン系
---------------------------------------------------*/
p a {
    color: #005BA1;
    text-decoration: underline;
}

p a:hover {
    text-decoration: none;
}

.text_link:hover {
    text-decoration: underline;
}

.text_link span {
    display: inline-block;
    padding-left: 16px;
    position: relative;
    color: #005BA1;
    margin-bottom: 1rem;
}

.text_link span::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 33%;
    left: 0;
    width: 8px;
    height: 8px;
    border: solid #005BA1;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
}

.icon_link {
    padding-left: 18px;
    background: url(/images/common/icon_link.svg) no-repeat 2px 6px;
    background-size: 14px auto;
}

.link_blank {
    padding-right: 20px;
    margin-right: 4px;
    margin-left: 4px;
    background: url(/images/common/icon_blank.svg) no-repeat right center;
    background-size: 14px auto;
}

.arrow {
    position: relative;
    padding-right: 16px;
}

.arrow::before,
.arrow::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;

}

.arrow::before {
    width: 12px;
    height: 1px;
    background-color: #000;
}

.arrow::after {
    width: 5px;
    height: 5px;
    border: solid #000;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.btn_return {
    border: 1px solid #000;
    width: 100%;
    max-width: 318px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-radius: 3px;
}

.btn_return:hover {
    background-color: #f8f9fa;
}

.btn_long {
    width: 100%;
    max-width: 640px;
    text-align: center;
}


@media screen and (max-width: 768px) {
    .text_link span {
        font-size: 1.4rem;
    }

    .text_link span::before {
        top: 7px;
    }

    .arrow {
        font-size: 1.4rem;
    }
}

/*---------------------------------------------------
    リスト系
---------------------------------------------------*/
.basic_ul {
    margin-bottom: 32px;
    list-style: none;
}

.basic_ul li {
    position: relative;
    padding-left: 16px;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 8px;
}

.basic_ul li:last-child {
    margin-bottom: 0;
}

.basic_ul li::before {
    content: "";
    position: absolute;
    background-color: #000000;
    width: 5px;
    height: 5px;
    left: 0;
    top: 14px;
}

@media screen and (max-width: 768px) {
    .basic_ul li {
        font-size: 1.6rem;
        padding-left: 12px;
    }

    .basic_ul li::before {
        top: 11px;
    }
}

.class_list {
    margin-bottom: 32px;
    list-style: none;
}

.class_list li {
    position: relative;
    padding-left: 16px;
    font-size: 2.0rem;
    line-height: 1.5;
    font-weight: 400;
}

.class_list li::before {
    content: "";
    position: absolute;
    background-color: #000000;
    width: 6px;
    height: 2px;
    left: 0;
    top: 14px;
}

@media screen and (max-width: 768px) {
    .class_list li {
        font-size: 1.6rem;
    }

    .class_list li::before {
        top: 12px;
    }
}

.basic_ul2 {
    margin-bottom: 32px;
    list-style: none;
}

.basic_ul2 li {
    position: relative;
    padding-left: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
}

.basic_ul2 li::before {
    content: "";
    position: absolute;
    background-color: #000000;
    width: 4px;
    height: 4px;
    left: 4px;
    top: 11px;
}

@media screen and (max-width: 768px) {
    .basic_ul2 li {
        font-size: 1.4rem;
    }
}

.basic_ul3 {
    margin-bottom: 32px;
    list-style: none;
}

.basic_ul3 li {
    position: relative;
    padding-left: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
}

.basic_ul3 li::before {
    content: "";
    position: absolute;
    background-color: #000000;
    width: 6px;
    height: 6px;
    left: 0;
    top: 14px;
}

@media screen and (max-width: 768px) {
    .basic_ul3 {
        margin-bottom: 16px;
    }

    .basic_ul3 li {
        font-size: 1.4rem;
        padding-left: 8px;
    }

    .basic_ul3 li::before {
        width: 3px;
        height: 3px;
        top: 14px;
    }
}

/* .basic_dl */
.basic_dl {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.basic_dl dt,
.basic_dl dd {
    display: inline-block;
    vertical-align: top;
    padding: 16px 8px;
    margin: 0;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

.basic_dl dt {
    clear: left;
    float: left;
}

.basic_dl dt {
    width: 120px;
    font-weight: bold;
}

.basic_dl dd {
    width: calc(100% - 120px);
    float: left;
}

@media screen and (max-width: 768px) {

    .basic_dl dt,
    .basic_dl dd {
        font-size: 1.4rem;
    }

    .basic_dl dt {
        width: 80px;
    }

    .basic_dl dd {
        width: calc(100% - 80px);
    }
}

/*---------------------------------------------------
    Table系
---------------------------------------------------*/
.basic_tb {
    margin-bottom: 40px;
    width: 100%;
}

.basic_tb th,
.basic_tb td {
    border-collapse: collapse;
    border: 1px solid #ddd;
    padding: 16px 12px;
    font-size: 1.5rem;
    line-height: 1.6;
}

.basic_tb th {
    background-color: #f8f9fa;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {

    .basic_tb th,
    .basic_tb td {
        padding: 8px;
        font-size: 1.4rem;
    }

    .scroll {
        overflow: scroll;
        margin-bottom: 40px;
    }

    .scroll .basic_tb {
        margin-bottom: 0;
        width: 650px;
    }
}

/*---------------------------------------------------
    ボックス系
---------------------------------------------------*/
.img_box {
    text-align: center;
    margin-bottom: 40px;
}

.img_box img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.colx {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 60px;
}

.cols_box2 {
    width: calc(50% - 12px);
}

.colx3 {
    gap: 32px 34px;
    justify-content: center;
}

.cols_box3 {
    width: calc(calc(100% - 68px) / 3);
}

.colx4 {
    gap: 24px 20px;
    justify-content: center;
}

.cols_box4 {
    width: calc(calc(100% - 60px) / 4);
}

.cols_img {
    /*background-color: #dddddd;*/
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cols_img_text {
    font-size: 2.0rem;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    position: absolute;
}

.cols_img img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.cols_text {
    padding: 16px 0 0 0;
    line-height: 1.6;
}

.box_head_lv2 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 44px;
    margin-bottom: 24px;
}

.box_head_lv3 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 24px;
}

.board_box {
    background: #fafafa;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .colx {
        margin-bottom: 30px;
    }

    .cols_box2 {
        width: 100%;
    }

    .cols_box3 {
        width: 100%;
    }

    .cols_box4 {
        width: calc(calc(100% - 24px) / 2);
    }

    .box_head_lv2 {
        font-size: 2.4rem;
        line-height: 1.6;
    }

    .box_head_lv3 {
        font-size: 2.0rem;
        line-height: 1.6;
    }

    .cols_text {
        font-size: 1.4rem;
        padding: 8px 0 0;
    }

    .cols_img_text {
        font-size: 1.6rem;
    }
}

/* set_box */
.set_box {
    display: flex;
    gap: 16px 40px;
    margin-bottom: 56px;
}

.set_box.rv {
    flex-direction: row-reverse;
}

.align_center {
    align-items: center;
}

.set_box .img_set {
    text-align: center;
}

.set_box .img_set img {
    max-width: 100%;
    width: auto;
}

.set_box .txt_set {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.set_box .txt_set p {
    line-height: 2.0;
}

.set_box .txt_set p:not(:last-child) {
    margin-bottom: 24px;
}

.set_box .box_head_lv3 {
    margin-bottom: 16px;
}

.set_box_head {
    display: block;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* over_box */
.over_box {
    display: flex;
    gap: 24px 40px;
    margin-bottom: 80px;
}

.over_box_head {
    font-size: 4.0rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.over_box_head .head_label {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    flex-shrink: 0;
    font-size: 2.4rem;
    border: 1px solid #000;
    width: 48px;
    height: 48px;
}

.over_box_subhead {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 24px;
    background-color: #fff;
    padding: 8px 16px 8px 0;
}

.set_head_area {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 20px;
}

.over_box_txt {
    width: calc(100% - 580px);
}

.over_box_txt p:not(:last-child) {
    margin-bottom: 28px;
}

.over_box_image {
    flex-shrink: 0;
    width: 560px;
}

.over_box_image img {
    width: 100%;
    height: auto;
}

/* レスポンシブ対応（768px以下） */
@media screen and (max-width: 768px) {
    .over_box {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .over_box_image {
        width: 100%;
        max-width: 560px;
        position: static;
        top: 0;
        right: 0;
    }

    .over_box_txt {
        width: 100%;
    }

    .over_box_head {
        font-size: 2.8rem;
        margin-bottom: 24px;
    }

    .over_box_head .head_label {
        width: 36px;
        height: 36px;
    }

    .over_box_subhead {
        font-size: 1.8rem;
        margin-bottom: 24px;
        padding: 0;
    }

    .over_box_txt p:not(:last-child) {
        margin-bottom: 20px;
    }
}


/* induction_box */
.induction_box {
    flex-direction: row-reverse;
    display: flex;
    gap: 16px 40px;
    margin-bottom: 56px;
}

.induction_box .img_set img {
    max-width: 100%;
    width: auto;
}

.induction_box .txt_set {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.induction_box .txt_set p {
    line-height: 2.0;
}

.induction_box .txt_set p:not(:last-child) {
    margin-bottom: 24px;
}

.induction_box .box_head_lv3 {
    margin-bottom: 16px;
}


.set_head_num {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.set_head_num .box_head_lv3 {
    margin-bottom: 0;
}

.head_num_label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 2.4rem;
    font-weight: 600;
}

.head_num_label.text_s {
    font-size: 1.8rem;
}


.form_side_head {
    display: block;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

.field_box {
    align-items: center;
    padding-top: 32px;
    border-top: 1px dotted #dddddd;

}

@media screen and (max-width: 768px) {

    .induction_box {
        flex-direction: column;
    }

    .set_box,
    .set_box.rv {
        flex-direction: column;
        margin-bottom: 28px;
    }

    .set_box .txt_set p {
        font-size: 1.4rem;
    }

    .set_box_head {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .set_head_num {
        gap: 8px;
    }

    .induction_box .txt_set p {
        font-size: 1.4rem;
    }

    .head_num_label {
        width: 48px;
        height: 48px;
        font-size: 2.0rem;
    }

    .set_head_num .box_head_lv3 {
        font-size: 1.8rem;
        padding-top: 0;
    }

    .form_side_head {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .induction_box .txt_set p {
        font-size: 1.4rem;
    }
}

/* float_box */
.float_box {
    overflow: hidden;
    margin-bottom: 40px;
    font-size: 1.6rem;
    line-height: 2.0;
}

.left_box {
    float: left;
    margin-right: 40px;
}

.right_box {
    float: right;
    margin-left: 40px;
}

.right_box img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.float_box p:not(:last-child) {
    margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
    .float_box {
        font-size: 1.4rem;
        line-height: 2.0;
    }

    .left_box,
    .right_box {
        float: inherit;
        margin: 0 0 24px;
    }
}

/* flow_area */
.flow_area {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.flow_box {
    border: 1px solid #000000;
    background-color: #fcfcfc;
    padding: 24px;
    position: relative;
}

.flow_box:not(:last-child)::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -41px;
    left: 64px;
    height: 40px;
    width: 2px;
    background-color: #000000;
}

.flow_icon {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 8px 24px;
    font-weight: 600;
}

.flow_head {
    display: flex;
    align-items: flex-start;
    gap: 8px 8px;
    margin-bottom: 16px;
}

.flow_title {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 34px;
}

@media screen and (max-width: 768px) {
    .flow_area {
        gap: 24px;
    }

    .flow_box {
        padding: 16px;
    }

    .flow_icon {
        padding: 8px 12px;
        font-size: 1.4rem;
    }

    .flow_head {
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .flow_box:not(:last-child)::after {
        left: 48px;
        bottom: -25px;
        height: 24px;
    }

    .flow_title {
        font-size: 1.6rem;
        line-height: 24px;
    }
}

/* faq_area */
.faq_box:not(:last-child) {
    margin-bottom: 24px;
}

.faq_box summary {
    display: flex;
    list-style: none;
    gap: 16px;
    padding: 16px 24px;
    background-color: #fcfcfc;
    border: 1px solid #000000;
    cursor: pointer;
    position: relative;
}

.faq_box summary::before {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    font-size: 2.4rem;
    font-weight: 600;
    transform: translateY(-50%);
}

details.faq_box[open] summary::before {
    content: "－";
    /* マイナス記号に切り替え */
}

.faq_icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 1.6rem;
    background-color: #000;
    color: #ffffff;
}

.q_text {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 600;
}

.a_text {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 600;
}

.answer_area {
    border: solid #000000;
    border-width: 0 1px 1px;
    padding: 24px;
}

.answer_area p:not(:last-child) {
    margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
    .faq_box summary {
        padding: 16px;
    }

    .q_text {
        font-size: 1.6rem;
        font-weight: 600;
        padding: 0 24px 0 0;
    }
}


/* iconlist */
.iconlist {
    display: flex;
    flex-direction: column;
    gap: 32px 24px;
    margin-bottom: 50px;
}

.iconlist_box {
    display: flex;
    align-items: center;
}

.iconlist_img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-right: 16px;
    border: 1px solid #999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    width: 40px;
    height: 40px;
}

.iconlist_text {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .iconlist {
        gap: 16px;
    }

    .iconlist_text {
        font-size: 1.6rem;
    }
}

/* numlist */
.numlist {
    margin-bottom: 40px;
}

.numlist_item {
    margin-bottom: 48px;
}

.numlist_header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.numlist_circle {
    min-width: 56px;
    min-height: 56px;
    font-size: 2rem;
    font-weight: 600;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
}

.numlist_title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .numlist_header {
        gap: 8px;
    }

    .numlist_circle {
        min-width: 48px;
        min-height: 48px;
        font-size: 1.6rem;
    }

    .numlist_title {
        font-size: 1.6rem;
    }

    .numlist_text {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .numlist_item {
        margin-bottom: 32px;
    }
}

/* boxlist */
.boxlist {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    background-color: #f2f2f2;
    /* グレー背景 */
    padding: 40px 20px;
}

.boxlist .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin: 0 auto;
}

.boxlist_item {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #000;
    font-weight: 600;
    display: flex;
    align-items: center;
}

a:hover .boxlist_item {
    background-color: #efefef;
}

a .boxlist_item {
    position: relative;
}

a .boxlist_item::before,
a .boxlist_item::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

a .boxlist_item::before {
    width: 28px;
    height: 28px;
    border: 1px solid #000;
    border-radius: 50%;
}

a .boxlist_item::after {
    width: 8px;
    height: 8px;
    border: solid #000;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    right: 31px;
    margin-top: -4px;
}

.boxlist_text {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .boxlist .inner {
        grid-template-columns: repeat(1, 1fr);
    }

    .boxlist_text {
        font-size: 1.4rem;
    }
}

/* basic_box */
.basic_box {
    padding-top: 32px;
    margin-bottom: 40px;
}

.basic_box p {
    margin-bottom: 24px;
    line-height: 2.0;
}

.basic_box p:last-child {
    margin-bottom: 0;
}

.box_head {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

.basic_box .box_head_lv3 {
    margin-bottom: 24px;
    line-height: 1.6;
}

.basic_box.last {
    margin-bottom: 0;
}

.project_text {
    padding: 0 24px;
    flex-shrink: 0;
    font-size: 3.2rem;
    font-weight: 600;
}

.project_text span {
    font-size: 6.0rem;
}

@media screen and (max-width: 768px) {
    .basic_box {
        padding-left: 0;
        padding-right: 0;
    }
}

/* achievement_box */
.achievement_box {
    flex: 1 1 30%;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.achievement_box_head {
    font-size: 2.0rem;
    line-height: 1.2;
    font-weight: 600;
    background: #000;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 72px;
}

.achievement_box_head span {
    font-size: 1.4rem;
}

.achievement_box_note {
    font-size: 1.2rem;
    display: block;
    font-weight: normal;
}

.achievement_box_main {
    padding: 16px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievement_box_title {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 64px;
}

.achievement_box_title span.small {
    font-size: 1.6rem;
}

.achievement_box_title span.middle {
    font-size: 1.8rem;
}

.achievement_img img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.achievement_box_text {
    font-size: 1.6rem;
    line-height: 2.0;
    padding: 0 24px 24px;
}

@media screen and (max-width: 768px) {
    .achievement_box_head {
        font-size: 2.0rem;
        min-height: inherit;
        padding: 8px 16px;
    }

    .achievement_box_title {
        font-size: 1.6rem;
        min-height: inherit;
    }
}

/* col_box */
.col_box {
    display: flex;
    align-items: center;
    gap: 16px 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.col_box_inner {
    flex: 1;
}

.col_box_inner img {
    max-width: 100%;
    width: auto;
}

.col_box .box_head_lv3 {
    margin-bottom: 24px;
}

.col_box_inner p:not(:last-child) {
    margin-bottom: 32px;
}

.col_box_inner *:last-child {
    margin-bottom: 0;
}

.box_head_tag {
    display: inline-block;
    border: 1px solid #000;
    padding: 4px 12px;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.box_head_sub {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #999;
    margin-top: -16px;
    margin-bottom: 56px;
}

@media screen and (max-width: 768px) {
    .col_box {
        flex-direction: column;
        margin-bottom: 24px;
    }
}


/* page_visual_box */
.page_visual_box {
    display: flex;
    gap: 16px 40px;
    margin-bottom: 56px;
}

.page_visual_text {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.page_visual_img img {
    max-width: 100%;
    width: auto;
}

@media screen and (max-width: 768px) {

    .page_visual_box,
    .page_visual_box.rv {
        flex-direction: column;
    }
}

/*.achievement_box_description {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
}

.achievement_box_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement_box_list li {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 12px;
  position: relative;
  padding-left: 1em;
}

.achievement_box_list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #555;
}

.achievement_box_cta {
  margin-top: 40px;
  text-align: center;
}

.achievement_box_button {
  display: inline-block;
  border: 1px solid #aaa;
  padding: 16px 32px;
  font-size: 1.6rem;
  color: #333;
  text-align: center;
  text-decoration: none;
  background: #f9f9f9;
  line-height: 1.5;
  transition: background 0.3s;
}

.achievement_box_button:hover {
  background: #eee;
}*/

/* feature_box */
.feature_box {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 72px;
}

.feature_item {
    width: calc(50% - 12px);
    /* gapの半分を引いて2カラム */
    border: 1px solid #000;
    padding: 16px;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.feature_head_area {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature_label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 4px;
    background-color: #666;
    color: #fff;
    width: 80px;
    height: 80px;

}

.feature_title {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.feature_title_s {
    font-size: 1.4rem;
}

.feature_image {
    margin-bottom: 16px;
}

.feature_image img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.feature_list {
    padding-left: 20px;
}

.feature_list li {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 4px;
    list-style-type: disc;
}

@media screen and (max-width: 768px) {
    .feature_item {
        width: 100%;
        /* gapの半分を引いて2カラム */
    }

    .feature_head_area {
        align-items: flex-start;
        gap: 8px;
    }

    .feature_label {
        width: 56px;
        height: 56px;
    }

    .feature_title {
        font-size: 1.8rem;
    }
}

/* support_box */
.support_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 1px solid #000;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.support_box_item {
    width: 100%;
    max-width: calc(100% / 3);
    padding: 24px;
    border-left: 1px solid #000;
    box-sizing: border-box;
}

.support_box_item:first-child {
    border-left: none;
}

.support_note {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
}

.support_title {
    font-size: 1.8rem;
    font-weight: bold;
    padding: 12px 16px;
    border: 1px solid #000;
    text-align: center;
    margin-bottom: 16px;
    background-color: #fff;
}

.support_list {
    font-size: 1.4rem;
    line-height: 1.5;
    list-style: disc;
    padding-left: 16px;
}

.support_list li {
    margin-bottom: 8px;
}

.support_box_item.current {
    background-color: #FFF2F2;
    position: relative;
}

.support_box_item.current::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #FF0000;
}

.current .support_note {
    color: #FF0000;
}

.current .support_title {
    border: 1px solid #FF0000;
    color: #FF0000;
}

@media screen and (max-width: 768px) {
    .support_box {
        flex-direction: column;
    }

    .support_box_item {
        max-width: inherit;
        padding: 16px;
        border-left: none;
        border-bottom: 1px solid #000;
    }

    .support_box_item:last-child {
        border-bottom: none;
    }
}

/* brand_box */
.brand_box {
    line-height: 2.0;
}

.brand_name {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    min-height: 60px;
}

.brand_logo {
    max-height: 60px;
    width: auto;
    height: auto;
}

.brand_copy {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .brand_box {
        font-size: 1.4rem;
    }

    .brand_logo {
        max-height: 48px;
        max-width: 128px;
    }
}

/* dl_box */
.colx.lower_page {
    margin-top: 80px;
    margin-bottom: 0;
}

.dl_box {
    border: 1px solid #000;
    background-color: #f8f9fa;
    padding: 56px 24px 24px;
    position: relative;
}

a:hover .dl_box {
    background-color: #fff;
}

.dl_box .dl_box_label {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding: 8px 16px;
    font-size: 1.4rem;
}

.dl_box_title {
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: 600;
}

.dl_box_title span {
    font-size: 1.8rem;
}

.dl_box_sub {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 8px;
}

.head_pp {
    margin-bottom: 24px;
    font-size: 1.8rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .head_pp {
        font-size: 1.6rem;
    }
}

/*---------------------------------------------------
    ポリシー
---------------------------------------------------*/
.pp_area {
    margin: 80px 0 80px;
}

.pp_data {
    font-weight: 400;
    line-height: 2.0;
    margin-bottom: 24px;
    text-align: right;
}

.pp_area p {
    font-weight: 400;
    line-height: 2.0;
    margin-bottom: 24px;
}

.pp_area p span {
    display: block;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .pp_area p {
        font-size: 1.4rem;
    }

    .pp_area {
        margin: 40px 0 40px;
    }
}

/*---------------------------------------------------
    ノウハウ（コラム）
---------------------------------------------------*/
.contents_column {
    padding: 50px 0 0;
}

.knowhow_list {
    gap: 34px 34px;
}

.pagenate {
    margin-top: 80px;
}

.pagenate_list {
    display: flex;
    gap: 4px;
    justify-content: center;
    list-style: none;
}

.link_page {
    display: flex;
    width: 40px;
    height: 32px;
    border: 1px solid #000;
    align-items: center;
    justify-content: center;
    color: #000;
    line-height: 1.0;
}

.link_page:hover {
    background-color: #000;
    color: #fff;
}

.current_page {
    display: flex;
    width: 40px;
    height: 32px;
    border: 1px solid #000;
    background-color: #000;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1.0;
}

@media screen and (max-width: 736px) {
    .contents_column {
        padding: 32px 0 0;
    }

    .pagenate {
        margin: 20px 0 40px;
    }

    .link_page,
    .current_page {
        font-size: 1.2rem;
        width: 32px;
        height: 24px;
    }
}

/* 詳細 */
.page_column {
    position: relative;
}

.page_column::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 480px;
    background-color: #f8f9fa;
}

.page_column .breadcrumbs,
.page_column .contents_column {
    position: relative;
    z-index: 10;
}

.column_colx {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 64px;
    margin-bottom: 80px;
}

.column_colx article {
    flex: 1;
    width: 100%;
}

.column_colx aside {
    width: 350px;
    flex-shrink: 0;
    position: relative;
    align-items: stretch;
}

.column_footer {
    margin-bottom: 80px;
}

@media screen and (max-width: 736px) {
    .column_colx {
        flex-direction: column;
    }

    .column_colx aside {
        margin: 0 auto;
    }

}

/* 本文 */
.column_date {
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    font-size: 1.4rem;
}

.column_title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
}

.column_tag {
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    font-size: 1.4rem;
}

.column_tag_label {
    color: #555;
    font-size: 1.4rem;
    position: relative;
    padding-left: 12px;
}

.column_tag_label::before {
    content: '#';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.column_mv {
    margin: 40px 0;
    width: 100%;
}

.column_mv img {
    width: 100%;
    height: auto;
}

.column_area p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.25;
    margin-bottom: 36px;
    color: #08131a;
}

.textarea_box p {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.column_img {
    margin-bottom: 32px;
}

.column_img img {
    max-width: 100%;
    width: auto;
    height: auto;
}
.column_img .head_cap{
    font-weight: 600;
    margin-bottom: 20px;
}

.column_img .quote_text{
    font-size: 1.3rem;
    color: #898989;
    text-align: left;
    margin-top: 16px;
}


.column_focus_area {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 32px;
}

.textarea_box {
    font-size: 1.6rem;
}

.column_ul{
    margin-bottom:0;
    list-style: none;
}
.column_ul li{
    line-height: 2.2;
    position: relative;
    padding-left: 16px;
    font-size: 1.6rem;
    font-weight: 400;
}

.column_ul li::before {
    content: "";
    position: absolute;
    background-color: #000000;
    width: 4px;
    height: 4px;
    left: 4px;
    top: 14px;
}


.column_head_lv2 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 32px;
    color: #08131a;
}

.column_head_lv3 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 56px;
    margin-bottom: 32px;
    padding: 0 0 8px 0px;
    color: #08131a;
}

.column_head_lv4 {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #08131a;
}

.column_head_lv5 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #08131a;
}


.column_summary {
    padding: 40px;
    background-color: #f4f7f7;
    margin-bottom: 40px;
}

.summary_head_lv2 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
}

.summary_head_lv3 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
}

.ex_box {
    margin-bottom: 24px;
}

.ex_title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ex_title:not(:first-child) {
    margin-top: 24px;
}

.ex_text {
    font-size: 1.8rem;
    line-height: 1.8;
}

@media screen and (max-width: 736px) {
    .column_title {
        font-size: 2.4rem;
    }

    .column_tag {
        flex-direction: column;
        gap: 8px;
    }

    .column_tag_label {
        font-size: 1.2rem;
    }

    .column_mv {
        width: 100%;
        height: auto;
    }

    .column_area p {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .column_head_lv2 {
        font-size: 2.2rem;
    }

    .column_head_lv3 {
        font-size: 1.8rem;
    }

    .column_head_lv4 {
        font-size: 1.6rem;
    }

    .column_head_lv5 {
        font-size: 1.4rem;
    }

    .column_summary {
        padding: 16px;
    }

    .summary_head_lv2 {
        font-size: 2.0rem;
        margin-bottom: 24px;
    }

    .summary_head_lv3 {
        font-size: 1.6rem;
    }

    .ex_box {
        margin-bottom: 24px;
    }

    .ex_title {
        font-size: 1.4rem;
    }

    .ex_text {
        font-size: 1.4rem;
    }
}

/* cta_insert */
.cta_insert {
    background-color: #dbdbdb;
    margin-bottom: 40px;
    position: relative;
    min-height: 96px;
}

.cta_insert a {
    display: block;
    padding: 24px;
}

.cta_insert_inner {
    display: flex;
    gap: 16px 32px;
    align-items: center;
}

.cta_insert_logo img {
    max-width: 72px;
    height: auto;
}

p.cta_insert_title {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0;
}

.btn_cta_insert {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: inline-block;
    background-color: #f4f7f7;
    border: 1px solid #aaa;
    padding: 8px 24px;
    font-size: 1.4rem;
}

@media screen and (max-width: 736px) {
    .cta_insert_inner {
        gap: 16px;
    }

    p.cta_insert_title {
        font-size: 1.8rem;
    }

    .cta_insert_logo img {
        max-width: 56px;
        height: auto;
    }

    .cta_insert a {
        padding: 16px 16px 56px 16px;
    }

    .btn_cta_insert {
        position: absolute;
        bottom: 16px;
        right: 16px;
        display: inline-block;
        background-color: #f4f7f7;
        border: 1px solid #aaa;
        padding: 8px 24px;
        font-size: 1.2rem;
    }
}

/* writer_box */
.writer_box {
    padding: 40px;
    background-color: #f4f7f7;
}

.writer_box .box_head {
    display: block;
    margin-bottom: 24px;
}

.writer_plofile {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.plofile_text p {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.8;
}

.writer_icon {
    flex-shrink: 0;
    width: 80px;
}

.writer_icon img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.media_policy {
    border-top: 1px solid #000;
    display: flex;
    gap: 16px;
    padding-top: 24px;
}

.media_policy p {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.8;
}

.policy_icon {
    flex-shrink: 0;
    width: 80px;
}

@media screen and (max-width: 736px) {
    .writer_box {
        padding: 20px;
    }

    .writer_icon {
        width: 56px;
    }
}

/* toc_area（目次） */
.toc_area {
    background: #f8f9fa;
    padding: 40px;
    position: relative;
    margin-bottom: 72px;
    font-size: 1.6rem;
}

.toc_area_toggle {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.toc_area_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 24px;
    border: 1px solid #ddd;
    background-color: #fff;
    position: relative;
}

p.toc_head {
    font-weight: 600;
    margin-bottom: 0 !important;
}

.toc_list {
    list-style: none;
    margin: 0;
    padding: 24px 0 0;
}

.toc_list li {
    margin-bottom: 16px;
    line-height: 1.4;
}

.toc_list a {
    text-decoration: underline;
    transition: color 0.2s;
}

.toc_list a:hover {
    text-decoration: none;
}
.toc_list2{
    margin: 16px 0 0 20px;
}

@media screen and (max-width: 736px) {
    .toc_area {
        font-size: 1.4rem;
        padding: 20px;
        margin-bottom: 40px;
    }
}

/* コラム挿入CTA */
.column_cta_box {
    margin-bottom: 40px;
    background-color: #ddd;
    padding: 40px 40px;
}

.column_cta_logo img {
    display: block;
    width: 200px;
    margin-bottom: 24px;
}

.column_cta_head {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
}

.column_cta_text {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0px;
}

.btn_column_cta {
    display: block;
    border: 1px solid #000;
    background-color: #f2f2f2;
    border-radius: 3px;
    font-size: 1.6rem;
    padding: 12px;
    min-width: 240px;
    text-align: center;
    margin-top: -40px;
}

/* 関連記事 */
.related_head {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.4;
}

/* サイドエリア */
.side_head {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

.side_btn {
    display: block;
    border: 1px solid #000;
    background-color: #f2f2f2;
    padding: 12px 16px;
    border-radius: 3px;
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

/* サイドエリア:資料 */
.side_document {
    padding: 24px 24px;
    background-color: #ddd;
    margin-bottom: 40px;
}

/* サイドエリア:関連記事 */
.side_related {
    background-color: #fff;
    padding: 24px 16px;
    margin-bottom: 24px;
}

.side_related .side_head {
    font-size: 1.6rem;
}

.side_related_box {
    display: block;
    margin-bottom: 16px;
}

.side_related_box img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.side_related .side_related_box:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 736px) {
    .side_related {
        padding: 0;
    }
}

/* サイドエリア:追従エリア */
.side_follow {
    position: sticky;
    top: 16px;
    left: 0;
}

.side_service {
    background-color: #ddd;
    padding: 24px 24px;
}

.side_logo img {
    display: block;
    width: 160px;
    margin-bottom: 40px;
}

.side_service .side_head {
    margin-bottom: 32px;
}

.side_service .feature_list {
    margin-bottom: 32px;
    font-weight: 600;
}

.side_service_text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 24px;
}


/*---------------------------------------------------
    汎用フォーム
---------------------------------------------------*/
.contents.form {
    padding: 0 0 80px 0;
}

.form_colx {
    display: flex;
    gap: 24px 40px;
    margin-bottom: 80px;
    justify-content: space-between;
}

.contents.form .form_colx {
    margin-bottom: 0;
}

.lp_mv_form {
    min-width: 400px;
}

.form_colx .lp_mv_form {
    margin-top: 0;
}

.form_info .img_box {
    text-align: left;
}

@media screen and (max-width: 768px) {
    .contents.form {
        padding: 40px 0 60px;
    }

    .form_colx {
        flex-direction: column;
    }

    .lp_mv_form {
        min-width: inherit;
    }

}

/*---------------------------------------------------
    LP
---------------------------------------------------*/

.lp_mv {
    background-color: #ddd;
    padding: 120px 0 80px;
}

.lp_mv .inner {
    max-width: 1200px;
}

.scene_mv.lp_mv {
    background-color: #ddd;
    padding: 80px 0 80px;
}

.lp_mv .sitename {
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lp_mv .sitename img {
    width: auto;
    height: 60px;
}

.lp_mv_cols {
    display: flex;
    gap: 24px 40px;
}

.lp_mv_single .mv_copy_s {
    margin: 0;
}

.lp_head_lv1 {
    font-size: 7.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
}

.lp_copy_lv1 {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 24px;
}

.lp_text {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 24px;
}

.circle_features {
    display: flex;
    align-items: flex-start;
    gap: 16px 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.circle_features_item {
    width: 220px;
    height: 220px;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    box-sizing: border-box;
}

.circle_features_item p {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
}

.circle_features_item p span {
    font-size: 3.6rem;
}

.lp_form_box {
    background-color: #fff;
    padding: 24px 20px;
    border: 1px solid #000;
    border-top: none;
}

.lp_mv_formhead {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #000;
    color: #fff;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 80px;
}

.lp_mv_formhead span {
    font-size: 1.8rem;
}

.lp_form_img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    background-color: #fff;
}

.lp_form_img img {
    width: 100%;
}

.lp_form_box .form_box {
    margin-bottom: 0;
}

.lp_form_box_microcopy {
    margin-top: 20px;
    font-size: 1.4rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .lp_mv {
        padding: 40px 0 40px;
    }

    .scene_mv.lp_mv {
        padding: 40px 0 40px;
    }

    .lp_mv .sitename {
        margin-bottom: 32px;
        padding-left: 0;
    }

    .lp_mv .sitename img {
        height: 40px;
        width: auto;
    }

    .lp_mv_cols {
        flex-direction: column;
        gap: 0;
    }

    .lp_head_lv1 {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }

    .lp_head_lv1 span {
        font-size: 1.6rem;
    }

    .lp_copy_lv1 {
        font-size: 1.5rem;
    }

    .circle_features {
        justify-content: center;
    }

    .lp_text {
        font-size: 1.4rem;
    }

    .lp_mv_form {
        margin-top: 0;
    }

    .lp_mv_formhead {
        font-size: 1.8rem;
        min-height: 64px;
    }

    .lp_mv_formhead span {
        font-size: 1.5rem;
    }

}

/*---------------------------------------------------
    tab_block
---------------------------------------------------*/
.tab_nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tab_btn {
    border: none;
    background: #efefef;
    padding: 12px 16px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: -1px;
}

.tab_btn.is-active {
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    z-index: 1;
    position: relative;
    font-weight: 600;
}

.tab_contents {
    background: #fff;
    padding: 60px;
    border: 1px solid #ccc;
    position: relative;
}

.tab_content {
    display: none;
}

.tab_content.is-active {
    display: block;
}

.tab_content_head_label {
    display: inline-block;
    padding: 12px 12px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    background: #efefef;
}

.tab_content_head {
    font-size: 2.8rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 40px;
}

.tab_content .set_box {
    margin-bottom: 0;
}

.tab_content .colx {
    gap: 12px;
}

.tab_content .cols_box4 {
    width: calc(calc(100% - 36px) / 4);
}

.tab_content .cols_text {
    padding: 8px 0;
    line-height: 1.6;
    text-align: center;
}

.intab_todo {
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .tab_nav {
        gap: 2px;
        margin-bottom: 8px;
    }

    .tab_btn {
        width: calc(calc(100% - 2px) / 2);
        padding: 8px;
        font-size: 1.4rem;
        border: 1px solid #ddd;
    }

    .tab_btn.is-active {
        border: 1px solid #000;
    }

    .tab_contents {
        padding: 24px 16px;
    }

    .content_head {
        font-size: 2.0rem;
        margin-bottom: 16px;
    }

    .tab_content .cols_box4 {
        width: calc(calc(100% - 16px) / 2);
    }

    .tab_content .cols_text {
        font-size: 1.2rem;
    }
}

/*---------------------------------------------------
    サイトマップ
---------------------------------------------------*/
.sitemap_area {
    margin: 80px 0;
}

.sitemap_area a {
    color: #000;
    text-decoration: none;
}

.sitemap_area a:hover {
    text-decoration: underline;
}

.sitemap_area p {
    margin-bottom: 16px;
    margin-top: 32px;
    line-height: 1.0;
}

.sitemap_home {
    font-weight: 600;
    margin-top: 0 !important;
    font-size: 1.8rem;
}

.sitemap_totaltop {
    font-weight: 600;
    margin-top: 32px !important;
    font-size: 1.8rem;
}

.sitemap_contents {
    margin-left: 16px;
    font-size: 1.8rem;
}

.sitemap_area .sitemap_totaltop {
    margin: 72px 0 0 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.sitemap_area .colx {
    margin-top: 40px;
}

.sitemap_area .colx p {
    margin-top: 0;
}

.sitemap_area .colx a:hover {
    text-decoration: none;
}

.sitemap_area .colx a:hover .mv_top_box {
    background-color: #f8f9fa;
}

.contents_list {
    margin-left: 32px;
    list-style: none;
}

.contents_list li:not(:last-child) {
    margin-bottom: 16px;
}

.contents_list li {
    position: relative;
    padding-left: 16px;
    line-height: 1.4;
}

.contents_list li::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    border: solid #000;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
    .sitemap_area {
        margin: 40px 0;
    }

    .sitemap_area p {
        margin-top: 20px;
    }

    .sitemap_home {
        font-size: 1.6rem;
    }

    .sitemap_contents {
        font-size: 1.6rem;
    }

    .contents_list {
        font-size: 1.4rem;
    }
}

/*---------------------------------------------------
    ニュース
---------------------------------------------------*/
.news_area {
    margin: 80px 0 80px;
}

/* news_list */
.news_list {
    display: flex;
    gap: 8px 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #dddddd;
}

.news_list dt {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news_cat {
    background-color: #efefef;
    padding: 8px 8px;
    font-size: 1.2rem;
}

.news_list dd {
    padding-top: 4px;
    line-height: 1.6;
    flex: 1;
}

.news_list dd a {
    display: block;
}

.news_details p {
    font-size: 1.6rem;
    line-height: 2.0;
    margin-bottom: 24px;
}

.news_title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
}

.news_date {
    text-align: right;
}

.news_details .adjust_center {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .news_list {
        flex-direction: column;
    }

    .news_list .data {
        font-size: 1.4rem;
    }

    .news_list dd {
        font-size: 1.4rem;
    }
}

/*---------------------------------------------------
    popup
---------------------------------------------------*/
#popup {
    position: fixed;
    right: 20px;
    bottom: 80px;
    text-decoration: none;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    z-index: 20;
}

#popup.view {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (max-width: 736px) {
    #popup {
        display: none;
    }
}

.popup_box .close_btn {
    border: none;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #f4f4f4;
    border: 1px solid #000;
    cursor: pointer;
    z-index: 10;
}

.popup_box .close_btn::before,
.popup_box .close_btn::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 2px;
    background-color: #000;
}

.popup_box .close_btn::before {
    transform: rotate(45deg);
    top: 17px;
    right: 5px;
}

.popup_box .close_btn::after {
    transform: rotate(-45deg);
    top: 17px;
    right: 5px;
}

.pop_box {
    width: 300px;
    height: 300px;
    border: 1px solid #000;
    padding: 48px 16px 24px;
}

.pop_box_img img {
    max-width: 100%;
    width: 258px;
    height: auto;
    margin-bottom: 20px;
}

.pop_btn {
    display: block;
    border: 1px solid #000;
    background-color: #f8f9fa;
    text-align: center;
    border-radius: 3px;
    padding: 12px;
}

.pop_box .s_text {
    text-align: center;
}

/* ---------- scroll-area -------------*/

.scroll-area {
    padding: 56px;
    text-align: center;
}

.scroll-container {
    overflow: hidden;
    background: #fff;
    padding: 10px 0;
    position: relative;
}

.scroll-container .scroll-wrapper {
    display: flex;
    animation: scroll-left 60s linear infinite;
    white-space: nowrap;
    width: fit-content;
}

/* class reverseを付けると逆方向に */
.scroll-container .scroll-wrapper.reverse {
    animation: scroll-right 60s linear infinite;
}

.scroll-container .scroll-content {
    display: flex;
    flex-shrink: 0;
}

.scroll-container .scroll-item {
    color: #222;
    margin: 0 10px;
    flex-shrink: 0;
    background: #f4f7f7;
    padding: 12px;
    border-radius: 8px;
}

/* 左から右へのアニメーション - コンテンツ幅分だけ移動 */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 右から左へのアニメーション */
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .scroll-area {
        padding: 40px 24px;
        text-align: center;
    }

    .scroll-container .scroll-item {
        font-size: 1.5rem;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .scroll-container .scroll-item {
        font-size: 1.2rem;
        margin: 0 4px;
    }
}