@charset "UTF-8";

/* CSS Document */
html {
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #323333;
    font-family:
        "Yu Gothic", "游ゴシック", "Yu Gothic Medium", "游ゴシック体", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

@media screen and (min-width: 900px) {
    .wrapper {
        max-width: 100%;
    }
}

/*spとpcの切り替え*/
.pc {
    display: block;
}

.sp {
    display: none;
}

/* 767px以下でSPに切り替え */
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/*
h2.section__ttl {
    font-size: 37px;
    color: #008cd6;
    font-weight: 600;
    line-height: 1.2;
}
@media screen and (max-width: 768px) {
    h2.section__ttl {
        font-size: 32px;
    }
}
*/
/*インナー設定*/
.inner {
    max-width: 1080px;
    margin: 0 auto;
    /*  padding: 0 90px;*/
}

@media screen and (max-width: 768px) {
    .inner {
        margin: 0 auto;
        padding: 0 25px;
    }
}

/* ヘッダー_ここから */
body {
    padding-top: 100px;
}

@media screen and (max-width: 1050px) {
    body {
        padding-top: 80px;
    }
}

@media screen and (max-width: 600px) {
    body {
        padding-top: 60px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12.5%;
    z-index: 99;
    transition: 0.2s ease-in-out;
}

@media screen and (max-width: 1050px) {
    .header {
        height: 80px;
        align-items: center;
        padding: 0 40px;
    }
}

@media screen and (max-width: 600px) {
    .header {
        height: 60px;
        padding: 0 20px;
    }
}

.header::before {
    display: none;
}

.shadow {
    box-shadow: 0 0 8px gray;
}

.header_logo {
    width: 18%;
}

@media screen and (max-width: 768px) {
    .header_logo {
        width: 33%;
		margin: 0 auto;
    }
}

.header_logo a {
    display: block;
}

.header_logo img {
    display: block;
    width: 100%;
    min-width: 150px;
    transition: all 0.2s ease-in;
}

@media screen and (max-width: 600px) {
    .header_logo img {
        min-width: 120px;
    }
}

.header_logo img:hover {
    opacity: 0.5;
}

.header ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media screen and (max-width: 1300px) {
    .header ul {
        gap: 1rem;
    }
}

@media screen and (max-width: 1200px) {
    .header ul {
        gap: 1.2rem;
    }
}

.header__bluebtn a {
    display: inline-block;
    padding: 20px 15px;
    background: #fdd000;
    color: #231815;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    border: 2px solid #fdd000;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* ホバーでボタン反転 */
.header__bluebtn a:hover {
    background: #fff;
    color: #d71618;
}

@media screen and (max-width: 768px) {
    .header ul {
        display: none;
    }
}

.header ul li {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.header ul li a {
    display: inline-block;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease-in;
    line-height: 0;
    min-width: 150px;
    text-align: center;
}

.header ul li a:hover {
    opacity: 0.5;
}

.header_btn {
    display: none;
    font-size: 0;
}

@media screen and (max-width: 768px) {
    .header_btn {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 30px;
        cursor: pointer;
    }
}

.btn_top,
.btn_middle,
.btn_bottom {
    position: absolute;
    display: block;
    width: 80%;
    height: 1px;
    background: #000000;
    transition: 0.4s;
}

.btn_top {
    transform: translateY(-5px);
}

.btn_middle {
    transform: translateY(0);
}

.btn_bottom {
    transform: translateY(5px);
}

.hideMiddle {
    opacity: 0;
    transform: translateX(100%);
}

.rotateTop {
    transform: rotate(45deg);
}

.rotateBottom {
    transform: rotate(-45deg);
}
/* ヘッダー_ここまで */

/* mv_ここから */
.mv {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #e60012;
}

.mv::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 55px;
    background: #fff;
    clip-path: polygon(
        0 35%,
        100% 100%,
        100% 102%,
        0 102%
    );

    z-index: 3;
    transform: translateZ(0);
}

.mv_inner {
    position: relative;
    width: min(100%, 1200px);
    aspect-ratio: 1200 / 740;
    margin: 0 auto;
    padding: 0 7% 55px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:1000px) {
    .mv_inner {
        aspect-ratio: 1200 / 760;
        padding: 3% 7% 55px;
    }
}

@media screen and (max-width:450px) {
    .mv_inner {
        width: 100%;
        aspect-ratio: 375 / 360;
        padding: 0 0 8% 6%;
        justify-content: flex-start;
    }
}

.mv_left {
    width: auto;
    transform: translateY(-0.5em);
}

@media screen and (max-width:450px) {
    .mv_left {
        width: 92%;
        transform: translateY(-0.3em);
    }
}

.mv_lead {
    color: #fff;
    font-size: clamp(20px, calc(20px + (42 - 20) * ((100vw - 375px) / 825)), 42px);
    font-style: italic;
    font-weight: 900;
    margin: 0 0 .35em;
    opacity: 0;
    animation: slideIn .55s cubic-bezier(.16, 1, .3, 1) forwards;
}

@media screen and (max-width:450px) {
    .mv_lead {
        font-size: clamp(15px, 5vw, 21px);
    }
}

.mv_copy {
    color: #fff;
    font-size: clamp(46px, calc(46px + (105 - 46) * ((100vw - 375px) / 825)), 105px);
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    margin: 0;
}

@media screen and (max-width:450px) {
    .mv_copy {
        font-size: clamp(34px, 14vw, 55px);
        line-height: .95;
    }
}

.mv_copy_price_line {
    display: inline-flex;
    align-items: flex-end;
    opacity: 0;
    animation: slideIn .55s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: .12s;
	margin-bottom: 5px;
}

.mv_price_wrap {
    position: relative;
    display: inline-block;
}

.mv_price {
    color: #fff100;
    font-size: clamp(88px, calc(88px + (195 - 88) * ((100vw - 375px) / 825)), 195px);
    line-height: .8;
    white-space: nowrap;
}

@media screen and (max-width:450px) {
    .mv_price {
        font-size: clamp(72px, 25vw, 110px);
    }
}

.mv_tax {
    display: none;
}

.mv_yen {
    position: relative;
    color: #fff100;
    font-size: .75em;
    line-height: 1;
    white-space: nowrap;
}

@media screen and (max-width:450px) {
    .mv_yen {
        font-size: .6em;
    }
}

.mv_yen::before {
    content: "（税別）";
    position: absolute;
    left: 72%;
    top: -1.15em;
    transform: translateX(-50%);
    color: #fff;
    font-size: .22em;
    white-space: nowrap;
}

@media screen and (max-width:450px) {
    .mv_yen::before {
        top: -1em;
        font-size: .28em;
    }
}

.mv_copy_bottom {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-left: -1.3%;
    opacity: 0;
    animation: slideIn .55s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: .24s;
}

@media screen and (max-width:450px) {
    .mv_copy_bottom {
        margin-left: -.5%;
    }
}

.mv_line {
    width: clamp(90px, 18vw, 220px);
    height: 28px;
    margin-left: 18px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    transform: scaleX(0);
    transform-origin: left center;
    animation: lineFlow .55s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: .32s;
}

@media screen and (max-width:450px) {
    .mv_line {
        width: 80px;
        height: 16px;
        margin-left: 8px;
    }
}
@media screen and (max-width:400px) {
    .mv_line {
        width: 73px;
}
}
.mv_line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #fff;
}

.mv_line::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: right center;
}

@media screen and (max-width:600px) {
    .mv_line::after {
        width: 30px;
    }
}

@media screen and (max-width:500px) {
    .mv_line::after {
        width: 20px;
    }
}

.mv_text {
    color: #fff;
    font-size: clamp(15px, calc(15px + (28 - 15) * ((100vw - 375px) / 825)), 28px);
    line-height: 1.7;
    font-weight: 900;
    margin-top: 1em;
    opacity: 0;
    animation: slideIn .6s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: .48s;
}

@media screen and (max-width:450px) {
    .mv_text {
        font-size: clamp(11px, 3.8vw, 15px);
    }
}

.mv_note {
    color: #fff;
    font-size: clamp(11px, calc(11px + (17 - 11) * ((100vw - 375px) / 825)), 17px);
    line-height: 1.9;
    margin-top: 1em;
    opacity: 0;
    animation: slideIn .6s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: .62s;
}

@media screen and (max-width:450px) {
    .mv_note {
        font-size: clamp(7px, 2.4vw, 11px);
        line-height: 1.8;
    }
}

.mv_right {
    position: absolute;
    right: 21%;
    bottom: 10%;
    width: clamp(130px, 18vw, 240px);
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: .7s;
}

@media screen and (max-width:900px) {
    .mv_right {
        right: 13%;
    }
}

@media screen and (max-width:650px) {
    .mv_right {
        right: 6%;
    }
}

@media screen and (max-width:450px) {
    .mv_right {
        right: 4%;
        bottom: 10%;
        width: 30%;
    }
}

.mv_right img {
    width: 100%;
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineFlow {
    from {
        transform: scaleX(.15);
    }

    to {
        transform: scaleX(1);
    }
}

/* mv_ここまで */




/* about_見積セクションここから */
.about--estimate {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .about--estimate {
        padding: 70px 0 90px;
    }
}

@media screen and (max-width: 500px) {
    .about--estimate {
        padding: 30px 0 90px;
    }
}


.about--estimate .section__container {
    text-align: center;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .about--estimate .section__container {
        margin-bottom: 28px;
    }
}

.about-title {
    text-align: center;
    color: #000000;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    margin-bottom: 3%;
}

.about__estimate-wrap {
    position: relative;
}

.about__estimate-content {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 850px) {
    .about__estimate-content {
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .about__estimate-content {
        width: 100%;
        max-width: 580px;
    }
}
@media screen and (max-width:768px) {

    .about__estimate-content.fadeUp {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

}

.about__estimate-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .about__estimate-table {
        gap: 6px;
    }
}

.about__estimate-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .about__estimate-row {
        grid-template-columns: 110px 1fr;
        gap: 6px;
    }
}

.about__estimate-count,
.about__estimate-price {
    background: #f2f2f2;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

    .about__estimate-count,
    .about__estimate-price {
        min-height: 72px;
    }
}

.about__estimate-count-value,
.about__estimate-price-value {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
}

.about__estimate-count {
    color: #333;
}

.about__estimate-count-num {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-right: 4px;
}

@media screen and (max-width: 768px) {
    .about__estimate-count-num {
        font-size: 42px;
        margin-right: 3px;
    }
}

.about__estimate-count-unit {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .about__estimate-count-unit {
        font-size: 18px;
    }
}

.about__estimate-price {
    color: #e60012;
}

.about__estimate-price-value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .about__estimate-price-value {
        font-size: 36px;
    }
}

.about__estimate-price-unit {
    font-size: 0.5em;
    margin-left: 4px;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .about__estimate-price-unit {
        margin-left: 3px;
    }
}

.about__estimate-note {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .about__estimate-note {
        margin-top: 14px;
    }
}

.about__estimate-note p {
    font-size: 14px;
    line-height: 1.8;
    color: #000;
}

@media screen and (max-width: 768px) {
    .about__estimate-note p {
        font-size: 12px;
        line-height: 1.7;
    }
}

.about__estimate-buttons {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 42px;
}

@media screen and (max-width: 768px) {
    .about__estimate-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }
}

