/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
	box-sizing: border-box;
	border-style: solid;
	border-width: 0;
	min-width: 0
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent
}

body {
	margin: 0;

}

main {
	display: block;
	overflow: hidden;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
	margin: 0
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none
}

dt {
	font-weight: 700
}

dd {
	margin-left: 0
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	border-top-width: 1px;
	margin: 0;
	clear: both;
	color: inherit
}

pre {
	font-family: monospace, monospace;
	font-size: inherit
}

address {
	font-style: inherit
}

a {
	background-color: transparent;
	text-decoration: none;
	color: inherit
}

abbr[title] {
	text-decoration: underline dotted
}

b, strong {
	font-weight: bolder
}

code, kbd, samp {
	font-family: monospace, monospace;
	font-size: inherit
}

small {
	font-size: 80%
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

svg, img, embed, object, iframe {
	vertical-align: bottom
}

button, input, optgroup, select, textarea {
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	color: inherit;
	font: inherit;
	background: transparent;
	padding: 0;
	margin: 0;
	border-radius: 0;
	text-align: inherit;
	text-transform: inherit
}

button, [type="button"], [type="reset"], [type="submit"] {
	cursor: pointer
}

button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
	cursor: default
}

:-moz-focusring {
	outline: auto
}

select:disabled {
	opacity: inherit
}

option {
	padding: 0
}

fieldset {
	margin: 0;
	padding: 0;
	min-width: 0
}

legend {
	padding: 0
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
	height: auto
}

[type="search"] {
	outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

[type="number"] {
	-moz-appearance: textfield
}

label[for] {
	cursor: pointer
}

details {
	display: block
}

summary {
	display: list-item
}

[contenteditable]:focus {
	outline: auto
}

table {
	border-color: inherit;
	border-collapse: collapse
}

caption {
	text-align: left
}

td, th {
	vertical-align: top;
	padding: 0
}

th {
	text-align: left;
	font-weight: 700
}

body {
	font-family: "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
	background-color: #f4f4f4;
}

img {
	width: 100%;
	height: auto;
}

picture {
	display: block;
}

.mt17 {
	margin-top: clamp(1.063rem, 0.466rem + 2.54vw, 1.688rem);
}

.mt25 {
	margin-top: clamp(1.563rem, 0.37rem + 5.09vw, 2.813rem);
}

.mt35 {
	margin-top: 35px;
}

.mt50 {
	margin-top: 50px;
}


.button-section {
	position: relative;
	filter: drop-shadow(-4px 4px 7px rgba(64, 64, 64, 0.16));
	
	.btn {
		position: absolute;
		background-color: #fff;
		border: 2px solid #ffbd29;
		border-radius: 50px;
		padding: clamp(0.5rem, 0.2615rem + 1.0178vw, 0.75rem) 24px;
		font-size: clamp(1.1875rem, 0.114rem + 4.5802vw, 2.3125rem);
		text-decoration: none;
		color: #2c2313;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		width: 80%;
		transition: background-color 0.3s, border 0.3s, color 0.3s;
		gap: 15px;
		left: 50%;
		bottom: clamp(0.438rem, 0.097rem + 1.7vw, 1.375rem);
		translate: -50% 0;
		overflow: hidden;
		
		&::before {
			position: absolute;
			content: '';
			display: inline-block;
			left: 0;
			width: 30px;
			height: 100%;
			background-color: #edf6ff;
			animation: btn_animation 4s ease-in-out infinite;
		}
		
		&::after {
			display: block;
			content: "";
			width: clamp(0.75rem, 0.1536rem + 2.5445vw, 1.375rem);
			height: clamp(0.75rem, 0.1536rem + 2.5445vw, 1.375rem);
			rotate: 45deg;
			border-top: 2px solid #2c2313;
			border-right: 2px solid #2c2313;
			transition: background-color 0.3s, border 0.3s, color 0.3s;
		}
		
		&:hover {
			background-color: #ffbd29;
			border: 2px solid #fff;
			color: #ffffff;
			
			&::after {
				border-top: 2px solid #ffffff;
				border-right: 2px solid #ffffff;
			}
		}
	}
	
}

@keyframes btn_animation {
	0% {
		transform: scale(0) rotate(45deg);
		opacity: 0;
	}
	80% {
		transform: scale(0) rotate(45deg);
		opacity: 0.5;
	}
	81% {
		transform: scale(4) rotate(45deg);
		opacity: 1;
	}
	100% {
		transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}

.header {
	padding: 18px 14px;
	position: fixed;
	z-index: 20;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.8);
}

.logo {
	width: clamp(5.125rem, 1.547rem + 15.27vw, 8.875rem);
}

.main {
	padding: 80px 0 150px;
	max-width: 768px;
	margin-inline: auto;
}

.fv {
	padding: 0 3.735%;
}

.fv__bottom {
	margin-top: clamp(1.563rem, 0.37rem + 5.09vw, 2.813rem);
}

.fv__fukidashi {
	padding-inline: clamp(1.563rem, 0.37rem + 5.09vw, 2.813rem);
}

.fv-button-section {
	margin-top: clamp(1.063rem, 0.466rem + 2.54vw, 1.688rem);
}

.my-home {
	margin-top: clamp(1.063rem, 0.466rem + 2.54vw, 1.688rem);
	position: relative;
	
	&::before {
		position: absolute;
		background-color: #5fc36c;
		content: '';
		top: -20px;
		bottom: 0;
		left: 0;
		right: 0;
		height: clamp(29.375rem, 1.942rem + 117.05vw, 58.125rem);
		transform: skewY(-8deg);
		z-index: -1;
	}
}

.loan-problem {
	padding-inline: 3.735%;
	margin-top: clamp(1.563rem, 0.37rem + 5.09vw, 2.813rem);
}

.loan-problem__inner {
	background-color: #cecece;
	padding: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem) clamp(1.563rem, 1.335rem + 1.14vw, 2.188rem);
	border-radius: 10px;
}

