html{
    scroll-behavior: smooth;
    font-family: "Noto Sans JP";
}
html,body {
    padding: 0;
    margin: 0;
}
body, article{
    position: relative;
    z-index: -1;
}
.wrap{
    width: 100%;
    contain: paint;
    overflow: hidden;
}
h1 , h2, h3 ,p ,dd{
    margin: 0;
}
p, ul, dl, dd {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
/* wbr */
.wbr {
word-break: keep-all;
overflow-wrap: break-word;
}

:root {
    --black: rgb(0, 0, 0);
    --white: rgb(255, 255, 255);
    --grey: rgb(233, 231, 231);
    --lightgrey: rgb(240, 240, 240);
    --darkgrey: rgb(77, 77, 77);
    --blue: rgb(29, 23, 128);

    --black-transparent: rgba(0, 0, 0, 0.3);
    --white-transparent: rgba(255, 255, 255, 0.8);

    --main: rgb(0, 127, 159);
    --sub: rgb(76, 170, 187);
}
.back-white { background: var(--white);}
.back-lightgrey { background: var(--lightgrey)}
.back-main { background: var(--main);}
.back-sub { background: var(--sub);}

.text-white {color: var(--white);}
.text-darkgrey {color: var(--darkgrey);}
.text-main {color: var(--main);}
.text-sub {color: var(--sub);}

/*renewup_link_btn*/
.renewup_link_btn {
    font-size: 140%;
    width: fit-content;
    padding: 0.25em 0.35em 0.25em 1em;
    display: flex;
    gap: 1em;
    align-items: center;
    border-radius: 100px;
    transition: all 0.3s;
}
.renewup_link_btn:hover {
    transform: scale(1.05);
}
.renewup_link_btn .startup_arrow {
    background: var(--white);
    width: 2em;
    height: 2em;
    border-radius: 50%;
    position: relative;
}
.renewup_link_btn .startup_arrow::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-top: solid 3px var(--main);
    border-right: solid 3px var(--main);
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------

header

--------------------------------------------*/
.header_bottom{
    height: 90vh;
    height: 90svh;
    padding-top: 60px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url(../../../images/service/renewup/header_bottom.webp);
    background-color: var(--black-transparent);
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}
.header_bottom::before {
    content: "";
    width: 200vw;
    height: 100vw;
    border-radius: 50%;
    background: var(--lightgrey);
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.header_bottom__inner {
    max-width: 1350px;
    width: 90%;
    margin: 0 auto;
}
.header_bottom__inner h1 {
    font-size: 350%;
    line-height: 1.5em;
    padding-bottom: 1em;
    text-shadow: 2px 2px 2px rgba(39, 73, 86, 0.5);
}

/*--------------------------------------------

wrap

--------------------------------------------*/
.article_view {
    font-size: 140%;
    padding-bottom: 10em;
}
.article_view:nth-last-of-type(even){
    background: var(--lightgrey);
}
.article_view:nth-last-of-type(odd){
    background: var(--white);
}
.article_view__inner {
    max-width: 1350px;
    width: 90%;
    padding-top: 10em;
    margin: 0 auto;
}
.article_view__inner h2 {
    font-size: 200%;
    padding-bottom: 1em;
    margin-bottom: 2em;
    text-align: center;
    position: relative;
}
.article_view__inner h2::before {
    content: "";
    width: 3em;
    height: 0.25em;
    background: var(--main);
    border-radius: 100px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.article_view__inner img {
    border-radius: 1em;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}


/*--------------------------------------------

first_view

--------------------------------------------*/
/*--------------------------------------------
overview
--------------------------------------------*/
#overview.article_view__inner {
    padding-top: 5em;
}
.overview_content {
    display: flex;
    align-items: flex-start;
    gap: 2em;
}
.overview_content > * {
    width: calc(50% - 2em / 1);
}
.overview_content dt {
    font-size: 140%;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: solid 2px var(--sub);
}
.overview_content dd {
    line-height: 2em;
}




/*--------------------------------------------

second_view

--------------------------------------------*/
/*--------------------------------------------
merit
--------------------------------------------*/
#merit > p {
    text-align: center;
    line-height: 2em;
    margin-bottom: 2em;
}
.merit_content {
    display: flex;
    flex-direction: column;
    gap: 3em;
}
.merit_content__inner {
    display: flex;
    align-items: flex-start;
    gap: 2em;
    padding: 2em;
    border-radius: 3em;
}
.merit_content__inner dl {
    width: calc(55% - 2em / 2);
}
.merit_content__inner dt {
    font-size: 150%;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    align-items: flex-start;
    padding-bottom: 0.75em;
    margin-bottom: 0.75em;
    border-bottom: solid 3px var(--sub);
}
.merit_content__inner dt span {
    font-size: 75%;
    padding: 0.25em 1em;
    border-radius: 100px;
    display: inline-block;
}
.merit_content__inner dd {
    line-height: 2em;
}
.merit_content__inner img {
    width: calc(45% - 2em / 2);
}

/*--------------------------------------------
merit_flex
--------------------------------------------*/
.merit_flex {
    max-width: 810px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    margin-top: 6em;
}
.merit_flex > span {
    font-size: 200%;
    font-weight: 900;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -1em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.merit_flex__content {
    padding: 2em;
    border-radius: 2em;
}
.merit_flex__content > dt {
    font-size: 140%;
    padding-bottom: 1em;
    text-align: center;
    font-weight: 600;
}

.merit_flex__item:first-child {
    padding-bottom: 2em;
    margin-bottom: 2em;
    border-bottom: dotted 4px var(--white);
}
.merit_flex__item dt {
    font-size: 110%;
    font-weight: 700;
    padding: 0.25em 1em;
    border-radius: 300px;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1em;
}
.merit_flex__item ul li {
    position: relative;
    padding-left: 1.5em;
}
.merit_flex__item ul li::before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 0.75em;
    height: 0.75em;
    background: var(--white);
    border-radius: 50%;
}

/*--------------------------------------------

third_view

--------------------------------------------*/
/*--------------------------------------------
support
--------------------------------------------*/
.support_content {
    padding: 3em 0;
    padding-top: 0;
    border-radius: 3em;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    margin: 0 auto;
    margin-bottom: 3em;
}
.support_content:last-child {
    margin-bottom: 0;
}
.support_content h3 {
    font-size: 175%;
    background: var(--main);
    color: var(--white);
    padding: 1em;
    text-align: center;
    width: 100%;
}
.support_content__inner {
    padding: 0 2em;
}

.support_content__list {
    display: flex;
    gap: 1.5em;
    margin: 0 2em;
    margin-top: 3em;
    padding: 2em;
    border-radius: 1em;
}

/*support_content__inner__4*/
.support_content__inner__4 {
    width: calc(100% - 4em);
    margin: 0 auto;
    border-radius: 1em;
    box-sizing: border-box;
    padding: 1.5em;
}
.support_content__inner__4 h4 {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    padding: 0.5em 1em;
    border-radius: 100px;
    margin-bottom: 1em;
}


/*--------------------------------------------
flow
--------------------------------------------*/
.flow_content {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em
}
.flow_content__inner {
    width: calc(50% - 1.5em / 2);
    border-radius: 1em;
    padding: 2em;
    box-sizing: border-box;
}
.flow_content__inner hgroup {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
    margin-bottom: 1.5em;
}
.flow_content__inner hgroup h3 {
    font-size: 150%;
}
.flow_content__inner hgroup p {
    width: 1.5em;
    height: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.05em;
    font-size: 200%;
    line-height: 1em;
    font-weight: 700;
    padding: 0.5em;
}
.flow_content__inner hgroup p small {
    font-size: 50%;
    line-height: 1em;
}
.flow_content__inner > p {
    line-height: 2em;
}
#flow .renewup_link_btn {
    margin: 0 auto;
    margin-top: 3em;
}