.about__estimate-button {
    position: relative;
    display: inline-block;

    min-width: 270px;

    padding: 14px 36px 14px 20px;

    background: #fdd000;

    color: #231815;

    text-decoration: none;

    text-align: center;

    font-weight: 700;

    font-size: 18px;

    line-height: 1.2;

    border: 2px solid #fdd000;

    transition:
background .3s ease,
color .3s ease,
opacity .3s ease,
transform .3s ease;

    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .about__estimate-button {
        width: min(100%, 260px);
        min-width: auto;
        font-size: 18px;
        padding: 14px 18px;
    }
}

.about__estimate-button::before,
.about__estimate-button::after {
    content: "→";
    position: absolute;
    right: clamp(10px, 1vw, 14px);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.about__estimate-button::after {
    color: #231815;
    opacity: 1;
}

.about__estimate-button::before {
    color: #231815;
    transform: translate(-20px, -50%);
    opacity: 0;
}

.about__estimate-button:hover {
    background: #fff;
    color: #d71618;
	    opacity: 0.7;
}

.about__estimate-button:hover::after {
    transform: translate(20px, -50%);
    opacity: 0;
}

.about__estimate-button:hover::before {
    transform: translate(0, -50%);
    opacity: 1;
}


.about__estimate-illust {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .about__estimate-illust {
        display: none;
    }
}

.about__estimate-illust--left {
    right: 100%;
    top: -10%;
    margin-right: 40px;
    width: 140px;
}

.about__estimate-illust--right {
    left: 100%;
    top: 60%;
transform: translateY(-50%);
    margin-left: 20px;
    width: 140px;
}

.about__estimate-illust.illust01.fadeUp {
    transition-delay: 0.2s;
}

.about__estimate-illust.illust02.fadeUp {
    transition-delay: 0.8s;
}

@media screen and (max-width: 1100px) {
    .about__estimate-illust--left {
        margin-right: 20px;
        width: 90px;
    }

    .about__estimate-illust--right {
        margin-left: 20px;
        width: 115px;
    }
}
/* aboutここまで */

/* solution */
.solution {
    position: relative;

    background: #e60012;

    padding: 90px 20px 155px;

    clip-path: polygon(
        0 55px,
        100% 0,
        100% 100%,
        0 calc(100% - 55px)
    );

    margin-top: -55px;
}

.solution__title {
    text-align: center;
    color: #fff;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
	margin-bottom: 4%;
}

/* 上段 */
.solution__trouble {
    position: relative;
    max-width: 980px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 15%;
}
@media screen and (max-width: 768px) {
.solution__trouble {
    margin: 60px auto 80px;
    padding-right: 0%;
}
}

.solution__trouble-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .solution__trouble-img {
        display: none;
    }
}