.loan-lead-text {
	margin-bottom: 20px;
	margin-inline: auto;
	text-align: center;
	color: #2f2f2f;
	font-weight: bold;
	font-size: clamp(1.5rem, 0.546rem + 4.07vw, 2.5rem);
	.marker {
		background:linear-gradient(transparent 70%, rgba(255, 255, 255) 50%);
		display: inline;
		background-repeat: no-repeat;
		background-size: 0 100%;
		transition:background-size 1.5s;
		font-size: clamp(2.438rem, -0.544rem + 12.72vw, 5.563rem);

	}
	.marker-on {
		background-size: 100% 100%;
	}
	.loan-lead-text__phrase {
		font-size: clamp(1.5rem, -0.289rem + 7.63vw, 3.375rem);
		margin-top: clamp(0.625rem, -0.27rem + 3.82vw, 1.563rem);
	}
}



.loan-problem__fukidashi {
	margin-top: 36px;
}

.loan-problem__abandon {
	width: 60%;
	margin: clamp(1.563rem, 0.37rem + 5.09vw, 2.813rem) auto 0;
}

.wait {
	position: relative;
	padding-inline: 3.735%;
}

.wait-image {
	margin-top: -25px;
	top: 0;
}

.wait__we-will-find {
	position: absolute;
	top: clamp(15.625rem, 0.1193rem + 66.1578vw, 31.875rem);
	width: clamp(18.75rem, 0.8588rem + 76.3359vw, 37.5rem);
	left: 54%;
	translate: -50% 0;
}

.presentation {
	position: relative;
	z-index: 10;
	margin-bottom: 100px;
}

.presentation--shifted {
	margin: -35% 0 clamp(11.875rem, -1.245rem + 55.98vw, 25.625rem);
}

.presentation__top,
.presentation__middle,
.presentation__bottom {
	position: relative;
	
	&::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		transform: skewY(-8deg);
		z-index: -1;
	}
}


.presentation__top,
.presentation__bottom {
	&::before {
		background-color: #5fc36c;
	}
}

.presentation__top {
	padding: clamp(4.375rem, 0.797rem + 15.27vw, 8.125rem) 0 clamp(1.875rem, 0.682rem + 5.09vw, 3.125rem);
}

.presentation__middle {
	padding: clamp(1.875rem, -0.51rem + 10.18vw, 4.375rem) 0;
	
	&::before {
		background-color: #5fd36e;
	}
}

.presentation__bottom {
	height: clamp(11.25rem, 1.708rem + 40.71vw, 21.25rem);
}

