@charset "utf-8";



/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*, *::before, *::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0;
	padding: 0;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
article, aside, footer, header, iframe, img, main, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	/* visibility: hidden; */
	font-size: 16px;
}
html.wf-active,
html.delay {
	visibility: visible;
}
body {
	text-align: justify;
	font-family: ryo-gothic-plusn, "Yu Gothic", YuGothic, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 2rem;
	color: #000000;
	letter-spacing: 0.025em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4 {
	font-size: 1rem;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=button],
input[type=submit],
button,
textarea,
select {
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
	font-size: 1rem;
	outline: none;
	border: none;
	margin: 0px;
	border-radius: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
select,
textarea {
	border: 1px solid #cccccc;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel] {
	height: 50px;
	line-height: calc(50px - 2px);
	padding: 0px 10px;
}
input[type=button],
input[type=submit],
button {
	text-align: center;
	line-height: 50px;
	color: #ffffff;
	cursor: pointer;
	padding: 0px 20px;
	background-color: #a5a78b;
	transition: 0.25s background-color ease;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
	background-color: #000000;
}
input[type=radio],
input[type=checkbox] {
	position: relative;
	vertical-align: middle;
	width: 20px;
	margin-right: 5px;
}
input[type=radio] {
	transform: translate(-9999px, -6px);
}
input[type=checkbox] {
	transform: translate(-9999px, -4px);
}
input[type=radio]::before,
input[type=checkbox]::before,
input[type=radio]::after,
input[type=checkbox]::after {
	position: absolute;
	left: 9999px;
	top: 0px;
	cursor: pointer;
	content: "";
}
input[type=radio]::before,
input[type=checkbox]::before,
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	width: 20px;
	height: 20px;
	border: 1px solid #cccccc;
	background-color: #ffffff;
}
input[type=radio]::after,
input[type=checkbox]::after,
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after,
label.alternate input[type=radio]:checked + span::before,
label.alternate input[type=checkbox]:checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 10px;
	height: 10px;
	background-color: #a5a78b;
}
input[type=radio]::after {
	transform: translate(5px, 5px);
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 0px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 8px;
	height: 13px;
	border-right: 3px solid #a5a78b;
	border-bottom: 3px solid #a5a78b;
}
input[type=checkbox]::after {
	transform: translate(6px, 1px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
@supports (-ms-ime-align:auto) {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
@media all and (-ms-high-contrast:none) {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
label {
	vertical-align: middle;
}
label.alternate {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
}
label.alternate input[type=radio],
label.alternate input[type=checkbox] {
	display: none;
}
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	display: block;
	position: relative;
	cursor: pointer;
	transform: translate(0px, -1px);
}
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	display: block;
	position: absolute;
	content: "";
}
label.alternate input[type=radio] + span::before {
	transform: translate(4px, 4px);
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(5px, 0px) rotate(45deg);
}
textarea {
	line-height: 1.5rem;
	padding: 10px;
}
select {
	height: 50px;
	padding: 0px 40px 0px 10px;
	background: transparent url(../../images/arrow-select.svg) no-repeat right 10px center;
	background-size: auto 10px;
}
select::-ms-expand {
	display: none;
}
::-webkit-input-placeholder {
	color: #cccccc;
}
:-ms-input-placeholder {
	color: #cccccc;
}
::placeholder {
	color: #cccccc;
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "icon";
	src: url("../../fonts/icon.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-instagram:before {
	content: "\e900";
}
i.icon-facebook:before {
	content: "\e901";
}
i.icon-line:before {
	content: "\e902";
}
i.icon-youtube:before {
	content: "\e903";
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

div.grecaptcha-badge {
	display: none;
}
br.small {
	display: none;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
}
div#page div#trigger {
	position: absolute;
	left: 0px;
	top: 75vh;
}
div#page p.image img {
	width: 100%;
	height: auto;
}
div#page *.scroll.fade {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
div#page *.scroll.fade.active {
	opacity: 1;
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header {
	position: relative;
	z-index: 10;
}
header#header h1 {
	position: absolute;
	left: 55px;
	top: 40px;
}
header#header h1 a {
	display: block;
	width: 151px;
	height: 32px;
}
header#header h1 img {
	width: auto;
	height: 100%;
}
header#header.alternate h1 {
	position: relative;
	width: 100%;
	height: 112px;
	left: 0px;
	top: 0px;
	padding: 40px 0px 0px 55px;
	background-color: #a5a78b;
}
header#header div.sns,
header#header p.banner-visit {
	position: fixed;
}
header#header div.sns {
	width: 55px;
	height: 560px;
	left: 0px;
	bottom: 0px;
	color: #a5a78b;
	padding-top: 300px;
	background-color: #ffffff;
  transition: 1s background-color ease;
}
div.scroll header#header div.sns {
  background-color: transparent;
}
header#header div.sns::before {
	position: absolute;
	width: 0px;
	height: 140px;
	left: calc(50% - 0.5px);
	top: 130px;
	border-right: 1px solid #a5a78b;
	content: "";
}
header#header div.sns p.label {
	position: absolute;
	width: 100px;
	left: calc(50% - 50px);
	top: 80px;
	text-align: right;
	font-family: "Roboto", sans-serif;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 10px;
	transform: rotate(-90deg);
}
header#header div.sns ul li {
	text-align: center;
	font-size: 1.75rem;
	line-height: 1em;
}
header#header div.sns ul li:not(:last-child) {
	margin-bottom: 20px;
}
header#header div.sns ul li a {
	transition: 0.25s opacity ease;
}
header#header div.sns ul li a:hover {
	opacity: 0.75;
}
header#header p.banner-visit {
	right: 0px;
	top: calc(50% - 60px);
	text-align: right;
	color: #ffffff;
}
header#header p.banner-visit a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 160px;
	height: 120px;
	overflow: hidden;
}
header#header p.banner-visit a::before,
header#header p.banner-visit span.arrow::before,
header#header p.banner-visit span.arrow::after {
	transition: 0.25s background-color ease;
}
header#header p.banner-visit a::before {
	position: absolute;
	height: 100%;
	top: 0px;
	width: calc(100% - 40px);
	right: 0px;
	background-color: #a5a78b;
	content: "";
}
header#header p.banner-visit a:hover::before,
header#header p.banner-visit a:hover span.arrow::before,
header#header p.banner-visit a:hover span.arrow::after {
	background-color: #000000;
}
header#header p.banner-visit span.arrow,
header#header p.banner-visit span.arrow::before {
	position: absolute;
	left: 0px;
	top: 0px;
}
header#header p.banner-visit span.arrow {
	width: 120px;
	height: 120px;
	transform-origin: left center;
	transform: translateX(14%) scale(0.66, 1);
}
header#header p.banner-visit span.arrow::before {
	width: 100%;
	height: 100%;
	content: "";
	background-color: #a5a78b;
	transform: rotate(-45deg);
}
header#header p.banner-visit span.text {
	position: relative;
	width: 100%;
	z-index: 1;
	padding-right: 20px;
}
header#header p.banner-visit span.text::before {
	position: absolute;
	width: 20px;
	height: 20px;
	left: 20px;
	top: calc(50% - 10px);
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	content: "";
	transform: rotate(-45deg);
}
header#header p.banner-visit span.text i {
	display: block;
	font-weight: 500;
	line-height: 1.5rem;
}
header#header p.banner-visit span.text i.sub {
	font-family: "Roboto", sans-serif;
	font-size: 0.875rem;
}
header#header p.banner-visit span.text i.main {
	font-size: 1.125rem;
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div#cover {
	position: relative;
	color: #ffffff;
	background-color: #a5a78b;
}
div#cover p.image,
div#cover div.text {
	position: absolute;
	opacity: 0;
}
div#cover p.image {
	width: calc(100% - 250px);
	height: calc(100% - 120px);
	right: 0px;
	top: 60px;
	background: url(../../images/cover-image.jpg) no-repeat center;
	background-size: cover;
	transition: 1s opacity ease-in;
}
div.active div#cover p.image,
div.active div#cover div.text {
	opacity: 1;
}
div#cover div.text {
	left: 135px;
	top: calc(50% - 160px);
	transition: 1s opacity 0.5s ease;
}
div#cover div.text p.sub span,
div#cover div.text h1 span i {
	display: inline-block;
	padding: 0px 10px;
	background-color: #a5a78b;
}
div#cover div.text p.sub {
	font-size: 1.625rem;
	font-weight: 700;
	line-height: 2.5rem;
	margin-bottom: 40px;
}
div#cover div.text h1 {
	font-family: "Roboto", sans-serif;
	font-size: 4.375rem;
	font-weight: 500;
	line-height: 5.25rem;
}
div#cover div.text h1 span {
	display: block;
}
div#cover div.text h1 span:not(:last-child) {
	margin-bottom: 20px;
}
div#cover p.button-scroll {
	position: absolute;
	width: 10px;
	height: 240px;
	right: 60px;
	bottom: 0px;
}
div#cover p.button-scroll a {
	display: block;
	position: relative;
	height: 100%;
	transition: 0.25s opacity ease;
}
div#cover p.button-scroll a:hover {
	opacity: 0.625;
}
div#cover p.button-scroll a::before {
	position: absolute;
	width: 0px;
	height: 180px;
	left: calc(50% - 0.5px);
	bottom: 0px;
	border-right: 1px solid #ffffff;
	content: "";
}
div#cover p.button-scroll span {
	display: block;
	position: absolute;
	width: 60px;
	left: calc(50% - 30px);
	top: 20px;
	text-align: center;
	font-family: "Roboto", sans-serif;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 10px;
	transform: rotate(-90deg);
}