.solution__trouble-img img {
    width: 100%;
    display: block;
}

.solution__trouble-img--left {
    left: 3%;
    width: 170px;
    top: 30%;
}

.solution__trouble-img--right {
    right: 4%;
    bottom: 2%;
    width: 30%;
}
@media screen and (max-width: 896px) {
.solution__trouble-img--right {
    right: 4%;
    bottom: 33%;
    width: 24%;
}
}


.solution__trouble-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.solution__box {
    width: 390px;
    background: #fff;
    padding: 24px 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
	filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 1));
}
@media screen and (max-width: 768px) {
.solution__box {
    width: 350px;
}
}
@media screen and (max-width: 400px) {
.solution__box {
    width: 300px;
}
}

.solution__box01{
	margin-right: 230px;
}
@media screen and (max-width: 768px) {
.solution__box01{
	margin-right: 0px;
}
}

.solution__box02{
	margin-top: 10px;
}


.solution__box p {
    margin: 0;
}
@media screen and (max-width: 768px) {
.solution__box p {
    font-size: 17px;
}
}

.solution__slash {
    display: block;
    width: 28px;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
    margin: -3px 0 26px;
}

.solution__slash01 {
	margin-right: 230px;
}
@media screen and (max-width: 768px) {
.solution__slash01 {
	margin-right: 0px;
}
}

