@charset "utf-8";
/*
Theme Name: roirenard
Version: 1.0
Template: arkhe
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700&family=Dancing+Script:wght@500;700&family=Zen+Old+Mincho:wght@500;700&family=Open+Sans:wght@400;700&family=Solitreo:wght@400&display=swap');

:root {
	--ark-padding--container: 0;
	--padding--container: min(24px, 3vw);
	--keycolor: #143a0a;
	--content-max-width: 440px;
	--font-default: "Open Sans", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}

html
{
	scroll-behavior: smooth;
}


body
{
	background-image: url("assets/img/bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	font-family: var(--font-default);
	background-color: var(--keycolor);
	line-height: 1.8;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	
	&::before
	{
		content: "";
		background-color: rgba(0, 0, 0, .6);
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
        z-index: -1;
	}
}

img
{
	pointer-events: none;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	user-select:none;
}





/* ======================================
    Layout
====================================== */

.bg
{
	& .content-visual
	{
		display: none;
	}
}


.center
{
	background-color: #ffffff;
    width: 100%;
}

.l-header
{
	& .l-container
	{
		padding-left: var(--padding--container);
		padding-right: var(--padding--container);
	}
}
.l-footer
{
	padding-bottom: 70px;
	
	& .l-container
	{
		padding-left: var(--padding--container);
		padding-right: var(--padding--container);
	}
	
	
	& .-wrap
	{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 30px;
		
		& .-left
		{
			width: 100px;
		}
		
		& .-right
		{
			width: calc(100% - 100px - 15px);
			
			& .-title
			{
				line-height: 1;
				text-align: left;
				margin-bottom: 20px;
				
				& img
				{
					width: 68%;
				}
			}
			
			& .-subtitle
			{
				text-align: left;
				font-family: var(--font-default);
				font-size: 0.84rem;
				font-weight: 500;
				margin-bottom: 10px;
			}
		}
	}
	
	& .menu
	{
		border: none;
		list-style: disc;
		padding-left: 1rem;
		
		& .menu-item
		{
			border: none;
			
			& a
			{
				padding: 3px 0;
			}
		}
	}
	
	& .l-footer__widgets
	{
		display: flex;
		justify-content: center;
		align-items: flex-start;
		padding: 0;
		margin-bottom: 25px;
		
		& .-widget1, .-widget2
		{
			font-size: 0.9rem;
			width: 50%;
		}
		& .-widget2
		{
			margin: 0 !important;
		}
	}
	
}

.content-container,
body:not(.home) .l-container
{
	padding-left: var(--padding--container);
	padding-right: var(--padding--container);
}


@media only screen and (min-width: 768px)
{
	.center, .l-header, .l-footer
	{
		border-left: 1px solid #4a5247;
		border-right: 1px solid #4a5247;
		margin-left: 50%;
		width: 40%;
		max-width: var(--content-max-width);
		transform: translateX(-50%);
	}
}

.p-drawer {
    z-index: 1000;
}



.-title
{
	font-family: "Dancing Script", cursive;
	font-optical-sizing: auto;
	font-size: 2.3rem;
	font-weight: 500;
	text-align: center;
}
.-subtitle
{
	font-family: "Zen Old Mincho", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	text-align: center;
	margin-bottom: 2em;
}


.sec-model
{
	padding: 70px 0 100px;
	
	& .splide
	{
		& .splide__slide > *
		{
			opacity: .6;
			transform: scale(.8);
			transition: .7s;
		}
		
		& .splide__slide.is-active > *
		{
			opacity: 1;
			transform: scale(1);
			z-index: 1;
		}

		& .splide__slide
		{
			text-align: center;
			
			& a
			{
				display: block;
				filter:drop-shadow(0px 2px 2px rgba(50,50,50,.9));
			}
			
			& img
			{
				height: auto;
				width: 100%;
				aspect-ratio: 3 / 4;
				object-fit: cover;
			}
			
			&.is-active
			{
				& a
				{
					filter:drop-shadow(0px 5px 5px rgba(50,50,50,.6));
				}
			}
		}
		
		
		& .splide__pagination
		{
			bottom: -35px;
			
			& .is-active
			{
				background: #3c7251;
			}
		}
		
		& p
		{
			font-size: 12px;
			margin-top: 5px;
		}
	}
	
}




.sec-about
{
	background-color: var(--keycolor);
	color: #ffffff;
	
	& .-content
	{
		padding: 0 0 60px;
	}
	
	& .-title
	{
		font-family: "Zen Old Mincho", serif;
		font-optical-sizing: auto;
		font-weight: 500;
		text-align: center;
        font-size: 1.5rem;
        line-height: 1.7;
		margin: 1em 0;
	}
	& .-text
	{
		color: #eeeeee;
	}
}



