@charset "UTF-8";

html {
    font-size: 62.5%;
}

body {
	color: #333;
	background: #FFF;
	font-family: "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "Meiryo UI", "Yu Gothic", YuGothic, "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 1.6rem;
}

.head_container {
	margin: 0 10px;
}


.site-logo {
	display: inline-block;
	width: 200px;
	height: auto;
	margin: 5px 0 0;
}

/* burger menu */
@media screen and (min-width: 1024px) {
	.acms-hide-pc {
		display: block !important;
	}

	.hide_pc_nav {
		display: none;
	}

	.glbl_nav {
		line-height: 52px;
		margin: 0;
		padding: 0;
	}

	.navbar li {
		font-family: 'Noto Serif JP', serif;
		font-weight: 500;
		color: #333333;
	}

	.mobile-nav.is-opened {
		opacity: 1;
		margin-top: 102px;
	}
	.mobile-nav.is-active {
		display: block;
	}
	
	.is-locked {
		overflow: hidden;
	}

	.mobile-nav {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		display: none;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		padding-top: 50px;
		padding-bottom: 50px;
		background-color: #80735d;
		opacity: 0;
		transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		transition-duration: .3s;
		transition-property: all;
	}
	.mobile-nav.is-active {
		display: block;
	}

	.mobile-nav.is-opened {
		opacity: 1;
		margin-top: 110px;
	}
	.mobile-nav-inner {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: start;
		align-items: start;
		-ms-flex-pack: center;
		justify-content: center;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		padding: 30px 0;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.mobile-navbar-list {
		margin: 0;
		padding: 0;
		line-height: 2.4;
		text-align: center;
		list-style: none;
		font-size: 18px;
	}
	.mobile-navbar-list a:not(.btn-attention),
	.mobile-navbar-list a:not(.btn-attention):hover,
	.mobile-navbar-list a:not(.btn-attention):visited,
	.mobile-navbar-list a:not(.btn-attention):active,
	.mobile-navbar-list a:not(.btn-attention):focus {
		color: #FFF;
	}
	.mobile-navbar-list .mobile-navbar-list {
		display: none;
	}
	.mobile-nav-side {
		margin: 20px 0;
		text-align: center;
	}
	.mobile-nav-side-list {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.mobile-nav-side-item {
		display: block;
		margin: 0 0 10px 0;
	}
	.mobile-nav-side-link {
		color: #333;
	}
	.mobile-nav-side-link:hover,
	.mobile-nav-side-link:visited,
	.mobile-nav-side-link:active,
	.mobile-nav-side-link:focus {
		color: #333;
	}
	.mobile-navbar-footer {
		margin: 15px 0 0 0;
	}

	.mobile-navbar {
		display: none;
	}
}

@media screen and (max-width:1023px){
	.mobile-nav {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		display: none;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		padding-top: 48px;
		background-color: #80735d;
		opacity: 0;
		transition-timing-function: cubic-bezier(.25,.46,.45,.94);
		transition-duration: .3s;
		transition-property: all;
	}

	.mobile-nav.is-opened {
		margin-top: 110px;
	}
	
	.mobile-navbar-list a:not(.btn-attention),
	.mobile-navbar-list a:not(.btn-attention):hover,
	.mobile-navbar-list a:not(.btn-attention):visited,
	.mobile-navbar-list a:not(.btn-attention):active,
	.mobile-navbar-list a:not(.btn-attention):focus {
		color: #FFF;
	}
	.mobile-navbar-list li {
		font-weight: 500;
		padding:10px 0;
		margin: 0 10px;
		border-bottom: 1px #FFF solid;
		font-size: 1.8rem;
		line-height: 1em;
	}

	.mobile-navbar-list li a {
		display: block;
	}

	.mobile-navbar-list li a:visited,
	.mobile-navbar-list li a:focus,
	.mobile-navbar-list li a:active {
		color: #FFF;
	}

	.mobile-navbar-list li a:hover {
		color: rgba(255,255,255,0.90) !important;
		text-decoration: none;
	}

}

/* HEADER */
.header {
	height: 60px;
}

.site-header {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	width: 100%;
	padding: 0;
	background: #FFFFFF;
	border-top: none;
	border-bottom: none;
	padding: 0 calc(5px + constant(safe-area-inset-right)) 0 calc(5px + constant(safe-area-inset-left));
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	height: 60px;
}

.site-header h1 {
	margin: 3px 0 2px 20px;
	font-size: 2.0rem;
	font-weight: 700;
}

.nav_bar{
	margin-right: 0;
	background: #FFFFFF;
	border-bottom: 1px solid #80735d;
	border-top: 1px solid #80735d;
}

.nav-menu-btn {
	padding: 12px 20px 10px;
	height: 48px;
}

.icon-toggle-menu {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 2px;
	margin: 6px 0;
	vertical-align: middle;
	background-color: #80735d;
	border-radius: 1px;
	-webkit-transition: .1s all;
	        transition: .1s all;
}
.icon-toggle-menu:before,
.icon-toggle-menu:after {
	position: absolute;
	display: block;
	width: 36px;
	height: 2px;
	background-color: #80735d;
	border-radius: 1px;
	-webkit-transition: .3s all;
	        transition: .3s all;
	content: "";
}
.icon-toggle-menu:before {
	top: -8px;
}
.icon-toggle-menu:after {
	bottom: -8px;
}
[aria-expanded=true] .icon-toggle-menu {
	background: transparent;
}
[aria-expanded=true] .icon-toggle-menu:before {
	width: 41px;
	-webkit-transform: translate(-2px, 8px) rotate(45deg);
	    -ms-transform: translate(-2px, 8px) rotate(45deg);
	        transform: translate(-2px, 8px) rotate(45deg);
}
[aria-expanded=true] .icon-toggle-menu:after {
	width: 41px;
	-webkit-transform: translate(-2px, -8px) rotate(-45deg);
	    -ms-transform: translate(-2px, -8px) rotate(-45deg);
	        transform: translate(-2px, -8px) rotate(-45deg);
}

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

	.icon-toggle-menu {
		position: relative;
		display: inline-block;
		width: 18px;
		height: 2px;
		margin: 6px 0;
		vertical-align: middle;
		background-color: #80735d;
		border-radius: 1px;
		-webkit-transition: .1s all;
				transition: .1s all;
	}
	.icon-toggle-menu:before,
	.icon-toggle-menu:after {
		position: absolute;
		display: block;
		width: 18px;
		height: 2px;
		background-color: #80735d;
		border-radius: 1px;
		-webkit-transition: .3s all;
				transition: .3s all;
		content: "";
	}
	.icon-toggle-menu:before {
		top: -8px;
	}
	.icon-toggle-menu:after {
		bottom: -8px;
	}
	[aria-expanded=true] .icon-toggle-menu {
		background: transparent;
	}
	[aria-expanded=true] .icon-toggle-menu:before {
		width: 22px;
		-webkit-transform: translate(-2px, 8px) rotate(45deg);
			-ms-transform: translate(-2px, 8px) rotate(45deg);
				transform: translate(-2px, 8px) rotate(45deg);
	}
	[aria-expanded=true] .icon-toggle-menu:after {
		width: 22px;
		-webkit-transform: translate(-2px, -8px) rotate(-45deg);
			-ms-transform: translate(-2px, -8px) rotate(-45deg);
				transform: translate(-2px, -8px) rotate(-45deg);
	}
}

/* SITE NAME */
.site-name a,
.site-name a:active,
.site-name a:focus,
.site-name a:hover,
.site-name a:visited {
	color: #000000;
	text-decoration: none;
}

.flxitm:first-child {
	margin-right: auto;
}


.head_tel {
	padding: 0 20px;
	display: flex;
}

/* ------------------------------
　　スライダー
------------------------------ */
/* SLIDER */

.top_slider {
	margin: 0;
}

@media screen and (min-width: 768px) {

	.main-slider-image {
		height: calc(100vh - 60px);
	}
	.fix-height {
		height: calc(100vh - 60px);
		/* はじめのちらつき防止 */
	}
}

.main-slider-image {
	background-color: #FFFFFF;	
}

.sldr_arw_wrap {
	position: relative;
}

.sldr_arw {
	position: absolute;
	bottom: 0;
	z-index: 3;
	left: calc(50% - 27px);
	width: 50px;
}

.sldr_arw_wrap .module-section {
	margin-bottom: 0;
	border-bottom: none;
}

.slick-dots {
	position: relative;
	clear: both;
	margin: -69px 0 0;
	padding: 0;
	text-align: center;
	list-style: none;
}

.slick-dots li button {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 7px;
	font-size: 0;
	background: #fff;
	border: 1px solid transparent;
	border-radius: 6px;
	content: "";
}

.slick-dots li.slick-active button {
	background: #df0023;
}

.slick-dots li button:focus {
	border: 1px solid #df0023;
	outline: 0;
}

@media screen and (max-width: 767px) {
	.slick-dots {
		display: none !important;
	}
	.main-slider-image {
		height: calc(100vh - 60px);
	}
	.fix-height {
		height: calc(100vh - 60px);
		/* はじめのちらつき防止 */
	}
	.sldr_arw {
		display: none;
	}
}


.fix-height {
	height: 300px;
	/* はじめのちらつき防止 */
	overflow: hidden;
	/* はじめのちらつき防止 */
}


@media screen and (max-width: 1023px) {
	.top_slider {
		margin: 0;
	}
	.header {
		height: 60px;
	}
	.header-logo {
		margin: 0;
		padding: 0;
	}
	.ph-header-logo {
		position: fixed;
		width: 250px;
		top:5px;
		left: 0;
		right: 0;
		margin: 0 auto;
		padding: 0;
		z-index: 10000;
	}
	.site-name {
		font-size: 0;
		margin: 0;
		padding: 0;
	}
	.header-ctrl {
		display: none;
	}
	.site-header {
		border: none;
	}
}

@media screen and (max-width: 767px) {
	.ph-header-logo {
		width: 220px;
	}
}

@media screen and (max-width: 320px) {
	.ph-header-logo {
		width: 180px;
	}
	.site-header {
		height: 60px;
	}
	.nav-menu-btn {
		height:44px;
/*		padding: 12px 20px 10px;*/
	}
}

@media screen and (min-width: 1024px) {
	.main-slider-image {
		height: calc(100vh - 60px);
	}
	.fix-height {
		height: calc(100vh - 60px);
		/* はじめのちらつき防止 */
	}
}

@media screen and (max-width: 1023px) {
	.sldr_arw_wrap {
		padding-top: 50px;
	}
	.main-slider-image {
		height: 350px;
	}
	.fix-height {
		height: 350px;
		/* はじめのちらつき防止 */
	}
}

@media screen and (max-width: 320px) {
	.sldr_arw_wrap {
		padding-top: 39px;
	}
}


.head-wrapper {
	height: 60px;
	width: 100%;
	top:0 !important;
}


.ngtvpdg {
    padding-top: 44px;
    margin-top: -44px;
}

/* TOP HEADELINE */
.headline-dat {
	font-size: 0.8rem;
	color: #666;
}

/* FOOTER */
.footer_logo {
	text-align: center;
}
.footer_logo img {
	width: 155px;
	height: auto;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}

.foot-wrapper {
	background: #FFFFFF;
	color: #333333;
	padding: 20px 0;
}

.copyright {
	text-align: center;
}

.copyright-text {
	font-size: 0.8rem;
	color: #333333;
	margin: 20px auto 0;
}


/* ENTRY */
.test_style {
	font-family: 'Noto Serif JP', serif;
	font-family: 'Shippori Mincho B1', serif;
}


.section-heading {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 3.6rem;
	color: #333333;
}

.module-header {
    position: relative;
    margin: 0;
    padding: 5px 0;
    color: #333;
    border-bottom: none;
}

.acms-page-header {
	border-bottom: none;
}

.entry-title,
.module-heading {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 3.6rem;
	color: #333333;
}

.entry-column h2 {
	border: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 2.0rem;
	color: #333333;
	padding: 5px 0;
}

.thumbnail-title {
	border: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 2.0rem;
	color: #333333;
	padding: 5px 0;
}

.entry-column h3, .entry-column h4 {
    margin: 0 10px 20px;
	border: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 1.8rem;
	color: #333333;
}

.entry-column h3 {
    padding: 15px 0;
    background: none;
	border-bottom: 1px #999999 solid;
}

.acms-label-danger {
    color: #FFFFFF;
    background-color: #C41134;
}

.entry-column .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
	background: #80735d;;
	color: #FFF;
	font-weight: 500;
	line-height: 1em;
	border: 0;
	display: inline-block;
	padding: 10px 15px;
	border-radius: 0;
}
.entry-column .entry-btn-default:hover,
.entry-column .entry-btn-default:visited,
.entryFormLiteEditor .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:visited {
	color: #FFF;
	text-decoration: none;
}
.entry-column .entry-btn-default:focus,
.entry-column .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active {
	color: #FFF;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.entry-column .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:hover {
	color: #FFF;
	background-color: #a59d90;
	background-image: none;
	background-image: none;
}
.entry-column .entry-btn-default:active,
.entry-column .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus {
	background: #a59d90;
}