/*--------------------------------------------

fourth_view

--------------------------------------------*/
/*--------------------------------------------
cost
--------------------------------------------*/
#cost p {
    text-align: center;
}
.cost_content {
    width: fit-content;
    position: relative;
    padding: 2em;
    border-radius: 2em;
    margin: 0 auto;
    margin-top: 5em;
}
.cost_content span {
    font-size: 200%;
    font-weight: 900;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -1em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.cost_content span svg {
    width: auto;
    height: 1em;
    fill: var(--main);
}
.cost_content h3 {
    text-align: center;
    font-size: 140%;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    border-bottom: dotted 4px var(--main);
    padding: 0.75em 0;
}

.cost_content__inner {
    max-width: 810px;
    width: 100%;
    margin: 0 auto;
    margin-top: 2em;
}
.cost_content__inner h4 {
    text-align: center;
    width: fit-content;
    padding: 0.25em 1em;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 1em;
}
.cost_content__inner div {
    border-radius: 1em;
    overflow: hidden;
}
.cost_content__inner div dl {
    display: flex;
    border-bottom: solid 1px var(--grey);
    padding: 0 1em;
}
.cost_content__inner div dt {
    width: 12em;
    border-right: solid 1px var(--grey);
    padding: 1em 0;
    flex-shrink: 0;
}
.cost_content__inner div dd {
    padding: 1em;
    padding-right: 0;
}
#cost .link_btn__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3em;
    justify-content: center;
    align-items: center;
    margin-top: 3em;
}