/* --------------------------------------------------------------------------------
content
-------------------------------------------------------------------------------- */

div#content section div.inner-section {
	margin: auto;
	padding: 100px 0px;
}
div#content section header {
	text-align: center;
	color: #a5a78b;
	margin-bottom: 80px;
}
div#content section header h2 {
	position: relative;
	font-family: "Roboto", sans-serif;
	font-size: 2.8125rem;
	font-weight: 500;
	margin-bottom: 50px;
}
div#content section header h2::before {
	position: absolute;
	width: 300px;
	height: 0px;
	left: calc(50% - 150px);
	bottom: -30px;
	border-bottom: 1px solid #a5a78b;
	content: "";
}
div#content section header p.sub {
	font-weight: 500;
	line-height: 1.5rem;
}

/* summary
-------------------------------------------------------------------------------- */

div#content section#summary div.list,
div#content section#summary div.list div.row:not(:last-child) {
	margin-bottom: 50px;
}
div#content section#summary div.list div.row div.image-text {
	display: flex;
	flex-wrap: wrap;
	margin: auto;
}
div#content section#summary div.list div.row:nth-child(1) div.image-text {
	width: 950px;
}
div#content section#summary div.list div.row:nth-child(1) div.image-text p.image {
	width: 438px;
	margin-right: 50px;
}
div#content section#summary div.list div.row:nth-child(1) div.image-text div.text {
	width: calc(100% - 488px);
}
div#content section#summary div.list div.row:nth-child(2) div.image-text,
div#content section#summary div.list div.row:nth-child(3) div.image-text {
	width: 1170px;
}
div#content section#summary div.list div.row:nth-child(2) div.image-text {
	flex-direction: row-reverse;
}
div#content section#summary div.list div.row:nth-child(2) div.image-text p.image,
div#content section#summary div.list div.row:nth-child(3) div.image-text p.image {
	width: 682px;
}
div#content section#summary div.list div.row:nth-child(2) div.image-text div.text,
div#content section#summary div.list div.row:nth-child(3) div.image-text div.text {
	width: calc(100% - 732px);
}
div#content section#summary div.list div.row:nth-child(2) div.image-text div.text,
div#content section#summary div.list div.row:nth-child(3) div.image-text p.image {
	margin-right: 50px;
}
div#content section#summary div.list div.row:nth-child(2) div.image-text div.text {
	padding-left: 110px;
}
div#content section#summary div.list div.row div.image-text div.text div.header {
	color: #a5a78b;
	margin-bottom: 20px;
}
div#content section#summary div.list div.row div.image-text div.text div.header h3 {
	position: relative;
	font-family: "Roboto", sans-serif;
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 2.125rem;
	margin-bottom: 20px;
}
div#content section#summary div.list div.row div.image-text div.text div.header h3::before {
	position: absolute;
	width: 100vw;
	height: 0px;
	bottom: -10px;
	border-bottom: 1px solid #a5a78b;
	content: "";
}
div#content section#summary div.list div.row:nth-child(2) div.image-text div.text div.header h3::before {
	right: 0px;
}
div#content section#summary div.list div.row:nth-child(3) div.image-text div.text div.header h3::before {
	left: 0px;
}
div#content section#summary div.list div.row div.image-text div.text div.header p.sub {
	font-size: 1.25rem;
	font-weight: 700;
}
div#content section#summary div.list div.row div.image-text div.text table th,
div#content section#summary div.list div.row div.image-text div.text table td {
	vertical-align: top;
	font-size: 0.875rem;
}
div#content section#summary div.list div.row div.image-text div.text table th {
	position: relative;
	padding-right: 25px;
}
div#content section#summary div.list div.row div.image-text div.text table th::before {
	position: absolute;
	right: 10px;
	top: 0px;
	content: "：";
}
div#content section#summary div.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1170px;
	margin: auto;
}
div#content section#summary div.image p.row:nth-child(1) {
	width: 438px;
}
div#content section#summary div.image p.row:nth-child(2) {
	width: 682px;
}

