@charset "utf-8";

/* ---------------------------------------------
navigation01 ※TOP
--------------------------------------------- */
/*
---------------------------------------------
navigation01 ※TOP、下層共通
*/
.header-area-upper {
    padding: var(--s1);
    text-align: right;
}

.header-title a {
    text-decoration: none;
}

.header-title a:hover {
    text-decoration: underline;
}

.gnavi-ctrl {
    display: none;
}

.gnavi-btn {
    display: none;
}

.gnavi-btn-close {
    display: none;
}

.gnavi-area {
    display: none;
}

.toggle-content {
    display: none;
}

/*------------------------------------------
Global menu settings
*/

.navigation01-menu {
    display: flex;
    position: relative;
}

.navigation01-menu::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.1rem;
    height: calc(100% - 3rem);
    border-right: 1px solid #707070;
    content: "";
}

.navigation01-menu li {
    flex: 1;
}

.navigation01-menu li::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.1rem;
    height: calc(100% - 3rem);
    border-right: 1px solid #707070;
    content: "";
}

/* .navigation01-menu li:last-child::before {
display: none;
content: none;
} */

.navigation01-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--s2);
    color: #333;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
}

.navigation01-menu li a:hover {
    opacity: .6;
}

/*
---------------------------------------------
sp settings
*/
@media screen and (max-width: 767px) {
    .gnavi-ctrl {
        display: block;
        transition: opacity 0.6s, visibility 0.6s;
        opacity: 0;
        visibility: hidden;
    }

    .gnavi-ctrl.is-show {
        opacity: 1;
        visibility: visible;
    }

    #low-header .gnavi-ctrl {
        opacity: 1;
        visibility: visible;
    }

    .gnavi-btn {
        width: var(--s7);
        height: var(--s6);
        background: #333;
        display: block;
        position: fixed;
        top: var(--s3);
        right: 0;
        z-index: 200;
        cursor: pointer;
    }

    .gnavi-btn span {
        width: var(--s4);
        height: 0.2rem;
        display: inline-block;
        background: #fff;
        position: absolute;
        left: 1.2rem;
        transform: translate(0, -50%);
        transition: transform 0.4s, opacity 0.4s;
    }

    .gnavi-btn span:nth-of-type(1) {
        top: 1.7rem;
    }

    .gnavi-btn span:nth-of-type(2) {
        top: 2.4rem;
    }

    .gnavi-btn span:nth-of-type(3) {
        top: 3.1rem;
    }

    .gnavi-btn.is-active span:nth-of-type(1) {
        transform: translateY(0.7rem) rotate(-45deg);
    }

    .gnavi-btn.is-active span:nth-of-type(2) {
        opacity: 0;
    }

    .gnavi-btn.is-active span:nth-of-type(3) {
        transform: translateY(-0.7rem) rotate(45deg);
    }

    .gnavi-btn-close {
        width: 80%;
        margin: 0 auto;
        padding: var(--s2);
        background: #333;
        display: block;
        text-align: center;
    }

    .gnavi-btn-close__inner {
        padding: 0 0 0 var(--s3);
        display: inline-block;
        color: #fff;
        font-weight: 700;
        position: relative;
    }

    .gnavi-btn-close__inner::before {
        content: "";
        width: 1em;
        height: 0.2rem;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%) rotate(45deg);
    }

    .gnavi-btn-close__inner::after {
        content: "";
        width: 1em;
        height: 0.2rem;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%) rotate(135deg);
    }

    .gnavi-area {
        width: 100%;
        height: 100vh;
        padding: var(--s3) var(--s1) var(--s10);
        display: block;
        background: #F5F5F5;
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
        transform: translateX(100%);
        transition: transform 0.8s ease, opacity 0.8s ease;
        opacity: 0;
    }

    .gnavi-title {
        min-height: var(--s6);
        margin: 0 var(--s8);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.5;
    }

    .gnavi-pc {
        display: none;
    }

    .gnavi-list {
        border-bottom: 1px solid #333;
        position: relative;
    }

    .gnavi-list li {
        padding-left: 0;
    }

    .gnavi-list__item::before {
        display: none;
    }

    .gnavi-list__link {
        width: 100%;
        margin: 0 auto;
        padding: var(--s2) var(--s4) var(--s2) var(--s2);
        border-top: 1px solid #333;
        display: block;
        font-weight: 700;
        line-height: 2;
        text-decoration: none;
        position: relative;
    }

    .gnavi-list__link::after {
        content: "";
        width: 1.4rem;
        height: 1.4rem;
        background: url("img/arrow-01-black-right.svg") no-repeat center/100% auto;
        position: absolute;
        top: 50%;
        right: var(--s2);
        transform: translate(0, -50%) rotate(0);
        transition: transform 0.3s;
    }

    .gnavi-list__link--toggle::after {
        background-image: url("img/arrow-01-black-down.svg");
    }

    .gnavi-list__link--toggle.is-open::after {
        transform: translate(0, -50%) rotate(180deg);
    }

    .gnavi-list__sub {
        width: 100%;
        background: #fff;
    }

    .gnavi-list__low .gnavi-list__link {
        padding: var(--s2) var(--s4) var(--s2) var(--s4);
    }

    .gnavi-list__low .gnavi-list__link::after {
        content: "└";
        background: none;
        transform: translateY(-50%);
        position: absolute;
        top: 40%;
        left: 1rem;
    }

    .is-gnavi-open .gnavi-area {
        opacity: 1;
        transform: translateX(0);
    }

    /*------------------------------------------
Global menu settings
*/
    .navigation01-menu-area {
        display: none;
    }
}

/* ---------------------------------------------
navigation02 ※TOP、下層共通
--------------------------------------------- */
.header-area-upper {
    padding: var(--s1);
    text-align: right;
}

.header-title {
    font-size: 1.2rem;
    display: inline-block;
    position: relative;
}

.header-title::before {
    display: inline-block;
    width: 2.8rem;
    height: 1.8rem;
    margin: 0 0.5rem 0 0;
    background: #000;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8rem;
    text-align: center;
    content: "PR";
}

.header-title a {
    text-decoration: none;
}

.header-title a:hover {
    text-decoration: underline;
}

.gnavi-btn-close {
    display: none;
}

.toggle-content {
    display: none;
}

.gnavi-ctrl {
    transition: opacity 0.6s, visibility 0.6s;
    opacity: 0;
    visibility: hidden;
}

.gnavi-ctrl.is-show {
    opacity: 1;
    visibility: visible;
}

#low-header .gnavi-ctrl {
    opacity: 1;
    visibility: visible;
}

.gnavi-btn {
    width: var(--s7);
    height: var(--s6);
    background: var(--site-color03);
    display: block;
    position: fixed;
    top: var(--s3);
    right: 0;
    z-index: 200;
    cursor: pointer;
}

.gnavi-btn span {
    width: var(--s4);
    height: 0.2rem;
    display: inline-block;
    background: #fff;
    position: absolute;
    left: 1.2rem;
    transform: translate(0, -50%);
    transition: transform 0.4s, opacity 0.4s;
}

.gnavi-btn span:nth-of-type(1) {
    top: 1.4rem;
}

.gnavi-btn span:nth-of-type(2) {
    top: 2.4rem;
}

.gnavi-btn span:nth-of-type(3) {
    top: 3.4rem;
}

.gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(1rem) rotate(-45deg);
}

.gnavi-btn.is-active span:nth-of-type(2) {
    opacity: 0;
}

.gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-1rem) rotate(45deg);
}

.gnavi-btn-close {
    width: 80%;
    margin: 3rem auto 0 auto;
    padding: var(--s2);
    background: var(--site-color03);
    display: block;
    text-align: center;
}

.gnavi-btn-close__inner {
    padding: 0 0 0 var(--s3);
    display: inline-block;
    color: #fff;
    font-weight: 700;
    position: relative;
}

