@charset "utf-8";
/* CSS Document */


/* reset
----------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style-type: none;
	text-decoration: none;
}
img {
	max-width: 100%;
	border-radius: 5px;
	vertical-align: bottom;
}


/* common
----------------------------------------*/
html {
	scroll-padding-top: 1em;
}
body {
	color: #222;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: .9em;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	background-color: #f7f9fc;
	-ms-overflow-style: none;
}
body::-webkit-scrollbar {
	display: none;
}
#wrap {
	display: flex;
	flex-flow: column;
	max-width: 750px;
	min-height: 100vh;
	width: 100%;
	margin: 0 auto;
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
	background-color: #fff;
}
article {
	margin: 2em 0 5em 0 ;
	padding: 0 1em;
}
a {
	color: #222;
}


/* cta
----------------------------------------*/
#cta {
	position: fixed;
	bottom: 0;
	max-width: 750px;
	width: 100%;
	z-index: 10;
}
#cta img {
	border-radius: 0;
}
#cta ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgb(255, 255, 255, .9);
}
#cta ul li {
	flex-basis: calc(100% / 3);
	padding: .8em 0;
	text-align: center;
}
#cta ul li a {
	display: block;
	color: #333;
	font-size: .6em;
	font-weight: bold;
}
#cta ul li span {
	display: block;
	margin-bottom: 2px;
	font-size: 20px;
}


/* header
----------------------------------------*/
#header_wrap {
	position: fixed;
	max-width: 750px;
	width: 100%;
	transition: .3s;
	z-index: 1;
}
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 0 1em;
	box-shadow: 0 3px 3px rgba(0, 0, 0, .1);
	background-color: #fff;
}
header h1 img {
	width: 200px;
	vertical-align: middle;
}
header ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0 1.5em;
	height: 60px;
	overflow: hidden;
}
header ul li:first-child a {
	display: block;
	padding: .2em .5em;
	border-radius: 5px;
	color: #fff;
	font-size: .8rem;
	font-weight: bold;
	text-align: center;
	background-color: #E13134;
}
header ul li:nth-child(2),
header ul li:last-child {
	padding: 1rem 0;
	font-size: .6rem;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}
header ul li span {
	display: block;
	margin-bottom: 2px;
	font-size: 25px;
}


/* nav
----------------------------------------*/
nav.open-nav {
	right: 0;
}
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .8);
	cursor: pointer;
	z-index: 2;
}
nav {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	padding: 1em 0;
	background-color: #fff;
	transition: .3s;
	z-index: 10;
}
nav h3 {
	margin: 0 0 1em 1em;
}
nav ul li {
	position: relative;
}
nav > ul > li:first-child,
nav ul li a {
	display: block;
	padding: 1rem;
	cursor: pointer;
}
nav ul li::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 1rem;
	width: 6px;
	height: 6px;
	border-right: solid 2px #888;
	border-bottom: solid 2px #888;
	transform: translateY(-50%) rotate(-45deg);
	transition: .2s;
}
nav ul ul li {
	background-color: #eee;
}
nav > ul > li:first-child::before {
	top: calc(50% - 3px);
	right: calc(1rem - 1px);
	transform: rotate(45deg);
	transform-origin: center right;
}
nav ul > li:first-child.nav_nest_open::before {
	transform: rotate(-135deg);
	transform-origin: center;
}
nav span {
	margin-right: 10px;
	color: #222;
	font-size: 20px;
	vertical-align: -3px;
}


/* f_view
----------------------------------------*/
#f_view {
	position: relative;
	width: 100%;
	height: 80vh;
	margin-top: 60px;
	background-image: url("../img/f_view.webp");
	background-position: center bottom;
	background-size: cover;
}
.f_view_text_wrap {
	position: absolute;
	top: 5rem;
	left: 1rem;
}
#f_view p {
	width: max-content;
	margin-bottom: .5rem;
	padding: 0 .5rem;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: .1rem;
	text-shadow: 2px 2px 3px #333;
	opacity: 0;
	animation: fadeUp .7s ease-out forwards;
}
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
#f_view p:nth-of-type(1) { animation-delay: 0.2s; }
#f_view p:nth-of-type(2) { animation-delay: 0.3s; }
#f_view p:nth-of-type(3) { animation-delay: 0.4s; }
#f_view p:nth-of-type(4) { animation-delay: 0.5s; }


/* rinen
----------------------------------------*/
#rinen {
	position: relative;
	margin: 0;
	padding: 5rem 0;
	text-align: center;
	color: #fff;
	letter-spacing: .1rem;
	text-shadow: 2px 2px 3px #333;
	background: url("../img/rinen_back.jpg") no-repeat center / cover;
}
#rinen::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .75);
	z-index: 0;
}
#rinen * {
	position: relative;
	z-index: 1;
}
#rinen h2 {
	padding-left: 0;
	border-left: none;
	font-size: 2rem;
}
#rinen p {
	font-size: 1.2rem;
	font-weight: bold;
}
.rinen_text_sm {
	font-size: .8rem !important;
	font-weight: normal !important;
}


