
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
	height: 100%;
}
img {
	display: block;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration: none;
	color: #000;
	transition: all .3s;
}
p {
	line-height: 1.8; font-size: 14px;
}


.form_error{
	color: #FF0000;
padding:10px;
font-size:14px;
}
/* デフォルトの装飾を削除 */
input, textarea {
	-webkit-appearance: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
:focus {
    outline: -webkit-focus-ring-color none;
}

/* select を div で囲む */
.select {
	width: 100%;
	position: relative;
}
.select::before {
	content: "";
	display: block;
    width: 0;
    height: 0;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 5px solid #000;
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -3px;
}
select {
	-webkit-appearance: none;
	width: 100%;
	height: 36px;
	background: transparent;
	padding: 0 10px;
	font-size: 16px;
	cursor: pointer;
}
select::-ms-expand {
    display: none;
}


/*==================================================================================
ヘッダー
==================================================================================*/
header {
	z-index: 9999;
}
.head_logo {
	display: none;
}

/* メニュー -----------------------*/
nav.globalMenuSp {
	z-index: -1;
	opacity: 0;
    width: calc(100% - 60px);
    height: calc(100% - 80px);
	max-width: 420px;
	padding: 40px 30px;
    background: #dcdddd;
    transition: all 0.6s;
	list-style-type: none;
    position: fixed;
    top: 0;
    right: 0;
}
nav.globalMenuSp .menu_ttl {
    width: 260px;
}
nav.globalMenuSp ul {
    width: 80%;
	margin: 60px auto 0;
}
nav.globalMenuSp ul li {
    width: 100%;
    border-bottom: 1px #000 solid;
}
nav.globalMenuSp ul li:last-child {
    padding-top: 60px;
	border-bottom: none;
}
nav.globalMenuSp ul li a {
    display: block;
	padding: 30px;
}
nav.globalMenuSp ul li a:hover {
	opacity: 1;
    background: #DCDCDC;
}
nav.globalMenuSp ul li:nth-child(7) a {
    padding: 10px;
	background: #000;
	color: #fff;
	text-align: center;
}
nav.globalMenuSp ul li:nth-child(7) a:hover {
	background: none;
	color: #000;
	border: 1px #000 solid;
	box-sizing: border-box;
}
nav.globalMenuSp ul li a p {
    font-size: 20px;
	line-height: 1;
	position: relative;
}
nav.globalMenuSp ul li:nth-child(n+2) a p {
    padding-left: 60px;
}
nav.globalMenuSp ul li:nth-child(7) a p {
    padding-left: 0;
}
nav.globalMenuSp ul li:nth-child(n+2) a p::before {
    content: "";
	display: block;
	width: 34px;
	height: 34px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -17px;
}
nav.globalMenuSp ul li:nth-child(2) a p::before {
    background-image: url("../img/icon01.png");
}
nav.globalMenuSp ul li:nth-child(3) a p::before {
    background-image: url("../img/icon02.png");
}
nav.globalMenuSp ul li:nth-child(4) a p::before {
    background-image: url("../img/icon03.png");
}
nav.globalMenuSp ul li:nth-child(5) a p::before {
    background-image: url("../img/icon04.png");
}
nav.globalMenuSp ul li:nth-child(6) a p::before {
    background-image: url("../img/icon05.png");
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    opacity: 1;
	z-index: 2;
}
.navToggle {
	z-index: 3;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    top: 30px;
    right: 30px;
}
.navToggle span {
    display: block;
    width: 100%;
    border-bottom: solid 3px #231815;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    position: absolute;    /* .navToggleに対して */
    left: 0;
}
.navToggle span:nth-child(1) {
    top: 8px;
}
.navToggle span:nth-child(2) {
    top: 18px;
}
.navToggle span:nth-child(3) {
    top: 28px;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
.container {
	width: calc(100% - 40px);
	max-width: calc(1200px - 40px);
	padding: 0 20px;
	margin: auto;
	position: relative;
}
.max680 {
	max-width: 680px;
	margin: auto;
}
.max980 {
	max-width: 980px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.align_center {
	align-items: center;
}
.row.just_center {
	justify-content: center;
}
.col2 {
	width: calc(50% - 60px);
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}

/* フォント */
h1 {
	font-family: urw-din, sans-serif;
	font-weight: 500;
	font-size: 36px;
	text-align: center;
	letter-spacing: 3px;
}
h1 span {
	display: block;
	margin-top: 20px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 0;
}
h3 {
	font-size: 18px;
	font-weight: normal;
	padding-bottom: 5px!important;
	border-bottom: 1px #000 solid!important;
}
.din {
	font-family: urw-din, sans-serif;
	font-weight: 500;
}
.txt_center {
	text-align: center;
}
.indent {
	padding-left: 1em;
	text-indent: -1em;
}
.indent2 {
	padding-left: 2em;
	text-indent: -2em;
}
.font_20 {
	font-size: 20px;
}
.bold {
	font-weight: bold;
}


/*==================================================================================
メイン
==================================================================================*/
main {
	position: relative;
}
section {
	padding: 120px 0!important;
}

section#main {
	height: calc(100vh - 120px);
	padding: 0 0 120px!important;
	position: relative;
}
section#main .main {
	max-width: 460px;
	margin: auto;
}
section#main .main_copy {
	max-width: 200px;
	margin: auto;
}
section#main .logo {
	max-width: 260px;
	margin: auto;
}
section#main .btn_scroll {
	display: block;
	padding: 10px 0 10px 5px;
	border-left: 0px #000 solid;
	font-family: urw-din, sans-serif;
	font-weight: 500;
	font-size: 14px;
	-ms-writing-mode: tb-rl;
  	writing-mode: vertical-rl;
	position: absolute;
	right: 60px;
	bottom: 60px;
}