/* consultation
-------------------------------------------------------------------------------- */

div#content section#consultation {
	background-color: #edede8;
}
div#content section#consultation div.inner-section {
	width: 1170px;
}
div#content section#consultation div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
div#content section#consultation div.list div.row div.image-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
div#content section#consultation div.list div.row:nth-child(2n+1) div.image-text {
	flex-direction: row-reverse;
}
div#content section#consultation div.list div.row div.image-text p.image {
	width: 560px;
}
div#content section#consultation div.list div.row div.image-text div.text {
	width: 440px;
	height: 300px;
	padding: 30px 30px 0px 30px;
	background-color: #ffffff;
}
div#content section#consultation div.list div.row:nth-child(2n+1) div.image-text div.text {
	transform: translateX(60px);
}
div#content section#consultation div.list div.row:nth-child(2n) div.image-text div.text {
	transform: translateX(-60px);
}
div#content section#consultation div.list div.row div.image-text div.text h3 {
	position: relative;
	font-size: 1.25rem;
	font-weight: 700;
	color: #a5a78b;
	margin-bottom: 20px;
}
div#content section#consultation div.list div.row div.image-text div.text h3::before {
	position: absolute;
	width: 100vw;
	height: 0px;
	bottom: -10px;
	border-bottom: 1px solid #a5a78b;
	content: "";
}
div#content section#consultation div.list div.row:nth-child(2n+1) div.image-text div.text h3::before {
	right: 0px;
}
div#content section#consultation div.list div.row:nth-child(2n) div.image-text div.text h3::before {
	left: 0px;
}