.solution__list {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

@media screen and (max-width: 768px) {
    .solution__list {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 580px;
        gap: 16px;
    }
}


.solution__item img {
    width: 100%;
    display: block;
    margin-bottom: 18px;
	    filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 1));
}

.solution__item-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
	color:#fff;
}

@media screen and (max-width: 768px) {
    .solution__item-title {
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 14px;
    }
}


.solution__text {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    text-align-last: left;
    letter-spacing: -0.1rem;
	color:#fff;
}

@media screen and (max-width: 768px) {
    .solution__text {
        font-size: 14px;
    }
}

/* 4つのポイント_ここから*/
.posting {
    background: #EAF4FC;
    padding: 80px 20px;
}

.posting__title {
    color: #008CD6;
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.posting__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 583px;
    margin: 0 auto;
}

.posting__img {
    width: 100%;
    margin-bottom: 16px;
}

.posting__item-title {
    font-size: 16px;
    margin-top: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.posting__text {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .posting__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .posting__item-title {
        font-size: 13px;
    }

    .posting__text {
        font-size: 13px;
        text-align: justify;
        font-feature-settings: "palt";
    }
}
/* 4つのポイント_ここまで*/
/* 資料_ここから*/
.documents {
    background: #0f3c88;
    padding: 80px 20px;
    text-align: center;
}

.documents__title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 600;
}

.documents__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.documents__item {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    background: #FFFFFF;
    padding: 28px 20px;
    text-decoration: none;
    color: #000;
    position: relative;
    transition: transform 0.3s ease;
}