.presentation__inner {
	padding-inline: 3.735%;
}

.presentation__inner--narrow {
	padding-inline: 40px;
}

.presentation__solution {
	margin: clamp(2.813rem, 0.427rem + 10.18vw, 5.313rem) auto 0;
	width: clamp(14.188rem, -0.901rem + 64.38vw, 30rem);
}

.presentation__feature {
	width: clamp(17.5rem, -1.584rem + 81.42vw, 37.5rem);
	margin-inline: auto;
}

.presentation__message {
	margin-inline: auto;
	width: clamp(20.125rem, 2.353rem + 75.83vw, 38.75rem);
	translate: 5px 0;
}

.presentation__button-section {
	margin-top: -15%
}

.presentation__diagonal {
	position: absolute;
	width: 100%;
	left: 50%;
	translate: -50% 0;
	top: clamp(2.625rem, 0.836rem + 7.63vw, 4.5rem);
	
	&::before,
	&::after {
		content: '';
		position: absolute;
		width: 40%;
		height: 2px;
		background-color: #4aff61;
	}
	
	&::before {
		transform: rotate(45deg);
		transform-origin: left top;
		left: 36%;
	}
	
	&::after {
		transform: rotate(-45deg);
		transform-origin: right top;
		right: 36%;
	}
	

}

.diagonal-animation {
	&.presentation__diagonal {
		&::before,
		&::after {
			animation: diagonal-cross 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
		}
	}
}

@keyframes diagonal-cross {
	0% {
		width: 0;
	}
	100% {
		width: 40%;
	}
}

.reason__block {
	position: relative;
	
	&::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		transform: skewY(-8deg);
		z-index: -1;
	}
}

.reason1-heading,
.reason2-heading {
	padding-block: clamp(2.5rem, 0.711rem + 7.63vw, 4.375rem);
	
	&::before {
		background-color: #7dce87;
	}
}

.reason1-content,
.reason2-content {
	&::before {
		background-color: #cdf4d1;
	}
}

.reason1-heading__image,
.reason2-heading__image {
	width: clamp(17.875rem, -2.044rem + 84.99vw, 38.75rem);
	margin-inline: auto;
}

.reason1-content {
	padding: 0 3.735% clamp(1.25rem, 0.057rem + 5.09vw, 2.5rem);
}

.reason1-content__image,
.reason2-content__image {
	translate: 0 -5%;
}

.reason2-content {
	padding: 0 3.735% clamp(2.5rem, -0.482rem + 12.72vw, 5.625rem);
}

.reason1-text,
.reason2-text {
	margin-top: clamp(1.063rem, 0.466rem + 2.54vw, 1.688rem);
}

.omakase {
	padding: clamp(3.75rem, 0.768rem + 12.72vw, 6.875rem) 3.735% 0;
}

.omakase__button-section {
	margin-top: clamp(1.563rem, 0.37rem + 5.09vw, 2.813rem);
}

.omakase__image {
	position: relative;
	width: 85.6%;
	margin-inline: auto;
}

.my-home-dream {
	position: relative;
	padding-right: 3.735%;
	z-index: 10;
}

.examples {
	position: relative;

	margin-top: clamp(3.125rem, 1.761rem + 6.82vw, 6.875rem);
}


.examples__diagonal {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 20px;
	height: clamp(12.5rem, -1.813rem + 61.07vw, 27.5rem);
	background-color: #5fd36e;
	transform: rotate(-8deg);
	transform-origin: left bottom;
}

.diagonal-animation {
	&.examples__diagonal {
		animation: diagonal-grow 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	}
}

@keyframes diagonal-grow {
	0% {
		width: 20px;
	}
	100% {
		width: 150%;
	}
}

.examples-image {
	position: relative;
	margin-top: -50px;
	z-index: 10;
	width: 115%;
	translate: -6.1% 0;
}

.presentation-foot {
	position: relative;
}

.presentation-foot--pc {
	display: none;
}

.presentation-foot--sp {
	margin-top: 15px;
	padding-top: clamp(1.25rem, 0.057rem + 5.09vw, 2.5rem);
	height: clamp(21.25rem, 5.148rem + 68.7vw, 38.125rem);
	
	&::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		transform: skewY(-8deg);
		z-index: -1;
		background-color: #f8eecf;
	}
}