/* visit
-------------------------------------------------------------------------------- */

div#content section#visit div.inner-section {
	width: 680px;
}
div#content section#visit p.description {
	margin-bottom: 40px;
}
div#content section#visit div.list {
	margin-bottom: 50px;
}
div#content section#visit div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
div#content section#visit div.list div.row::before {
	position: absolute;
	width: 0px;
	height: 100%;
	left: 160px;
	top: -0px;
	border-right: 1px solid #a5a78b;
	content: "";
}
div#content section#visit div.list div.row h3 {
	width: 140px;
	font-size: 1.125rem;
	font-weight: 500;
	color: #a5a78b;
}
div#content section#visit div.list div.row p {
	width: calc(100% - 180px);
	font-size: 0.875rem;
	line-height: 1.75rem;
}
div#content section#visit div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
div#content section#visit div.component {
	position: relative;
	margin-bottom: 20px;
	padding-left: 140px;
}
div#content section#visit div.component-margin {
	margin-bottom: 40px;
}
div#content section#visit div.component p.label {
	position: absolute;
	left: 0px;
	top: 0px;
	line-height: 50px;
	margin-bottom: 0px;
}
div#content section#visit input[type=text],
div#content section#visit input[type=email],
div#content section#visit select,
div#content section#visit textarea {
	display: block;
	width: 100%;
}
div#content section#visit div.group {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	margin-right: -20px;
}
div#content section#visit div.group span.prefix,
div#content section#visit div.group span.suffix {
	display: block;
	box-sizing: border-box;
	width: 40px;
	line-height: 1.125rem;
}
div#content section#visit div.group span.prefix {
	padding-right: 5px;
}
div#content section#visit div.group span.suffix {
	padding-left: 5px;
}
div#content section#visit div.group-date,
div#content section#visit div.group-num {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}
div#content section#visit div.group-date div.row {
	width: calc(25% - 10px);
	margin-right: 10px;
}
div#content section#visit div.group-num div.row {
	position: relative;
	width: calc(50% - 10px);
	margin-right: 10px;
	padding-left: 40px;
}
div#content section#visit p.agreement {
	text-align: center;
	margin-bottom: 60px;
}
div#content section#visit p.agreement label.alternate {
	margin-right: 10px;
}
div#content section#visit p.agreement label.alternate input[type=checkbox] + span {
	border-color: #000000;
}
div#content section#visit p.agreement a {
	text-decoration: underline;
	color: #a5a78b;
}
div#content section#visit p#button-submit {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 220px;
	height: 220px;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	margin: auto;
	background-color: #a5a78b;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