.documents__item::after {
    content: ">";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.documents__item:hover {
    transform: translateY(-4px);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .documents__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .documents__item {
        font-size: 14px;
    }
}
/* 資料_ここまで*/

/*追加ボタン01*/
.posting__estimate-wrap {
    width: 100%;
    height: 260px;
    margin: 110px auto -40px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: visible;
}

.posting__estimate-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.posting__estimate-button {
    display: block;
    width: 520px;
    padding: 22px 70px 22px 30px;
    box-sizing: border-box;
    position: relative;
    background: #fdd000;
    color: #231815;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    border: 2px solid #fdd000;
    border-radius: 18px;
    transition: .3s;
    overflow: hidden;
}

.posting__estimate-button:hover {
    background: #fff;
    color: #d71618;
	opacity: .5;
}

.posting__estimate-button::after {
    content: "→";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: #231815;
    font-size: 28px;
    transition: .3s;
    opacity: 1;
}

.posting__estimate-button::before {
    content: "→";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translate(-18px, -50%);
    color: #231815;
    font-size: 28px;
    transition: .3s;
    opacity: 0;
}

.posting__estimate-button:hover::after {
    transform: translate(18px, -50%);
    opacity: 0;
}

.posting__estimate-button:hover::before {
    transform: translate(0, -50%);
    opacity: 1;
}

.posting__estimate-buttons-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.posting__illust {
    position: absolute;
    pointer-events: none;
}

.posting__illust--left {
    width: 130px;
    left: calc(50% - 430px);
    top: 70px;

}

.posting__illust--right {
    width: 79px;
    right: calc(50% - 400px);
    top: 20px;
}

.posting__illust--left.fadeUp {
    transition-delay: .2s;
}

.posting__illust--right.fadeUp {
    transition-delay: .8s;
}

@media screen and (max-width:768px) {
    .posting__estimate-wrap {
        display: none;
    }
}
/*ポスティング下の追加ボタンここまで*/
/*追加ボタン02*/
.posting__illust--left02 {
    width: 90px;
    left: calc(50% - 430px);
    top: 20px;
}

.posting__illust--right02 {
    width: 110px;
    right: calc(50% - 420px);
    top: 80px;
}
/*追加ボタン02ここまで*/

.flow {
    margin-top: 600px;
}

/*フッターここから*/

footer.main-footer {
    background-color: #fff;
    padding: 0px 0px 40px 0px;
}

@media screen and (max-width: 768px) {
footer.main-footer {
    background-color: #fff;
    padding: 0px 0px 40px 0px;
}
}

.main-footer {
    width: 100%;
    padding-bottom: 50px;
}

.footer-content {
    background-color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: .5;
}

.footer-logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.footer-address {
    font-size: 15px;
    margin-bottom: 1px;
}

.footer-tel-fax {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 25px;
    margin-bottom: 1px;
}

.footer-tel {
    font-size: 24px;
    color: #008CD6;
    font-weight: bold;
}

.footer-tel {
    transition: opacity 0.3s ease;
}

.footer-tel:hover {
    opacity: .5;
}

.footer-fax {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.footer-time {
    font-size: 14px;
    color: #666;
}

@media screen and (max-width: 850px) {
    .footer-tel-fax {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}

/* スクロールトップ */
p.pagetop {
    display: none;
}

@media screen and (max-width: 768px) {
    p.pagetop {
        display: none !important;
    }
}

@media screen and (min-width: 769px) {
    p.pagetop {
        position: fixed;
        bottom: 50px;
        right: 35px;
        z-index: 100;
    }

    p.pagetop a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #231815;
        font-family: 'Helvetica', 'Arial', sans-serif;
        font-size: 10px;
        font-weight: bold;
        letter-spacing: 0.2em;
        transition: all 0.3s ease;
    }

    p.pagetop a span {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        margin-top: 10px;
        transform: rotate(0deg);
    }

    p.pagetop a::after {
        content: "";
        width: 1px;
        height: 60px;
        background-color: #231815;
        margin-top: 10px;
        transition: height 0.3s ease;
    }

    p.pagetop a:hover {
        transform: translateY(-10px);
        opacity: 0.7;
    }

    p.pagetop a:hover::after {
        height: 80px;
    }
}

/* SP固定ボタン */
.sp-fixed-menu {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp-fixed-menu {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
        box-sizing: border-box;
        gap: 10px;
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .sp-btn {
        flex: 1;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        border-radius: 8px;
        transition: transform 0.1s;
    }

    .sp-btn-simulation {
        background-color: #fdd000;
        color: #231815;
        box-shadow: 0 4px 10px rgba(0, 137, 224, 0.2);
    }

    .sp-btn-contact {
        background-color: #fff;
        color: #231815;
        border: 1px solid #231815;
    }

    .sp-btn:active {
        transform: scale(0.95);
    }
}

/*jsの設定*/
.fadeUp {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}

.fadeUp.is-active {
    opacity: 1;
    transform: translateY(0);
}