@charset "utf-8";

/* ■ 基本設定 ■ */
:root {
	--background: #e3decb;				/* 背景色 */
	--english: #c9ba9d;					/* Englishボタン背景色 */
	--menu: #e3decb;					/* メニューボタン背景色 */
	--menu-current: #c1b999;			/* メニューボタン（カレント）背景色 */
	--news: #eb5934;					/* お知らせ色 */
	--event: #6673b7;					/* 開催イベント色 */
	--volunteer: #e9b335;				/* ボランティア募集色 */
	--group: #22b473;					/* 団体事業紹介色 */
	--other: #ba89b8;					/* その他色 */
	--reset: #b3b3b3;					/* リセット色 */
	--line: #c1c6a4;					/* ライン色 */
	--font: #1a1717;					/* 文字色 */
	--contact-base: #c1b999;			/* コンタクト基本色 */
	--contact-back: #e3decb;			/* コンタクト背景色 */
	--contact-char: #9d9577;			/* コンタクト文字色 */
}

/* ■ Reset CSS ■ */
*,*::before,*::after {
	box-sizing: border-box;
}
body,h1,h2,h3,h4,h5,h6,article,section,header,footer,nav,aside,p,hr,ul,ol,li,dl,dt,dd,div,
main,em,strong,small,i,b,span,table,caption,tr,th,td,pre,label,input,textarea,select,button {
	padding: 0;
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: 1.6;
	word-wrap: break-word;
}
body,input,textarea,button {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--font);
}
address,em,i {
	font-style: normal;
}
strong,th,b {
	font-weight: normal;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	opacity: 0.6;
}

/* ■ 共通 ■ */
body {
	background: var(--background);
	padding: 75px 10px;
	color: var(--font);
}
@media screen and (max-width: 760px) {
	body {
		padding: 30px 10px;
	}
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 20px;
	background: #fff;
}
h2 {
	margin: 0 0 10px 0;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
	position: relative;
	border-bottom: 3px var(--line) solid;
	line-height: 1.3;
}
@media screen and (max-width: 760px) {
	h2 {
		font-size: 1.2rem;
	}
}
h2 span {
	position: absolute;
	left: 190px;
	bottom: 1px;
	font-size: 1.0rem;
}
@media screen and (max-width: 760px) {
	h2 span {
		left: 90px;
		bottom: 1px;
		font-size: 0.8rem;
	}
}
h3 {
	font-size: 1.4rem;
	font-weight: 600;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-color: var(--menu);
	text-decoration-thickness: 12px;
	text-decoration-skip-ink: none;
	text-underline-offset: -5px;
}
@media screen and (max-width: 760px) {
	h3 {
		font-size: 1.2rem;
	}
}
h4 {
	font-size: 1.22rem;
	font-weight: 600;
}
@media screen and (max-width: 760px) {
	h4 {
		font-size: 1.2rem;
	}
}
p {
	font-size: 1.22rem;
}
p.sub-mess {
	font-size: 1rem;
}
.lf {
	margin-bottom: 20px;
}
.pa {
	margin-left: 20px;
}

/* header */
header {
	display: flex;
	align-items: center;
	align-content: center;
	padding: 20px 40px;
}
@media screen and (max-width: 760px) {
	header {
		display: block;
		padding: 20px 10px 10px 10px;
	}
}
header h1 {
	width: 350px;
}
@media screen and (max-width: 760px) {
	header h1 {
		width: 75%;
		max-width: 350px;
		margin: 0 auto;
	}
}
header p {
	width: calc(100% - 500px);
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	text-align: center;
}
@media screen and (max-width: 760px) {
	header p {
		width: 100%;
		padding: 10px 0 0 0;
		font-size: 0.8rem;
	}
}
header div {
	width: 150px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	text-align: center;
	font-size: 1.2rem;
	color: #fff;
	background: var(--english);
}
header div:hover {
	cursor: pointer;
	opacity: 0.6;
}
@media screen and (max-width: 760px) {
	header div.english-pc {
		display: none;
	}
}