.gnavi-btn-close__inner::before {
    content: "";
    width: 1em;
    height: 0.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(45deg);
}

.gnavi-btn-close__inner::after {
    content: "";
    width: 1em;
    height: 0.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(135deg);
}

.gnavi-area {
    width: 100%;
    max-width: 37.5rem;
    height: 100vh;
    padding: 10rem var(--s1) var(--s10);
    display: block;
    background: #eff6f7;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
}

.gnavi-title {
    min-height: var(--s6);
    margin: 0 var(--s8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}

.gnavi-pc {
    display: none;
}

.gnavi-list {
    border-bottom: 1px solid #a7a7a7;
    position: relative;
}

.gnavi-list li {
    padding-left: 0;
}

.gnavi-list__item::before {
    display: none;
}

.gnavi-list__link {
    width: 100%;
    margin: 0 auto;
    padding: var(--s2) var(--s4) var(--s2) var(--s2);
    border-top: 1px solid #a7a7a7;
    display: block;
    font-weight: 700;
    line-height: 2;
    text-decoration: none;
    position: relative;
}

.gnavi-list__link::after {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: url("img/arrow-01-black-right.svg") no-repeat right center;
    background-size: 8px auto;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
}

.gnavi-list__link--toggle::after {
    background-image: url("img/arrow-01-black-down.svg");
    background-size: auto 8px;
}

.gnavi-list__link--toggle.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
}

.gnavi-list__sub {
    width: 100%;
    background: #fff;
}

.gnavi-list__low .gnavi-list__link {
    padding: var(--s2) var(--s4) var(--s2) var(--s4);
}

.gnavi-list__low .gnavi-list__link::after {
    content: "└";
    background: none;
    transform: translateY(-50%);
    position: absolute;
    top: 40%;
    left: 1rem;
}

.is-gnavi-open .gnavi-area {
    opacity: 1;
    transform: translateX(0);
}


/* ---------------------------------------------
MV
--------------------------------------------- */
.mv-logo {
    width: 20rem;
}

/*------------------------------------------
1box column settings
*/
.column-medium {
    padding: var(--s4);
}


/*------------------------------------------
3box column settings
*/

.section-title07-frame {
    position: relative;
    padding: 10rem 0 0 0;
}

.section-title07-frame::before {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 7rem;
    content: "";
}

.section-title07 {
    position: relative;
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
}
.sec01.lower .section-title07 {
    line-height: 1.4;
}
.section-title07 a {
    display: inline;
    padding: 0 6rem 0 0;
    background: url(img/arrow01-blue.png) no-repeat right center;
    background-size: 35px auto;
    color: inherit;
    text-decoration: none;
}


/*------------------------------------------
アコーディオン settings
*/
.acc-more-btn {
    max-width: 46rem;
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
}

.acc-more-btn span {
    width: 100%;
    margin: var(--s5) auto;
    padding: 2rem 6rem 2rem 3rem;
    border: .2rem solid var(--site-color05);
    border-radius: 4rem;
    background: url('./img/acc-off.svg') no-repeat 95% center #fff;
    display: block;
    text-align: center;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 1;
}

.acc-more-btn::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--site-color03);
    border-width: 0 1px 1px 0;
    transform: translate(.8rem, .8rem);
    border-radius: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.acc-more-btn:hover span {
    transform: translate(.8rem, .8rem);
}

.acc-more-btn.is-open span {
    background: url('./img/acc-on.svg') no-repeat 95% center #fff;
}

.more-content {
    display: none;
}

/*------------------------------------------------------------
SP settings
*/
@media screen and (max-width: 767px) {


.mv-logo{
  display: none;
}

/*2025.03.04*/  
.header-title {
  font-size: 2.9vw;
}
    .column-medium {
        padding: var(--s2);
    }

    .twb-box-full {
        width: calc(100% + var(--s4));
        margin-left: calc(var(--s2) * -1);
    }

    .onb-box-full {
        width: calc(100% + var(--s4));
        margin-left: calc(var(--s2) * -1);
    }

    .section-title07-frame {
        padding: 3rem 0 0 0;
    }

    .section-title07-frame::before {
        width: 100%;
        height: 3.5rem;
    }

    .section-title07 {
        padding: var(--s2) 0 0 0;
        font-size: 2.4rem;
    }

    .l-stack-large {
        gap: var(--s3);
    }

    .section-title07 a {
        display: block;
        padding: 0 3rem 0 0;
        background-size: 25px auto;
    }

    .acc-more-btn {
        margin-right: var(--s1);
    }

    .acc-more-btn span {
        transition: inherit;
        transform: none;
    }

    .acc-more-btn:hover span {
        transform: none;
    }

  .section-title07 a{
    background-size: 3rem auto;
  }
}

/*2025.03.04*/
#low-page p{
  margin: 2rem 0;
}
.table_b td{
    border-top:1px solid #e0e8e9;
  }

/* ---------------------------------------------
sec01
--------------------------------------------- */


.section-title05 {
    width: 100%;
    margin-top: 5rem;
    padding: var(--s4);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
    text-align: center;
    background-color: var(--site-color09);
    position: relative;
}

.section-title05::before,
.section-title05::after {
    content: "";
    width: 4rem;
    height: 4rem;
    background-color: var(--site-color03);
    position: absolute;
    z-index: -1;
}

.section-title05::before {
    bottom: -0.5rem;
    left: -0.5rem;
}

.section-title05::after {
    top: -0.5rem;
    right: -0.5rem;
}

.arrow-title {
    margin-bottom: 2.3rem;
    padding: var(--s2);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--site-color03);
    border-radius: 2rem 2rem 0 0;
    text-align: center;
    line-height: 1.5;
    position: relative;
}

.arrow-title::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 1.5rem solid transparent;
    border-left: 1.5rem solid transparent;
    border-right: 1.5rem solid var(--site-color03);
    border-bottom: 1.5rem solid var(--site-color03);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    left: 50%;
    bottom: -1.3rem;
}

.arrow-title-sub {
    padding: var(--s1);
    margin-bottom: .8rem;
    background-color: #fff;
    font-size: 1.4rem;
    color: var(--site-color03);
    line-height: 1;
    display: inline-block;
}

.arrow-title-small {
    font-size: 1.4rem;
}

.thb-m-title04-frame {
    position: relative;
}

.thb-m-title04-sub {
    padding: .8rem;
    font-size: 1.6rem;
    font-weight: normal;
    color: #fff;
    background-color: var(--site-color03);
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
}

.thb-listbox-bg-colored {
    padding-top: 2rem;
}

.thb-listbox-subtitle {
    text-align: center;
    font-weight: 700;
}

.thb-listbox-list {
    width: 100%;
    padding-left: 2rem;
}

.thb-listbox-list li {
    padding: 0 var(--s1);
    line-height: 1.5;
    position: relative;
}

.thb-listbox-list li::before {
    content: "";
    width: 2rem;
    height: 2rem;
    background: url("./img/icon-check.svg") no-repeat left top;
    background-size: contain;
    position: absolute;
    top: .3rem;
    left: -2rem;
}

.thb-listbox-list li span {
    margin-right: var(--s1);
    display: block;
    text-align: center;
}

.icon-title-area {
    background-color: var(--site-color03);
    position: relative;
}

.icon-title-obj-r {
    width: 11rem;
    height: 11rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DEDEDE;
    color: var(--site-color03);
    border-radius: 11rem;
    position: absolute;
    top: -.8rem;
    left: -.8rem;
}

.icon-title-obj-r__inner {
    text-align: center;
    font-weight: 700;
}

.icon-title-r {
    padding: 1.6rem 1.6rem 1.6rem 12rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
}