.sec-catch
{
	background-image: url("assets/img/bg_catch.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #ffffff;
	text-align: center;
	padding: 50px 20px;
	
	& .-title
	{
		font-family: "Zen Old Mincho", serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-size: 1.7rem;
		margin-bottom: 50px;
	}
	
	& .-text
	{
		font-family: "Zen Old Mincho", serif;
		font-optical-sizing: auto;
		font-weight: 500;
        font-size: 1.2rem;
	}
}


.sec-feature
{
	padding: 70px 0;
	
	& .-title
	{
		color: var(--keycolor);
	}

	& .-list
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
		font-size: 0.9rem;
		list-style: none;
		line-height: 1.6;
		margin: 0;
		padding: 0;
		
		& li
		{
			border-bottom: 1px solid #DFDFDF;
            padding: 18px 26px 10px;
			text-align: center;
			
			&:nth-child(odd)
			{
				border-right: 1px solid #DFDFDF;
			}
			&:last-of-type
			{
				border-bottom: none;
			}
			&:nth-last-of-type(2)
			{
				border-bottom: none;
			}

			& img
			{
				width: 54%;
				height: 54%;
				object-fit: contain;
			}
		}
	}
}


.sec-price
{
	padding: 0 0 100px;
	
	& .-title
	{
		color: var(--keycolor);
	}
	
	& .-text
	{
		text-align: center;
		margin-bottom: 30px;
	}
	
	& .-piece
	{
		margin-bottom: 40px;
		text-align: center;
		
		& .-two_pc
		{
			margin-bottom: 5px;
		}
		
		& .-category
		{
			background-color: #D4C4A3;
			border-radius: 999999px;
			color: #60440A;
			font-weight: 500;
			font-size: 0.9em;
			line-height: 1;
			margin-bottom: 1.5em;
			padding: 3px 10px;
			vertical-align: text-top;
		}
		
		& .-num
		{
			font-family: "Solitreo", cursive;
			font-weight: 400;
			font-size: 2.2rem;
			line-height: 1;
			margin: 0 7px 0 15px;
		}
		
		& .-yen
		{
			font-size: 0.9em;
			vertical-align: text-top;
		}
		
		& .-contact
		{
			font-size: 0.9em;
		}
	}
}


.sec-order
{
	background-color: #873448;
	padding: 20px 0 60px;
	position: relative;
	
	& .-subtitle, .-title
	{
		color: #ffffff;
	}
	
	& .-slider
	{
		margin-left: 20px;
		
		& .-slide
		{
			background-color: #EFDCE1;

			& .-wrap
			{
				padding: 15px;

				& .--title
				{
					font-weight: 700;
				}

				& .--text
				{
					font-size: 0.85em;
					margin-bottom: 0;
					line-height: 1.6;
				}
			}
		}
		
		& .splide__arrows
		{
			position: absolute;
			left: 0;
			bottom: -45px;
			display: flex;
			
			& .splide__arrow
			{
				background: none;
				border: 2px solid #eeeeee;
				height: 28px;
				width: 28px;
				position: static;
				transform: none;
				opacity: 1;
				transition-duration: .3s;
				
				& svg
				{
					fill: #eeeeee;
					height: 16px;
					width: 16px;
				}
				
				&:hover
				{
					opacity: .8;
				}
			}
			
			& .splide__arrow--prev
			{
				margin-right: 10px;
			}
		}
	}
	&::before
	{
		content: "";
		display: block;
		position: absolute;
		left: 0;
		top: -69.5px;
		background-color: #873448;
		height: 70px;
		width: 100%;
		clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
	}

	&::after
	{
		content: "";
		display: block;
		position: absolute;
		left: 0;
		bottom: -69.5px;
		background-color: #873448;
		height: 70px;
		width: 100%;
		clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
	}
}



.sec-shoes
{
    padding: 100px 0 100px;
	
	
	& .-title
	{
		color: var(--keycolor);
	}

	& .-thumbs
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin-bottom: 30px;
		
		& img:nth-child(1)
		{
			border-top-left-radius: 10%;
		}
		
		& img:nth-child(2)
		{
			border-top-right-radius: 10%;
		}
		
		& img:nth-child(3)
		{
			border-bottom-left-radius: 10%;
		}
		
		& img:nth-child(4)
		{
			border-bottom-right-radius: 10%;
		}
	}
	
	& .-text
	{
		margin-bottom: 20px;
	}
	
	& .-price_title
	{
		font-family: "Dancing Script", cursive;
		font-optical-sizing: auto;
		font-size: 1.6rem;
		font-weight: 500;
		text-align: center;
        margin-bottom: 10px;
	}
	
	& .-price
	{
        color: #555555;
		font-family: "Solitreo", cursive;
		font-weight: 400;
		font-size: 2.2rem;
		line-height: 1;
		margin: 0 7px 0 15px;
		text-align: center;
		
		& span
		{
			font-family: var(--font-default);
			font-size: 1rem;
		}
	}
}


