/********************************

リセットCSS

********************************/

html {
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

li {
	list-style: none;
}

p {
	line-height: 2;
	font-family: "BIZ UDPMincho", serif;
	font-weight: 300;
	max-width: 40em;
}

a {
	text-decoration: none;
}

/********************************

共通部分

********************************/

body {
	font-family: "BIZ UDP Mincho", serif;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	--main-color: #B7282E;
}

.en {
	font-family: "Cardo", serif;
	font-weight: bold;
}

.btn-1 {
	color: #fff;
	background: linear-gradient(to right, #1B1B1B, #1A1A1A);
	width: min(100%, 300px);
    display: flex;
	justify-content: space-evenly;
    align-items: center;
	margin: 0 auto;
	padding: 16px 8px 16px 16px;
}

.btn-1::before {
    content: "";
    display: block;
    width: 24px;
    height: 14px;
    background-image: url(vector1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 38%;
    left: 16px;
}

.bp {
	display: inline-block;
}

/* fv */
.fv {
	position: relative;
	background-size: contain;
}

.fv .h2-area {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
	height: 100%;
}



/* ヘッダー(sp) */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(242,242,242,0.96) 100%);
	box-sizing: border-box;
}

.head-inner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.head {
	height: 80px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 242, 242, 0.96) 100%);
	width: min(95%, 1300px);
    margin: 8px auto 0;
}

.head a {
	display: flex;
	justify-content: flex-start;
	gap: 24px;
	min-width: 200px;
}

.head img,.sp_nav > a img {
	width: fit-content;
	height: 50px;
	position: relative;
	top: 14px;
	left: 8px;
	margin-left: 0;
}

.head p {
	color: black;
	padding-top: 8px;
}

.head > .sp_none-tel {
	display: none;
}

.pc {
	display: none;
}

.hamburger {
	display : block;
	position: fixed;
	z-index : 120;
	right : 4%;
	top   : 22px;
	width : 50px;
	height: 50px;
	cursor: pointer;
	text-align: center;
	background: rgba(45, 45, 45, 1);
}

.hamburger span {
	display : block;
	position: absolute;
	width   : 38px;
	height  : 1px ;
	border-radius: 4px;
	left    : 6px;
	background : #fff;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}

.hamburger p {
	position: absolute;
	top: 16px;
	left: 5px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}

.hamburger span:nth-child(1) {
	top: 12px;
}
.hamburger span:nth-child(2) {
	top: 24px;
}
.hamburger span:nth-child(3) {
	top: 36px;
}

.active .hamburger {
	background: #fff;
}

.active .hamburger span:nth-child(1) {
	background: #1A1A1A;
	top : 25px;
	left: 6px;
	transform: rotate(-45deg);
}

.active .hamburger span:nth-child(2),
.active .hamburger span:nth-child(3) {
    background: #1A1A1A;
	top: 25px;
	transform: rotate(45deg);
}

.sp_nav {
	position: fixed;
	z-index : 100;
	top  : 0;
	left : 0;
	color: #000;
	text-align: center;
	transform: translateX(100%);
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	margin: 0 auto;
	margin-right: 0;
	padding: 8px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 242, 242, 0.96) 100%);
}

.active .sp_nav {
	transform: translateX(0%);
}

.sp_nav menu {
	text-align: left;
	padding-top: 24px;
}

.sp_nav menu > li {
	margin-bottom: 20px;
	border-bottom: 1px solid;
}

.sp_nav menu > li a {
	font-size: 20px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: #000;
}

header menu .tohome {
	display: flex;
    align-items: center;
	gap: 4px;
}

header menu .tohome::after {
	background: url(return-b.svg) no-repeat center;
	background-size: contain;
	content: "";
    display: block;
    width: 16px;
    aspect-ratio: 1 / 1;
}

/* ヘッダー(pc) */

@media (min-width: 660px) {
	header {
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 242, 242, 0.96) 100%);
		width: min(95%, 1300px);
        margin: 8px auto 0;
	}

	.sp {
		display: none;
	}

	.pc {
		display: block;
		background-size: cover;
	}

	.head {
		display: flex;
		justify-content: space-between;
		max-width: 1400px;
		margin: 0;
		width: fit-content;
		background: unset;
	}
}

.pc_nav {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 8px;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	gap: 20px 28px;
	align-items: center;
}

.pc_nav a {
	padding: 8px 0;
	font-weight: 500;
	color: #000;
}

/**************
フッター
***************/
footer {
	background: linear-gradient(to bottom, rgba(0,0,0,0.7), black);
	color: white;
	position: relative;
}

footer::before {
	position: absolute;
	content: '';
	background: url(k3-fv.jpg);
	background-repeat: no-repeat;
	background-size: cover;
    background-position-y: center;
	filter: grayscale(100%);
	width: 100%;
    height: 100%;
	z-index: -1;
}

