@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;
    }
}

/*インナー設定*/
.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: #37407b;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    border: 2px solid #37407b;
    transition: all 0.3s ease;
    overflow: hidden;
}

.header__bluebtn a:hover {
    background: #fff;
    color: #37407b;
}

@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%;
    height: min(calc(100vh - 110px), 800px);
    min-height: 600px;
    overflow: hidden;
    background: #0098c9;
    animation: mvFade 1.2s ease forwards;
    opacity: 0;
	padding-top: 0.7%;
}
@media screen and (max-width: 1050px) {
    .mv {
        min-height: 700px;
        height: 700px;
			padding-top: 0%;
    }
}
@media screen and (max-width: 768px) {
    .mv {
        position: relative;
        min-height: 0;
        height: auto;
        aspect-ratio: 375 / 360;
    }
}
@keyframes mvFade {
    to {
        opacity: 1;
    }
}

.mv::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../images/lp/mv_building.png");
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto 100%;
    mix-blend-mode: multiply;
    opacity: .38;
    z-index: 0;
    pointer-events: none;
}
@media screen and (max-width: 768px) {
    .mv::before {
        display: block;
    }
}

.mv::after {
    content: none;
}
@media screen and (max-width: 768px) {
    .mv::after {
        display: none;
    }
}

.mv_inner {
    position: relative;
    z-index: 1;
    width: min(100%, calc((100vh - 110px) * 1504 / 818));
    max-width: 1504px;
    height: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 1050px) {
    .mv_inner {
        width: 100%;
        height: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 768px) {
    .mv_inner {
        width: 100%;
        height: 100%;
		padding: clamp(30px, 5vw, 60px) 16px 30px;
        box-sizing: border-box;
    }
}

.mv_content {
    position: relative;
    height: 100%;
}
@media screen and (max-width: 768px) {
    .mv_content {
        position: relative;
        height: 100%;
    }
}

.mv_left {
    position: relative;
    z-index: 3;
	padding-top: clamp(30px, 6vh, 70px);
	left: 23%;
}
@media screen and (max-width: 1050px) {
    .mv_left {
        padding-top: 50px;
			left: 17%;
    }
}
@media screen and (max-width: 768px) {
    .mv_left {
        width: 100%;
        padding-top: 0;
        z-index: 3;
        position: relative;
			left: 5%;
    }
}

.mv_ttl_wrapper {
    position: relative;
}

.mv_ttl_box {
    margin-bottom: clamp(12px, 1.7vh, 18px);
    width: fit-content;
    max-width: none;
}
@media screen and (max-width: 768px) {
    .mv_ttl_box {
        margin-bottom: 1px;
    }
}

.mv_text {
    position: relative;
    display: inline-block;
    padding: 6px 24px;
    font-weight: 900;
    font-size: clamp(3.3rem, 5.2vh, 4.3rem);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
    font-feature-settings: "palt";
    letter-spacing: 0.1;
}
@media screen and (max-width: 1050px) {
    .mv_text {
        font-size: clamp(2.5rem, 4.2vw, 3.9rem);
        padding: 5px 18px;
    }
}
@media screen and (max-width: 768px) {
    .mv_text {
        font-size: clamp(18px, calc(18px + (48 - 18) * ((100vw - 360px) / 408)), 40px);
        padding: 4px 10px;
        line-height: 1.5;
		margin-bottom: 3px;
    }
}

.mv_text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    z-index: 0;
    animation: bgSlide 0.6s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.mv_text_inner {
    position: relative;
    z-index: 1;
    display: inline-block;
    opacity: 0;
    transform: translateX(-20px);
    animation: textSlide 0.5s ease forwards;
    animation-delay: 0.4s;
}

.mv_text_red{
	color:#E60012;
}

.mv_ttl_box:nth-child(1) .mv_text::before {
    animation-delay: 0.1s;
}
.mv_ttl_box:nth-child(1) .mv_text_inner {
    animation-delay: 0.4s;
}
.mv_ttl_box:nth-child(2) .mv_text::before {
    animation-delay: 0.35s;
}
.mv_ttl_box:nth-child(2) .mv_text_inner {
    animation-delay: 0.65s;
}
.mv_ttl_box:nth-child(3) .mv_text::before {
    animation-delay: 0.6s;
}
.mv_ttl_box:nth-child(3) .mv_text_inner {
    animation-delay: 0.9s;
}
.mv_ttl_box:nth-child(4) .mv_text::before {
    animation-delay: 0.85s;
}
.mv_ttl_box:nth-child(4) .mv_text_inner {
    animation-delay: 1.1s;
}
.mv_ttl_box:nth-child(5) .mv_text::before {
    animation-delay: 1.05s;
}
.mv_ttl_box:nth-child(5) .mv_text_inner {
    animation-delay: 1.2s;
}

.mv_text_small {
    font-size: clamp(1rem, 2vh, 1.4rem);
}
@media screen and (max-width: 1050px) {
    .mv_text_small {
        font-size: 1.1rem;
    }
}
@media screen and (max-width: 768px) {
    .mv_text_small {
        font-size: clamp(10px, calc(1px + 1.6vw), 16px);
    }
}

.mv_description {
    margin-top: clamp(24px, 5vh, 40px);
}
@media screen and (max-width: 1050px) {
    .mv_description {
        margin-top: 35px;
    }
}
@media screen and (max-width: 768px) {
    .mv_description {
        margin-top: 5px;
        width: 100%;
    }
}

.mv_description p {
    font-size: clamp(1.8rem, 3vh, 2.4rem);
    line-height: 1.8;
    margin-bottom: 8px;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    animation: descFade 0.6s ease forwards;
    animation-delay: 1.2s;
}
@media screen and (max-width: 1050px) {
    .mv_description p {
        font-size: 2rem;
    }
}
@media screen and (max-width: 768px) {
    .mv_description p {
      font-size: clamp(12px, calc(12px + (24 - 12) * ((100vw - 375px) / 393)), 24px);
        line-height: 1.5;
        margin-bottom: 0px;
    }
}

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

.mv_right {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 20%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}
@media screen and (max-width: 1050px) {
    .mv_right {
        top: 8%;
        right: 6%;
        width: 24%;
    }
}
@media screen and (max-width: 768px) {
    .mv_right {
        position: absolute;
        top: 0;
        right: 0;
        transform: none;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
}

.mv_right img {
    position: absolute;
    display: block;
    max-width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: mvImgFade 0.7s ease forwards;
}

.mv_right img:nth-child(1) {
    top: -40px;
    right: 80%;
    width: 70%;
    z-index: 1;
    animation-delay: 4.5s;
}
@media screen and (max-width: 1300px) {
    .mv_right img:nth-child(1) {
    right: 40%;
    }
}

@media screen and (max-width: 1050px) {
    .mv_right img:nth-child(1) {
        width: 70%;
		top: -30px;
		right: 48%;
    }
}
@media screen and (max-width: 768px) {
    .mv_right img:nth-child(1) {
        top: -4vw;
        bottom: auto;
        right: 4.7vw;
        width: 22vw;
    }
}

.mv_right img:nth-child(2) {
    top: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    animation-delay: 1.0s;
}
@media screen and (max-width: 1050px) {
    .mv_right img:nth-child(2) {
        top: 0;
        right: 0;
        left: auto;
        bottom: auto;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .mv_right img:nth-child(2) {
        top: auto;
        bottom: 0;
        right: 44vw;
        left: auto;
        transform: none;
        width: 46vw;
    }
}

.mv_right img:nth-child(3) {
    top: 280px;
    right: 70px;
    width: 29%;
    z-index: 3;
}
@media screen and (max-width: 1050px) {
    .mv_right img:nth-child(3) {
        width: 28%;
        right: 150px;
    }
}
@media screen and (max-width: 768px) {
    .mv_right img:nth-child(3) {
        top: auto;
        bottom: 2.7vw;
        right: 8vw;
        width: 23.6vw;
    }
}

.mv_right img.mv_obj01.fadeUp {
    transition-delay: 1.6s;
}
.mv_right img.mv_obj02.fadeUp {
    transition-delay: 1.9s;
}
.mv_right img.mv_obj03.fadeUp {
    transition-delay: 2.2s;
}

@keyframes bgSlide {
    to {
        transform: scaleX(1);
    }
}
@keyframes textSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes descFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes mvImgFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* mv_ここまで */


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

@media screen and (max-width: 768px) {
    .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: #008CD6;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    margin-bottom: 3%;
}

.about__estimate-wrap {
    position: relative;
}
.about__estimate-content {
    /*max-width: 580px;*/
    width: 100%;
    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;
    }
}

.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: #dfeaf4;
    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: #0089d8;
}
.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 {
    min-width: 200px;
    background: #37407b;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    transition: 0.2s;
}
@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 {
    position: relative;
    display: inline-block;
    padding: 14px 36px 14px 20px;
    background: #37407b;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    border: 2px solid #37407b;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

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

.about__estimate-button:hover {
    background: #fff;
    color: #37407b;
}

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

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

.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: 100px;
}
.about__estimate-illust--right {
    left: 100%;
    top: 350px;
    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 {
	background: #EAF4FC;
	padding: 90px 20px 100px;
}

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

.solution__trouble {
	position: relative;
	max-width: 980px;
	margin: 0 auto 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-right: 5%; 
}
@media screen and (max-width: 768px) {
.solution__trouble {
	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: -0%;
	bottom: 3%;
    width: 23%;
}

.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;
}
@media screen and (max-width: 768px) {
.solution__box {
	width: 101%;
	margin: auto;
}
}

.solution__box p {
	margin: 0;
}

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

.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;
}

.solution__item-title {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 14px;
}
@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;
}
@media screen and (max-width: 768px) {
.solution__text {
	font-size: 14px;
}
}

