/* 共通箇所 */
html {
    visibility: hidden;
}
html.wf-active,
html.loading-delay {
    visibility: visible;
}

:root{
    --white:#fffffa;
    --base__color:#F9F9E0;
    --light__base:#FFFFF6;
    --heavy__base:#CCCCA0;
    --heavy__base2:#9a9a7e;
    --red:#E60A14;
    --deep__red:#BE191E;
    --logo__font:#585757;
    --font__color:#212121;
    --light__gray:#f2f2f2;
    --orange:#FFBC88;
    --heavy__orange:#EF7212;
    --pink:#EEB8B8;
    --heavy__pink:#E57575;
    --blue:#9CC0D1;
    --heavy__blue:#4D8098;
    --green:#ADD2A4;
    --heavy__green:#6BA25E;
    --box__shadow:rgba(135, 135, 135, 0.5);
}
h1{
    font-size: 3.052rem;
    line-height: 1.8em;
}
h2{
    font-size: 2.441rem;
    line-height: 1.3em;
}
h3{
    font-size: 1.953rem;
    line-height: 1.8em;
}
h4{
    font-size: 1.563rem;
    line-height: 1.8em;
}
h5{
    font-size: 1.25rem;
    line-height: 1.8em;
}
p{
    font-size: 1rem;
    line-height: 1.8em;
    letter-spacing: 0.04em;
}
small{
    font-size: 0.8rem;
    line-height: 1.8em;
}
.small{
    font-size: 0.8em;
    line-height: 1.8em;
}
.strong{
    font-size: 1.5em;
    font-weight: 700;
}
.br__hidden1300{
    display: none;
}
.br__hidden1000{
    display:none;
}
.br__hidden800{
    display:none;
}
.br__hidden550{
    display:none;
}
body{
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8em;
    color:var(--font__color);
}
main{
    overflow: hidden;
}
.title__wrap{
    width:100%;
    max-width: 1500px;
    padding:1em 0;
    margin:0 auto;
}
.title{
    width:fit-content;
    max-width: 80vw;
    padding:0.5em 2em;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 0.2em;
    z-index: 1;
    position: relative;
    margin:0 auto;
    color:var(--logo__font);
    background:var(--heavy__base);
    border-radius: 2em;
    text-align: center;
}
.left__button{
    display:flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color:var(--logo__font);
    width:50px; height: 50px;
    border-radius: 50%;
    background:rgba(250, 250, 250, 0.8);
    position:absolute;
    top:45%; left:-10px;
    z-index:1;
}
.right__button{
    display:flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color:var(--logo__font);
    width:50px; height: 50px;
    border-radius: 50%;
    background:rgba(250, 250, 250, 0.8);
    position:absolute;
    top:45%; right:-10px;
    z-index:1;
}
.scroll{
    -webkit-overflow-scrolling: touch;
}
.back__line5{
    font-size: 1.8em;
    font-weight: 700;
    color:var(--deep__red);
}
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊装飾＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.bold{
    font-weight: 700;
}
.heading__red{
    color:var(--deep__red);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 1.2em;
}
.back__line2{
    font-weight: 500;
    font-size: 1.2em;
    background: linear-gradient(135deg,#ffb049 0%,#ffa041 100%);
    background-repeat: no-repeat;
    background-position:-1000px 90%;
    background-size: 100% 35%;
}
.animation__back__line2{
    animation:animation__back__line2  0.8s linear 0.1s forwards;
}
@keyframes animation__back__line2 {
    0%{
        background-position:-1000px 100%;
    }
    100%{
        background-position:center 100%;
    }
}
.under__line3{
    position: relative;
    padding-bottom: 1px;
    font-weight: 700;
}
.under__line3::before {
    background: linear-gradient(135deg,#ffc014 0%, #ff4116 100%);
    background-repeat: no-repeat;
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
}
.under__line4{
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-skip-ink: none;
    text-underline-offset: 3px;
    text-decoration-color:var(--deep__red) ;
}
/* 共通アニメーション */
.pop__up{
    transform: translateY(50px);
    opacity: 0;
}
.animation__pop__up{
    animation:animation__pop__up 0.3s linear forwards;
}
@keyframes animation__pop__up {
    to{
        transform: translate(0);
        opacity: 1;
    }
}
.pop__on{
    transform:scale(0.9);
    opacity: 0;
}
.animation__pop__on{
    animation:animation__pop__on 0.3s linear forwards;
}
@keyframes animation__pop__on {
    to{
        transform: scale(1);
        opacity: 1;
    }
}
.pop__on2{
    opacity: 0;
}
.animation__pop__on2{
    animation:animation__pop__on2 0.3s linear forwards;
}
@keyframes animation__pop__on2 {
    to{
        opacity: 1;
    }
}
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊head部分＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.head{
    width:100%;
    height:fit-content;
    margin:0 auto;
    padding:50px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position:relative;
}
.head img{
    width:100%;
    max-height: 400px;
    object-fit: cover;
}
.head__inner{
    position:absolute;
    bottom:0; left:0;
    padding:1em ;
    width:100%;
    text-align: center;
}
.animation__head__title__bg{
    animation:mv__title__bg 0.5s cubic-bezier(0.8, 0, 0.170, 1) 0.2s forwards;
}
@keyframes mv__title__bg {
    to{
        background:rgba(255, 255, 255, 0.9);
        box-shadow: 0px -10px 20px var(--white);
    }
}
.head__inner h3{
    border-radius: 2em;
    font-weight: 500;
    opacity:0;
    transform: scale(0.9);
    font-size: clamp(1.2rem,2.5vw,2rem);
}
.head__inner h2{
    font-weight: 900;
    font-size: clamp(1.5rem,3.2vw,2.5rem);
    letter-spacing: 0.1em;
    opacity:0;
    transform: scale(0.9);
}
.animation__head__title__h3{
    animation:mv__title 0.5s cubic-bezier(0.8, 0, 0.170, 1) 0.8s forwards;
}
.animation__head__title__h2{
    animation:mv__title 0.5s cubic-bezier(0.8, 0, 0.170, 1) 1.2s forwards;
}
@keyframes mv__title {
    to{
        transform:scale(1);
        opacity: 1;
    }
}
.back__line{
    background: linear-gradient(50deg,#fff456 0%, #ff2f00 100%);
    background-repeat: no-repeat;
    background-position:-1000px 100%;
    background-size: 100% 35%;
    font-weight: 500;
    padding:0 0.5em;
}
.animation__head__back__line{
    animation: back__line 0.5s cubic-bezier(0.8, 0, 0.170, 1) 1.5s forwards;
}
@keyframes back__line{
    0%{
        background-position:-1000px 100%;
    }
    100%{
        background-position:center 100%;
    }
}
.contents__wrap{
    opacity: 0;
    transform: translateY(80px);
}
.animation__contents__wrap{
    animation: animation__contents__wrap 0.5s linear 1.9s forwards;
}
@keyframes animation__contents__wrap {
    to{
        opacity: 1;
        transform:translateY(0);
    }
}
/* メリットの部分 */
.merits{
    width:100%;
    max-width: 1500px;
    margin:0 auto 2em auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:1em 0 0 0 ;
    gap:2em;
}
.merit{
    width:1000px;
    display:grid;
    grid-template-columns: 200px 1fr;
    gap:2em;
    align-items: center;
    justify-content: center;
}
.merit img{
    width: 200px;
    height: 200px;
    background:var(--base__color);
    border-radius: 1em;
    padding:1em;
}
.merit__inner{
    width:100%;
    max-width: 800px;
}
.caption{
    margin-bottom: 0.3em;
}
.head p{
    letter-spacing: 0.2em;
    position: relative;
    padding:2em 2em 2em 5em;
    width:1000px;
    margin-left:auto;
}
.head p::after{
    content: "";
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(255, 253, 239, 0.8);
    z-index: -1;
    transform: skewX(45deg);
    border-left: 5px solid var(--deep__red);
    border-bottom: 3px solid var(--deep__red);
}
.summary{
    margin:0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--light__base);
    padding:2em 1em;
    border-top:3px solid var(--deep__red);
}
.summary__inner{
    width:100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 100px 1fr;
    justify-content: center;
    align-items: end;
    gap:2em;
}
.summary__pic{
    width:100%;
    height:300px;
    object-fit: cover;
    max-width: 1000px;
}
.summary__illust{
    width:100px;
    transform:scale(-1,1);
}
.summary p{
    letter-spacing: 0.2em;
    background: var(--base__color);
    padding:1em;
    border-radius: 1em;
    box-shadow: 0px 0px 10px var(--box__shadow);
}
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊撤去についてのページ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.mv{
    width:100%;
    max-width: 1500px;
    margin:0 auto;
    padding-top:2em;
}
.remove__explain{
    width:100%;
    max-width: 1300px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items:start;
    background: var(--base__color);
    padding:2em 1em;
    border-radius: 2em;
    gap:1em;
}
.center__arrow{
    padding-top:min(8vw,150px);
    text-align: center;
}
.remove__explain i{
    font-size: 5rem;
    margin:0 auto;
    color:var(--heavy__base);
}
.wrap1{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:1em;
    margin:0 auto;
}
.wrap1__inner{
    transform: scale(0.9);
    opacity: 0;
}
.animation__wrap1__inner{
    animation:animation__wrap1__inner 0.5s linear 2.2s forwards;
}
@keyframes animation__wrap1__inner {
    to{
        transform: scale(1);
        opacity: 1;
    }
}
.wrap1 i{
    transform:rotate(90deg);
}
.wrap2{
    background:var(--white);
    padding:2em 1em;
    border-radius: 1em;
    display:flex;
    flex-direction: column;
    gap:2em;
}
.wrap2__inner__wrap{
    display:flex;
    gap:1em;
}
.remove__explain__text{
    width:100%;
    display: flex;
    flex-direction: column;
    gap:1em;
    text-align: center;
    margin:2em auto;
}
.remove__explain__text p{
    font-size: min(3vw,1.5rem);
}
.remove__explain__text .back__line2{
    font-size: min(6vw,2.8rem);
}
.remove__explain__text img{
    width:100%;
    max-width: 700px;
    margin:0 auto;
}
.wrap1__inner{
    max-width: 700px;
    position:relative;
    padding:1em;
}
.wrap1__inner p{
    background:var(--heavy__base);
    color:var(--white);
    font-size: min(4vw,2rem);
    font-weight: 700;
    padding:0 1em;
    border-radius: 2em;
    text-shadow: 0 0 4px var(--font__color);
    letter-spacing: 0.1em;
    box-shadow: 0px 0px 10px var(--box__shadow);
}
.wrap1__inner img{
    width:100%;
    border-radius: 0 1em 0 1em;
    box-shadow: 0px 0px 20px var(--box__shadow);
}
.wrap1__inner p:nth-child(1){
    position:absolute;
    top:0; left:0;
}
.wrap1__inner p:nth-child(3){
    position:absolute;
    bottom:0; right:0;
}
.red{
    color:var(--deep__red);
    text-shadow: none;
}
.wrap2__inner{
    position:relative;
    padding:0 10% 0 0;
}
.wrap2__inner img{
    width:100%;
    border-radius: 2em;
    box-shadow: 0px 0px 20px var(--box__shadow);
}
.wrap2__inner .caption{
    width:fit-content;
    padding:0.5em 1em;
    background: linear-gradient(50deg,#fff456 0%, #ff2f00 100%);
    border-radius: 2em;
    font-size: min(2vw,1.8rem);
    font-weight: 700;
    text-shadow: 0 0 5px var(--font__color);
    color:var(--white);
    box-shadow: 0px 0px 20px var(--box__shadow);
}
.wrap2__inner .caption{
    position:absolute;
    top:75%; right:0;
    float: right;
}
.wrap2__text{
    font-size: min(2.8vw,1.8rem);
    padding:0 0 0 0.5em;
}
.img__wrap{
    background: var(--white);
    padding:2em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:2em;
    margin:0 auto 2em auto;
}
.img__text__wrap{
    margin:0 auto;
}
.img__text{
    padding:1em ;
    position:relative;
    z-index: 2;
    background:var(--white);
    border-left:5px solid var(--deep__red);
    border-radius: 0 1em 1em 0;
    text-align: left;
    margin:0 auto;
    box-shadow: 3px 3px 10px var(--box__shadow);
}
.simulation{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:2em;
    padding:1em;
}
.simulation__img__wrap{
    width:100%;
    max-width: 800px;
    margin:0 auto;
    padding:0 1em;
}
.simulation__img__wrap img{
    width:100%;
    border-radius: 3em 0 3em 0;
    box-shadow: 0px 0px 20px var(--box__shadow);
}
.simulation__inner{
    width:100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 580px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:2em;
}
.simulation__chart{
    width:100%;
    max-width: 600px;
    margin:0 auto;
    background:var(--base__color);
    padding: 2em 1em;
    border-radius: 1em;
}
.chart__caption{
    width:100%;
    max-width: 800px;
}
.simulation__chart img{
    width:100%;
}
.under__line__base{
    background: linear-gradient(180deg,var(--heavy__base) 0%,var(--heavy__base) 100%);
    background-repeat: no-repeat;
    background-position:0 98%;
    background-size: 100% 25%;
}
.chart__table__wrap{
    display:grid;
    grid-template-columns: 1fr 150px;
    gap:1em;
}
.remove__table{
    width:100%;
    max-width: 800px;
}
.remove__table tr{
    padding:1em;
    border-bottom: 1.5px solid var(--deep__red);
}
.remove__table th{
    padding:0.5em 0.5em;
    line-height: 1em;
}
.remove__table td{
    padding:0 0.5em;
    vertical-align: middle;
}
.table__arrow{
    display:flex;
    justify-content: center;
    align-items: center;
    gap:1em;
}
.table__arrow i{
    font-size: 2em;
    background:linear-gradient(135deg,#fff349 0%, #ffb522 40%, #ff0303 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.table__info{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    animation-delay: 0.5s;
}
.table__info p{
    width:100%;
    height:4rem;
    font-size: min(5vw,1.5rem);
    font-weight: 700;
    line-height: 1em;
    background:linear-gradient(135deg,#fff349 0%, #ffb522 40%, #ff0303 100%);
    color:var(--white);
    text-shadow: 1px 1px 5px var(--logo__font), -1px -1px 5px var(--logo__font);
    border-radius: 1.5em 1em 1em 0;
    text-align: center;
    transform:translateY(-10px);
}
.table__info p .small{
    font-size: min(3vw,1rem);
    font-weight: 600;
}
.button__center{
    margin:2em auto;
}
.simulation__small{
    padding:0 0 0 1em;
}
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊取替・増設についてのページ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.replace__issue{
    width:100%;
    max-width: 1000px;
    margin:0 auto;
    padding:2em 1em;
    display: flex;
    flex-direction: column;
    gap:1em;
}
.replace__issue h3{
    width:fit-content;
}
.replace__issue h3 .under__line4{
    text-decoration-thickness: 5px;
    text-underline-offset: 5px;
}
.issue__inner{
    display: grid;
    grid-template-columns: 100px 1fr;
    justify-content: center;
    align-items: end;
    gap:1em;
    margin:0 auto;
}
.issue__inner p{
    width:fit-content;
    background:var(--base__color);
    padding:1em;
    border-radius: 1em;
}
.issue__cards{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap:1em;
    padding:1em 0 0 0 ;
}
.issue__card{
    width:100%;
    padding:0.5em 1em 0.2em 1em ;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1em;
    color:var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 1em ;
    position:relative;
    opacity: 0;
    transform:translateY(-100px);
}
.issue__card:nth-child(1){
    animation-delay: 2.2s;
}
.issue__card:nth-child(2){
    animation-delay: 2.4s;
}
.issue__card:nth-child(3){
    animation-delay: 2.6s;
}
.issue__card:nth-child(4){
    animation-delay: 2.8s;
}
.animation__issue__card{
    animation:animation__issue__card 0.3s linear forwards;
}
@keyframes animation__issue__card {
    to{
        opacity: 1;
        transform:translateY(0);
    }
}
.issue__card__bg{
    position:absolute;
    top:0; left:0; right:0; bottom:0;
    margin:auto;
    z-index: -1;
    width:215px;
    object-fit: cover;
}
.issue__small{
    font-size: 1rem;
    color: var(--base__color);
}
.replace__issue h4{
    margin:2em 0 0 0;
}
.issue__cards2{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    gap:1em;
}
.issue__card2{
    height:500px;
    display:flex;
    flex-direction: column;
    align-items: center;
    padding:1em ;
    margin:0 auto;
    transform: translateY(100px);
    opacity: 0;
    background:var(--light__base);
    border-radius: 1em;
    box-shadow: 0px 0px 10px var(--box__shadow);
}
.issue__card2:nth-child(2){
    animation-delay: 0.2s;
}
.issue__card2:nth-child(3){
    animation-delay: 0.4s;
}
.animation__issue__card2{
    animation:slide__up 0.3s linear forwards;
}
@keyframes slide__up {
    to{
        transform: translateY(0);
        opacity: 1;
    }
}
.issue__card2 h5{
    line-height: 1.2em;
    font-weight: 700;
    height:2.5em;
    display: flex;
    align-items: center;
    justify-content: start;
}
.issue__card2 hr{
    width:80%;
    height:3px;
    border:none;
    background:var(--deep__red);
    margin:0.5em 0;
}
.issue__card2 img{
    width:280px;
    height:280px;
    background:var(--light__gray);
    border:10px solid var(--heavy__pink);
    padding:1em;
    border-radius: 2em;
    margin-bottom:1em;
}
.issue__logo{
    width:80%;
    max-width: 400px;
}
.replace__issue .explain__text h4{
    display: flex;
    align-items: end;
    gap:0.5em;
}
.issue__explain__inner{
    width:fit-content;
    display:grid;
    grid-template-columns: 200px 1fr;
    gap:2em;
    justify-content: center;
    align-items: start;
    margin:1.5em auto;
}
.issue__explain__inner img{
    width:100%;
    object-fit: cover;
}
.issue__explain__inner p{
    width:fit-content;
    background:var(--base__color);
    padding:1em;
    border-radius: 1em;
}
.replace__explain{
    width:100%;
    margin:0 auto;
    background: var(--base__color);
    padding:2rem 0;
}
.replace__explain .title::after{
    background: #fff;
}
.resp__sp{
    display:none;
}
.replace__explain__inner{
    width:100%;
    max-width: 1500px;
    display: grid;
    gap:1em;
    grid-template-columns: 1fr 5rem 1fr 5rem 1fr;
    padding:1em;
    margin:1em auto;
    justify-content: center;
    align-items: center;
}
.replace__explain__inner i{
    text-align: center;
    font-size: 5rem;
    background:linear-gradient(135deg,#fff349 0%, #ffb522 40%, #ff0303 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation:arrow__zoom 1s linear infinite;
    margin: auto;
}
@keyframes arrow__zoom {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}
.replace__explain__inner__flex{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:1em;
    background: var(--white);
    padding:1em;
    border-radius: 1em;
}
.replace__explain__inner__flex img{
    width:100%;
    padding:1em;
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.9);
}
.delay1{
    animation-delay: 0.4s;
}
.delay2{
    animation-delay: 0.8s;
}
.animation__replace__explain__img{
    animation:animation__replace__explain__img 0.5s linear forwards;
}
@keyframes animation__replace__explain__img {
    to{
        opacity: 1;
        transform: scale(1);
    }
}
.explain__inner p, .explain__inner2 p{
    letter-spacing: 0.2em;
}
.explain__inner2{
    width:100%;
    max-width: 1500px;
    display: grid;
    gap:1em;
    grid-template-columns: 1fr 5rem 1fr 5rem 1fr;
    padding:0 1em;
    margin:0 auto 2em auto;
    justify-content: center;
}
.explain__text{
    width:100%;
    max-width: 1000px;
    margin:0 auto;
    padding:1em;
}
.explain__text p{
    padding:0.5em 1em;
    border-left: 5px solid var(--deep__red);
    background: var(--light__base);
    border-radius: 0 1em 1em 0;
    margin:1em 0 0 2em;
    box-shadow: 3px 3px 10px var(--box__shadow);
}
.wrap__center{
    text-align: center;
    margin:2em 0 1em 0;
}
.replace__simulation{
    width:100%;
    max-width: 1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
    justify-content: center;
    align-items: center;
    gap:2em;
    padding: 1em;
}
.replace__simulation img{
    width:100%;
    border-radius: 2em 0 2em 0;
    box-shadow: 3px 3px 3px var(--logo__font);
    opacity: 0;
    transform: translateX(-100px);
}
.animation__replace__carport__img{
    animation:animation__replace__carport__img 0.3s linear forwards;
}
@keyframes animation__replace__carport__img {
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
.simulation__text{
    width:100%;
    line-height: 2rem;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:0.5em;
    background:var(--base__color);
    border-radius: 1em;
    padding:1em;
    opacity: 0;
    transform: scale(0.9);
}
.animation__simulation__text{
    animation:animation__simulation__text 0.3s linear 0.2s forwards;
}
@keyframes animation__simulation__text {
    to{
        opacity: 1;
        transform: scale(1);
    }
}
.simulation__text__inner{
    width:100%;
    max-width: 400px;
    display: grid;
    grid-template-columns: 1fr 180px;
    gap:1em;
}
.text__center{
    text-align: center;
}
.link__btn{
    background:var(--deep__red);
    padding:0.5em 1em;
    border-radius: 2em;
    font-weight: 700;
    color:var(--white);
    box-shadow: 3px 3px 3px var(--logo__font);
    transition: all 0.3s;
    text-align: center;
}
.link__btn:hover{
    transform: translateY(3px);
    box-shadow: none;
}
.replace__table__wrap{
    padding:0 1em;
}
.replace__table__inner{
    width:100%;
    max-width: 700px;
    background:var(--white);
    padding:1em;
    border-radius: 1em;
    margin:1em auto;
}
.replace__table{
    width:100%;
}
.replace__table caption{
    font-size: 1.5em;
    text-align: center;
    margin:0 0 1em 0;
}
.replace__table tr{
    padding:0.5em;
    border-bottom: 1.5px solid var(--deep__red);
}
.replace__table th{
    width:fit-content;
    font-size: 1.2em;
    padding:0.5em 0.5rem;
    vertical-align: middle;
    white-space: nowrap;
}
.replace__table td{
    font-size: 1em;
    padding:0 0.5rem;
    vertical-align: middle;
}
.replace__table td .back__line2{
    font-size: 1.5em;
}
.replace__table i{
    background:linear-gradient(135deg,#fff349 0%, #ffb522 40%, #ff0303 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    padding:0.5em;
    animation:arrow__zoom 1s linear infinite;
}
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊点検・調査についてのページ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.inspection__mv{
    padding:1em 0;
}
.inspection__explain__text{
    width:fit-content;
    max-width: 1500px;
    margin:0 auto;
    padding:1em;
}
.inspection__mv__inner{
    width:100%;
    max-width: 1500px;
    margin:0 auto;
    padding:1em;
    display: flex;
    gap:1em;
    align-items: center;
    justify-content: center;
}
.inspection__mv__inner img{
    width:30%;
    object-fit: cover;
    border-radius: 20px 0 20px 0;
    box-shadow: 0px 0px 20px var(--box__shadow);
    transform: scale(0.9);
    opacity: 0;
}
.inspection__mv__inner img:nth-child(1){
    animation-delay: 2.3s;
}
.inspection__mv__inner img:nth-child(2){
    animation-delay: 2.5s;
}
.inspection__mv__inner img:nth-child(3){
    animation-delay: 2.7s;
}

.inspection__animation{
    animation:inspection__animation 0.3s linear forwards;
}
@keyframes inspection__animation {
    to{
        transform: scale(1);
        opacity: 1;
    }
}
.cctv{
    width:100%;
    max-width:1500px;
    margin:0 auto;
    padding:3em 0 ;
}
.cctv__img{
    width:100%;
    max-width: 1000px;
    margin:0 auto;
}
.cctv__img img:nth-child(1){
    box-shadow: 0px 0px 20px var(--box__shadow);
}
.cctv__img img:nth-child(2){
    box-shadow: 0px 0px 20px var(--box__shadow);
}
.cctv__img img{
    width:100%;
}
.cctv__img img:nth-child(1){
    border-radius: 100px 0 0 0;
}
.cctv__img img:nth-child(2){
    border-radius: 0 0 100px 0;
}
.qa__title__wrap{
    width:100%;
    text-align: center;
}
.qa__title{
    width:fit-content;
    font-size: 3em;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 0.1em;
    background:var(--white);
    padding:0 1em;
    margin:1em auto;
    border-radius: 1em;
    color:var(--logo__font);
}
.qa__wrap{
    width:100%;
    background:var(--base__color);
    padding:1em ;
}
.qa{
    width:100%;
    max-width: 1000px;
    margin:2em auto;
    padding:1em;
    background:var(--white);
    border-radius: 2em;
}
.qa__section{
    margin:0 auto;
}
.qa__line{
    width:100%;
    height: 10px;
    background-image: linear-gradient(to right, var(--heavy__base), var(--heavy__base) 10px, transparent 10px);
    background-size: 20px 3px;
    background-position: left bottom;
    background-repeat: repeat-x;
}
.qa__inner:nth-child(1){
    align-items: center;
}
.qa__inner:nth-child(2){
    align-items: start;
}
.question__no , .ans__no{
    width:100px;
    height:1.5em;
    font-size: 2rem;
    margin:0 auto;
    background:var(--deep__red);
    padding:0.5em;
    border-radius: 10px;
    color:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s;
}
.ans__no{
    background: var(--heavy__orange);
}

/* QAのアコーディオン */
.accordion__head{
    display: grid;
    grid-template-columns:100px 1fr 50px;
    align-items: center;
    gap:1em;
    margin:1em 0;
    font-weight: 700;
    background:var(--base__color);
    padding:0.5em ;
    border-radius: 1em;
    cursor: pointer;
    transition: all 0.3s;
}
.accordion__head:hover{
    background: var(--heavy__base);
}
.accordion__arrow{
    transform: translateY(-25%) rotate(45deg);
    width: 1rem;
    height: 1rem;
    border-bottom: 3px solid var(--logo__font);
    border-right: 3px solid var(--logo__font);
    transition: all .3s;
}
.accordion__content{
    grid-template-columns: 100px 1fr;
    gap:1em;
    margin:1em 0;
    padding:0.5em;
    transition: all 0.3s;
    display:none;
    align-items:start;
    transform:translateY(-50px);
    opacity: 0;
}
.accordion__active{
    display:grid;
    animation:accordion__active 0.3s linear forwards;
}
@keyframes accordion__active {
    to{
        transform:translateY(0);
        opacity: 1;
    }
}
.accordion__arrow__active{
    transform: rotate(225deg);
}
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊購入・売却についてのページ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.buy__mv__wrap{
    display: flex;
    padding:2em;
    width:100%;
    max-width: 1500px;
    margin: 0 auto;
}
.buy__mv__inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:1em;
    padding:2em;
    transform: scale(0.9);
    opacity: 0;
}
.buy__mv__inner:nth-child(1){
    animation-delay: 2.3s;
}
.buy__mv__inner:nth-child(2){
    animation-delay: 2.5s;
}
.buy__mv__inner:nth-child(3){
    animation-delay: 2.7s;
}
.animation__buy__mv__inner{
    animation:animation__buy__mv__inner 0.3s linear forwards;
}
@keyframes animation__buy__mv__inner {
    to{
        transform: scale(1);
        opacity: 1;
    }
}
.buy__mv__img{
    position: relative;
}
.buy__mv__wrap img{
    width:100%;
    max-height: 300px;
    border-radius: 20px 0 20px 0 ;
    box-shadow: 0px 0px 10px var(--box__shadow);
    position: relative;
}
.buy__point{
    background: var(--deep__red);
    padding: 0.5em;
    border-radius: 10px;
    font-weight: 700;
    color:#fff;
    box-shadow: 0px 0px 10px var(--box__shadow);
    position: absolute;
    top:-20px; left:-20px;
    z-index: 1;
}
.property__wrap{
    background:var(--base__color);
    padding:2em 1em 2em 1em;
    display: flex;
    flex-direction: column;
    gap:2em;
}
.property__wrap .title{
    background:var(--white);
}
.property__wrap .title__wrap{
    padding:0;
}
.property{
    width:100%;
    max-width: 1300px;
    background:var(--white);
    display:grid;
    grid-template-columns: 600px 1fr;
    align-items: start;
    padding:2em;
    margin:0 auto;
    border-radius: 1em;
    gap:2em;
}
.property__inner:nth-child(1){
    display:flex;
    flex-direction: column;
    gap:1em;
}
.property__inner:nth-child(2){
    padding-top:3.5em;
    display:flex;
    flex-direction: column;
    gap:1em;
}
.property__flex{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap:1em;
}
.property__inner{
    width:100%;
}
.property__inner img{
    width:100%;
    border-radius: 2em;
    box-shadow: 0px 0px 10px var(--box__shadow);
}
.property__contents{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    background:var(--base__color);
    padding:1em;
    border-radius: 1em;
}
.property__tags{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap:1em;
}
.property__emphasis{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1em;
}
.property__caption{
    color:var(--deep__red);
}
.property__desc{
    font-size: 1.5rem;
}
.property__tag{
    width:100%;
    max-width: 200px;
    text-align: center;
    background:var(--heavy__base);
    padding:0 0.5em;
    border-radius: 2em;
}
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊会社概要についてのページ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.about__company__main{
    padding:0;
    position:relative;
    background:var(--white);
}
.about__company__mv{
    width:100%;
    padding:8em 5em 5em 5em;
    overflow: hidden;
    text-align: center;
    position:relative;
}
.company__mv__bg{
    position:absolute;
    top:0; left:0;
    width:100vw;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity:0;
}
.animation__company__mv__bg{
    animation:animation__company__mv__bg 0.5s linear 0.5s forwards;
}
@keyframes animation__company__mv__bg {
    to{
        opacity: 1;
    }
}
.company__logo{
    width:500px;
    opacity:0;
}
.animation__company__mv__logo{
    animation:animation__company__mv__logo 0.5s linear 1s forwards;
}
@keyframes animation__company__mv__logo {
    to{
        opacity:1;
    }
}
.company__mv__title{
    opacity: 0;
    transform: scale(0.8);
}
.animation__company__mv__title{
    animation:animation__company__mv__title 0.3s linear 1.3s forwards;
}
@keyframes animation__company__mv__title {
    to{
        opacity: 1;
        transform: scale(1);
    }
}

.about__company__wrap{
    width:100%;
    max-width: 2000px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
.company__caption{
    width:100%;
    text-align: center;
}
.company__caption:nth-child(1) .about__company__english{
    opacity:0;
}
.animation__company__first__title{
    animation:animation__company__first__title 0.5s linear 1.8s forwards;
}
@keyframes animation__company__first__title {
    to{
        opacity: 1;
    }
}
.company__caption:nth-child(1) .company__img{
    opacity:0;
}
.animation__company__first__img{
    animation:animation__company__first__img 0.5s linear 2s forwards;
}
@keyframes animation__company__first__img {
    to{
        opacity: 1;
    }
}
.company__caption:nth-child(1) .about__company__section{
    opacity:0;
    transform: translateY(100px);
}
.animation__company__first__section{
    animation:animation__company__first__section 0.5s linear 2.2s forwards;
}
@keyframes animation__company__first__section {
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.about__company__english{
    font-size: min(calc(4.5vw + 1.5rem),100px);
    font-weight: 600;
    color:var(--logo__font);
    letter-spacing: 0.35em;
    padding:0 0 0 0.35em;
    line-height: 1em;
    background: linear-gradient(transparent 80%, var(--heavy__base) 80%);
    margin:0.5em 0 0 0;
    position:relative;
    z-index: 1;
    opacity: 0;
}

.company__img{
    width:100%;
    max-width: 1000px;
    height:300px;
    object-fit: cover;
    border-radius:0 0 100px 100px;
    position: relative;
    z-index: 0;
}
.about__company__section{
    width:100%;
    max-width: 900px;
    text-align: left;
    margin:0 auto;
    padding:0 1em;
}
.company__title{
    display: flex;
    gap:1em;
    align-items: center;
    justify-content: center;
    margin:2em auto;
}
.company__title img{
    width:130px;
}
.about__company__section h4{
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.company__text__wrap{
    width:100%;
    background: var(--light__base);
    box-shadow: 0px 0px 20px var(--box__shadow);
    border-radius: 1em;
    margin:1em auto;
    padding:1em 0;
}
.sky__wrap{
    overflow: hidden;
}
.sky__inner{
    display:grid;
    grid-template-columns: 1066px;
    grid-auto-flow: column;
    animation:sky__loop 60s linear infinite;
}
.sky__inner img{
    height:80px;
    object-fit: cover;
}
@keyframes sky__loop {
    to{
        translate:-1066px;
    }
}
.company__text__wrap p{
    padding:1em;
    display: flex;
    justify-content: center;
}
.city__wrap{
    overflow: hidden;
    padding:1em 0 0 0;
}
.city__inner{
    display:grid;
    grid-template-columns: 1985px;
    grid-auto-flow: column;
    animation:city__loop 50s linear infinite;
}
.city__inner img{
    height:100px;
    object-fit: cover;
}
@keyframes city__loop {
    to{
        translate:-1985px;
    }
}
.company__text__wrap .under__line4{
    line-height: 2.5em;
}
.company__info__wrap{
    padding:2em 1em;
}
.company__info{
    background:var(--white);
    box-shadow: 0px 0px 20px var(--box__shadow);
    border-radius: 20px;
    width:100%;
    max-width: 800px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:3em 2em 2em 2em;
    overflow: hidden;
}
.company__info h2{
    font-size: 1.2rem;
}
.company__info table{
    width:100%;
    max-width: 500px;
    margin:1em auto;
}
.company__info table tr{
    border-bottom: 2px solid var(--heavy__base);
}
.company__info table th{
    width:5em;
    font-size: 1.2rem;
    padding:0.5em;
    text-align:left;
    vertical-align: middle;
    white-space: nowrap;
}
.company__info table tr:nth-child(1) th{
    letter-spacing: 0.5em;
}
.company__info table tr:nth-child(3) th{
    letter-spacing: 0.5em;
}
.company__info table td{
    font-size: 1rem;
    padding:0;
    vertical-align: middle;
    line-height: 1.2em;
}
.company__info a{
    font-size: 1.5rem;
}

/* プライバシーポリシーのページ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
.privacy__main{
    background:var(--base__color);
    padding-top:100px;
}
.privacy__main h3::after{
    background: var(--white);
}
.privacy__wrap{
    width:100%;
    margin:2em 0 0 0;
    padding:2em 1em;
    background:var(--base__color);
}
.privacy__inner{
    width:100%;
    max-width: 1000px;
    background:#fff;
    margin:0 auto;
    padding:2em;
    border-radius: 1em;
}
.privacy__inner h4{
    padding:0 0 0 1em;
    margin:1.5em 0 0.5em 0 ;
    border-left: 5px solid var(--deep__red);
}
.privacy__inner ol{
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}
.privacy__inner ol ol{
    padding-left: 1em;
}
.privacy__inner li{
    text-indent: -1.3em;
    padding-left: 1.3em;
    margin:0.5em 0;
}
.privacy__inner li::before{
    counter-increment: item;
    content: counter(item)'.';
    /* 以下は自由に装飾... */
    padding-right: .5em;
    font-weight: bold;
    color: #b40000;
}
.privacy__inner .right{
    text-align: right;
}
/* レスポンシブ */

@media screen and (max-width: 1300px){
    .br__hidden1300{
        display: block;
    }
    .explain__inner{
        grid-template-columns: 1fr 3rem 1fr 3rem 1fr;
    }
    .explain__inner2{
        grid-template-columns: 1fr 3rem 1fr 3rem 1fr;
    }
    .explain__inner i{
        font-size: 3rem;
    }
    .simulation__inner{
        display:flex;
        flex-direction: column;
    }
}

@media screen and (max-width:1000px) {
    .br__hidden1000{
        display:block;
    }
    .explain__inner{
        grid-template-columns: 1fr 2rem 1fr 2rem 1fr;
    }
    .explain__inner2{
        grid-template-columns: 1fr 2rem 1fr 2rem 1fr;
    }
    .explain__inner i{
        font-size: 2rem;
    }
    .wrap2{
        margin: 0  auto;
        gap:1em;
    }
    .wrap2__inner__wrap{
        flex-direction: column;
        max-width: 800px;
        margin:0 auto;
    }
    .wrap2__inner .caption{
        font-size: min(3vw,1.8rem);
    }
    .issue__cards{
        max-width: 800px;
        grid-template-columns: 1fr 1fr;
        margin:0 auto;
    }
    .issue__card__bg{
        width:100%;
    }
    .issue__card2:nth-child(3){
        animation-delay:0s;
    }
    .replace__explain__inner{
        display: flex;
        flex-direction: column;
    }
    .replace__explain__inner__flex{
        width:100%;
        max-width: 600px;
    }
    .replace__explain__inner i{
        transform: rotate(90deg);
        animation: arrow__zoom2 1s linear infinite;
    }
    @keyframes arrow__zoom2 {
        0%{
            transform: scale(1) rotate(90deg);
        }
        50%{
            transform: scale(1.1) rotate(90deg);
        }
        100%{
            transform: scale(1) rotate(90deg);
        }
    }
    .merit{
        width:80%;
        margin:1em auto;
    }
    .buy__mv__wrap{
        flex-direction: column;
    }
    .buy__mv__inner{
        padding:1em 0;
    }
    .buy__point{
        position:static;
        width:fit-content;
        margin:1em auto 0 auto;
        border-radius: 1em 1em 0 0 ;
        padding:0 2em;
    }
    .property{
        display:flex;
        flex-direction: column;
    }
    .property__inner:nth-child(2){
        padding:0;
    }
    .property__contents{
        grid-template-columns: repeat(auto-fit,minmax(130px,1fr));
    }
    .property__tag{
        margin: 0 auto;
    }
    .property__inner a{
        margin:0 auto;
    }
}

@media screen and (max-width:800px){
    .br__hidden800{
        display:block;
    }
    #burger-icon{
        display:block;
    }
    .head__inner{
        position:static;
        width:100%;
        padding:1em 0;
    }
    .animation__head__title__bg{
        transform: skew(0deg);
        border-radius: 0;
    }
    .head__inner h3{
        margin:0 auto;
        font-size: 4vw;
    }
    .head__inner h2{
        margin:0 auto;
        font-size: 5.5vw;
        line-height: 1.8em;
        text-align: center;
    }
    .mv__bg{
        margin:0;
    }
    .resp__pc{
        display: none;
    }
    .simulation__chart{
        padding:1em 0;
    }
    .simulation{
        padding:1em 0.5em;
    }
    .explain__inner{
        display:grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto 5rem 1fr auto 5rem 1fr auto;
        padding:1em 2em;
    }
    .replace__explain__inner i{
        font-size: 3rem;
    }
    .remove__table th{
        font-size: 1rem;
    }
    .replace__table th{
        font-size: 1rem;
        padding:0.5em;
    }
    .replace__table td{
        padding:0 0.5em;
    }
    .replace__table i{
        padding:1em 0;
    }
    .issue__explain__inner{
        grid-template-columns: 100px 1fr;
        align-items: end;
        gap:1em;
        margin:0 auto;
    }
    .merit{
        width:100%;
        display:flex;
        flex-direction: column;
        gap:1em;
        align-items: start;
        justify-content: center;
        padding:0 1em;
    }
    .merit img{
        width:100%;
    }
    .inspection__mv__inner{
        flex-direction: column;
    }
    .inspection__mv__inner img{
        width:100%;
    }
    .qa__inner{
        display: grid;
        grid-template-columns: 40px 1fr;
        margin:1em 0;
        gap:0.5em;
    }
    .company__info table th{
        font-size: 1rem;
    }
    .about__company__mv{
        padding:70px 1em 1em 1em;
    }
    .company__logo{
        width:95%;
        margin:1em auto;
    }
    .company__img{
        width:100%;
        max-width: none;
        height:100%;
        object-fit: cover;
        border-radius: 0;
    }
    .about__company__section{
        position:static;
        margin:0 auto;
    }
}
@media screen and (max-width:550px){
    h1{
        font-size: 1.802rem;
    }
    h2{
        font-size: 1.602rem;
    }
    h3{
        font-size: 1.424rem;
    }
    h4{
        font-size: 1.266rem;
    }
    h5{
        font-size: 1.125rem;
    }
    p{
        font-size: 1rem;
        letter-spacing: 0.04em;
    }
    small{
        font-size: 0.8rem;
    }
    .title{
        padding:0.5em 1em;
        font-size: 1.2em;
    }
    .title::after{
        transform: skewX(0deg);
    }
    .br__hidden550{
        display:block;
    }
    .heading__red{
        font-size: 1em;
    }
    .explain__text p{
        margin:1em 0 0 0 ;
    }
    .issue__inner{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .issue__inner img{
        width:100px;
    }
    .issue__small{
        font-size: 0.9rem;
    }
    .issue__card{
        height: fit-content;
        font-size: 1.5rem;
        line-height: 1em;
    }
    .issue__card2{
        height:420px;
    }
    .issue__card2:nth-child(2){
        animation-delay:0s;
    }
    .issue__card2 img{
        width:250px;
        height:250px;
    }
    .replace__issue .explain__text h4{
        font-size: 1rem;
    }
    .issue__explain__inner{
        flex-direction: column;
    }
    .issue__explain__inner img{
        width:100%;
    }
    .remove__explain i{
        font-size: 3rem;
    }
    .remove__table th{
        font-size: 0.9rem;
    }
    .remove__table td{
        font-size: 0.9rem;
    }
    .chart__table__wrap{
        display: flex;
        flex-direction: column;
    }
    .table__info{
        flex-direction: row;
        gap:1em;
    }
    .table__info p{
        border-radius: 2em;
        height:2.5em;
    }
    .img__wrap{
        padding:0 0.5em;
        gap:1em;
    }
    .title__wrap{
        padding:0 0.5em;
    }
    .under__line__base{
        font-size: 5vw;
    }
    .replace__simulation{
        display:flex;
        flex-direction: column;
    }
    .summary__inner{
        grid-template-columns: 80px 1fr;
        gap:1em;
        align-items: center;
    }
    .summary__illust{
        width:80px;
    }
    .accordion__head{
        grid-template-columns: 40px 1fr 15px;
    }
    .accordion__content{
        grid-template-columns: 40px 1fr;
    }
    .question__no , .ans__no{
        width:40px;
        height:40px;
        line-height: 1em;
        font-size: 1rem;
        margin:0 auto;
        padding:0.5em;
        border-radius: 40px;
        color:#fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .accordion__arrow{
        width:10px;
        height:10px;
    }
    .accordion__head h4{
        font-size: 1rem;
    }
    .qa__inner:nth-child(1){
        align-items:first baseline;
    }
    .qa__title{
        font-size: 1.5em;
        margin:0 auto;
    }
    .qa{
        margin:1em auto;
    }
    .property{
        padding:0.5em;
    }
    .company__info{
        padding:1em 0.5em;
    }
    .about__company__main{
        padding:80px 0 0 0;
    }
    .about__company__section h4{
        font-size: 1em;
    }
    .company__title img{
        width:80px;
    }
}
