@charset "utf-8";

/* ----------------------------------------------
    reset
---------------------------------------------- */
*, ::before, ::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}
html {
	/*line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;*/
}
body {
	margin: 0;
}
main {
	display: block;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
	margin: 0;
} 
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
dd {
	margin-left: 0;
}
hr {
	height: 0;
	margin: 0;
	color: inherit;
	border-top-width: 1px;
	box-sizing: content-box;
	clear: both;
	overflow: visible;
}
pre {
	font-size: inherit;
	font-family: monospace, monospace;
}
address {
	font-style: inherit;
}
a {
	color: inherit;
	word-break: break-all;
	text-decoration: none;
	background-color: transparent;
}
abbr[title] {
	text-decoration: underline dotted;
}
b, strong {
	font-weight: bolder;
}
code, kbd, samp {
	font-size: inherit;
	font-family: monospace, monospace;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
svg, img, embed, object, iframe {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
button, input, optgroup, select, textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	background: transparent;
	border-radius: 0;
	font: inherit;
	text-align: inherit;
	text-transform: inherit;
	vertical-align: middle;
	appearance: none;
	-webkit-appearance: none;
}
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 {
	font: inherit;
	-webkit-appearance: button;
}
[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: 500;
}
i {
    display: flex;
}

/* ----------------------------------------------
    base
---------------------------------------------- */
:root {
	--color-Black:  #2e2e2e;
	--color-Brown:  #998144;
	--color-Beige:  #f0d5a8;
	--color-Cream:  #f2f2e8;
	--color-Navy:   #474f6f;
	--color-Blue:   #22529e;
	--color-Green:  #34b857;
	--color-Red:    #ab2b41;
	--color-Yellow: #fff463;
	--color-GrayB:  #646464;
	--color-GrayM:  #959595;
	--color-GrayL:  #f0f0f0;
	--font-Sans:    "Noto Sans JP", sans-serif;
	--font-Serif:   dnp-shuei-mincho-pr6n, sans-serif;
	--font-Lato:    "Lato", sans-serif;
}
html {
	font-size: 62.5%;
    scroll-behavior: smooth;
    touch-action: manipulation;
}
body {
	color: var(--color-Black);
	font: 500 2.0rem / 1.75 var(--font-Sans);
	font-feature-settings: "path";
}
#wrap {
	width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}