.entry-column .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
	background: #C41134;
	color: #FFF;
	font-weight: bold;
	line-height: 1.3;
	border: 0;
	display: inline-block;
	padding: 10px 21px;
	border-radius: 3px;
}
.entry-column .entry-btn-attention:hover,
.entry-column .entry-btn-attention:visited,
.entryFormLiteEditor .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:visited {
	color: #FFF;
	text-decoration: none;
}
.entry-column .entry-btn-attention:focus,
.entry-column .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active {
	color: #FFF;
	-webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
	        box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
}
.entry-column .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:hover {
	color: #FFF;
	background-color: #910021;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#C41134), to(#910021));
	background-image: linear-gradient(to bottom, #C41134, #910021);
}
.entry-column .entry-btn-attention:active,
.entry-column .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus {
	background: #910021;
}
.entry-txt-right {
	text-align: right;
	margin-bottom: 0;
}
.entry-txt-center {
	text-align: center;
	margin-bottom: 0;
}

.info_body {
	margin: 0 10px;	
}

@media screen and (max-width: 767px) {
	.greeting_img img {
		max-width: 100px !important;
		height: auto !important;
		min-width:inherit !important;
		min-height:inherit !important;
		position:static !important;
	}
	.greeting_img {
		width: fit-content;
	}
}

@media screen and (min-width: 768px) {
	.greeting_img {
		width: 200px;
		height: 150px;
		position: relative;
		overflow: hidden;
	}
}
	
.txt_red {
	color: #CC0000;
	font-size: 0.9em;
}

.txt_red:first-child {
	margin-top:5px;
}

/*
.shp_tbl {
	margin: 20px auto;
	width: 100%;
	border: solid 1px #ccc !important;
	border-collapse: collapse !important;
}
.shp_tbl th {
	background: #eeeeee !important;
	border: solid 1px #ccc !important;
	color: #333333 !important;
	padding: 10px !important;
	white-space: nowrap !important;
	border-collapse: collapse !important;
}
.shp_tbl td {
	border: solid 1px #ccc !important;
	padding: 10px !important;
	border-collapse: collapse !important;
*/

 
@media screen and (max-width: 767px) {
	.shp_tbl td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		margin-right: 10px;
	}
	.shp_tbl th.nhd {
		display: none;
	}
}