div#content section#visit p#button-submit:hover {
	background-color: #000000;
}
div#content section#visit p#button-submit span {
	display: block;
	position: relative;
	padding-top: 50px;
}
div#content section#visit p#button-submit span::before,
div#content section#visit p#button-submit span::after {
	position: absolute;
	content: "";
}
div#content section#visit p#button-submit span::before {
	width: 0px;
	height: 40px;
	left: calc(50% - 0.5px);
	top: 0px;
	border-right: 1px solid #ffffff;
}
div#content section#visit p#button-submit span::after {
	position: absolute;
	width: 16px;
	height: 16px;
	left: calc(50% - 8px);
	top: 2px;
	border-left: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	content: "";
	transform: rotate(45deg);
}
div#content section#visit div.thanks {
	text-align: center;
}
div#content section#visit div.thanks h2 {
	font-family: "Roboto", sans-serif;
	font-size: 2.75rem;
	line-height: 3.25rem;
	color: #a5a78b;
	margin-bottom: 40px;
}
div#content section#visit div.thanks p.description {
	margin-bottom: 0px;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	position: relative;
	text-align: center;
	color: #ffffff;
	padding: 140px 0px 40px 0px;
	background-color: #a5a78b;
}
footer#footer p#button-page-top {
	position: absolute;
	left: calc(50% - 20px);
	top: 0px;
	font-family: "Roboto", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1rem;
}
footer#footer p#button-page-top a,
footer#footer p.tel a,
footer#footer div.sns ul li a {
	transition: 0.25s opacity ease;
}
footer#footer p#button-page-top a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	position: relative;
	width: 40px;
	height: 100px;
}
footer#footer p#button-page-top a:hover,
footer#footer p.tel a:hover,
footer#footer div.sns ul li a:hover {
	opacity: 0.75;
}
footer#footer p#button-page-top a::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 25px);
	left: calc(50% - 0.5px);
	top: 0px;
	border-right: 1px solid #ffffff;
	content: "";
}
footer#footer p.logo {
	margin-bottom: 40px;
}
footer#footer p.logo img {
	width: auto;
	height: 40px;
	margin: auto;
}
footer#footer p.tel {
	margin-bottom: 20px;
}
footer#footer div.sns {
	margin-bottom: 40px;
}
footer#footer div.sns ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
footer#footer div.sns ul li {
	font-size: 1.75rem;
}
footer#footer div.sns ul li:not(:last-child) {
	margin-right: 20px;
}
footer#footer p.copyright {
	font-family: "Roboto", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1rem;
}