.icon-title-small {
    font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .more-content.pc_custom{
    display:block;
  }
  .btn-web.btn_margin_h{
    margin-top:2rem;
  }
  
}
/*------------------------------------------------------------
SP settings
*/
@media screen and (max-width: 767px) {
    .section-title05 {
        padding: var(--s2);
        font-size: 2.4rem;
    }

    .thb-listbox-area {
        padding: var(--s5) var(--s2) var(--s2) var(--s2);
    }

    .thb-listbox-list li {
        font-size: 1.4rem;
    }

    .thb-listbox-list--three li {
        width: calc((100% - var(--s2)) / 2);
    }

    .thb-listbox-title {
        width: 80%;
        margin: -5rem auto 0 auto;
        padding: var(--s1);
        font-size: 1.4rem;
        text-align: center;
    }
}

/* ---------------------------------------------
sec02
--------------------------------------------- */
.onb-center-img {
    max-width: 64%;
    margin: 0 auto;
}

.onb-m-title6 {
    padding: .5rem 1rem .8rem 1rem;
    line-height: 1.4;
    color: #373a3c;
    font-size: 2.8rem;
    font-weight: 700;
    border-left: .5rem solid var(--site-color03);
    border-bottom: 1px solid #e0e8e9;
}

.onb-iconbox02-frame {
    padding: var(--s4);
    background-color: #f9f9ec;
    border-radius: 2rem;
}

.onb-iconbox02-catch {
    margin: 0 0 2rem 0;
    padding: 0 0 1rem 2.4rem;
    color: var(--site-color03);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    border-bottom: 1px solid #023156;
    background: url('./img/icon-gear.svg') no-repeat left top 0.8rem;
    background-size: 1.5rem auto;
}

.onb-iconbox02-caption {
    text-align-last: left;
}

.onb-acc-list-frame {
    border: 1px solid #ccc;
}

.onb-acc-list-title {
    padding: var(--s2);
    background-color: #ccc;
    font-weight: 700;
}

.onb-acc-list-content {
    padding: var(--s2);
}

.onb-acc-list div {
    padding-bottom: var(--s2);
    display: flex;
    border-bottom: 1px solid #ccc;
}

.onb-acc-list div:last-child {
    border: none;
}

.onb-acc-list div dt,
.onb-acc-list div dd {
    width: 50%;
    line-height: 1.2;
}

.onb-acc-list div dd span {
    font-size: 1.4rem;
}

.more-content-gradation {
    position: relative;
    height: auto;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 1s;
}

.more-content-gradation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}

.more-content-gradation.is-open::after {
    display: none;
}

.onb-acc-list-more-btn {
    max-width: 32rem;
    margin: 0 auto;
    position: relative;
    transform: translate3d(0, 0, 0);
    /* 描画対策のGPU処理 */
    ;
}

.onb-acc-list-more-btn span {
    width: 100%;
    margin: var(--s5) auto;
    padding: 2rem 6rem 2rem 3rem;
    border: .2rem solid var(--site-color05);
    border-radius: 4rem;
    background: url('./img/acc-off.svg') no-repeat 95% center #fff;
    display: block;
    text-align: center;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 1;
}

.onb-acc-list-more-btn::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--site-color03);
    border-width: 0 1px 1px 0;
    transform: translate(.8rem, .8rem);
    border-radius: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.onb-acc-list-more-btn:hover span {
    transform: translate(.8rem, .8rem);
}

.onb-acc-list-more-btn.is-open span {
    background: url('./img/acc-on.svg') no-repeat 95% center #fff;
}

.onb-casebox02-frame {
    margin-top: 2rem;
    padding: var(--s4);
    background: #eff6f7 url(img/sec02_bg_02.png) no-repeat center bottom;
    background-size: 100% auto;
    position: relative;
    border-radius: 2rem;
}

.onb-casebox02-sub {
    padding: var(--s1) var(--s3);
    background-color: var(--site-color03);
    color: #fff;
    font-size: 1.7rem;
    transform: translateX(-50%);
    position: absolute;
    top: -1.8rem;
    left: 50%;
    border-radius: 3rem;
}

.onb-casebox02-imgcap {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.onb-casebox02-catch {
    margin: 1rem 0 2rem 0;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
    text-align: center;
}

.onb-casebox02-caption {
    margin: 2rem 0 0 0;
    text-align: left;
}

.onb-iconbox03-sub span {
    padding: var(--s1) var(--s2);
    display: inline-block;
    background-color: var(--site-color03);
    color: #fff;
}

.onb-iconbox03-catch {
    padding-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--site-color03);
    line-height: 1.5;
    border-bottom: 2px solid var(--site-color17);
}

.onb-iconbox03-caption {
    text-align-last: left;
}

.bg-01 {
    background: url('./img/bg-01.jpg') repeat top left;
    background-size: cover;
}

/*------------------------------------------------------------
SP settings
*/
@media screen and (max-width: 767px) {
    .onb-icon-title-frame {
        padding: var(--s1) var(--s2);
    }

    .onb-icon-title {
        font-size: 2.1rem;
    }

    .onb-icon-title small {
        font-size: 1.6rem;
    }

    .onb-icon-title-catch {
        padding-left: var(--s4);
        font-size: 1.4rem;
    }

    .onb-icon-title-icon {
        width: 6rem;
        height: 6rem;
        position: absolute;
        top: -2rem;
        left: -.5rem;
    }

    .onb-m-title5 span::before,
    .onb-m-title5 span::after {
        width: 4rem;
    }

    .onb-m-title5 span::before {
        margin-right: var(--s1);
    }

    .onb-m-title5 span::after {
        margin-left: var(--s1);
    }

    .onb-center-img {
        max-width: 100%;
    }

    .onb-acc-list-more-btn {
        margin-right: var(--s1);
    }

    .onb-acc-list-more-btn span {
        transition: inherit;
        transform: none;
    }

    .onb-acc-list-more-btn:hover span {
        transform: none;
    }

    .onb-m-title6 {
        font-size: 2rem;
        margin: var(--s4) 0 var(--s1);
    }

    .onb-iconbox02-catch {
        font-size: 1.8rem;
    }


}


/* ---------------------------------------------
sec05
--------------------------------------------- */

.section-title01-frame {
    padding-top: 24rem;
    position: relative;
}

.section-title01-frame::before {
    content: "";
    width: 100%;
    min-height: 38.8rem;
    background: url("./img/sec05_bg_01.jpg") no-repeat center center;
    background-size: cover;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
}

.section-title01-frame p {
    color: #fff;
}

.section-title01-bg {
    margin: 0 0 4rem 0;
    padding: 10rem 5rem 6rem 5rem;
    background-color: rgba(var(--site-color03-rgb), .87);
    position: relative;
    border-radius: 2rem;
    z-index: 2;
}

.section-title01 {
    font-size: 3.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    position: relative;
}

.section-title01 a {
    display: inline;
    padding: 0 6rem 0 0;
    background: url(img/arrow01-white.png) no-repeat right center;
    background-size: 35px auto;
    color: inherit;
    text-decoration: none;
}

.section-title01::before {
    content: "CASES";
    padding: 0 var(--s2);
    font-size: 2.6rem;
    transform: translateX(-50%);
    color: #54d9e8;
    position: absolute;
    top: -4.8rem;
    left: 50%;
    z-index: 3;
}

.section-title01::after {
    content: "";
    height: 1px;
    transform: translateX(-50%);
    background-color: #ccc;
    position: absolute;
    top: -2rem;
    left: 50%;
    z-index: 2;
}

.com-box04-frame {
    padding: var(--s4);
}

.com-box04-title {
    margin-bottom: var(--s4);
    padding: var(--s2) var(--s3);
    background-color: #eff6f7;
    border-bottom: 1px solid var(--site-color03);
    color: var(--site-color03);
/* font-size: 2.4rem; */
  font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
}

.com-box04-title a {
    display: block;
    padding: 0 5rem 0 0;
    background: url(img/arrow01-blue.png) no-repeat right center;
    background-size: 35px auto;
    color: inherit;
    text-decoration: none;
}

.com-box04-area {
    display: flex;
    gap: var(--s4);
}

