/* =====================================================
   YOKUCHI UNIVERSAL HERO
   ===================================================== */

body.page:has(.yokuchi-universal-hero--full) .site-content {
    padding-top: 0 !important;
}

body.page:has(.yokuchi-universal-hero--full) .site-main.ast-container,
body.page:has(.yokuchi-universal-hero--full) .content-area,
body.page:has(.yokuchi-universal-hero--full) .ast-article-single,
body.page:has(.yokuchi-universal-hero--full) .entry-content,
.site-content:has(.yokuchi-universal-hero--full),
.site-main:has(.yokuchi-universal-hero--full),
.content-area:has(.yokuchi-universal-hero--full),
article:has(.yokuchi-universal-hero--full),
.entry-content:has(.yokuchi-universal-hero--full) {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.yokuchi-universal-hero {
    overflow: hidden;

    position: relative;
z-index: 0;
    width: 100%;
    max-width: 100%;

    margin: 0!important;

    background-color: #f2efed;
    border: 0;
    box-shadow: none;
    outline: 0;
	text-align: center;
}

.yokuchi-universal-hero::before {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	padding: 20vw;
	top: 0;
	right: 10%;
	border-radius: 50%;
	background: #fff;
	opacity: .5;
	filter: blur(50px);
	transform: translateY(-50%);
}

.yokuchi-universal-hero.yokuchi-universal-hero--full {
    width: 100vw;
    max-width: 100vw;

    margin-top: calc((var(--yokuchi-header-height, 94px) + 56px) * -1);
	  margin-left: 0!important;
	  margin-right: 0!important;
}

.yokuchi-universal-hero__image {
width: 100%;
}

.yokuchi-universal-hero__image img {
	display: block;
	width: 85%;
	max-width: 520px;
	margin: 0 auto;
}

body.page:has(.yokuchi-universal-hero--full) .yokuchi-universal-hero--full {
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
}

.yokuchi-universal-hero__container {
    width: 100%;
    max-width: var(--yokuchi-container-width, 1440px);

    margin: 0 auto;

    display: grid;
    grid-template-columns: 3fr 2.5fr;
    align-items: center;
    gap: 24px;
	padding-top: 57px;
	padding-left: 20px;
	padding-right: 20px;
}

.yokuchi-universal-hero__content {
    position: relative;
    z-index: 2;
}

.yokuchi-universal-hero__title {
	margin-bottom: 0;
    color: #181818;

    font-size: 20px !important;
    font-weight: 500 !important;

    letter-spacing: 8px !important;

    text-transform: uppercase !important;
}

.yokuchi-universal-hero__description {
    color: #737373;

    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 24px;
}

.yokuchi-universal-hero__description p {
    margin: 0;
}

.yokuchi-universal-hero__button {
    width: fit-content;
    min-height: 48px;

    margin-top: 30px;
    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;

    background: transparent;
    border: 1px solid #333;

    color: #333;

    font-size: 14px;
    font-weight: 500;

    line-height: 24px;
    letter-spacing: 3px;

    text-decoration: none;
    text-transform: uppercase;
}

.yokuchi-universal-hero__button:hover,
.yokuchi-universal-hero__button:focus {
    border-color: #ec1d23;
    color: #333;
}

.yokuchi-universal-hero__button-arrow {
    color: #ec1d23;

    font-size: 20px;
    line-height: 1;
}

.yokuchi-universal-hero__line {
    display: block;

    width: 44px;
    height: 2px;

    margin: 20px auto 0;

    background: #ec1d23;
}

@media (max-width: 767px) {
    .yokuchi-universal-hero__container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media screen and (min-width: 576px) {
	.yokuchi-universal-hero__title {
    font-size: 26px !important;
}
}

@media screen and (min-width: 768px) {
	.yokuchi-universal-hero__container{
		padding-top: clamp(57px, 6vw,  130px);
			padding-bottom: clamp(27px, 4vw,  46px);
	}
	
	.yokuchi-universal-hero {
		text-align: left;
	}
	
	.yokuchi-universal-hero__line {
    	margin: 20px 0 0;
	}

	.yokuchi-universal-hero__image img {
	margin: 0 0 0 auto;
}
}

@media screen and (min-width: 1321px) {
	.yokuchi-universal-hero__container{
			padding-top: 130px;
	}
}