/* .hero */
.hero {
	padding: 0 40px 20px 40px;
	position: relative;
}
@media screen and (max-width: 760px) {
	.hero {
		padding: 0 10px 20px 10px;
	}
}
.hero .slider {
	aspect-ratio: 1318 / 699;
	border-radius: 20px;
	overflow: hidden;
}
.hero .slider ul {
	position: relative;
	list-style-type: none;
}
.hero .slider ul li {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.hero .slider ul li.active {
	animation-name: slider-key;
	animation-timing-function: linear;
	animation-duration: 8s;
	animation-fill-mode: forwards;
}
.hero .slider ul li img {
	width: 110%;
}
@keyframes slider-key {
	from {
		left: 0%;
	}
	to {
		left: -10%;
	}
}
.hero img {
	border-radius: 20px;
}

/* nav */
nav.menu-wrapper {
	padding: 0 40px 20px 40px;
}
nav.menu-wrapper #menu-btn-check {
    display: none;
}

/* PCメニュー */
nav.menu-wrapper {
}
nav.menu-wrapper .menu-content ul {
	display: flex;
	gap: 20px;
    list-style: none;
}
nav.menu-wrapper .menu-content ul li {
	width: calc((100% - 100px) / 6);
}
nav.menu-wrapper .menu-content ul li a {
	display: block;
	padding: 10px 0;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-size: 1.15rem;
	text-align: center;
	background: var(--menu);
	border-radius: 10px;
}
nav.menu-wrapper .menu-content ul li.current a {
	background: var(--menu-current);
}
nav.menu-wrapper .menu-content ul li.english-sp {
	display: none;
}

/* スマホメニューの設定 */
@media screen and (max-width: 760px) {
	nav.menu-wrapper {
		padding: 0 10px 0 10px;
	}
	nav.menu-wrapper .menu-btn {
	    position: fixed;
	    top: 40px;
	    right: 10px;
	    display: flex;
	    height: 60px;
	    width: 60px;
	    justify-content: center;
	    align-items: center;
	    z-index: 90;
	    background-color: rgba(255,255,255,0.3);
		cursor: pointer;
		border-radius: 20px;
	}
	nav.menu-wrapper .menu-btn span,
	nav.menu-wrapper .menu-btn span:before,
	nav.menu-wrapper .menu-btn span:after {
	    content: '';
	    display: block;
	    height: 4px;
	    width: 40px;
	    background-color: var(--english);
	    position: absolute;
	}
	nav.menu-wrapper .menu-btn span:before {
	    bottom: 12px;
	}
	nav.menu-wrapper .menu-btn span:after {
	    top: 12px;
	}
	nav.menu-wrapper #menu-btn-check:checked ~ .menu-btn span {
	    background-color: rgba(255, 255, 255, 0);
	}
	nav.menu-wrapper #menu-btn-check:checked ~ .menu-btn span::before {
	    bottom: 0;
	    transform: rotate(45deg);
	}
	nav.menu-wrapper #menu-btn-check:checked ~ .menu-btn span::after {
	    top: 0;
	    transform: rotate(-45deg);
	}
	nav.menu-wrapper #menu-btn-check:checked ~ .menu-content {
	    left: calc(100% - 220px);			/* メニュー領域の引き出し位置（0にすると左端まで） */
	}
	nav.menu-wrapper .menu-content {
		width: 100%;
		height: 100vh;						/* autoにするとコンテンツ領域分までに */
	    position: fixed;
	    top: 0;
	    left: 100%;
		overflow: auto;
	    z-index: 80;
	    padding: 0 10px;
	    background-color: rgba(0,0,0,0.7);
	    transition: all 0.5s;
	}
	nav.menu-wrapper .menu-content ul {
		display: block;
		width: 200px;						/* メニュー領域の横幅を設定（100%にすると横幅いっぱい） */
	    padding-top: 120px;
	    list-style: none;
	}
	nav.menu-wrapper .menu-content ul li {
		width: 100%;
		border-left: none;
	    border-top: solid 1px #fff;
	}
	nav.menu-wrapper .menu-content ul li:last-child {
		border-right: none;
	    border-bottom: solid 1px #fff;
	}
	nav.menu-wrapper .menu-content ul li a {
		display: block;
	    text-decoration: none;
	    color: #fff;
	    padding: 10px 0px;
	    text-align: center;
	    background: transparent;
	}
	nav.menu-wrapper .menu-content ul li.current a {
		font-weight: 600;
	    background: transparent;
	}
	nav.menu-wrapper .menu-content ul li a:hover {
		opacity: 0.6;
	}
	nav.menu-wrapper .menu-content ul li.english-sp {
		display: block;
	}

}