/* お知らせ ---------------------------------*/
section#top_news .row .row {
	flex-wrap: nowrap;
}
section#top_news .category {
	padding-right: 15px;
	border-right: 1px #000 solid;
	white-space: nowrap;
}
section#top_news .txt {
	width: calc(100% - 15px);
	padding-left: 15px;
	position: relative;
}
section#top_news .txt .btn_detail {
	display: inline-block;
	font-size: 14px;
	position: relative;
	right: 0;
	bottom: 0;
}

/* Calendar ---------------------------------*/
section#calender .icon_closed {
	display: inline-block;
	margin-right: 60px;
	padding-left: 36px;
	position: relative;
}
section#calender .icon_closed::before {
	content: "";
	display: block;
	width: 26px;
	height: 26px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -13px;
}
section#calender .reserve {
	display: inline-block;
	padding: 0 5px;
	border: 1px #000 solid;
}
section#calender .month {
	font-family: urw-din, sans-serif;
	font-weight: 500;
	font-size: 36px;
	text-align: center;
	line-height: 1;
}
section#calender .month span {
	font-size: 18px;
}
section#calender table {
	width: 100%;
	font-family: urw-din, sans-serif;
	font-weight: 500;
	font-size: 18px;
}
section#calender table tr:first-child {
	border-bottom: 1px #000 solid;
}
section#calender table th,
section#calender table td {
	width: calc(100% / 7 - 40px);
	text-align: center;
	padding: 20px;
}
section#calender table th:nth-child(1),
section#calender table td:nth-child(1) {
	color: #c30d23;
}
section#calender table th:nth-child(7),
section#calender table td:nth-child(7) {
	color: #172a88;
}
section#calender table td.closed {
	color: #fff;
	position: relative;
}
section#calender table td.closed::before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -15px;
	z-index: -1;
}

/* Access ---------------------------------*/
section#access .add {
	text-align: center;
	margin-bottom: 10px;
}
section#access .btn_print {
	display: block;
	width: calc(170px - 27px);
	background: #efefef;
	border: 1px #000 solid;
	border-radius: 5px;
	padding: 10px 15px 10px 10px;
	margin: 0 0 30px auto;
	font-size: 14px;
	position: relative;
}
section#access .btn_print::after {
	content: "\025b6";
	display: inline-block;
	font-size: 10px;
	position: relative;
	top: -1px;
	right: -5px;
}