/* =================================================
   フローセクション全体の設定
   ================================================= */
.flow-section {
    --base-w: 1200;
    --base-h: 900;
    padding: clamp(40px, 5vw, 80px) 0;
    display: flex;
    justify-content: center;
    overflow: visible;
    margin-bottom: 200px;
}
.flow-container {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: var(--base-w) / var(--base-h);
    max-height: 900px;
    position: relative;
    margin: 0 auto;
}
.flow-title {
    text-align: center;
    color: #008CD6;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    margin-bottom: 3%;
}

.flow-wrapper {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 10;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.flow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30.5%;
    max-width: 366px;
    height: 8.3vw;
    max-height: 100px;
    min-height: 60px;
    background-color: #EAF4FC;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: clamp(13px, 1.4vw, 16px);
    text-align: center;
    position: relative;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

a.flow-box:hover {
    background-color: #d1e8ff;
    transform: translateY(-3px);
}

a.flow-box::after {
    content: '>';
    position: absolute;
    right: 5%;
    font-size: 14px;
    color: #888;
}

div.flow-box {
    cursor: default;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 1vw solid transparent;
    border-right: 1vw solid transparent;
    border-top: 1.2vw solid #0089e0;
    margin: 1.2vw 0;
    max-border-width: 12px;
}

.deco-image {
    position: absolute;
    z-index: 20;
}
.deco-image img {
    width: 100%;
    height: auto;
    display: block;
}
.img-pc {
    width: 16%;
    left: 17%;
    top: 15%;
}
.img-map {
    width: 10%;
    right: 22%;
    top: 35%;
}
.img-calc {
    width: 14%;
    left: 19%;
    top: 55%;
}
.img-cart {
    width: 11%;
    right: 25%;
    top: 72%;
}
.img-city {
    width: 18%;
    left: 19%;
    top: 89%;
}
.img-bike {
    width: 12%;
    right: 32%;
    top: 97%;
}
/* =================================================
   スマホ対応（768px以下）
   ================================================= */
@media screen and (max-width: 768px) {
    .flow-section {
        margin-bottom: 100px;
    }
    .flow-container {
        aspect-ratio: auto;
        height: auto;
    }
    .deco-image {
        display: none;
    }
    .flow-wrapper {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    .flow-box {
        width: 90%;
        height: 80px;
        margin-bottom: 10px;
    }
    .arrow-down {
        border-left-width: 10px;
        border-right-width: 10px;
        border-top-width: 12px;
        margin: 10px 0;
    }
    .deco-image.img-city {
        display: block;
        position: static;
        width: 50%;
        height: 150px;
        margin: 30px auto 0;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center bottom;
    }
}
/* 流れ_ここまで*/
/* 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: #37407b;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    border: 2px solid #37407b;
    border-radius: 18px;
    transition: .3s;
    overflow: hidden;
}

.posting__estimate-button:hover {
    background: #fff;
    color: #37407b;
}

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

.posting__estimate-button::before {
    content: "→";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translate(-18px,-50%);
    color: #37407b;
    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;
}

@media screen and (max-width: 768px) {
.main-footer {
    width: 100%;
    border-top: 1px solid #eee;
    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: #008CD6;
        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: #0f87bb;
        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: rgba(0, 137, 224, 0.9);
        color: #fff;
        box-shadow: 0 4px 10px rgba(0, 137, 224, 0.2);
    }
    .sp-btn-contact {
        background-color: #fff;
        color: #0f87bb;
        border: 1px solid #0f87bb;
    }
    .sp-btn:active {
        transform: scale(0.95);
    }
}
/*jsの設定*/
.fadeUp {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}
@media screen and (max-width: 768px) {
  .about__estimate-content.fadeUp {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
.fadeUp.is-active {
    opacity: 1;
    transform: translateY(0);
}