@charset "UTF-8";

.l-headerLogo {
    display: block;
}
.l-headerLogo.w {
    display: none;
}

.under__mv {
    height: 300px;
}
.under__mv .ttl {
    color: #251e1c;
}

.map__sec {
    padding: 0 20px;
    position: relative;
}
.map__wrap {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20px;
}
.hint__icon__map {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.hint__icon__map { 
	display: none;
}
section.link__sec {
    padding: clamp(60px, 90 / 1400 * 100vw, 90px) 20px;
}
.link__flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
a.btn__gray {
    padding: 10px;
    width: 350px;
    display: inline-block;
    background-color: #828282;
    border-radius: 100vh;
    text-align: center;
    color: #ffffff;
}


@media screen and (max-width: 767px) {
	section.under__mv {
		height: 200px;
	}
    .under__mv {
		height: 250px;
	}
	.link__flex {
		flex-direction: column;
	}
	.under__mv .ttl {
		top: auto;
		bottom: 0;
	}
	.hint__icon__map {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px; /* アイコンサイズに合わせて調整 */
        z-index: 2;
        pointer-events: none;
        transition: opacity 1s ease;
    }
    .hint__icon__map img { display: block; width: 100%; }
    .hint__icon__map.is-hidden { opacity: 0; }
}