.com-box04-text {
    width: calc((100% - var(--s4))*.8);
}

.com-box04-text .caption {
    color: var(--site-color13);
}

.com-box04-img {
    width: calc((100% - var(--s4))*.2);
    text-align: center;
}

.com-box04-img span {
    margin-top: var(--s1);
    display: block;
    font-size: 1.2rem;
    text-align: center;
}

.com-box04-catch {
    margin-bottom: var(--s2);
    color: var(--site-color03);
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.5;
}

/*------------------------------------------------------------
SP settings
*/
@media screen and (max-width: 767px) {

    .section-title01-frame {
        padding-top: 16rem;
    }

    .section-title01-frame::before {
        min-height: 24rem;
    }

    .section-title01-bg {
        padding: var(--s7) var(--s2) var(--s1) var(--s2);
    }

    .section-title01 {
        margin-bottom: var(--s3);
        font-size: 2.4rem;
    }

    .section-title01::before {
        font-size: 1.8rem;
        top: -3.2rem;
    }

    .section-title01 a {
        display: block;
        padding: 0 4rem 0 0;
        background-size: 3rem auto;
    }

    .com-box04-frame {
        padding: 1.5rem 0;
    }

    .com-box04-area {
        flex-direction: column;
        gap: var(--s2);
    }

    .com-box04-title {
        margin-bottom: var(--s2);
/* font-size: 1.8rem; */
    font-size: 2rem;
    }

    .com-box04-title a {
        padding: 0 4rem 0 0;
        background-size: 3rem auto;
    }

    .com-box04-img {
        width: 50%;
        margin: 0 auto;
    }

    .com-box04-text {
        width: 100%;
    }

    .com-box04-catch {
        font-size: 1.8rem;
    }
}


/* ---------------------------------------------
sec07
--------------------------------------------- */
.icon-dspn3-bg-colored {
    padding-top: 4rem;
}

.icon-description-area {
    padding: var(--s6) var(--s4) var(--s4) var(--s4);
    background-color: var(--site-color06);
    position: relative;
}

.icon-description-title {
    padding: var(--s2) var(--s8);
    color: #fff;
    font-size: 2.1rem;
    background-color: var(--site-color03);
    transform: translateX(-50%);
    position: absolute;
    top: -3rem;
    left: 50%;
}

.icon-description-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
}

.icon-description-list li {
    padding: var(--s2);
    background-color: #fff;
    line-height: 1.5;
}

.icon-description-list--three li {
    width: calc((100% - (var(--s2) * 2)) / 3);
}

.icon-description-list li::before {
    display: none;
}

.icon-description-list li span {
    margin-bottom: var(--s2);
    display: block;
    text-align: center;
}

.thb-iconbox01-bg-colored {
    padding-top: 4rem;
}

.thb-iconbox01-area {
    padding: var(--s4);
    background-color: #eff6f7;
    border-radius: 2rem;
    position: relative;
}

.thb-iconbox01-image {
    width: 7.2rem;
    height: 7.2rem;
    position: absolute;
    top: -1.6rem;
    left: -.8rem;
}

.thb-iconbox01-title {
    display: flex;
    align-items: center;
    padding-bottom: var(--s3);
    font-size: 2rem;
    font-weight: 700;
    color: var(--site-color03);
}

.thb-iconbox01-title a {
    display: block;
    width: 100%;
    padding: 0 4.5rem 0 0;
    background: url(img/arrow01-blue.png) no-repeat right center;
    background-size: 35px auto;
    color: inherit;
    text-decoration: none;
  min-height: 3.5rem;
}


/*------------------------------------------------------------
SP settings
*/
@media screen and (max-width: 767px) {
    .icon-description-area {
        padding: var(--s6) var(--s2) var(--s2) var(--s2);
    }

    .icon-description-list li {
        font-size: 1.4rem;
    }

    .icon-description-list--three li {
        width: calc((100% - var(--s2)) / 2);
    }

    .icon-description-title {
        width: 80%;
        padding: 1.6rem;
        font-size: 1.8rem;
        text-align: center;
    }
}

/* ---------------------------------------------
sec08
--------------------------------------------- */
.l-contents-banner03 {
    width: calc();
    background-color: var(--site-color07);
    display: flex;
}

.contents-banner03-content {
    width: 100%;
    padding: var(--s4);
    z-index: 5;
}

.contents-banner03-catch {
    font-size: 4rem;
    font-weight: 700;
    color: var(--site-color14);
    line-height: 1.2;
}

.contents-banner03-catch span {
    margin-bottom: 1rem;
    padding: var(--s1);
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
    background-color: var(--site-color03);
}

.contents-banner03-text {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
}

.contents-banner03-btn {
    max-width: 36rem;
    margin: 0 auto;
}

.twb-m-title02 {
    display: flex;
    align-items: center;
    margin: 0 0 2rem 0;
    padding: 1.6rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    background-color: var(--site-color03);
    border-radius: 1rem;
}

.twb-m-title02 a {
    display: block;
    width: 100%;
    padding: 0 3rem 0 0;
    background: url(img/arrow01-white.png) no-repeat right center;
    background-size: 35px auto;
    color: inherit;
    text-decoration: none;
  min-height: 3.5rem;
}


/*------------------------------------------------------------
SP settings
*/
@media screen and (max-width: 767px) {
    .l-contents-banner03 {
        flex-direction: column;
    }

    .contents-banner03-content {
        padding: var(--s3);
    }

    .contents-banner03-catch {
        font-size: 2.3rem;
    }

    .contents-banner03-text {
        font-size: 1.8rem;
    }

    .contents-banner03-btn {
        padding: 0 var(--s4);
    }
}

/* ---------------------------------------------
下層ページ
--------------------------------------------- */
.icon-head01 {
/* margin-top: var(--s4); */
  margin-top: var(--s8);
    margin-bottom: var(--s4);
    margin-left: var(--s4);
    padding: var(--s4) var(--s2) var(--s4) var(--s12);
    line-height: 1.5;
    font-size: 2.8rem;
    font-weight: 700;
    background-color: #eff6f7;
    position: relative;
}

.icon-head01::before {
    content: "";
    width: 10.5rem;
    height: 10.5rem;
    background: url('./img/icon-head-check.svg') no-repeat center center;
    background-size: contain;
    position: absolute;
    left: -4rem;
    top: -1.6rem;
}

.sp-fix-banner01 {
    display: none;
}

.pc-fix-banner04 {
    position: fixed;
    right: 1rem;
    bottom: 20rem;
    width: 27rem;
    z-index: 50;
}

.pc-fix-banner04-text a {
    display: block;
    padding: 1rem;
    background: url(img/banner_bg_01.png) no-repeat center top;
    background-size: cover;
    border-radius: 1.6rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}


.pc-fix-banner04-text a:hover {
    opacity: 0.7;
}

.pc-fix-banner04-text .txt-1 {
    text-align: center;
}

.pc-fix-banner04-text .txt-1 span {
    display: inline-block;
    margin: 0 0 0.5rem 0;
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 3rem;
    color: var(--site-color03);
    font-size: 1.4rem;
}

.pc-fix-banner04-text .txt-2 {
    text-align: center;
}

.pc-fix-banner04-text .txt-2 span {
    font-size: 1.8rem;

}

.pc-fix-banner04-text .txt-3 {
    background: url(img/arrow01-white.png) no-repeat right bottom 0.2rem;
    background-size: 26px auto;
    font-size: 1.8rem;
    line-height: 1.1;
    text-align: center;
}

.pc-fix-banner04-text .txt-3 span {
    color: #bfe854;
    font-size: 5rem;
}