.sec-message
{
	background-color: var(--keycolor);
	color: #ffffff;
	padding: 20px 0 40px;
	position: relative;
	
	
	& .-title
	{
		color: #ffffff;
	}
	& .-subtitle
	{
		margin-bottom: 3em;
	}
	
	&::before
	{
		content: "";
		display: block;
		position: absolute;
		left: 0;
		top: -69.5px;
		background-color: var(--keycolor);
		height: 70px;
		width: 100%;
		clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
	}

	&::after
	{
		content: "";
		display: block;
		position: absolute;
		left: 0;
		bottom: -69.5px;
		background-color: var(--keycolor);
		height: 70px;
		width: 100%;
		clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
	}
	
	& h3
	{
		color: #f4f4f4;
		font-size: 1.2rem;
		font-weight: 600;
		margin-bottom: 1em;
	}
	
	& .-text
	{
		color: #f4f4f4;
		line-height: 1.9;
		margin-bottom: 1.5em;
		text-align: justify;
	}
}


.sec-topics
{
    padding: 100px 0;
	
	& .-lists
	{
		list-style: none;
		margin: 0;
		padding: 0;
		
		& .-list
		{
			display: flex;
			justify-content: space-between;
			margin-bottom: 15px;
			
			&::last-of-type
			{
				margin-bottom: 0;
			}
			
			& .-thumbs
			{
				width: 18%;
				
				& img
				{
					vertical-align: bottom;
				}
			}
			& .-body
			{
				width: 77%;
				
				& a
				{
					text-decoration: none;
					color: #333333;
				}
				
				& .-meta
				{
					font-size: 0.85em;
					display: flex;
					justify-content: space-between;
                    line-height: 1;
                    margin-bottom: 5px;
				}
				
				& .-posttitle
				{
					font-size: 1rem;
					font-weight: 500;
				}
			}
		}
	}
	
	& .-readmore
	{
		text-align: right;
		
		& a
		{
            background-color: #dbdbdb;
            border-radius: 999999px;
            color: #333333;
			display: inline-block;
            font-size: 0.9em;
            line-height: 1;
            padding: 5px 12px;
            text-decoration: none;
			transition-duration: .3s;
			
			&:hover
			{
				background-color: #C7C7C7;
			}
		}
	}
}





.sec-faq
{
	background-color: #FCF2DD;
	padding: 20px 0 40px;
	margin-bottom: 110px;
	position: relative;
	
	&::before
	{
		content: "";
		display: block;
		position: absolute;
		left: 0;
		top: -69.5px;
		background-color: #FCF2DD;
		height: 70px;
		width: 100%;
		clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
	}

	&::after
	{
		content: "";
		display: block;
		position: absolute;
		left: 0;
		bottom: -69.5px;
		background-color: #FCF2DD;
		height: 70px;
		width: 100%;
		clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
	}
	& .-title
	{
		color: var(--keycolor);
	}

	& summary {
		display: block;
		cursor: pointer;
	}

	& summary::marker {
		display: none;
	}


	& details
	{
        background-color: #D4C4A3;
        border-bottom: 1px solid #FCF2DD;
        color: #60440A;
        padding: 15px;
		
		& summary
		{
			font-weight: 500;
			display: flex;
            align-items: center;
            position: relative;
            padding: 0 20px 0 0;
            cursor: pointer;
            line-height: 1.6;
			
			&::-webkit-details-marker
			{
				display: none;
			}
			&::before,
			&::after
			{
                background-color: #fff;
                content: '';
                position: absolute;
                right: 5px;
				width: 2px;
                height: 1em;
                transition: rotate .3s;
			}
			&::before
			{
				rotate: 90deg;
			}
		}

		& .-answer
		{
			font-size: 0.85em;
			overflow: hidden;
			transition: height 0.3s ease-out;
			
			& p
			{
				margin-top: 15px;
			}
		}
	}



	& details[open] > summary::before {
		rotate: 135deg;
	}
	& details[open] > summary::after {
		rotate: 45deg;
	}
	& details > summary h2 {
		font-size: 20px;
		font-weight: 900;
		margin: 0;
	}
}