.footer {
	margin: 0 auto;
	background-color: #efece5;
	padding: clamp(2.813rem, 1.62rem + 5.09vw, 4.063rem) 0;
}

.footer__right {
	display: none;
}

.footer-image-sp {
	padding: 0 3.735%;
}

.footer__left {
	max-width: 768px;
	margin-inline: auto;
}


.footer-nav {
	font-size: clamp(0.875rem, -0.079rem + 4.07vw, 1.875rem);
	display: flex;
	gap: clamp(3.125rem, 0.74rem + 10.18vw, 5.625rem);
	align-items: center;
	margin: 0 auto clamp(3.125rem, 1.932rem + 5.09vw, 4.375rem);
	width: fit-content;
}


.footer__logo {
	margin: clamp(2.5rem, 0.711rem + 7.63vw, 4.375rem) 0 0 clamp(2.5rem, 0.711rem + 7.63vw, 4.375rem);
	width: clamp(7.563rem, 2.195rem + 22.9vw, 13.188rem);
}

.footer-bottom__company-info {
	margin-top: clamp(3.125rem, 1.932rem + 5.09vw, 4.375rem);
	padding: 0 clamp(2.5rem, 0.711rem + 7.63vw, 4.375rem);
}

.footer-bottom__company-name {
	font-size: clamp(1.063rem, 0.287rem + 3.31vw, 1.875rem);
}

.footer-bottom__company-address {
	margin-top: clamp(0.625rem, 0.327rem + 1.27vw, 0.938rem);
	font-size: clamp(0.875rem, 0.219rem + 2.8vw, 1.563rem);
	line-height: 1.7;
}

.footer-bottom__company-contact {
	display: flex;
	gap: clamp(1.25rem, 0.057rem + 5.09vw, 2.5rem);
	margin-top: clamp(0.625rem, 0.327rem + 1.27vw, 0.938rem);
	font-size: clamp(0.875rem, 0.219rem + 2.8vw, 1.563rem);
}

.copyright {
	margin-top: clamp(2.813rem, 1.62rem + 5.09vw, 4.063rem);
	font-size: clamp(0.875rem, 0.219rem + 2.8vw, 1.563rem);
	text-align: center;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	background-color: #ffffff;
}

input[type="checkbox"] {
	cursor: pointer;
	position: relative;
	width: 16px;
	height: 16px;
	border: 1px solid #2f2f2f;
	vertical-align: -5px;
}

input[type="checkbox"]:checked::before {
	position: absolute;
	top: -1px;
	left: 4px;
	rotate: 50deg;
	width: 7px;
	height: 13px;
	border-right: 2px solid #2f2f2f;
	border-bottom: 2px solid #2f2f2f;
	content: '';
}

.form-content {
	max-width: 347px;
	display: grid;
	gap: 32px;
	margin-inline: auto;
}

.form-group {
	padding-inline: 25px;
	
	label {
		font-weight: bold;
		display: block;
	}
}