/*------------------------------------------------------------
SP settings
*/
@media screen and (max-width: 767px) {
    .icon-head01 {
    margin-top: var(--s4);
        margin-left: var(--s2);
        padding: var(--s2) var(--s2) var(--s2) var(--s7);
        font-size: 1.8rem;
    }

    .icon-head01::before {
        content: "";
        width: 6rem;
        height: 6rem;
        left: -1.6rem;
    }

    .sp-fix-banner01 {
        width: 70%;
        background: url(img/banner_bg_01.png) no-repeat center center;
        background-size: cover;
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 50;
    display: none; /* 初期状態は非表示 */

    }

    .sp-fix-banner01-text {
        padding: var(--s1) var(--s2);
        color: #fff;
        position: relative;

    }



    .sp-fix-banner01-text p {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
    line-height: 1.4;
    }

    .sp-fix-banner01-text a {
        padding-right: 1.6rem;
        color: #fff;
        text-decoration: none;
        background: url("./img/arrow-01-wht-right.svg") no-repeat right center / 1rem auto;
        display: block;
    }

    .sp-fix-banner01-text a:hover {
        opacity: .7;
    }

    .pc-fix-banner04 {
        display: none;
    }
}


/* ---------------------------------------------
index01(目次)
--------------------------------------------- */
.onb-index01-frame {
    width: 90%;
    background-color: #f9f9f9;
  margin: 0 auto;;
}

.onb-index01-wrap {
    margin: 0 auto;
    padding: var(--s1) var(--s3);
    background-color: transparent;
    position: relative;
}

.onb-index01-title {
    padding: var(--s2) var(--s2) var(--s2) 3.2rem;
    color: var(--site-color03);
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    background: url("./img/icon-gear.svg") no-repeat left calc(50% + 0.2rem);
    background-size: 2.2rem auto;
    position: relative;
    cursor: pointer;
}

.onb-index01-title::before {
    content: "";
    width: 2rem;
    height: 0.3rem;
    background: var(--site-color03);
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translate(0, -50%);
}

.onb-index01-title::after {
    content: "";
    width: 0.3rem;
    height: 2rem;
    background: var(--site-color03);
    position: absolute;
    top: 50%;
    right: 2.9rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}

.onb-index01-title.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
}

.onb-index01-chapter {
    font-weight: 700;
}

.onb-index01-chapter-h {
    margin: 0 0 0 var(--s2);
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}

.onb-index01-chapter-h a {
    display: block;
    text-decoration: none;
}

.onb-index01-chapter-h a:hover {
    opacity: .6;
}

.onb-index01-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
}

.onb-index01-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}

.onb-index01-chapter-h-two::before,
.onb-index01-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.5em;
}

.onb-index01-chapter-h-two::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 2rem;
    background-color: #54d9e8;
    transform: translateY(-50%);
    top: .8em;
}

.onb-index01-chapter-h-three::before {
    content: "└";
}

.more-content {
    display: none;
}

.onb-index01-content {
    padding: 2rem 4rem 2rem 2rem;
    border-top: 1px solid var(--site-color03);
}

#toc .chapter {
    margin: 0 0 2rem 0;
    padding: 0 1rem;
    counter-reset: count;
}

#toc .chapter .chapter-h {
    position: relative;
    margin: 2rem 0 0 0;
    padding: 0 0 0 4rem;
    color: #333;
    font-weight: 700;
    line-height: 1.8;
    counter-increment: count;
}

#toc .chapter .chapter-h:last-child {
    margin-bottom: 0;
}

#toc ul.chapter .chapter-h::before {
    position: absolute;
    left: 0;
    top: 1.4rem;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: #54d9e8;
    font-size: 2rem;
    font-weight: 700;
    content: counter(count, decimal-leading-zero);
}

#toc .chapter .chapter-h a {
    color: inherit;
    text-decoration: none;
}

#toc .chapter .chapter-h a:hover {
    opacity: 0.7;
}

#toc li.chapter-h.chapter-h-three {
    margin: 0.5rem 0 0.5rem 4rem;
    padding: 0 0 0 1.5rem;
    font-size: 1.5rem;
    counter-increment: none;
}

#toc li.chapter-h.chapter-h-three::before {
    position: absolute;
    left: 0;
    top: 0.7rem;
    transform: rotate(180deg);
    width: 0.8rem;
    height: 0.8rem;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    content: "";
}

#toc li.chapter-h.chapter-h-three a {
    font-weight: normal;
}

#toc li.chapter-h.chapter-h-three span {
    font-weight: 400;
}

#toc .chapter br {
    display: none;
}


/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
#related-article p:not([class]) {
    margin: 0;
}

#related-article.related-article01-frame {
    position: relative;
    margin: 6rem auto;
    padding: 4rem 5rem;
    background: #f4f4f4;
}

#related-article .related-article01-title {
    padding: 0 0 0 3rem;
    background: url(img/icon-gear.svg) no-repeat left calc(50% + 0.2rem);
    background-size: 2.2rem auto;
    color: var(--site-color03);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
}

#related-article .related-article01-list {
    margin: 1rem 0 0 0;
    padding: 0 2rem;
    border-top: 1px solid var(--site-color03);
}

#related-article .related-article01-list li {
    position: relative;
    margin: 2rem 0 0 0;
    padding: 0 0 0 2.8rem;
    font-weight: 700;
    line-height: 1.4;
}

#related-article .related-article01-list li::before {
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #54d9e8;
    border-radius: 50%;
    content: "";
}

#related-article .related-article01-list li+li {
    margin: 1rem 0 0 0;
}

#related-article .related-article01-list a {
    text-decoration: none;
}

#related-article .related-article01-list a:hover {
    opacity: 0.6;
}

/*------------------------------------------------------------
SP settings
*/
@media screen and (max-width: 767px) {

    .onb-index01-wrap {
        padding: var(--s1) var(--s2);
    }

    .onb-index01-content {
        padding: 0 0 2rem 0;
    }

    #toc {
        margin: 1rem 0 0 0;
        padding: 2rem;
    }

    #toc .chapter {
        margin: 0;
        padding: 0;
    }

    #toc .chapter .chapter-h {
        margin: 1rem 0;
        padding: 0 0 0 3rem;
        font-size: 1.4rem;
        line-height: 1.6;
    }

    #toc ul.chapter .chapter-h::before {
        top: 1rem;
        font-size: 1.8rem;
    }

    #toc li.chapter-h.chapter-h-three {
        margin: 0.5rem 0 0.5rem 3rem;
    }

    #toc li.chapter-h.chapter-h-three::before {
        top: 0.7rem;
        width: 6px;
        height: 6px;
    }

    #toc li.chapter-h-three+.chapter-h-two {
        margin-top: 2rem;
    }

  #toc .onb-index01-chapter-h-two{
    margin-bottom: var(--s1);
  }

  .onb-index01-title{
    font-size: 1.8rem;
  }
    .main-index .block-toc {
        margin: 0 auto;
        padding: 0 0 1rem 0;
    }

    .block-toc .accordion-btn {
        width: 90%;
        min-height: 6rem;
        margin: 0 auto 3rem auto;
        font-size: 1.5rem;
    }


    /*--------------------------------------
related
---------------------------------------*/
    #related-article.related-article01-frame {
        margin: 3rem auto;
        padding: 2rem;
    }

    #related-article .related-article01-title {
        font-size: 1.8rem;
    }

    #related-article .related-article01-list {
        margin: 1rem 0 0 0;
        padding: 0 1rem;
    }

    #related-article .related-article01-list li {
        padding: 0 0 0 2rem;
    }

    #related-article .related-article01-list li::before {
        top: 0.6rem;
    }

    #related-article .related-article01-list a:hover {
        opacity: 1;
    }
}


/*--------------------------------------
common
---------------------------------------*/
p:not([class])>span:not([class]),
li:not([class])>span:not([class]),
td:not([class])>span:not([class]),
span.marker {
    border-bottom: 4px solid #bfe854;
    font-weight: 700;
}

table th,
table td {
    word-break: break-all;
}
.sp-table-vertical table td,
.sp-table-vertical table th {
    line-height: 1.5;
  border: 1px solid #e0e8e9;
}