.top_info_title {
	font-family: 'Noto Serif JP', serif;
	font-family: 'Shippori Mincho B1', serif;
}

/* clear default for information */

.info_sctn .summary-default {
    margin: 0 0 20px;
    border-top: none;
    border-left: none;
}

.info_sctn .summary-default-item {
    display: block;
	margin: 10px 10px 0 0;
    padding: 0 10px;
    color: #333;
    border-right: none;
    border-bottom: none;
	border: 1px solid #EEEEEE;
	width: calc(50% - 10px);
    box-sizing: border-box;
    transition: background-color .25s ease-out;
}

@media screen and (max-width: 767px) {
	.info_sctn .summary-default-item {
	width: 100%;
	margin: 10px 10px 0 10px;
	}

}

@media screen and (max-width: 1023px) {
	.flx_sp_menu {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: start;
		justify-content: start;
		-webkit-align-items:flex-start;
		align-items:flex-start;
	}

	.flx_sp_menu div:last-child　{
	    margin-left: auto;
	}

	.flx_sp_menu a:link,
	.flx_sp_menu a:visited,
	.flx_sp_menu a:active,
	.flx_sp_menu a:hover,
	.flx_sp_menu a .nav-menu-btn-text {
		color:#80735d;
		text-decoration: none;
	}
	.flx_sp_menu>div {
		border-left: 1px solid #80735d;
		text-align: center;
	}
	.flx_sp_menu>div:first-child {
		border-left: none;
	}
	.sp_menu_btn {
		display: inline-block;
		height: 44px;
		padding: 3px 5px;
		font-size: 20px;
		color: #333;
		box-sizing: border-box;
	}
	.nav-menu-btn-text {
		margin: auto 2px;
	}
	.sp_menu_btn .acms-admin-icon {
    	padding: 0;
	}
	.sp_menu_btn .nav-menu-btn {
		height: 48px;
	}
}