.form-group__checkbox {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.form-heading {
	background-color: #ffbd29;
	padding: 20px;
	font-size: 25px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
}

.form-heading--confirmation {
	background-color: #cdf4d1;
}

.form-heading__small {
	font-size: 17px;
}

.form-main {
	padding: 80px 0;
	color: #2f2f2f;
}

.form-image-wrapper {
	max-width: 347px;
	margin: 35px auto 55px;
}

.form-consultation {
	margin-bottom: 5px;
}

.form-consultation-note {
	font-size: 14px;
	margin-bottom: 5px;
}

.checkbox-label {
	cursor: pointer;
	align-items: center;
	gap: 5px;
}

.form-privacy-link {
	text-decoration: underline;
}

.form-confirmation-button {
	background-color: #f8eecf;
	border: 3px solid #ffbd29;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	padding: 7px 0 5px;
	width: 100%;
	
	&::after {
		display: block;
		content: "";
		width: 10px;
		height: 10px;
		rotate: 45deg;
		border-top: 2px solid #2f2f2f;
		border-right: 2px solid #2f2f2f;
		transition: background-color 0.3s, border 0.3s, color 0.3s;
	}
	
	&:hover {
		opacity: 0.7;
	}
}

.form-confirmation-button--submit {
	background-color: #cdf4d1;
	border: 3px solid #5fd36e;
}

.confirmation {
	display: grid;
	gap: 32px;
}

.confirmation-text {
	margin: 80px auto 0;
	width: 347px;
	line-height: 1.7;
	font-weight: bold;
}

.confirmation-group-wrap {
	display: grid;
	gap: 32px;
	margin: 30px auto;
	max-width: 347px;
}

.confirmation-group {
	h3 {
		font-size: 17px;
		font-weight: bold;
	}
	
	p {
		background-color: #cdf4d1;
		padding: 10px;
		margin-top: 6px;
	}
}

.thanks-main {
	padding-top: 100px;
}

.thanks-wrapper {
	text-align: center;
	margin-bottom: 100px;
}

.thanks-heading {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 44px;
}

.thanks-text-top {
	font-size: 17px;
	font-weight: bold;
	margin-bottom: 20px;
}

.thanks-text-bottom {
	margin-bottom: 50px;
	line-height: 2;
}

.thanks-line {
	width: 347px;
	margin: 50px auto 0;
}

.thanks-instagram {
	margin: 50px auto 0;
	width: 34px;
	height: 34px;
}

@media screen and (1080px <= width) {
	
	.button-section {
		.btn {
			font-size: 22px;
			bottom: 10px;
			padding: 8px;
			
			&::after {
				display: block;
				content: "";
				width: 15px;
				height: 15px;
				rotate: 45deg;
				border-top: 2px solid #2c2313;
				border-right: 2px solid #2c2313;
			}
		}
		
		
	}
	
	.main {
		max-width: none;
		margin-inline: auto;
		padding: 100px 0;
	}
	
	.fv {
		display: flex;
		gap: 78px;
		padding: 0;
		align-items: center;
		max-width: 1046px;
		margin-inline: auto;
	}
	
	.fv__image {
		width: 536px;
	}
	
	.fv__bottom {
		margin-top: 0;
		max-width: 432px;
	}
	
	.fv__fukidashi {
		width: 372px;
		padding-inline: 0;
		margin-inline: auto;
	}
	
	.fv-button-section {
		margin-top: 20px;
	}
	
	.my-home {
		margin: 100px auto 0;
		max-width: 946px;
		position: static;
		
		&::before {
			top: 440px;
			height: 700px;
		}
	}
	
	.loan-problem {
		padding: 0;
		max-width: 1046px;
		margin: 95px auto 0;
	}
	
	.loan-problem__inner {
		padding: 95px 50px 50px;
	}
	
	.loan-lead-text {
		font-size: 31px;
		padding: 0;
		margin-bottom: 95px;
		.marker {
			font-size: 57px;
		}
		
		.loan-lead-text__phrase {
			font-size: 34px;
		}
		
	}
	
	.loan-block {
		display: flex;
		gap: 35px;
		align-items: center;
	}
	
	.loan-sad {
		flex: 1;
	}
	
	.loan-problem__fukidashi {
		margin-top: 0;
		flex: 1;
	}
	
	.loan-problem__abandon {
		width: 846px;
		margin: 95px auto 0;
	}
	
	.wait {
		padding: 0;
	}
	
	.wait-image {
		width: 522px;
		margin-inline: auto;
	}
	
	.wait__we-will-find {
		width: 451px;
		translate: -210px 0;
		top: 420px;
		left: 50%;
	}
	
	.presentation {
		margin-bottom: 0;
	}
	
	.presentation--shifted {
		margin: -130px 0 420px;
	}
	
	.presentation__top {
		padding-bottom: 60px;
	}
	
	.presentation__bottom {
		padding: 40px 0 0;
		height: 450px;
	}
	
	.presentation__fudosan {
		max-width: 550px;
		margin-inline: auto;
	}
	
	.presentation__solution {
		max-width: 321px;
		margin-inline: auto;
	}
	
	.presentation__feature {
		max-width: 469px;
		margin-inline: auto;
	}
	
	.presentation__message {
		width: 723px;
	}
	
	.presentation__button-section {
		width: 733px;
		margin: -140px auto 0;
		
		.btn {
			font-size: 30px;
			padding: 19px;
			bottom: 20px;
			
			&::after {
				width: 20px;
				height: 20px;
			}
		}
	}
	
	.presentation__diagonal {
		position: absolute;
		top: 90px;
		width: 210px;
		height: 100px;
		
		&::before,
		&::after {
			content: '';
			position: absolute;
			width: 100%;
			height: 2px;
			background-color: #4aff61;
		}
		
		&::before {
			transform: rotate(45deg);
			transform-origin: left top;
			left: 35px;
		}
		
		&::after {
			transform: rotate(-45deg);
			transform-origin: right top;
			right: 35px;
		}
	}
	
	
	
	@keyframes diagonal-cross {
		0% {
			width: 0;
		}
		100% {
			width: 200px;
		}
	}
	.reason1-heading__image,
	.reason2-heading__image {
		width: 384px;
	}
	
	.reason1-content__image,
	.reason2-content__image {
		width: 468px;
		margin-inline: auto;
	}
	
	.reason1-text,
	.reason2-text {
		margin: 50px auto 0;
		max-width: 1046px;
	}
	
	.omakase {
		padding: 100px 50px 0;
	}
	
	.omakase__image {
		width: 400px;
		margin-inline: auto;
	}
	
	.omakase__button-section {
		width: 733px;
		margin: 50px auto 0;
		
		.btn {
			font-size: 30px;
			padding: 19px;
			bottom: 20px;
			
			&::after {
				width: 20px;
				height: 20px;
			}
		}
	}
	
	.examples__inner {
		display: flex;
		max-width: 1200px;
		margin-inline: auto;
	}
	
	.examples-diagonal-wrap {
		overflow-x: hidden
	}
	
	.examples__diagonal {
		height: 335px;
		top: 750px;
	}
	
	.my-home-dream {
		max-width: 660px;
		padding-right: 0;
	}
	
	.examples-image {
		width: auto;
		max-width: 760px;
		translate: 0 0;
		margin-top: 84px;
		margin-left: -20%;
	}
	
	.presentation-foot--sp {
		display: none;
	}
	
	.presentation-foot--pc {
		display: block;
		width: 946px;
		margin: 50px auto 0;
	}
	
	.footer-btn {
		width: 50%;
		position: absolute;
		bottom: 30px;
		left: 80px;
		background-color: #fff;
		border: 2px solid #ffbd29;
		border-radius: 50px;
		padding: clamp(0.5rem, 0.2615rem + 1.0178vw, 0.75rem) 24px;
		font-size: clamp(1.1875rem, 0.114rem + 4.5802vw, 2.3125rem);
		text-decoration: none;
		color: #2c2313;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		gap: 15px;
		overflow: hidden;
		transition: all 0.3s;
		
		&::before {
			position: absolute;
			content: '';
			display: inline-block;
			left: 0;
			width: 30px;
			height: 100%;
			background-color: #edf6ff;
			animation: btn_animation 4s ease-in-out infinite;
		}
		
		&::after {
			display: block;
			content: "";
			width: clamp(0.75rem, 0.1536rem + 2.5445vw, 1.375rem);
			height: clamp(0.75rem, 0.1536rem + 2.5445vw, 1.375rem);
			rotate: 45deg;
			border-top: 2px solid #2c2313;
			border-right: 2px solid #2c2313;
			transition: background-color 0.3s, border 0.3s, color 0.3s;
		}

		&:hover {
			background-color: #ffbd29;
			border: 2px solid #fff;
			color: #ffffff;

			&::after {
				border-top: 2px solid #ffffff;
				border-right: 2px solid #ffffff;
			}
		}
	}
	
	.footer {
		margin-top: 0;
		padding: 100px 0 50px;
		
	}
	
	.footer-image-sp {
		display: none;
	}
	
	.footer-inner {
		display: flex;
		width: 996px;
		margin-inline: auto;
	}
	
	.footer-nav {
		font-size: 17px;
		margin-left: 68px;
	}
	
	.footer__logo {
		width: 168px;
		margin-left: 68px;
	}
	
	.footer-bottom__company-name {
		font-size: 19px;
	}
	
	.footer-bottom__company-address {
		font-size: 19px;
	}
	
	.footer-bottom__company-contact {
		font-size: 19px;
	}
	
	
	.footer__right {
		display: block;
		width: 442px;
	}
	
	.copyright {
		font-size: 19px;
	}
	
	
}