.l-scroll-x-sp {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow: hidden;
    overflow-x: scroll;
    overflow-y: visible;
}

.l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
}

.l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
}

.l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
}

/*2025.02.26*/
.table-wrapper {
    cursor: grab;
    user-select: none;
}

.table-wrapper:active {
    cursor: grabbing;
}



/*--------------------------------------
mainvisual
---------------------------------------*/
.mainvisual {
    min-height: 71rem;
    padding: 15rem 0 10rem 0;
    background: rgb(249, 251, 248);
    background: -webkit-linear-gradient(0deg, rgba(249, 251, 248, 1) 0%, rgba(231, 252, 254, 1) 100%);
    background: linear-gradient(0deg, rgba(249, 251, 248, 1) 0%, rgba(231, 252, 254, 1) 100%);
}

.mainvisual .mv-inner {
    position: relative;
    width: 110rem;
    margin: 0 auto;
    z-index: 2;
}

.mainvisual .mv-inner::before {
    position: absolute;
    right: calc(100% - 8rem);
    top: -8rem;
    width: 38.8rem;
    height: 55.6rem;
    background: url(img/mv_bg_01.png) no-repeat left top;
    background-size: contain;
    content: "";
    z-index: -1;
}

.mainvisual .mv-inner::after {
    position: absolute;
    left: 44rem;
    top: -10rem;
    width: 104.6rem;
    height: 62.8rem;
    background: url(img/mv_bg_02.png) no-repeat left top;
    background-size: contain;
    content: "";
    z-index: -1;
}

.mainvisual .mv-sitename {
    position: relative;
    width: 66rem;
    margin: 0;
}

.mainvisual .mv-title {
    position: relative;
    color: #0376c6;
    font-size: 5.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.mainvisual .mv-title>span {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.1rem 1.5rem 0.4rem 1.5rem;
    background: #00c8df;
    color: #fff;
    font-size: 3.2rem;
}

.mainvisual .mv-title span span {
    color: #0da4e8;
}

.mainvisual .mv-txt {
    width: 52rem;
}

.mainvisual .mv-txt p:not([class]) {
    margin: 2rem 0 0 0;
}

.mainvisual .mv-txt p:not([class])>span {
    border-bottom: 4px solid #bfe854;
    font-weight: 700;
}

.mainvisual-lower {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 20rem;
    background: url(img/mv_bg_03.png) no-repeat center center;
    background-size: cover;
    text-align: center;
}

.mainvisual-lower .mv-logo {
    width: 25rem;
}

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

    .mainvisual {
        min-height: auto;
        padding: 5rem 0;
    }

    .mainvisual .mv-inner {
        width: 100rem;
    }

    .mainvisual .mv-inner::before {
        position: absolute;
        right: calc(100% - 6rem);
        top: -1rem;
        width: 23.2rem;
        height: 33.2rem;
        background: url(img/mv_bg_01.png) no-repeat left top;
        background-size: contain;
        content: "";
        z-index: -1;
    }

    .mainvisual .mv-inner::after {
        position: absolute;
        left: 49rem;
        top: -1rem;
        width: 60.3rem;
        height: 44rem;
        background: url(img/mv_bg_02.png) no-repeat left top;
        background-size: contain;
        content: "";
        z-index: -1;
    }

    .mainvisual .mv-sitename {
        width: 60rem;
    }

    .mainvisual .mv-title {
        position: relative;
        color: #0376c6;
        font-size: 4.8rem;
        font-weight: 700;
        line-height: 1.4;
    }

    .mainvisual .mv-title>span {
        display: inline-block;
        margin: 1.5rem 0;
        padding: 0.1rem 1.2rem 0.4rem 1.2rem;
        background: #00c8df;
        color: #fff;
        font-size: 2.8rem;
    }
}

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

    .mainvisual {
        min-height: auto;
        padding: calc(37% + 1rem) 1.5rem 3rem 1.5rem;
        background: url(img/mv_bg_05.png) no-repeat center top, url(img/mv_bg_06.png) no-repeat center top, #f9fbf8;
        background-size: 100% auto;
        position: relative;
    }

    .mainvisual:before{
      content: "";
      position: absolute;
      background: url(/wp/wp-content/uploads/logo.png) no-repeat;
      background-size: 18rem;
      width: 50%;
      top: 3rem;
      bottom: 0;
      left: 10rem;
    }

    .mainvisual .mv-inner {
        width: 100%;
    }

    .mainvisual .mv-inner::before {
        display: none;
        content: non;
    }

    .mainvisual .mv-inner::after {
        display: none;
        content: non;
    }

    .mainvisual .mv-sitename {
        width: 100%;
    }

    .mainvisual .mv-title {
        font-size: 2.4rem;
    }

    .mainvisual .mv-title>span {
        margin: 0 0 0.5rem 0;
        padding: 0.3rem 1rem 0.6rem 1rem;
        background: #00c8df;
        font-size: 1.6rem;
    }

    .mainvisual .mv-txt {
        width: 100%;
    }

    .mainvisual .mv-txt p:not([class]) {
        margin: 1em 0 0 0;
    }

    .mainvisual-lower {
        height: 10rem;
        background: url(img/mv_bg_03_sp.png) no-repeat center center;
        background-size: cover;
    }

    .mainvisual-lower .mv-logo {
        width: 18rem;
    }

    .mainvisual-lower .mv-logo {
     display: block;
    }


  /*2025.03.04*/
.sp-table-vertical table td,
.sp-table-vertical table th {
  border-top: 0;
}
.sp-table-vertical.custom table th {
  width:100%;
}
}


/*--------------------------------------
sec01
---------------------------------------*/
.sec01 {
    padding: 5rem 0 10rem 0;
    background: #a6d3ec url(img/sec01_bg_01.png) no-repeat center top;
    background-size: 100% auto;
}

.sec01 .section-title07-frame::before {
    background: url(img/en_recommended.png) no-repeat center top;
    background-size: contain;
}

.sec01.lower {
    margin: 10rem 0 0 0;
    padding: 8rem 0 10rem 0;
}

.sec01 .l-grid-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sec01 .l-grid-three::after {
    display: block;
    width: calc((100% - 6rem) / 3);
    content: "";
}

.sec01 .column-small {
    display: block;
    width: calc((100% - 6rem) / 3);
    padding: 0 2rem 5rem 2rem;
    background: #fff;
    border-radius: 2.4rem;
}

.sec01 .arrow-title {
    margin: 0 -2rem;
}

.sec01 .arrow-title span {
    display: inline-block;
    margin: 0.5rem 0 0 0;
    padding: 0.1rem 1rem 0.2rem 1rem;
    background: #bfe854;
    color: #222;
    font-size: 1.8rem;
}

.sec01 .thb-m-title04-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3.5rem 0 2.5rem 0;
}

.sec01 .thb-m-title04 {
    color: #373a3c;
  font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
}
.microcopy {
  display: block;
  font-weight: bold;
  color: #d9534f; /* アテンションカラー（赤系など） */
  font-size: 0.9em;
  margin-bottom: 4px;
  text-align: center;
}
.sec01 .thb-m-title04 span {
    font-size: 1.6rem;
}

.sec01 .thb-listbox-area {
    position: relative;
    margin: 4rem 0 0 0;
    padding: 0 2rem 2rem 2rem;
    background: #f9f9ec;
}