/* Contact ---------------------------------*/
section#contact .ttl {
	display: inline-block;
	border: 1px #000 solid;
	padding: 15px 20px;
	font-size: 14px;
	line-height: 1;
}
section#contact .ttl span {
	display: block;
	margin-top: 10px;
	font-size: 18px;
	font-weight: bold;
}
#agree {
	text-align: center;
}
#agree span {
	display: inline-block;
    padding-left: 21px;
	font-size: 18px;
	line-height: 1.4;
    position: relative;
	cursor: pointer;
}
#agree span:hover {
	opacity: 0.8;
}
#agree span::before {
    content: "";
    display: block;
    width: calc(16px - 2px);
    height: calc(16px - 2px);
    border: 1px #333 solid;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}
#agree.active span {
    color: #FF7F00;
}
#agree.active span::before {
    border: 1px #FF7F00 solid;
}
#agree.active span::after {
    content: "";
    display: block;
    width: 12px;
    height: 6px;
    border-left: 4px #FF7F00 solid;
	border-bottom: 4px #FF7F00 solid;
    position: absolute;
    top: 4px;
    left: 1px;
	transform: rotate(-45deg);
}
section#contact form {
	border: 1px #000 solid;
	padding: 30px 60px;
}
section#contact form.checked_view {
	display: none;
}
section#contact form.checked_view.active {
	display: block;
}
section#contact form .item {
	width: calc(140px - 20px);
	padding-right: 20px;
	font-size: 14px;
	line-height: 1.2;
	text-align: right;
}
section#contact form .wrap {
	width: calc(100% - 140px);
}
section#contact form input,
section#contact form textarea {
	width: 100%;
	padding: 10px;
	border: 1px #000 solid;
	border-radius: 0;
	background: #fff;
	font-size: 16px;
}
/* ラジオボタン */
section#contact form label.radio {
	display: inline-block;
	margin-right: 15px;
	cursor: pointer;
}
section#contact form label.radio input {
	display: none;
}
section#contact form label.radio span {
	font-size: 14px;
	padding-left: 20px;
	position: relative;
}
section#contact form label.radio span::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border: 1px #000 solid;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
}
section#contact form label.radio span::after {
	content: "";
	display: none;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	top: 5px;
	left: 5px;
}
section#contact form label.radio input:checked + span::after {
	display: block;
}
/* 確認ボタン */
section#contact form input.btn {
	width: calc(100% - 22px);
	max-width: 180px;
	padding: 5px 10px;
	border: 1px #000 solid;
	background: #000;
	color: #fff;
	cursor: pointer;
}
/* 戻るボタン */
section#contact form input.btn.back_btn {
	background: #fff;
	color: #000;
	margin-left: 10px;
}

section#contact .comp_message {
	padding: 30px 20px 40px;
	border: 1px #000 solid;
}


/* News ---------------------------------*/
section#news .news_date {
	width: 120px;
}
section#news.detail .news_date {
	width: 100%;
}
section#news .news_text {
	width: calc(100% - 140px);
}
section#news.detail .news_text {
	width: 100%;
}
section#news .news_text .ttl {
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	padding-bottom: 10px;
	border-bottom: 1px #000 solid;
	margin-bottom: 10px;
}
section#news .news_text a.ttl:hover {
	color: #1d5dd6;
}
section#news .news_text .link {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	text-decoration: underline;
	position: relative;
}
section#news .news_text .link:hover {
	color: #1d5dd6;
}


/*==================================================================================
フッター
==================================================================================*/

/* ページトップへ戻るボタン */
.btn_pagetop {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	position: fixed;
	right: 30px;
	bottom: 30px;
}
.btn_pagetop span {
	display: block;
	font-family: urw-din, sans-serif;
	font-weight: 500;
	font-size: 15px;
	position: relative;
}
.btn_pagetop span::before {
	content: "";
	display: block;
	width: 16px;
	height: 25px;
	background: url("../img/arrow_top.png") center top / contain no-repeat;
	position: relative;
	top: 0;
	left: 50%;
	margin-left: -9px;
}
footer {
	padding-bottom: 120px!important;
}
.foot_logo {
	max-width: 260px;
	margin: auto;
}


.pc {
	display: inline;
}
.tb {
	display: none;
}
.sp {
	display: none;
}
.content-wrap {
    height: 75px;
    overflow: hidden;
    position: relative;
    margin: 0;
}