.foot-content {
	max-width: 1200px;
	margin: 0 auto;
	width: fit-content;
}

.foot-upper {
	padding: 32px 16px;
}

.foot-upper > a {
	color: white;
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

.foot-upper ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.foot-upper > a img  {
	aspect-ratio: 1/1;
	max-width: 60px;
}

.foot-upper ul li .access {
	border: solid white 1px;
	width: fit-content;
	padding: 0 12px;
	margin-bottom: 0.5em;
}

.foot-upper ul li a {
	color: white;
	font-family: "BIZ UDPMincho", serif;
}

.foot-bottom {
	margin: 0 16px;
}

.foot-bottom ul {
	display: flex;
	flex-wrap: wrap;
    gap: 16px;
	margin: 16px 0;
}

.foot-bottom ul li {
	text-align: center;
}

.foot-bottom a {
	color: white;
}

.foot-bottom img {
	max-width: 300px;
	min-width: 200px;
}

.foot-bottom > a {
	border: solid white 1px;
	width: min(100%,436px);
	padding: 8px 20px;
    display: block;
	margin: 0 auto 16px;
	text-align: center;
}

.foot-bottom > a::before {
	display: none;
}

.copyright {
	text-align: center;
	margin: 0 auto;
}

@media (min-width: 900px) {
	.foot-content {
		display: flex;
		gap: 20px;
		padding-top: 32px;
	}

	.foot-upper {
		padding: 0 0 0 16px;
	}

	.foot-upper ul li,.foot-bottom ul li {
		width: 47%;
	}
}


.at {
	background-color: #F9F8F6;
	width: 100%;
	padding: 60px 10px 30px;
}


.at .at-txt {
	width: fit-content;
	margin: 0px auto;
	text-align: center;
	font-weight: 500;
	color: #B7282E;
}
/**************
FV
***************/

.fv .fv-img .fv-content {
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 210px;
	padding: 8px;
	color: #000;
	z-index: 10;
	transition: background-color 0.3s ease;
	position: absolute;
	bottom: 10px;
	left: 10px;
}

.fv .fv-img .fv-content img {
	width: 75%;
}

.fv .fv-img .fv-content .brand-name {
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fv .fv-img .fv-content .brand-name:before,
.fv .fv-img .fv-content .brand-name:after {
	content: '';
	background-color: #000;
	height: 2px;
	width: 20px;
}

.fv .fv-img .fv-content .brand-name:before {
	margin-right: 10px;
}

.fv .fv-img .fv-content .brand-name:after {
	margin-left: 10px;
}

.fv .fv-img .fv-content .property-name {
	display: flex;
	gap: 16px;
	align-items: center;
}

.fv .fv-img .fv-content .property-name .number {
	line-height: 1;
	font-size: 14px;
	background-color: #FF9900;
	color: #000000;
	padding: 2px;
}

.fv .fv-img .fv-content p {
	text-align: center;
}

.fv .fv-inner .fv-content .btn-1 {
	background: none;
	color: #000;
	flex-direction: row-reverse;
    width: min(100%, 230px);
    padding: 4px 12px;
    border: 1px solid #000;
    margin: 4px auto 0;
}

.fv .fv-inner .fv-content .btn-1::before {
	content: "";
    display: block;
    width: 24px;
    height: 14px;
    background-image: url(vector-b.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 38%;
    left: 16px;
}

.fv .fv-img .fv-catch p {
	z-index: 10;
	padding: 10px;
	background-color: rgba( 93, 36, 19, 0.7);
	color: #F9F8F6;
	writing-mode: vertical-rl;
	position: absolute;
	top: 30%;
	right: 10px;
	font-family: 'Noto Serif JP', serif;
}

.benefits {
	display: block;
    width: 50%;
    margin: 30px auto 0;
    max-width: 400px;
}

@media (min-width: 360px) {
	.fv .fv-img .fv-content {
		width: 240px;
	}
	.fv .fv-img .fv-content .brand-name {
		font-size: 16px;
	}
	.fv .fv-img .fv-content .property-name .number {
		font-size: 16px;
	}
}
@media (min-width:500px) {
	.fv .fv-img .fv-content {
	    width: 280px;
		font-size: 20px;
	}
	.fv .fv-img .fv-catch {
		top: 35%;
	}
}
@media (min-width:700px) {
	.fv .fv-img .fv-catch {
		top: 30%;
	}
	.fv .fv-img.fv-k4 .fv-catch {
		top: 30%;
	}
}
@media (min-width:900px) {
	.fv .fv-img .fv-content {
		bottom: 16px;
		left: 16px;
		padding: 16px;
	}
	.fv .fv-img .fv-catch {
		top: 22%;
	}
	.fv .fv-img.fv-k4 .fv-catch {
		top: 22%;
	}
	.fv .fv-img .fv-catch p {
		font-size: 22px;
	}
}

.googlemap {
	max-width: 1000px;
	margin: 0 auto;
}