/* メイン（共通） */
main {
	padding: 20px 40px;
}
@media screen and (max-width: 760px) {
	main {
		padding: 0 10px;
	}
}

/* お知らせ選択メニュー（共通） */
main .news-menu {
	margin: 0 0 20px 186px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
}
@media screen and (max-width: 760px) {
	main .news-menu {
		margin: 0 0 20px 0;
		gap: 5px;
	}
}
main .news-menu li {
	width: calc((100% - 50px) / 6);
	padding: 3px 0;
	border-radius: 5px;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 760px) {
	main .news-menu li {
		width: calc((100% - 10px) / 3);
		font-size: 0.8rem;
	}
}
main .news-menu li:hover {
	cursor: pointer;
	opacity: 0.6;
}

/* おしらせ一覧（共通） */
main .news-list {
	list-style: none;
}
main .news-list li {
	margin: 0 0 10px 0;
	display: flex;
	gap: 40px;
	align-items: flex-start;
}
@media screen and (max-width: 760px) {
	main .news-list li {
		margin: 0 0 5px 0;
		display: block;
	}
}
main .news-list li.none {
	display: none;
}
main .news-list li p {
	width: 147px;
	padding: 3px 0;
	border-radius: 5px;
	font-size: 1rem;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 760px) {
	main .news-list li p {
		width: 108px;
		padding: 1px 0;
		font-size: 0.8rem;
	}
}
main .news-list li a {
	display: inline-block;
	width: calc(100% - 187px);
}
@media screen and (max-width: 760px) {
	main .news-list li a {
		width: 100%;
	}
}
main .news-list li a dl {
	text-decoration: underline;
}
main .news-list li dl {
	display: flex;
	font-size: 1.22rem;
}
@media screen and (max-width: 760px) {
	main .news-list li dl {
		font-size: 0.8rem;
	}
}
main .news-list li dt {
	width: 155px;
}
@media screen and (max-width: 760px) {
	main .news-list li dt {
		width: 90px;
	}
}
main .news-list li dd {
	width: calc(100% - 155px);
	line-height: 1.4;
}
@media screen and (max-width: 760px) {
	main .news-list li dd {
		width: calc(100% - 90px);
	}
}
main .news-caution {
	font-size: 1.22rem;
	color: #f00;
}
@media screen and (max-width: 760px) {
	main .news-caution {
		font-size: 0.8rem;
	}
}
main .news-link {
	padding: 0 0 30px 0;
	font-size: 1.22rem;
	text-align: right;
	text-decoration: underline;
}
@media screen and (max-width: 760px) {
	main .news-link {
		padding: 10px 0 10px 0;
		font-size: 0.8rem;
	}
}
main .news-news {
	background: var(--news);
}
main .news-event {
	background: var(--event);
}
main .news-volunteer {
	background: var(--volunteer);
}
main .news-group {
	background: var(--group);
}
main .news-other {
	background: var(--other);
}
main .news-reset {
	background: var(--reset);
}

/* 一覧ページへ戻る（共通） */
main .list-page {
	padding: 60px 0 30px 0;
	font-size: 1.22rem;
	text-align: center;
	text-decoration: underline;
}
@media screen and (max-width: 760px) {
	main .list-page {
		padding: 10px 0 10px 0;
		font-size: 0.8rem;
	}
}

/* ■ トップページ ■ */

/* .content */
main.top .content {
	padding: 20px 0 80px 0;
	display: flex;
	gap: 28px 12px;
	flex-wrap: wrap;
}
@media screen and (max-width: 760px) {
	main.top .content {
		padding: 0 0 30px 0;
		gap: 10px;
	}
}
main.top .content a {
	display: block;
	width: calc((100% - 12px) / 2);
}
@media screen and (max-width: 760px) {
	main.top .content a {
		width: 100%;
	}
}
main.top .content a img {
	border-radius: 20px;
}