/* content
----------------------------------------*/
h2 {
	margin-bottom: 1.5em;
	padding-left: .5em;
	border-left: solid 3px #222;
}
article > p {
	margin-bottom: 1em;
}
.more {
	padding: .1em .8em 0 .8em;
	border-radius: 20px;
	color: #fff;
	background-color: #222;
}
.flex_wrap {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	margin-bottom: 1.5em;
}
.flex_wrap > ul {
	flex-basis: 50%;
}
article ul li div {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: .5em;
}
article ul li:not(article ul li:first-child) {
	position: relative;
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: solid 1px #f4f4f4;
}
article ul li:first-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1em;
}
article ul li:last-child {
	margin-bottom: 0;
	border-bottom: none !important;
}
article ul li a {
	font-weight: bold;
}
article .santen {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}
article .text {
	display: block;
	color: #888;
	font-size: .9em;
	font-weight: normal;
}
article .price {
	position: absolute;
	right: 0;
	bottom: .5em;
	color: #E13134;
	font-size: 1.2em;
}
article .img_cont {
	flex-shrink: 0;
	width: 45%;
	height: 110px;
	overflow: hidden;
	border-radius: 5px;
}
article .img_cont img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* 新着実績
----------------------------------------*/
.selectbox-3 {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;   
}
.selectbox-3::after {
	content: "";
	position: absolute;
	right: 15px;
	width: 10px;
	height: 7px;
	background-color: #535353;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	pointer-events: none;
}
.selectbox-3 select {
	appearance: none;
	min-width: 200px;
	height: 2.8em;
	padding: .4em calc(.8em + 30px) .4em .8em;
	border: 1px solid #d0d0d0;
	border-radius: 3px;
	color: #333333;
	font-size: 1em;
	background-color: #fff;
	cursor: pointer;
}
#achievementDisplay {
	display: block;
	margin-top: 2em;
	padding: 1em;
	border-radius: 5px;
	background-color: #eee;
}
#achievementDisplay h3 {
	margin-bottom: 1rem;
	color: #888;
	font-size: 1.2em;
}
#achievementDisplay p:last-of-type {
	margin-top: 1rem;
}


/* footer
----------------------------------------*/
footer {
	padding: 2em 1em 12em 1em;
	background-color: #eee;
}
footer ul li {
	position: relative;
	margin-bottom: 2em;
}
footer ul li::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	border-right: solid 2px #888;
	border-bottom: solid 2px #888;
	transform: translateY(-50%) rotate(-45deg);
}
footer ul li a {
	display: block;
}
footer p {
	font-size: .8em;
	text-align: center;
}


/* main
----------------------------------------*/
main {
	flex: 1;
	margin: calc(80px + 2em) 0 3em 0;
	padding: 0 1em;
}
main .page_place {
	max-width: 1400px;
	width: calc(100% - 30px);
	margin-bottom: 2em;
}
main .page_place span {
	color: #888;
}
.service_wrap {
	width: 100%;
	margin: 1rem 0;
	padding: 1rem;
	border: solid 1px #b5b5b5;
	border-radius: 5px;
}
.service_wrap ul {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 1rem;
}
.service_wrap ul li {
	flex-basis: calc(100% / 3 - .7rem);
	border: solid 1px #b5b5b5;
	border-radius: 5px;
	transition: .3s;
	cursor: pointer;
}
.service_img_wrap {
	position: relative;
	width: 100%;
	padding-top: 60%;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}
.service_wrap img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	filter: grayscale(100%);
}
.service_text_wrap {
	padding: .5em;
}
.tab li.active {
	opacity: 1;
}
.tab li.active img {
	filter: grayscale(0);
}
.tab li.active {
	border: solid 1px #222;
}
.tab_cont {
	display: none;
	padding: 1em;
	border-radius: 5px 5px 0 0;
	background-color: #eee;
}
.tab_cont.active {
	display: block;
}
main h3 {
	margin-bottom: .5em;
}
main h3:not(h3:first-child) {
	margin-top: 2em;
}
.more2 {
	display: block;
	width: 100%;
	margin: 2em auto 0 auto;
	padding: 1.2em 2em; 
	border-radius: 30px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background-color: #222;
}
.table_default {
	width: 100%;
	border-collapse: collapse;
}
.table_default tr {
	border-bottom: solid 1px #f4f4f4;
}
.table_default tr:last-child {
	border-bottom: none;
}
.table_default td:first-child {
	width: 30%;
}
.table_default td:last-child {
	padding-left: 1rem;
}
.table_default td {
	padding: 2em 0;
}
.form_wrap {
	padding: 1rem;
	border-radius: 0 0 5px 5px;
	background-color: #eee;
}
.form_wrap2 .form {
	padding: 0;
}
.form {
	padding: 1rem;
	border-radius: 5px;
	background-color: #fff;
}
.form table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}
.form table th,
.form table td {
	display: block;
}
.form table th {
	margin-bottom: 1rem;
}
.form table td {
	margin-bottom: 2rem;
}
.form table tr:last-child td {
	margin-bottom: -.5rem;
}
.form input[type=radio] {
	margin-right: .5rem;
}
.form label {
	display: block;
	margin-bottom: 1rem;
}
.form label:nth-child(5) {
	margin-bottom: 0;
}
.form input[type=text],
.form input[type=tel],
.form textarea {
	appearance: none;
	padding: 15px;
	border: solid 1px #b3b3b3;
	border-radius: 5px;
	color: #333;
	font-size: 1rem;
}
.form textarea {
	width: 100%;
	height: 250px;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	vertical-align: bottom;
	resize: vertical;
}
input[type=submit],
input[type=button] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
	font-size: .9rem;
	cursor: pointer;
}
.form .required {
	margin-left: 1rem;
	padding: .1rem .5rem;
	border-radius: 2px;
	color: #fff;
	font-size: .8rem;
	background-color: #E13134;
	font-weight: normal;
}
.kinds_error,
.name_error,
.tel_error,
.mail_error,
.req_error {
	display: block;
	margin-top: .5rem;
	color: #E13134;
}
.contact .form {
	padding: 0;
}
#privacy ol {
	position: relative;
	counter-reset: count 0;
	padding-left: 3em;
}
#privacy ol li:before {
	content: counter(count, decimal-leading-zero) ". ";
	counter-increment: count 1;
	position: absolute;
	left: 1em;
}