@media (hover: hover) {
	a {
		transition: opacity ease .3s;
	}
	a:hover {
		opacity: .6;
	}
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
	#wrap {
	    padding: 60px 0 0;
	}
}
/* ------------------------------------------- */
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.mb1 {
	margin-bottom: 1em;
}
.mb2 {
	margin-bottom: 2em;
}
.mb3 {
	margin-bottom: 3em;
}
.pb1 {
	padding-bottom: 1em;
}
.pt2 {
	padding-top: 2em;
}
.pb2 {
	padding-bottom: 2em;
}
.pt5 {
	padding-top: 5em;
}
.pb5 {
	padding-bottom: 5em;
}
.w90 {
	width: 90%;
}
.w100 {
	width: 100%;
}
.mw840 {
	max-width: 840px;
}
.mw1160 {
	max-width: 1160px;
}
.en {
	font-family: var(--font-Lato);
}
.text-center {
	text-align: center;
}
.text-white {
	color: #fff;
}
.text-brown {
	color: var(--color-Brown);
}
.text-red {
	color: var(--color-Red);
}
.text-yellow {
	color: var(--color-Yellow);
}
.back-white {
	background: #fff;
}
.back-cream {
	background: var(--color-Cream);
}
.back-beige {
	background: var(--color-Beige);
}
.back-brown {
	background: var(--color-Brown);
}
.back-red {
	background: var(--color-Red);
}
.back-green {
	background: var(--color-Green);
}
.back-blue {
	background: var(--color-Blue);
}
.back-navy {
	background: var(--color-Navy);
}
.back-black {
	background: var(--color-Black);
}
.fz12 {
	font-size: 1.2rem;
}
.fz16 {
	font-size: 1.6rem;
}
.fz18 {
	font-size: 1.8rem;
}
.fz22 {
	font-size: 2.2rem;
}
.fz24 {
	font-size: 2.4rem;
}
.fz26 {
	font-size: 2.6rem;
}
.fz28 {
	font-size: 2.8rem;
}
.fz36 {
	font-size: 3.6rem;
}
.fz30 {
	font-size: 3.0rem;
}
.fz32 {
	font-size: 3.2rem;
}
.fz34 {
	font-size: 3.4rem;
}
.fz38 {
	font-size: 3.8rem;
}
.fz48 {
	font-size: 4.8rem;
}
.fz56 {
	font-size: 5.6rem;
}
.fz68 {
	font-size: 6.8rem;
}
.fz70 {
	font-size: 7.0rem;
}
.fz74 {
	font-size: 7.4rem;
}
.fz80 {
	font-size: 8.0rem;
}
.fz110 {
	font-size: 11.0rem;
}
.fw600 {
    font-weight: 600;
}
.fw800 {
    font-weight: 800;
}
.ff-serif {
	font-family: var(--font-Serif);
}
.relative {
    position: relative;
}
@media screen and (max-width: 768px) {
	.pt5 {
		padding-top: 4em;
	}
	.pb5 {
		padding-bottom: 4em;
	}
	.fz-sm8 {
		font-size: 0.8rem;
	}
	.fz-sm10 {
		font-size: 1.0rem;
	}
	.fz-sm12 {
		font-size: 1.2rem;
	}
	.fz-sm14 {
		font-size: 1.4rem;
	}
	.fz-sm16 {
		font-size: 1.6rem;
	}
	.fz-sm20 {
		font-size: 2.0rem;
	}
	.fz-sm22 {
		font-size: 2.2rem;
	}
	.fz-sm24 {
		font-size: 2.4rem;
	}
	.fz-sm28 {
		font-size: 2.8rem;
	}
	.fz-sm48 {
		font-size: 4.8rem;
	}
}
/* ------------------------------------------- */
.title01 {
    display: grid;
}
.title01::after {
    content: "";
    width: 100px;
    height: 2px;
    background: var(--color-Red);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.title01 .en {
    letter-spacing: .2em;
}
.title01 .jp {
    display: flex;
    gap: .5em;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 768px) {
	.title01::after {
	    width: 60px;
	}
	.title01 .jp {
		line-height: 1.4;
	    flex-direction: column;
	}
	.title01 .jp i {
	    margin: .5em 0 0;
	}
}
/* ------------------------------------------- */
@media screen and (max-width: 768px) {
}
/* ------------------------------------------- */
@media screen and (min-width: 769px) {
	.desk-hidden {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.mobile-hidden {
		display: none !important;
	}
}
/* ------------------------------------------- */
.anime.fade {
    transition: opacity .8s cubic-bezier(.4, 0, .6, 1);
    -webkit-transition: opacity .8s cubic-bezier(.4, 0, .6, 1);
    opacity: 0;
}
.anime.fade.active {
    opacity: 1;
}

/* ----------------------------------------------
    header
---------------------------------------------- */
#header {
    width: 100%;
    background: #fff;
    box-shadow: 0px 2px 8px 0px rgb(99 99 99 / 20%);
    position: relative;
    top: 0;
    left: 0;
    z-index: 99999;
    transition: background ease .3s;
}
#header .inner {
    height: 160px;
    padding: 0 calc(400px + 5%) 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .inner .tel {
    display: grid;
    gap: .3em;
}
#header .inner .tel .text01 {
    line-height: 1;
    display: flex;
    gap: .5em;
    align-items: center;
}
#header .inner .tel .text02 {
    color: var(--color-GrayB);
}
#header .inner .mail {
    width: 200px;
    height: 200px;
    display: grid;
    gap: .3em;
    place-items: center;
    align-content: center;
    position: absolute;
    top: 0;
    right: 0;
}
#header .inner .line {
    width: 200px;
    height: 200px;
    border-radius: 0 0 0 1em;
    display: grid;
    gap: .3em;
    place-items: center;
    align-content: center;
    position: absolute;
    top: 0;
    right: 200px;
}
@media screen and (max-width: 768px) {
	#header {
	    position: fixed;
	}
	#header .inner  {
	    height: 60px;
	    padding: 0 calc(120px + 5%) 0 5%;
	}
	#header .inner .logo img {
	    width: auto;
	    height: 40px;
	}
	#header .inner .mail {
	    width: 60px;
	    height: 60px;
	}
	#header .inner .mail i {
	    width: 2.5em;
	}
	#header .inner .line {
	    width: 60px;
	    height: 60px;
	    border-radius: 0;
	    right: 60px;
	}
	#header .inner .line i {
	    width: 2.5em;
	}
}