.sec01 .thb-listbox-title {
    display: inline-block;
    position: relative;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
    padding: var(--s1) var(--s3);
    background: var(--site-color03);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.sec01 .title-catch {
    margin: 4rem 0 1.5rem 0;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid var(--site-color03);
    color: var(--site-color03);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.sec01 ul:not([class]) {
    margin: 0;
    padding: 0;
}

.sec01 .btn-web {
    margin: 4rem auto 0 auto;
}

.sec01 .btn-web a {
    font-size: 1.6rem;
}

.sec01 p.note {
    margin: 2rem 0 0 0;
    color: #696969;
}

@media screen and (max-width: 767px) {
    .sec01 p.note {
        font-size: 1.3rem;
    }

    .sec01 {
        padding: 0 0 5rem;
    }

    .sec01.lower {
        margin: 5rem 0 0 0;
        padding: 5rem 0;
    }

    .sec01 .l-grid-three {
        display: block;
    }

    .sec01 .l-grid-three::after {
        display: none;
        content: none;
    }

    .sec01 .column-small {
        display: block;
        width: 100%;
        margin: 0 0 3rem 0;
    }

    .sec01 .column-small:last-child {
        margin: 0;
    }

    .sec01 .btn-tel {
        margin: 3rem auto 0 auto;
    }
}


/*--------------------------------------
sec02
---------------------------------------*/
.sec02 {
    padding: 12rem 0;
    background: url(img/sec02_bg_01.jpg) no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
}

.sec02 .section-title07-frame::before {
    background: url(img/en_indetails.png) no-repeat center top;
    background-size: contain;
}

.sec02 .section-title07 {
    margin: 0 0 12rem 0;
}

.sec02 .column-medium {
    position: relative;
    margin: 0 0 12rem 0;
    padding: 0 5rem 5rem 5rem;
    background: #fff;
}

.sec02 .column-medium:last-child {
    margin: 0;
}

.sec02 .onb-box-full {
    position: relative;
    min-width: 66rem;
    margin: -6rem auto 0 auto;
    padding: 2rem 2rem 2.5rem 2rem;
    background: var(--site-color03);
    border-radius: 2rem;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.sec02 .onb-box-full::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 1.5rem solid transparent;
    border-left: 1.5rem solid transparent;
    border-right: 1.5rem solid var(--site-color03);
    border-bottom: 1.5rem solid var(--site-color03);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    left: 50%;
    bottom: -1.3rem;
}

.sec02 .onb-box-full span {
    display: inline-block;
    padding: 0.1rem 1rem 0.2rem 1rem;
    background: #bfe854;
    color: #222;
    font-size: 2.5rem;
}

.sec02 .onb-m-title5 {
    color: #373a3c;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
}

.sec02 .onb-m-title5 span {
    font-size: 1.4rem;
}

.sec02 .l-grid-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sec02 .l-grid-three::after {
    display: block;
    width: calc((100% - 4rem) / 3);
    content: "";
}

.sec02 .l-grid-three .l-stack-small {
    width: calc((100% - 4rem) / 3);
    margin: 0 0 4rem 0;
    padding: 2rem;
    background: #eff6f7;
    border-radius: 2rem;
}

.sec02 .l-grid-three .onb-iconbox03-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 2rem 0;
    color: var(--site-color03);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.sec02 .l-grid-three .onb-iconbox03-img,
.sec02 .l-grid-three .onb-iconbox03-img+.caption {
    text-align: center;
}

.sec02 .l-grid-three .onb-iconbox03-img img {
    width: auto;
    max-height: 14rem;
}

.sec02 .l-grid-three p:not([class]) {
    margin: 1em 0 0 0;
}

/*2025.02.26*/
@media screen and (min-width: 768px) {
.sec02 .l-grid-three .onb-iconbox03-frame p {
    min-height: 200px;
}
}
.sec02 .fig-wrap {
    min-height: 200px;
}

/*2025.02.26 END*/

.sec02 table th {
    width: 22rem;
}

.acc-list-frame {
    border: 1px solid #eff6f7;
}

.acc-list-title {
    background-color: var(--site-color06);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--site-color03);
}

.acc-list-content {
    padding: 0 var(--s3);
}

.acc-list div:not([class]) {
    padding: var(--s2);
    display: flex;
    border-bottom: 1px solid #eff6f7;
}

.acc-list div:last-child {
    border: none;
}

.acc-list .caption {
    font-weight: 400;
    text-align: left;
}

.acc-list div dt {
    font-size: 1.8rem;
    font-weight: 700;
}

.acc-list div dt {
    width: 32%;
    padding: 0 2rem 0 0;
}

.acc-list div dd {
    width: 68%;
    font-size: 1.6rem;
}

.acc-list div dd span {
    font-size: 1.4rem;
}

.more-content-gradation {
    position: relative;
    height: auto;
    max-height: 24rem;
    overflow: hidden;
    transition: max-height 1s;
}

.more-content-gradation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}

.more-content-gradation.is-open::after {
    display: none;
}

.acc-list-more-btn {
    max-width: 32rem;
    margin: 0 auto;
    position: relative;
    transform: translate3d(0, 0, 0);
}

.acc-list-more-btn span {
    width: 100%;
    margin: var(--s5) auto;
    padding: 2rem 6rem;
    border: 3px solid #54d9e8;
    border-radius: 4rem;
    background: url('./img/acc-off.svg') no-repeat 95% center #fff;
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 1;
}

.acc-list-more-btn.is-open span {
    background: url('./img/acc-on.svg') no-repeat 95% center #fff;
}

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


    .sec02 {
        padding: 5rem 0;
    }

    .sec02 .section-title07 {
        margin: 0 0 6rem 0;
    }

    .sec02 .column-medium {
        padding: 0 1.2rem 3rem 1.2rem;
        gap: var(--s2);
    }

    .sec02 .onb-box-full {
        position: relative;
        min-width: auto;
        max-width: 96%;
        margin: -3rem auto 0 auto;
        padding: 1.5rem 1rem;
        font-size: 2rem;

    }

    .sec02 .onb-box-full span {
        font-size: 1.8rem;
        margin-top: var(--s1);
    }

    .sec02 .onb-m-title5 {
        font-size: 2.4rem;
        margin: var(--s2) 0;
    }

    .sec02 .l-grid-three {
        display: block;
    }

    .sec02 .l-grid-three::after {
        display: none;
        content: none;
    }

    .sec02 .l-grid-three .l-stack-small {
        width: 100%;
        margin: 0 0 3rem 0;
    }

    .sec02 .l-grid-three .onb-iconbox03-sub {
        font-size: 1.8rem;
    }

    .sec02 table th {
        width: 12rem;
    }

    .sec02 .btn-web,
    .sec02 .btn-tel {
        margin: 0 auto 1.5rem auto;
    }

    .acc-list-more-btn span {
        transition: none;
        transform: none;
    }

    .acc-list-more-btn:hover span {
        transform: none;
    }

    /*2025.02.26*/
    .sec02 .acc-list div:not([class]) {
        flex-direction: column;
    }

    .sec02 .acc-list div dt {
        width: 100%;
        padding: 0;
    }

    .sec02 .acc-list div dd {
        width: 100%;
    }

}


/*--------------------------------------
sec03
---------------------------------------*/
.sec03 {
    margin: 20rem 0 0 0;
    padding: 0 0 10rem 0;
    background: url(img/sec03_bg_01.jpg) no-repeat center top;
    background-size: cover;
}

.sec03 .section-title07-frame {
    margin: -3.5rem 0 0 0;
}

.sec03 .section-title07-frame::before {
    background: url(img/en_comparison.png) no-repeat center top;
    background-size: contain;
}

.simplified-chart-spfix-cpt {
    margin-bottom: 1rem;
    display: block;
    padding: var(--s2);
    background: rgba(255, 255, 255, 0.43);
    text-align: center;
    font-weight: 700;
    border-radius: 2rem;
}

.l-scroll-x-sp .simplified-chart-spfix {
    width: inherit;
    border: none;
}

.l-scroll-x-sp .simplified-chart-spfix th,
.l-scroll-x-sp .simplified-chart-spfix td {
    min-width: 20rem;
}

.l-scroll-x-sp .simplified-chart-spfix th:first-child {
    min-width: 20rem;
    position: sticky;
    left: 0;
    z-index: 10;
}

.simplified-chart-spfix {
    border-collapse: collapse;
    will-change: transform;
}