/* .sns */
main.top .sns {
	padding: 20px 0 80px 0;
	display: flex;
	gap: 28px 12px;
	flex-wrap: wrap;
}
@media screen and (max-width: 760px) {
	main.top .sns {
		padding: 0 0 30px 0;
		gap: 10px;
	}
}
main.top .sns a {
	display: block;
	width: calc((100% - 12px) / 2);
}
@media screen and (max-width: 760px) {
	main.top .sns a {
		width: 100%;
	}
}
main.top .sns a img {
	border-radius: 20px;
}

/* .access */
main.top .access {
	padding: 20px 0 80px 0;
}
@media screen and (max-width: 760px) {
	main.top .access {
		padding: 20px 0 30px 0;
	}
}
main.top .access iframe {
	width: 100%;
	height: 400px;
	border-radius: 20px;
	filter: hue-rotate(200deg) grayscale(50%);
}
@media screen and (max-width: 760px) {
	main.top .access iframe {
		height: 200px;
	}
}
main.top .access div {
	display: flex;
	gap: 20px;
}
@media screen and (max-width: 760px) {
	main.top .access div {
		display: block;
	}
}
main.top .access div p {
	width: calc((100% - 20px) / 2);
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
}
@media screen and (max-width: 760px) {
	main.top .access div p {
		width: 100%;
		font-size: 0.8rem;
	}
}
main.top .contact {

}
main.top .contact dl {
}
main.top .contact dl dt {
	float: left;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
}
@media screen and (max-width: 760px) {
	main.top .contact dl dt {
		font-size: 0.8rem;
	}
}
main.top .contact dl dd {
	margin-left: 120px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
}
@media screen and (max-width: 760px) {
	main.top .contact dl dd {
		margin-left: 70px;
		font-size: 0.8rem;
	}
}

/* ■ フッター ■ */
footer {
	padding: 40px 40px;
	text-align: center;
}
@media screen and (max-width: 760px) {
	footer {
		padding: 20px 40px;
		text-align: center;
	}
}
footer small {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1.2rem;
}
@media screen and (max-width: 760px) {
	footer small {
		font-size: 0.8rem;
	}
}

/* ■ ページトップ（ロケット） ■ */
#page-top {										/* スクロールボタンの配置位置 */
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);				/* ウィンドウの枠外に隠しておく */
}
#page-top a:hover{
	opacity: 0.6;
}
#page-top a.rocket-wrapper {					/* ロケット枠領域 */
	display: block;
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
}
#page-top div img,
#page-top a.rocket-wrapper div img {
	width: 60px;
	vertical-align: top;
}
#page-top div.rocket-flame {					/* 炎（最初は非表示） */
	display: none;
}
#page-top a.rocket-wrapper div.arrow {	/* 'TOP PAGE'文字 */
	position: absolute;
	right: 14px;
	bottom: 9px;
	font-size: 12px;
	line-height: 1.2;
	color: #fff;
	text-align: center;
}
@keyframes anime-up {							/* スクロールボタンを上に上げるアニメーション */
	from {
		opacity: 0;
		transform: translateY(160px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
#page-top.move-up {
	animation: anime-up 0.5s forwards;
}
@keyframes anime-down {							/* スクロールボタンを下に下げるアニメーション */
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(160px);
	}
}
#page-top.move-down {
	animation: anime-down 0.5s forwards;
}
#page-top.rocket-launch {						/* ロケット発射 */
	animation: anime-launch 1s forwards ease-in;
}
@keyframes anime-launch {
	from {
		opacity: 1;
		bottom: 71px;
	}
	to {
		opacity: 0;
		bottom: calc(100vh + 100px);
	}
}
#page-top.rocket-launch div.rocket-flame {		/* 炎を表示 */
	display: block;
}

/* ■ 過去の開催事業 ■ */

/* 過去の開催事業の一覧ページ */
main.history {
}
main.history .history-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
}
main.history .history-list li {
	width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 760px) {
	main.history .history-list li {
		width: calc((100% - 20px) / 2);
	}
}
main.history .history-list li div {
	border: 1px #ccc solid;
	background: #f0fbc4;
	aspect-ratio: 400 / 566;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
}
main.history .history-list li div img {
}
main.history .history-list li  p {
	padding: 0 10px;
	font-size: 1rem;
	text-align: center;
}