/* ----------------------------------------------
    footer
---------------------------------------------- */
#footer footer {
}
@media screen and (max-width: 768px) {
}

/* ----------------------------------------------
    lp
---------------------------------------------- */
#lp .cta .text-white.back-brown p span {
    background: linear-gradient(transparent 90%, var(--color-Red) 90%);
}
#lp .cta ul {
    display: grid;
    gap: 1em 2em;
    grid-template-columns: repeat(3, 1fr);
}
#lp .cta ul li a {
    height: 100%;
    padding: 1em 0;
    border: 1px solid #fff;
    box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
    line-height: 1;
    display: grid;
    gap: .5em;
    align-content: center;
}
#lp .cta ul li a.tel .num,
#lp .cta ul li a.line,
#lp .cta ul li a.mail {
    display: flex;
    gap: .5em;
    align-items: center;
    justify-content: center;
}
#lp .cta ul li a.tel i {
    filter: grayscale(1) brightness(5);
}
@media screen and (max-width: 768px) {
	#lp .cta .back-cream {
	    padding: 3em 0;
	}
	#lp .cta ul {
	    grid-template-columns: repeat(1, 1fr);
	}
	#lp .cta ul li a.line,
	#lp .cta ul li a.mail {
	    padding: 1.5em 0;
	}
}
/* ------------------------------------------- */
#lp .sec01 .inner .box {
    display: flex;
}
#lp .sec01 .inner .box .item01 {
	padding: 1em;
    display: grid;
    flex-shrink: 0;
    align-content: center;
    z-index: 2;
}
#lp .sec01 .inner .box .item02 {
	width: 100%;
    transform: translateY(4em);
}
#lp .sec01 .inner .box .item02::after {
    content: "";
    width: calc(100% + 2em);
    height: 100%;
    background: var(--color-Cream);
    position: absolute;
    top: 2em;
    right: 0;
    z-index: -4;
}
#lp .sec01 .inner .box .item02 .text {
    width: 90%;
    height: 100%;
    padding: 2em;
    display: grid;
    align-content: center;
    position: absolute;
    top: 0;
    left: 0;
}
#lp .sec01 .inner .box .item02 .text .text01 {
    margin: 0 0 .5em;
    text-shadow: 0 0 .3em var(--color-Brown),
			     0 0 .3em var(--color-Brown),
			     0 0 .3em var(--color-Brown);
}
#lp .sec01 .inner .box .item02 .text .text02 {
    display: grid;
    gap: .4em;
}
#lp .sec01 .inner .box .item02 .text .text02 > span {
    width: fit-content;
    padding: 0 .2em;
    line-height: 1.2;
    display: flex;
    align-items: center;
}
#lp .sec01 .inner .box .item02 .text .text02 > span span {
    background: linear-gradient(transparent 90%, var(--color-Yellow) 90%);
}
#lp .sec01 .inner .box .item02 .text ul {
    max-width: 600px;
    margin: 3em 0 0;
    display: grid;
    gap: 1.5em;
    grid-template-columns: repeat(3, 1fr);
}
#lp .sec01 .inner .box .item02 .text ul li {
    aspect-ratio: 1;
    border-radius: 100vmax;
    display: grid;
    gap: .5em;
    align-content: center;
}
#lp .sec01 .inner .box .item02 .text ul li i {
    justify-content: center;
}
#lp .sec01 .inner .box .item02 .text .label {
    width: fit-content;
    margin: 0 0 0 auto;
}
#lp .sec01 .inner .box .item02 .img img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    object-position: left;
}
@media screen and (max-width: 768px) {
	#lp .sec01,
	#lp .sec01 .inner {
	    padding: 0;
	}
	#lp .sec01 .inner .box {
	    flex-direction: column;
	}
	#lp .sec01 .inner .box .item01 {
	    padding: 0;
	    background: var(--color-Black);
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	#lp .sec01 .inner .box .item01 .img {
	    width: 100px;
	}
	#lp .sec01 .inner .box .item01 p {
	    text-align: left;
	}
	#lp .sec01 .inner .box .item02 {
	    transform: translateY(0);
	}
	#lp .sec01 .inner .box .item02::after {
		display: none;
	}
	#lp .sec01 .inner .box .item02 .text {
	    width: 100%;
	    padding: 0 5%;
	}
	#lp .sec01 .inner .box .item02 .text ul {
        width: fit-content;
        max-width: 270px;
        margin: 1em 0 0;
		gap: .5em;
        overflow: hidden;
	}
	#lp .sec01 .inner .box .item02 .text ul li {
		padding: .5em;
	    line-height: 1.4;
	    gap: .3em;
	}
	#lp .sec01 .inner .box .item02 .text ul li i img {
	    width: 2em;
	}
	#lp .sec01 .inner .box .item02 .text .label {
	    width: 40%;
	    max-width: 130px;
	    margin: .5em 0 0 auto;
	}
	#lp .sec01 .inner .box .item02 .img img {
	    height: 310px;
	    object-position: 20%;
	}
}
/* ------------------------------------------- */
#lp .sec02 .box01 dl dt::after {
    content: "";
    width: 3em;
    aspect-ratio: 2.5 / cos(30deg);
	clip-path: polygon(50% 100%,100% 0,0 0);
    background: var(--color-Navy);
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
#lp .sec02 .box01 dl dd {
    padding: 2em;
    border: .5em solid var(--color-GrayL);
}
#lp .sec02 .box01 dl dd ul {
    display: grid;
    gap: .3em;
}
#lp .sec02 .box01 dl dd ul li {
	padding: 0 0 .2em;
    display: flex;
    gap: .5em;
    align-items: flex-start;
    position: relative;
}
#lp .sec02 .box01 dl dd ul li::before {
    content: "";
    width: .8em;
    aspect-ratio: 24 / 17;
    margin: .7em 0 0;
    background: url(../img/icon-check.svg) center / cover no-repeat;
}
#lp .sec02 .box01 dl dd ul li::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    background-image: radial-gradient(circle, #2e2e2e 1px, transparent 1px);
    background-position: -3px 12px;
    background-size: 8px 22px;
    position: absolute;
    left: 0;
    bottom: 0;
}
#lp .sec02 .box01 dl dd .pic {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}
#lp .sec02 .box02::before {
    content: "";
    width: 7em;
    aspect-ratio: 2.5 / cos(30deg);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: var(--color-Brown);
    position: absolute;
    bottom: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
}
#lp .sec02 .box02 p span {
    background: linear-gradient(transparent 90%, var(--color-Red) 90%);
}
#lp .sec02 .box03 fieldset {
    padding: 0 0 1em;
    border: 2px solid;
}
#lp .sec02 .box03 fieldset legend {
    padding: 0 1em;
    letter-spacing: .1em;
    position: relative;
}
#lp .sec02 .box03 fieldset legend::before,
#lp .sec02 .box03 fieldset legend::after {
    content: "";
    width: 2px;
    height: .8em;
    background: var(--color-Black);
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
}
#lp .sec02 .box03 fieldset legend::before {
    rotate: -30deg;
    left: .15em;
}
#lp .sec02 .box03 fieldset legend::after {
    rotate: 30deg;
    right: .15em;
}
#lp .sec02 .box03 fieldset h3 span {
    background: linear-gradient(transparent 80%, #ffbba2 80%);
}
#lp .sec02 .box03 ul li {
    padding: 1em 0;
    border-bottom: 1px solid;
    display: flex;
    gap: 1em;
    align-items: baseline;
}
#lp .sec02 .box03 ul li .num {
    width: 1.3em;
    aspect-ratio: 1;
    border-radius: 100vmax;
    line-height: 1;
    display: grid;
    place-items: center;
}
#lp .sec02 .box04 {
	background: url(../img/back-price.jpg) center / cover no-repeat;
    overflow: hidden;
}
#lp .sec02 .box04::after {
	content: "";
	width: 100%;
	height: 100%;
	backdrop-filter: blur(.5em);
	position: absolute;
	top: 0;
	left: 0;
}
#lp .sec02 .box04 .item {
    padding: 1em 15% 1em 1em;
    box-shadow: 0 .5em 0 rgb(0 0 0 / 20%);
    z-index: 1;
}
#lp .sec02 .box04 .item .pic {
    position: absolute;
    right: 15%;
    bottom: -1.15em;
}
@media screen and (max-width: 768px) {
	#lp .sec02 .box01 dl dd .pic {
	    width: 40%;
	    max-width: 120px;
	    top: 85%;
	    right: 0;
	    transform: translateY(0);
	}
	#lp .sec02 .box04 .item {
	    padding: 1em 20% 1em 1em;
	}
	#lp .sec02 .box04 .item .pic {
	    width: 20%;
	    max-width: 70px;
	    right: 1em;
	}
}
/* ------------------------------------------- */
#lp .sec03 .inner .box01 {
    margin: 5em 0 0;
}
#lp .sec03 .inner .box01 .item {
    display: flex;
    gap: 0 2em;
}
#lp .sec03 .inner .box01 .item .text .title {
    display: flex;
    gap: 1em;
    align-items: center;
}
#lp .sec03 .inner .box01 .item .text .title .num {
	padding: 0 0 .2em;
    line-height: 1;
    position: relative;
    transform: translateY(-.05em);
}
#lp .sec03 .inner .box01 .item .text .title .num::after {
    content: "";
    width: 60px;
    height: 8px;
    background: var(--color-Red);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