@media screen and (max-width : 980px) {
	.pc {
		display: none;
	}
	.tb {
		display: inline;
	}
	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	/* メニュー -----------------------*/
	nav.globalMenuSp {
	    width: calc(100% - 60px);
	    height: calc(100% - 40px);
		max-width: calc(100% - 60px);
		padding: 20px 30px;
	}
	nav.globalMenuSp .menu_ttl {
	    width: 200px;
	}
	nav.globalMenuSp ul {
	    width: 70%;
		max-width: 360px;
		margin: 60px auto 0;
	}
	nav.globalMenuSp ul li:last-child {
	    padding-top: 40px;
	}
	nav.globalMenuSp ul li a {
		padding: 20px;
	}
	nav.globalMenuSp ul li:nth-child(7) a {
	    padding: 10px;
	}
	nav.globalMenuSp ul li a p {
	    font-size: 16px;
	}
	nav.globalMenuSp ul li:nth-child(n+2) a p {
	    padding-left: 50px;
	}
	nav.globalMenuSp ul li:nth-child(7) a p {
	    padding-left: 0;
	}
	nav.globalMenuSp ul li:nth-child(n+2) a p::before {
		width: 24px;
		height: 24px;
		margin-top: -12px;
	}

	.navToggle {
	    top: 10px;
	    right: 20px;
	}

	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	.container {
		max-width: calc(680px - 40px);
	}
	.col2 {
		width: 100%;
	}

	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}

	/* フォント */
	h1 {
		font-size: 32px;
		letter-spacing: 2px;
	}
	h1 span {
		margin-top: 15px;
		font-size: 16px;
	}
	h3 {
		font-size: 16px;
	}
	.font_20 {
		font-size: 16px;
	}

	/*==================================================================================
	メイン
	==================================================================================*/
	section {
		padding: 80px 0!important;
	}

	section#main {
		/*height: calc(100vh - 80px);*/
		height: auto;
		padding: 0 0 80px!important;
	}
	section#main .main {
		max-width: 420px;
	}
	section#main .main_copy {
		max-width: 160px;
	}
	section#main .logo {
		max-width: 200px;
	}
	section#main .btn_scroll {
		font-size: 12px;
		right: 30px;
		bottom: 30px;
	}

	/* お知らせ ---------------------------------*/
	section#top_news .row .row {
		max-width: 460px;
		margin: 0 auto 40px;
	}
	section#top_news .category {
		width: calc(100px - 16px);
	}
	section#top_news .txt {
		width: calc(100% - 115px);
	}

	/* Calendar ---------------------------------*/
	section#calender .icon_closed {
		margin: 0 0 10px;
		padding-left: 25px;
	}
	section#calender .icon_closed::before {
		width: 20px;
		height: 20px;
		top: 50%;
		margin-top: -10px;
	}
	section#calender .month {
		font-size: 32px;
	}
	section#calender .month span {
		font-size: 16px;
	}
	section#calender table {
		max-width: 460px;
		margin: 0 auto 40px;
		font-size: 16px;
	}
	section#calender table th,
	section#calender table td {
		width: calc(100% / 7 - 30px);
		padding: 15px;
	}
	section#calender table td.closed::before {
		width: 26px;
		height: 26px;
		margin: -13px 0 0 -13px;
	}
	
	/* Access ---------------------------------*/
	section#access .add {
		display: inline-block;
		text-align: left;
		margin-bottom: 40px;
	}
	section#access .btn_print {
		width: calc(135px - 27px);
		padding: 8px 15px 8px 10px;
		margin: 25px auto 30px;
		font-size: 10px;
	}
	section#access .btn_print::after {
		top: 0;
	}

	/* Contact ---------------------------------*/
	section#contact form {
		padding: 20px;
	}
	/* 確認ボタン */
	section#contact form input.btn {
		max-width: 120px;
		font-size: 14px;
	}
	/* 送信完了 */
	section#contact .comp_message {
		padding: 20px 20px 30px;
	}
	
	/* News ---------------------------------*/
	section#news .news_date {
		width: 100px;
		font-size: 12px;
	}
	section#news .news_text {
		width: calc(100% - 120px);
	}

	/*==================================================================================
	フッター
	==================================================================================*/
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		width: 50px;
		height: 50px;
		right: 20px;
		bottom: 20px;
	}
	.btn_pagetop span {
		font-size: 14px;
	}
	.btn_pagetop span::before {
		width: 12px;
		height: 18px;
		margin-left: -6px;
	}
	footer {
		padding-bottom: 80px!important;
	}
	.foot_logo {
		max-width: 200px;
	}
	
}