.sec-instagram
{
	
	& .splide__track
	{
		margin-bottom: 10px;
	}
	& .splide__slide
	{
		
		& a
		{
			display: block;
			width: 100%;
			height: auto;
			aspect-ratio: 1/1;

			& img
			{
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
		}

		& img
		{
			border-top-left-radius: 10%;
			border-bottom-right-radius: 10%;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}
	
	& .-link
	{
		margin-bottom: 70px;
		text-align: center;
		
		& a
		{
			background: #f19b3a;
            border-radius: 9999px;
            color: #60440A;
			font-family: "Dancing Script", cursive;
			font-size: 1.4em;
            font-weight: 700;
            position: relative;
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 30px auto 0;
            width: 240px;
            max-width: 70%;
            padding: 12px 15px;
            line-height: 1;
            text-decoration: none;
            transition: 0.3s ease-in-out;
			
			&:hover
			{
				background-color: #e7386e;
			}
		}
	}
}






/* ======================================
    NEWS LIST
====================================== */
.p-postList
{
	&.-type-card
	{
		display:inherit;
		
		& .p-postList__item
		{
			flex-basis: auto;
		}
	}
	& .p-postList__title
	{
		font-size: 0.9rem !important;
		font-weight: 400;
		line-height: 1.5;
	}
	&.-type-simple
	{
		& .p-postList__link:hover
		{
			background-color: #333;
		}
		& .p-postList__meta
		{
			display: flex;
			justify-content: space-between;
			
			& .p-postList__times {
				order: 2;
			}
			
			& svg
			{
				display: none;
			}
		}
	
	}
}


.c-pageTitle__main
{
    line-height: 1.4;
}

.c-bottomSection__title, .c-secTitle, .c-widget>.wp-block-group>.wp-block-group__inner-container>h2, .c-widget__title, h2.widgettitle
{
}
.p-postList.-type-card.-related
{
	display: flex;
}
.-related .p-postList__title {
    font-size: .8rem;
}




/* ======================================
    SINGLE
====================================== */
.single
{
	& h2
	{
		font-size: 1.5rem;
		font-weight: 700;
	}
	& h3
	{
		font-size: 1.3rem;
		font-weight: 700;
	}

	& .c-pageTitle__main {
		font-size: 1.6rem;
		line-height: 1.5;
	}
}



/* ======================================
    PAGES
====================================== */
div.wpforms-container-full .wpforms-field-description.wpforms-disclaimer-description
{
    font-size: 0.9rem;
    line-height: 1.6;
}



.btn-contact
{
	margin-top: 1em;
	& a
	{
		background: #dcb4be;
		border-radius: 9999px;
		color: #333333;
		font-size: 0.9em;
		font-weight: 500;
		position: relative;
		display: flex;
		justify-content: space-around;
		align-items: center;
		margin: 0 auto;
		width: 100%;
		padding: 10px 15px;
		line-height: 1;
		text-decoration: none;
		transition: 0.3s ease-in-out;
	}
	& a:hover
	{
		background: #333333;
		color: #FFF;
	}
	& a:after
	{
		content: '';
		width: 8px;
		height: 8px;
		border-top: 2px solid #333333;
		border-right: 2px solid #333333;
		transform: rotate(45deg) translateY(-50%);
		position: absolute;
		top: 50%;
		right: 20px;
		border-radius: 1px;
		transition: 0.3s ease-in-out;
	}
	& a:hover:after
	{
		border-color: #FFF;
	}
}


.btn-cta
{
	position: fixed;
	bottom: 10px;
	padding: 0 15px;
	width: 100%;
	
	& a
	{
        background-color: #60440A;
        border: 1px solid #ffffff;
        border-radius: 8px;
        color: #ffffff;
        display: flex;
        font-size: 1.1rem;
        text-decoration: none;
        width: 100%;
        padding: 10px;
        text-align: center;
        justify-content: center;
        align-items: center;
		transition: 0.3s ease-in-out;
		
		&::before
		{
			content: "";
            display: block;
            background-image: url(assets/img/icon_mail.svg);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            width: 1.2rem;
            height: 1.2rem;
            margin-right: 6px;
		}
		
		&:hover
		{
			background-color: #805c10;
		}
	}
}
@media only screen and (min-width: 768px)
{
	.btn-cta
	{
		width: 40%;
		max-width: var(--content-max-width);
		left: 50%;
		bottom: 10px;;
		transform: translateX(-50%);
	}
}


.c-fixBtn
{
    background: #044211;
    opacity: .8;
	border: 1px solid #07741D;
}
.p-fixBtnWrap
{
	bottom: 80px;
	right: 15px;
}

.gfonts
{
	font-family: "Noto Sans JP";
}

.grecaptcha-badge
{
	display:none;
}



.mb-1
{
	margin-bottom: 10px;
}
.mb-2
{
	margin-bottom: 20px;
}
.mb-3
{
	margin-bottom: 30px;
}