#lp .sec03 .inner .box01 .item .text .title .text {
    line-height: 1.3;
}
#lp .sec03 .inner .box01 .item .img {
	margin: -2em 0 0;
	flex-shrink: 0;
}
#lp .sec03 .inner .box02 {
	background: var(--color-GrayL) url(../img/back-table.jpg) center / cover no-repeat;
    overflow: hidden;
}
#lp .sec03 .inner .box02::after {
	content: "";
	width: 100%;
	height: 100%;
	backdrop-filter: blur(.5em);
	position: absolute;
	top: 0;
	left: 0;
}
#lp .sec03 .inner .box02 table {
    z-index: 1;
}
#lp .sec03 .inner .box02 table th,
#lp .sec03 .inner .box02 table td {
    padding: 1em;
    vertical-align: middle;
}
#lp .sec03 .inner .box02 table thead th .logo {
    filter: grayscale(1) invert(1) brightness(5) drop-shadow(0 0 .2em rgb(0 0 0 / 30%));
}
#lp .sec03 .inner .box02 table thead th.back-gray {
    padding: 2% 0 0;
    background: linear-gradient(0deg, rgba(199, 199, 199, 1) 80%, rgba(199, 199, 199, 0) 80%);
}
#lp .sec03 .inner .box02 table tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--color-Brown);
}
#lp .sec03 .inner .box02 table tbody th {
    width: 280px;
}
#lp .sec03 .inner .box02 table tbody td .item {
    display: flex;
    gap: 1em;
    align-items: center;
}
#lp .sec03 .inner .box02 table tbody td .item i {
    flex-shrink: 0;
}
#lp .sec03 .inner .box02 table tbody td .item p {
    word-break: auto-phrase;
}
#lp .sec03 .inner .box03 .item {
    display: grid;
    gap: 2em;
    grid-template-columns: repeat(2, 1fr);
}
#lp .sec03 .inner .box03 .item .left .aff {
    margin: 0 0 .5em;
    border-bottom: 1px solid var(--color-Red);
}
#lp .sec03 .inner .box03 .item .left .name {
    display: flex
    gap: 1em;
    align-items: center;
}
#lp .sec03 .inner .box03 .item .left .name .text02 {
    letter-spacing: .2em;
}
#lp .sec03 .inner .box03 .item .right dl {
    display: grid;
    gap: 2em;
}
#lp .sec03 .inner .box03 .item .right dl > div {
    padding: 1em;
}
#lp .sec03 .inner .box03 .item .right dl > div dt {
    margin: 0 0 .5em;
    border-bottom: 1px solid var(--color-Red);
}
#lp .sec03 .inner .box03 .item .right dl > div dd .list01 li {
    display: flex;
    gap: 1em;
}
#lp .sec03 .inner .box03 .item .right dl > div dd .list02 {
    display: flex;
    gap: 0 .5em;
    flex-wrap: wrap;
}
#lp .sec03 .inner .box03 .item .right dl > div dd .list02 li {
    display: flex;
    gap: 0 .5em;
}
#lp .sec03 .inner .box03 .item .right dl > div dd .list02 li:not(:last-child)::after {
    content: "/";
}
#lp .sec03 .inner .box03 .item .right .list03 {
    display: grid;
    gap: 1.5em;
    grid-template-columns: repeat(3, 1fr);
}
#lp .sec03 .inner .box03 .item .right .list03 li {
    padding: .8em .5em 1.3em;
    background: var(--color-Yellow);
    border: 1px solid;
    line-height: 1.4;
    display: grid;
    place-items: center;
    position: relative;
}
#lp .sec03 .inner .box03 .item .right .list03 li::after {
    content: "";
    width: 100%;
    height: .5em;
    background: var(--color-GrayM);
    opacity: .3;
    position: absolute;
    left: 0;
    bottom: 0;
}
#lp .sec03 .inner .box03 .item .right .list03 li .num {
    padding: 0 .2em;
    background: linear-gradient(transparent 80%, #ffbba2 80%);
    line-height: 1.1;
}
@media screen and (max-width: 768px) {
	#lp .sec03 .inner .box01 {
	    margin: 4em 0 0;
	    padding: 0 0 4em;
	}
	#lp .sec03 .inner .box01 .item {
	    flex-direction: column-reverse;
	}
	#lp .sec03 .inner .box01 .item .img {
	    width: 50%;
	    max-width: 200px;
	    margin-left: auto;
	}
    #lp .sec03 .inner .box01 .item .text .title {
    	margin-top: -3em;
        padding: 0;
        align-items: flex-start;
        flex-direction: column;
    }
    #lp .sec03 .inner .box01 .item .text .title .num::after {
	    width: 1em;
	    height: 4px;
	}
	#lp .sec03 .inner .box02 .scroll {
	    padding: 0 5%;
	    overflow-x: scroll;
	}
	#lp .sec03 .inner .box02 table {
	    width: 540px;
	}
	#lp .sec03 .inner .box02 table th,
	#lp .sec03 .inner .box02 table td {
	    padding: .5em;
	}
	#lp .sec03 .inner .box02 table td {
		width: 40%;
	}
	#lp .sec03 .inner .box02 table tbody th {
	    width: 20%;
	}
	#lp .sec03 .inner .box02 table tbody td .item {
	    gap: .5em;
	}
	#lp .sec03 .inner .box02 table tbody td .item i {
	    width: 1.5em;
	}
	#lp .sec03 .inner .box03 .item {
	    grid-template-columns: repeat(1, 1fr);
	}
	#lp .sec03 .inner .box03 .item .right dl {
	    gap: 1em;
	}
	#lp .sec03 .inner .box03 .item .right .list03 {
	    gap: .5em;
	}
}
/* ------------------------------------------- */
#lp .sec04 .inner .box {
    padding: 2em;
    border: 2px solid var(--color-Blue);
}
#lp .sec04 .inner .box .item01 {
    display: flex;
    gap: 1.5em;
    align-items: center;
}
#lp .sec04 .inner .box .item01 .img {
    flex-shrink: 0;
}
#lp .sec04 .inner .box .item01 .text .cate {
    width: fit-content;
    padding: 0 .5em;
    display: block;
}
#lp .sec04 .inner .box .item02 {
    padding: 1em;
}
@media screen and (max-width: 768px) {
	#lp .sec04 .inner .box .item01 {
	    flex-direction: column;
	}
	#lp .sec04 .inner .box .item01 .text {
	    display: grid;
	    gap: .5em;
	}
}
/* ------------------------------------------- */
#lp .sec05 .inner .box {
	padding-bottom: 10em;
	background: var(--color-Brown) url(../img/back-price.jpg) center / cover no-repeat;
    overflow: hidden;
}
#lp .sec05 .inner .box::before,
#lp .sec05 .inner .box::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-Brown);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#lp .sec05 .inner .box::before {
    background: #fff;
    opacity: .2;
}
#lp .sec05 .inner .box::after {
    background: var(--color-Brown);
    opacity: 1;
    mix-blend-mode: overlay;
    backdrop-filter: blur(.5em) grayscale(.5) brightness(1);
}
#lp .sec05 .inner .box .item {
    z-index: 1;
}
#lp .sec05 .inner ul {
    margin-top: -6em;
    display: grid;
    gap: 2em;
    grid-template-columns: repeat(3, 1fr);
    z-index: 2;
}
#lp .sec05 .inner ul li {
    padding: 1em;
    border: 2px solid var(--color-Brown);
    box-shadow: 0 .5em 0 #d7d7c0;
    line-height: 1;
    display: grid;
    gap: .5em;
    align-content: flex-start;
}
@media screen and (max-width: 768px) {
	#lp .sec05 .inner ul {
	    gap: .5em;
	}
	#lp .sec05 .inner ul li {
	    padding: .5em;
    }
    #lp .sec05 .inner ul li .text01,
    #lp .sec05 .inner ul li .text03 {
	    line-height: 1.2;
	}
}
/* ------------------------------------------- */
#lp .sec06 .inner ol {
    display: grid;
    gap: 4em;
}
#lp .sec06 .inner ol li {
    padding: 2em;
    border: 2px solid var(--color-Blue);
    display: flex;
    gap: 1.5em 2em;
    position: relative;
}
#lp .sec06 .inner ol li:not(:last-child)::after {
    content: "";
    width: 5px;
    height: 4em;
    background-color: #ffffff;
    background-image: radial-gradient(circle, #22529e 2.5px, transparent 2.5px);
    background-position: 11px -2px;
    background-size: 17px 17px;
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
}
#lp .sec06 .inner ol li .left {
    width: 100%;
    max-width: 430px;
    flex-shrink: 0;
}
#lp .sec06 .inner ol li .left h3 {
    display: flex;
    gap: 1em;
    align-items: center;
}
#lp .sec06 .inner ol li .left h3 .num {
    width: 1.3em;
    aspect-ratio: 1;
    border-radius: 100vmax;
    line-height: 1;
    display: grid;
    flex-shrink: 0;
    place-items: center;
}
#lp .sec06 .inner ol li .right {
    padding: 1em;
}
#lp .sec06 .inner .box {
    padding: 2em;
    display: grid;
    gap: .5em;
}
#lp .sec06 .inner .box::after {
    content: "";
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid var(--color-Brown);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
@media screen and (max-width: 768px) {
	#lp .sec06 .inner ol {
	    gap: 2em;
	}
	#lp .sec06 .inner ol li {
	    flex-direction: column;
	}
	#lp .sec06 .inner ol li:not(:last-child)::after {
	    height: 2em;
	}
	#lp .sec06 .inner ol li .left .img img {
	    width: auto;
	    max-width: 100%;
	    height: auto;
	    max-height: 80px;
	}
	#lp .sec06 .inner .box p {
	    text-align: left;
	}
}
/* ------------------------------------------- */
#lp .sec07 .inner dl {
    display: grid;
    gap: 2em;
}
#lp .sec07 .inner dl > div {
    border: 2px solid var(--color-Brown);
    border-radius: .5em;
    overflow: hidden;
}
#lp .sec07 .inner dl > div dt,
#lp .sec07 .inner dl > div dd {
    padding: 1em;
    display: flex;
    gap: .5em;
    align-items: baseline;
}
#lp .sec07 .inner dl > div dt .mark,
#lp .sec07 .inner dl > div dd .mark {
    width: 1.5em;
    aspect-ratio: 1;
    border-radius: 100vmax;
    font-size: 2.4rem;
    font-family: var(--font-Lato);
    line-height: 1;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