/* ■ 作品 ■ */

/* 作品の作家一覧ページ */
main.work {
}
main.work .artist-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
}
main.work .artist-list li {
	width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 760px) {
	main.work .artist-list li {
		width: calc((100% - 20px) / 2);
	}
}
main.work .artist-list li div {
	border: 1px #ccc solid;
	background: #f0fbc4;
	aspect-ratio: 400 / 400;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
}
main.work .artist-list li div img {
}
main.work .artist-list li  p {
	padding: 0 10px;
	font-size: 1rem;
	text-align: center;
}

/* 作品の作家ページ */
main.work-artist .artist-wrapper {
	display: flex;
	gap: 20px;
}
@media screen and (max-width: 760px) {
	main.work-artist .artist-wrapper {
		display: block;
	}
}
main.work-artist .artist-wrapper div {
	width: 280px;
	border: 1px #ccc solid;
	background: #f0fbc4;
	aspect-ratio: 400 / 400;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
}
@media screen and (max-width: 760px) {
	main.work-artist .artist-wrapper div {
		width: 100%;
		margin: 0 0 20px 0;
	}
}
main.work-artist .artist-wrapper p {
	padding: 0 10px;
	font-size: 1rem;
}
main.work-artist .work-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
}
main.work-artist .work-list li {
	width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 760px) {
	main.work-artist .work-list li {
		width: calc((100% - 20px) / 2);
	}
}
main.work .work-list li div {
	border: 1px #ccc solid;
	background: #f0fbc4;
	aspect-ratio: 400 / 400;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
}
main.work-artist .work-list li div img {
}
main.work-artist .work-list li  p {
	padding: 0 10px;
	font-size: 1rem;
	text-align: center;
}
main.work-artist .work-list li  p.work-mess {
	padding: 0;
	text-align: left;
}

/* 作品ページ */
main.work-detail .work-wrapper {
	display: flex;
	gap: 20px;
}
@media screen and (max-width: 760px) {
	main.work-detail .work-wrapper {
		display: block;
	}
}
main.work-detail .work-wrapper div {
	width: 280px;
	border: 1px #ccc solid;
	background: #f0fbc4;
	aspect-ratio: 400 / 400;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
}
@media screen and (max-width: 760px) {
	main.work-detail .work-wrapper div {
		width: 100%;
		margin: 0 0 20px 0;
	}
}
main.work-detail .work-wrapper p {
	padding: 0 10px;
	font-size: 1rem;
}