.simplified-chart-spfix th,
.simplified-chart-spfix td {
    min-width: 20rem;
    padding: var(--s2) var(--s1);
    line-height: 1.4;
    border: 1px solid #818181;
    text-align: center;
}

.simplified-chart-spfix td span.num {
    color: var(--site-color03);
    font-weight: 700;
}

.simplified-chart-spfix th {
    background-color: #eff6f7;
    color: #373a3c;
    text-align: center;
}

.simplified-chart-spfix tr:nth-child(1) td {
    background: none;
    border: none;
}

.simplified-chart-spfix tr:nth-child(1) th {
    background-color: var(--site-color03);
    color: #fff;
    vertical-align: text-top;
}

.simplified-chart-spfix tr:nth-child(1) th .fig {
    margin: 1rem 0;
}

.simplified-chart-spfix tr:nth-child(1) th .fig img {
    width: auto;
    max-height: 8rem;
}

.simplified-chart-spfix tr:nth-child(1) th .caption {
    color: #fff;
    font-weight: 400;
}

.simplified-chart-spfix td {
    background-color: #fff;
}

.simplified-chart-spfix td .font-large {
    font-size: 2.1rem;
}

.simplified-chart-spfix td .font-small {
    font-size: 1.2rem;
}

.simplified-chart-spfix-img {
    text-align: center;
}

.simplified-chart-spfix .btn-web {
    margin: 0 auto;
}

.simplified-chart-spfix .btn-web a {
    min-height: auto;
    padding: 2rem 5rem 2rem 3rem;
    font-size: 1.6rem;
}

.simplified-chart-spfix tr.type td {
    vertical-align: top;
}

.simplified-chart-spfix .label {
    font-weight: 700;
}

.simplified-chart-spfix .label span {
    padding: 0 0.3rem 0 0;
    color: #0080d9;
    font-size: 2.5rem;
}

.simplified-chart-spfix .tags {
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.simplified-chart-spfix .tags .tag {
    display: inline-block;
    margin: 0 0.6rem 0.8rem 0;
    padding: 0.2rem 1rem 0.4rem 1rem;
    border: 1px solid #54d9e8;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
    .sec03 {
        margin: 8rem 0 0 0;
        padding: 0 0 5rem 0;
    }

    .sec03 .section-title07-frame {
        margin: -2rem 0 0 0;
    }

    .l-scroll-x-sp .simplified-chart-spfix th:first-child,
    .l-scroll-x-sp .simplified-chart-spfix tr:nth-child(1) td,
    .l-scroll-x-sp .simplified-chart-spfix th[scope="row"] {
        min-width: 12rem;
        width: 10rem;
    }

    .simplified-chart-spfix .btn-web a {
        padding: 2rem 5rem 2rem 2rem;
        background-position: right 1.5rem center;
        font-size: 1.5rem;
    }
}


/*--------------------------------------
sec04
---------------------------------------*/
.sec04 {
    padding: 10rem 0;
}

.sec04 table th{
  background-color: #d5e6e8;  
}


.sec04 .section-title07-frame::before {
    background: url(img/en_list.png) no-repeat center top;
    background-size: contain;
}

.onb-more-btn {
    max-width: 46rem;
    width: 100%;
    margin: 4rem auto;
    position: relative;
}

.onb-more-btn span {
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 6rem;
    border: 3px solid #54d9e8;
    border-radius: 4rem;
    background: url('./img/acc-off.svg') no-repeat 95% center #fff;
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    transform: translate(0, 0);
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 1;
}

.onb-more-btn.is-open span {
    background: url('./img/acc-on.svg') no-repeat 95% center #fff;
}

.more-content {
    display: none;
}

.sec04 .column-small {
    padding: 0 2rem 3rem 2rem;
    background: #eff6f7;
    border-radius: 2.1rem;
}

.sec04 .column-small .m-title02 {
    margin: 0 -2rem 3rem -2rem;
    padding: 2rem;
/* font-size: 2.1rem; */
  font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    background-color: var(--site-color03);
    border-radius: 2rem 2rem 0 0;
}

.sec04 .column-small .m-title02 a {
    display: block;
    padding: 0 3rem 0 0;
    background: url(img/arrow01-white.png) no-repeat right center;
    background-size: 35px auto;
    color: inherit;
    text-decoration: none;
  min-height: 3.5rem;
}

.sec04 .column-small .m-title02 a:hover {
    opacity: 0.7;
}

.sec04 .column-small table {
    margin: 2rem 0 0 0;
}

.sec04 .column-small table th,
.sec04 .column-small table td {
    padding: 0.8rem;
}

.sec04 .column-small table th {
    width: 12rem;
}

.sec04 .column-small .onb-more-btn {
    margin: 3rem auto 0 auto;
}

.sec04 .column-small .btn-link {
    margin-top: 1.5rem;
    margin-bottom: 0;
}
/*2025.03.04*/
.sec04 .column-small table td,
.sec04 .column-small table th{
line-height: 1.4;
}

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

    .sec04 {
        padding: 5rem 0;
    }

  .sec04 .column-small .m-title02 a{
    background-size: 3rem auto;
  }

    .onb-more-btn {
        max-width: 90%;
    }

    .onb-more-btn span {
        transition: inherit;
        transform: none;
        font-size: 1.5rem;
    }

    .onb-more-btn:hover span {
        transform: none;
    }
}


/*--------------------------------------
sec05
---------------------------------------*/
.sec05 {
    padding: 0 0 10rem 0;
}

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

    .sec05 {
        padding: 0 0 5rem 0;
    }
}


/*--------------------------------------
sec06
---------------------------------------*/
.sec06 {
    padding: 10rem 0 8rem 0;
    background: #f1f8f9 url(img/sec06_bg_01.png) no-repeat left top;
    background-size: 100% auto;
}

.sec06 .section-title07-frame::before {
    background: url(img/en_cost.png) no-repeat center top;
    background-size: contain;
}

.sec06 .l-grid-two {
    width: 86%;
    margin: 8rem auto 0 auto;
    grid-gap: 0;
}

.sec06 .column-medium {
    padding: 0 2rem;
}

.twb-iconbox01-area {
    margin: 0 0 3rem 0;
    padding: var(--s3);
    background: #0376c6;
    position: relative;
    color: #fff;
    border-radius: 2rem;
}

.twb-iconbox01-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 2rem 0;
    padding-bottom: var(--s2);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #fff;
}

.twb-iconbox01-title a {
    display: block;
    width: 100%;
    min-height: 3.5rem;
    padding: 0 4rem 0 0;
    background: url(img/arrow01-white.png) no-repeat right center;
    background-size: 35px auto;
    color: inherit;
    text-decoration: none;
}

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

    .sec06 {
        padding: 5rem 0 4rem 0;
        background-size: 150% auto;
    }

    .sec06 .l-grid-two {
        width: 100%;
        margin: 3rem auto 0 auto;
    }

    .sec06 .column-medium {
        padding: 0;
    }

    .twb-iconbox01-title a {
        display: block;
        min-height: 3rem;
        padding: 0 4rem 0 0;
        background-size: 3rem auto;
    }
}


/*--------------------------------------
sec07
---------------------------------------*/
.sec07 {
    padding: 10rem 0 5rem 0;
}

.sec07 .section-title07-frame::before {
    background: url(img/en_list.png) no-repeat center top;
    background-size: contain;
}

@media screen and (max-width: 767px) {
    .sec07 {
        padding: 5rem 0 2rem 0;
    }
}


/*--------------------------------------
sec08
---------------------------------------*/
.sec08 {
    padding: 10rem 0 5rem 0;
}

.sec08 .twb-m-title02 a{
  background-size: 3rem auto;
}

.sec08 .section-title07-frame::before {
    background: url(img/en_attempt.png) no-repeat center top;
    background-size: contain;
}

@media screen and (max-width: 767px) {
    .sec08 {
        padding: 5rem 0 2rem 0;
    }
}