#lp .sec07 .inner dl > div dt .mark {
    color: var(--color-Brown);
    background: #fff;
}
#lp .sec07 .inner dl > div dd .mark {
    color: #fff;
    background: var(--color-GrayM);
}
@media screen and (max-width: 768px) {
	#lp .sec07 .inner dl {
	    gap: 1em;
	}
	#lp .sec07 .inner dl > div dt .mark,
	#lp .sec07 .inner dl > div dd .mark {
	    font-size: 1.8rem;
	}
}
/* ------------------------------------------- */
#lp .sec08 .inner form dl {
	margin: 0 0 .5em;
    display: grid;
    gap: .5em;
}
#lp .sec08 .inner form dl > div {
    display: flex;
    gap: .5em;
}
#lp .sec08 .inner form dl > div dt {
    width: 380px;
    padding: 1em 1.5em;
    background: var(--color-Cream);
    font-weight: 600;
    display: flex;
    gap: .5em;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: baseline;
    align-content: flex-start;
    justify-content: space-between;
}
#lp .sec08 .inner form dl > div dt .required {
    padding: 0 .5em;
    color: #fff;
    background: var(--color-Red);
    display: grid;
}
#lp .sec08 .inner form dl > div dd {
    width: 100%;
    padding: .5em;
    background: var(--color-GrayL);
}
#lp .sec08 .inner form input,
#lp .sec08 .inner form textarea {
    width: 100%;
    height: 60px;
    padding: .5em 1em;
    background: #fff;
	border: 1px solid var(--color-GrayM);
    cursor: pointer;
}
#lp .sec08 .inner form textarea {
    min-height: 300px;
}
#lp .sec08 .inner form input:focus-visible,
#lp .sec08 .inner form textarea:focus-visible {
    outline: none;
    border: 1px solid var(--color-GrayB);
}
#lp .sec08 .inner form input::placeholder,
#lp .sec08 .inner form textarea::placeholder {
	color: var(--color-GrayM);
	opacity: .5;
}
#lp .sec08 .inner form .check {
    display: flex;
    gap: .5em 1em;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
