@font-face {
  font-family: 'worksans';
  src: url('../fonts/worksans/regular.woff2') format('woff2');
	font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'worksans';
  src: url('../fonts/worksans/medium.woff2') format('woff2');
	font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'worksans';
  src: url('../fonts/worksans/semibold.woff2') format('woff2');
	font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'worksans';
  src: url('../fonts/worksans/bold.woff2') format('woff2');
	font-weight: bold;
  font-style: normal;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	cursor: pointer;
}

.richtext {
	width: 100%;
	height: 300px;
	border: 1px solid black;
	overflow: auto;
	padding: 5px;
}

body {
	font-family: var(--main-font), sans-serif;
	font-weight: normal;
	color: var(--black-1);
	font-size: var(--small);
	margin: 0;
}

button {
	cursor: pointer;
	font-family: 'worksans';
	font-weight: 500;
	font-size: 16px;
}

footer {
	background-color: var(--purple-1);
	color: white;
	font-weight: bold;
	padding: 1px;
	overflow: hidden;
	border-radius: var(--soft);
	margin: var(--inside-space);
}

google-map {
	width: 100%;
	height: 500px;
}

google-map > iframe {
	height: 100%;
	width: 100%;
	filter: sepia(100%) hue-rotate(200deg) saturate(8);
	border-radius: var(--soft);
	border: solid;
}

h1, h2 {
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	color: var(--purple-1);
}

h3 {
	text-align: left;
	font-size: 22px;
	font-weight: 600;
}

header {
	margin-top: 2px;
}

icon {
	height: 0px;
}

input:focus, textarea:focus {
	outline: none;
}

label {
	font-weight: bold;
}

textarea {
	resize: none;
	width: 100%;
}

ul {
	margin: 0;
}

.icon {	
	height: 1.1em;
	width: 1em;
	margin-right: 4px;
	fill: darkslategrey;
}

.long {
	display: inline;
}

.rounded {
	border-radius: var(--primary-radius);
}

.short {
	display: none;
}

.pc {
	display: flex;
}

.mobile {
	display: none;
}

.white {
	filter: var(--white-img);
}

.flex {
	display: flex;
} 

.row {
	flex-direction: row;
}

.col {
	flex-direction: column;
}

.rowcol {
	flex-direction: row;
}

.inside {
	max-width: 1280px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.txtpur {
	color: var(--purple-1);
}

.txtgr {
	color: var(--green-1);
}

.btn {
	border-radius: var(--soft);
	border: 2px solid var(--purple-1);
	background-color: var(--purple-1);
	color: white;
	padding: 8px;
}

#copyright {
	margin: 10px;
	text-align: center;
}

#logo-h2 {
	width: 300px;
}

#logo-v2 {
	width: 100px;
}

#pre-footer {
	padding: var(--inside-space);
	background-color: var(--color-2-a);
	color: white;
}

#pre-footer > h2 {
	color: black;
}

#pre-footer > div {
	display: flex;
	justify-content: space-between;
	height: 100%;
	width: 100%;
	gap: var(--inside-space);
}

#location { 
	max-width: 100%;
	height: 100%;
	display: flex;
	padding: var(--inside-space);
	margin: var(--inside-space);
	margin-top: 0px;
}

@media screen and (max-width: 960px) {
	.long {
		display: none;
	}

	.short {
		display: inline;
	}

	#pre-footer > div {
		flex-direction: column;
	}
}

@media screen and (max-width: 595px) {
	header {
		margin: 0;
	}

	footer {
		margin-bottom: 0px;
		border-radius: 0px;
	}

	.pc {
		display: none !important;
	}

	.mobile {
		display: flex !important;
	}

	.rowcol {
		flex-direction: column;
	}
}

@media print {
	button {
		display: none;
	}
}