/* ■ お問い合わせ ■ */
main.contact {
}
main.contact p {
	font-size: 1rem;
}
main.contact .contact-wrapper {
	padding: 22px 0px;
}
main.contact .contact-wrapper .red {
	color: red;
}
main.contact .contact-wrapper .contact-flow {
	display: flex;
	justify-content: space-between;
	padding: 20px 20px 0 20px;
	margin-bottom:10px;
	list-style-type: none;
}
main.contact .contact-wrapper .contact-flow > li {
	flex-basis: calc(100% / 3 - 25px);;
}
main.contact .contact-wrapper .contact-flow > li .icon {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	line-height: 50px;
	width: 50px;
	color: #fff;
	background: var(--contact-base);
	margin: 0 auto 15px auto;
	display: block;
	border-radius: 50%;
	text-align: center;
	position: relative;
	letter-spacing: 2px;
}
main.contact .contact-wrapper .contact-flow > li .icon::before {
	content: "";
	border: solid transparent;
	border-width: 8px;
	border-top-color: var(--contact-base);
	position: absolute;
	top: calc(100% - 2px);
	left: 50%;
	transform: translateX(-50%);
}
main.contact .contact-wrapper .contact-flow > li dl {
	padding: 15px;
	margin: 0;
	border: 3px solid var(--contact-base);
	border-radius: 10px;
	position: relative;
}
main.contact .contact-wrapper .contact-flow > li dl.checked {
	background: var(--contact-back);
}
main.contact .contact-wrapper .contact-flow > li:not(:last-child) dl::before {
	content: "";
	width: 14px;
	height: 14px;
	margin-right: 10px;
	display: inline-block;
	border-top: 4px solid var(--contact-base);
	border-right: 4px solid var(--contact-base);
	position: absolute;
	top: calc(50% - 6px);
	left: 105%;
	transform: rotate(45deg);
}
@media screen and (max-width: 760px) {
	main.contact .contact-wrapper .contact-flow > li:not(:last-child) dl::before {
		left: 110%;
	}
}
main.contact .contact-wrapper .contact-flow > li dl dt {
	font-size: 20px;
	font-weight: 600;
	color: var(--contact-char);
	flex-basis: 20%;
	margin-bottom: 1vh;
	text-align: center;
}
@media screen and (max-width: 760px) {
	main.contact .contact-wrapper .contact-flow > li dl dt {
		font-size: 18px;
		margin-bottom: 0;
	}
}
main.contact .contact-wrapper .contact-flow > li dl dd {
	margin-left: 0;
	text-align: center;
	color: var(--contact-char);
}
@media screen and (max-width: 760px) {
	main.contact .contact-wrapper .contact-flow > li dl dd {
		display: none;
	}
}
main.contact .contact-wrapper .contact-personal {
	padding: 20px 20px 0 20px;
	margin-botton: 10px;
}
main.contact .contact-wrapper .contact-personal h4 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}
main.contact .contact-wrapper .contact-personal > ul {
	margin-left: 2rem;
	margin-bottom: 10px;
}
main.contact .contact-wrapper .contact-personal > ul li {
	list-style: disc;
}
main.contact .contact-wrapper .contact-form {
	padding: 20px 20px 0 20px;
}
main.contact .contact-wrapper .contact-form h4 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
main.contact .contact-wrapper .contact-form p.message {
	margin-bottom: 10px;
}
main.contact .contact-wrapper .contact-form > form {
	padding: 20px;
	border: #ccc 1px solid;
}
main.contact .contact-wrapper .contact-form .form-group {
	margin-bottom: 1rem;
}
main.contact .contact-wrapper .contact-form .form-control {
	display: block;
	max-width: 100%;
	width: 100%;
	padding: 10px;
	background: #f8f8f8;
	font-family: inherit;
	font-size: 1rem;
	border: #ccc 1px solid;
}
main.contact .contact-wrapper .contact-form .readonly {
	background: none;
}
main.contact .contact-wrapper .contact-form label {
	display: inline-block;
	padding-left: 0.2rem;
	margin-bottom: 0.2rem;
}
main.contact .contact-wrapper .contact-form label span {
	color: red;
}
main.contact .contact-wrapper .contact-form label span.error-php {
	font-weight: bold;
}
main.contact .contact-wrapper .contact-form #c_name,
main.contact .contact-wrapper .contact-form #c_facility,
main.contact .contact-wrapper .contact-form #c_tel,
main.contact .contact-wrapper .contact-form #c_email,
main.contact .contact-wrapper .contact-form #c_kind {
	max-width: 500px;
}
main.contact .contact-wrapper .contact-form input,
main.contact .contact-wrapper .contact-form textarea {
}
main.contact .contact-wrapper .contact-form .form-button {
	margin-top: 1.5rem;
	text-align: center;
}
main.contact .contact-wrapper .contact-form .form-button button {
	display: inline-block;
	width: 200px;
	padding: 10px 0;
	margin: 0 40px;
	text-align: center;
	background: var(--contact-base);
	font-size: 1rem;
	color: #fff;
	border:none;
	border-radius: 40px;
}
@media screen and (max-width: 760px) {
	main.contact .contact-wrapper .contact-form .form-button button {
		width: 70px;
		margin: 0 10px;
	}
	main.contact .contact-wrapper .contact-form .form-button button.confirm {
		width: 100px;
		margin: 0 10px;
	}
}
main.contact .contact-wrapper .contact-form .form-button button:hover {
	opacity: 0.6;
	cursor: pointer;
}
main.contact .contact-wrapper .contact-end {
	padding: 20px 20px 0 20px;
}
main.contact .contact-wrapper .contact-end > p {
	paddingleft: 20px;
}
main.contact .contact-wrapper .contact-end h4 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