#lp .sec08 .inner form .check li input[type="checkbox"] {
	display: none;
}
#lp .sec08 .inner form .check li label {
	display: flex;
	gap: 0 .5em;
    align-items: center;
	cursor: pointer;
}
#lp .sec08 .inner form .check li label span {
	width: 1.5em;
    aspect-ratio: 1;
    border: 2px solid var(--color-Brown);
    display: grid;
    flex-shrink: 0;
    place-items: center;
    transition: border 0.2s linear;
    -webkit-transition: border 0.2s linear;
	transition: background 0.2s linear;
	-webkit-transition: background 0.2s linear;
}
#lp .sec08 .inner form .check li label span::before {
    content: "";
    width: .5em;
    aspect-ratio: 7 / 10;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(45deg) translate(-.05em, -.05em);
    -ms-transform: rotate(45deg) translate(-.05em, -.05em);
    -webkit-transform: rotate(45deg) translate(-.05em, -.05em);
    transition: opacity 0.2s linear;
    -webkit-transition: opacity 0.2s linear;
    opacity: 0;
}
#lp .sec08 .inner form .check li input:checked + label span {
	background: var(--color-Brown);
	border: 1px solid var(--color-Brown);
}
#lp .sec08 .inner form .check li input:checked + label span::before {
	opacity: 1.0;
}
#lp .sec08 .inner form .privacy .policy {
    max-height: 360px;
    padding: 1em;
    background: var(--color-GrayL);
    overflow-y: scroll;
}
#lp .sec08 .inner form .privacy .policy ul li {
    padding: 0 0 0 1em;
    text-indent: -1em;
}
#lp .sec08 .inner form .submit ul {
    display: flex;
    gap: 0 2em;
    align-items: center;
    justify-content: center;
}
#lp .sec08 .inner form .submit ul li button {
    width: 550px;
    height: 110px;
    color: #fff;
    background: var(--color-Red);
    box-shadow: 0 .2em 0 #cecece;
    border-radius: 100vmax;
    display: grid;
    place-items: center;
}
@media screen and (max-width: 768px) {
	#lp .sec08 .inner p {
	    text-align: left;
	}
	#lp .sec08 .inner form dl > div {
	    flex-direction: column;
	}
	#lp .sec08 .inner form dl > div dt {
	    width: 100%;
	}
	#lp .sec08 .inner form input,
	#lp .sec08 .inner form textarea {
	    height: 50px;
	}
	#lp .sec08 .inner form textarea {
	    min-height: 240px;
	}
	#lp .sec08 .inner form .privacy .policy {
	    max-height: 260px;
	}
	#lp .sec08 .inner form .check li label span::before {
	    border-right: 2px solid #fff;
	    border-bottom: 2px solid #fff;
    }
	#lp .sec08 .inner form .submit ul li button {
	    width: 250px;
	    height: 65px;
    }
}
/* ------------------------------------------- */
#lp .sec09 .inner table,
#lp .sec09 .inner table th,
#lp .sec09 .inner table td {
	padding: 1em;
    border: 1px solid var(--color-Brown);
}
@media screen and (max-width: 768px) {
}
/* ------------------------------------------- */
#lp .sec10 .inner #map {
    width: 100%;
    height: 500px;
}
@media screen and (max-width: 768px) {
	#lp .sec10 .inner #map {
	    height: 300px;
	}
}