@media screen and (max-width: 460px) {

.content-wrap {
    height: 180px;
}


	.tb {
		display: none;
	}
	.sp {
		display: inline;
	}
	p { font-size: 12px;}
	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		padding: 20px 0!important;
	}
	header.pd_non {
		padding: 0!important;
	}
	.head_logo {
		display: block;
		width: 113px;
		padding-left: 20px;
	}
	/* メニュー -----------------------*/
	nav.globalMenuSp {
	    width: calc(100% - 40px);
	    height: calc(100% - 40px);
		max-width: calc(100% - 40px);
		padding: 20px;
	}
	nav.globalMenuSp ul {
	    width: 80%;
		max-width: none;
	}

	/*==================================================================================
	メイン
	==================================================================================*/
	section#main {
		height: calc(100vh - 54px);
		padding: 0!important;
	}
	/* お知らせ ---------------------------------*/
	section#top_news .category {
		width: calc(100px - 16px);
	}
	section#top_news .txt {
		width: calc(100% - 115px);
	}
	section#top_news .txt .btn_detail {
		font-size: 12px;
	}
	/* Contact ---------------------------------*/
	section#contact .ttl {
		padding: 10px;
		font-size: 12px;
	}
	section#contact .ttl span {
		margin-top: 8px;
		font-size: 16px;
	}
	#agree span {
		font-size: 16px;
	}
	section#contact form .item {
		width: 100%;
		padding-right: 0;
		text-align: left;
		margin-bottom: 10px;
	}
	section#contact form .wrap {
		width: 100%;
	}
	/* 送信完了 */
	section#contact .comp_message {
		padding: 20px;
	}

	/* News ---------------------------------*/
	section#news .news_date {
		width: 100%;
		margin-bottom: 10px;
	}
	section#news .news_text {
		width: 100%;
	}
	section#news .news_text .ttl {
		font-size: 16px;
		padding-bottom: 8px;
		margin-bottom: 8px;
	}

	/*==================================================================================
	フッター
	==================================================================================*/
	.foot_logo {
		max-width: 200px;
	}

}
	/*==================================================================================
	管理 追加
	==================================================================================*/

.select_month{
font-size:16px;
}

.top_back {
	width: calc(180px - 20px);
    display: block;
    padding: 10px;
    background: #000;
    color: #fff;
    text-align: center;
}
.cont_main{
    text-align: center;
    max-width: 460px;
    font-size: 18px;
    border-bottom: solid 1px #333333;
}

@media screen and (max-width : 980px) {
	.top_back {
		width: calc(120px - 20px);
		font-size: 14px;
	}
}

@media screen and (max-width : 460px) {
	.cont_main{
	    text-align: left;
	}
}
	/*==================================================================================
	アニメーション 追加
	==================================================================================*/


.box {
    display: block;
    border-left: 1px #000 solid;
    height: 60px;
    position: absolute;
    right: 73px;
    bottom: 50px;
    padding: 10px 0 0px 5px;
}

.animation {
  animation: move 1.0s alternate infinite;
}
@keyframes move {
  0% {
display: block;
    height: 0px;
    right: 73px;
    bottom: 50px;

  }
  100% {
display: block;
    height: -30px;
    right: 73px;
    bottom: 50px;

  }
}

@media screen and (max-width: 980px){
.box {
display: block;
    border-left: 1px #000 solid;
    height: 0px;
    position: absolute;
    right: 40px;
    bottom: -80px;
    padding: 10px 0 0px 5px;
}
@keyframes move {
  0% {
display: block;
    height: 100px;
    right: 40px;
    bottom: 0px;
  }
  100% {
display: block;
    height: 10px;
    right: 40px;
    bottom: 0px;
  }
}
}
