@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
/*
font-family: 'Noto Sans JP', sans-serif;
*/
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
body{
    margin: 0;
}
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
}

.floatingMenuBlock{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
    font-weight:lighter;
    background-color: rgba(255,255,255,0.7);
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index: 10000;
	box-shadow: 0 4px 4px 0 #ddd;
    padding: 10px 0;
}
.floatingMenu{
	max-width: 1280px;
	width: 100%;
	margin-left:auto;
	margin-right:auto;
}
.main-nav{
	max-width: 1280px;
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

.main-nav:after {
  clear: both;
  content: "\00a0";
  display: block;
  height: 0;
  font: 0px/0 serif;
  overflow: hidden;
}
.navHome{
	display:inline-block;
	text-align:center;
	padding: 10px 0;
}
#main-menu, #main-menuf {
  clear: both;
}

/* Mobile menu top separator */

#main-menu:before, #main-menuf:before {
  content: '';
  display: block;
  height: 1px;
  font: 1px/1px sans-serif;
  overflow: hidden;
}

/* Mobile menu toggle button */
.main-menu-btn {
	float: left;
	width: auto;
	height: auto;
	text-indent: 0;
	color: #333333;
	border-style: solid;
	border-width: 1px;
	border-radius: 4px;
	border-color:#333333;
	text-align: center;
	padding: 7px 7px;
    margin: 0px 7px 0px 7px;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
}

/* hamburger icon */

.main-menu-btn-icon,
.main-menu-btn-icon:before,
.main-menu-btn-icon:after {
  position: absolute;
  top: 50%;
  left: 2px;
  height: 2px;
  width: 24px;
  background: #fff;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.main-menu-btn-icon:before {
  content: '';
  top: -7px;
  left: 0;
}

.main-menu-btn-icon:after {
  content: '';
  top: 7px;
  left: 0;
}


/* x icon */

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon, 
#main-menu-statef:checked ~ .main-menu-btn .main-menu-btn-icon {
  height: 0;
  background: transparent;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before, 
#main-menu-statef:checked ~ .main-menu-btn .main-menu-btn-icon:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after, 
#main-menu-statef:checked ~ .main-menu-btn .main-menu-btn-icon:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* hide menu state checkbox (keep it visible to screen readers) */

#main-menu-state, 
#main-menu-statef {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}


/* hide the menu in mobile view */

#main-menu-state:not(:checked) ~ #main-menu, 
#main-menu-statef:not(:checked) ~ #main-menuf {
  display: none;
}

#main-menu-state:checked ~ #main-menu, 
#main-menu-statef:checked ~ #main-menuf {
  display: block;
}

.sm-simple {
	border: none;
	box-shadow: none;
    background: none;
}
.sm-simple > li {
	text-align:left;
	border:none;
	width:100%;
	float:none;
}
.sm-simple > li img{
	/*width: 95%;*/
}
.sm-simple .sub-arrow{
	display:none;
}
.sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active {
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
}
.sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
	padding: 5px 10px;
	color: #333333;
}
.sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
	/*background-color: rgba(204, 204, 204, 0.8) ;*/
    font-weight: bold;
}
.sm-simple a.has-submenu {
	padding-right: 0;
}
.sm-simple{
	border-style:none;
	border-color:#fff;
	border-width:thin;
}
.contents{
	width:95%;
	margin-left: 2.5%;
	margin-right: 2.5%;
}
.footerBlock{
    background-color: #F6F2B0;
    padding-bottom: 10px;
}
.footerBlock p{
    text-align: center;
}
.footerBlock p img{
    vertical-align: middle;
}
.footerBlock .textBox{
    position: absolute;
    top: 25% ;
}
.footerBlock .textBox h3{
    font-size: 21px;
    font-weight: normal;
    margin: 0;
}
.footerBlock .textBox p{
    font-size: 12px;
    text-align: left
}
.footerBlock .leftBlock .textBox{
    left: 50%;
    margin-right: 2%;
}
.footerBlock .leftBlock .textBox h3{
    color: #A9559C;
}
.footerBlock .rightBlock .textBox{
    right: 50%;
    margin-left: 2%;
}
.footerBlock .rightBlock .textBox h3{
    color: #fff;
}
.footer{
    width: 100%;
}
.footer1{
    width: 100%;
}
.footer1 > div{
    display: inline-block;
    width: 100%;
    vertical-align: top;
    position: relative;
}
.footer1 > div img{
    width: 100%;
}
.footer1 > div > a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.footer1 > div > a:hover{
	background-color: rgba(255,255,255,0.2) ;
}
h1{
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    text-align: left;
    font-size: 25px;
}
h2{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 21px;
    text-align: left;
    font-weight: normal;
}
h3{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 17px;
}
h4{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
    letter-spacing: 0.1em;
}
h1 hr{
    margin: 5px 0;
}
.content{
	padding: 18px 0 40px 0;
}
.content p{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
    letter-spacing: 0.1em;
	line-height: 160%;
}

.toTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
.toTopShow{
	display:block;
}
.toTopHidden{
	display:none;	
}
.cellFit{
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.linkButton{
	display:inline-block;
	color:#fff;
	font-size: 21px;
	text-decoration:none;
	padding: 0.5em 2em;
	border-radius: 0.5em;
    background-color: #009843;
    font-weight: normal;
}
.linkButton:hover{
	opacity: 0.7;
	color: #fff;
}
.linkButton:visited{
	color: #fff;
}
.stdLink{
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}
.stdLink:hover{
    text-decoration: underline;
    color: inherit;
}
.stdLink:visited{
    text-decoration: none;
    color: inherit;
}
.rightTab{
    position:fixed;
    bottom: 15%;
    right: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: 'Noto Sans JP', sans-serif;
    z-index: 10000;
}
.rightTab > div{
    display: inline-block;
    height: 10em ;
    border-bottom-left-radius: 10px ;
    border-top-left-radius: 10px;
}
.rightTab a{
    display: inline-block;
    color: #fff;
    text-align: center;
    padding: 5px;
    letter-spacing: 0.2em;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    text-decoration: none;
}
.rightTab a:hover{
    font-weight: 700;
}

/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only print {
.gridContainer {
	max-width: 1280px;
	margin: auto;
}
#qr_code_box{
  display: inline-block;
}
  
.menuBlock {
    padding: 0;
}
.floatingMenuBlock{
    padding: 0;
}
  #main-menu, 
  #main-menuf {
    clear: none;
  }
  #main-menu:before, 
  #main-menuf:before {
    display: none;
  }
  /* hide the button in desktop view */
  .main-menu-btn {
    position: absolute;
    top: -99999px;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-menu, 
  #main-menu-statef:not(:checked) ~ #main-menuf {
    display: inline-block ;
    margin-left:0;
	vertical-align: top;
  }
.sm-simple{
/*	width: calc(100% - 260px);
*/	display:inline-block;
	width:100%;
    background: none;
	border-style:none none none none;
	border-left-color:#221714;
	border-left-width:thin;
}
.sm-simple li{
	/*border-style:none solid none none ;
	border-right-color:#E5E5E5;
	border-right-width:thin;*/
}
.navTel{
	display:inline-block;
}
.sm-simple > li {
	float: left;
	text-align: center;
    padding: 10px 0;
}
.sm-simple > li:nth-child(1) {
	width: 8.11%;
}
.sm-simple > li:nth-child(2) {
	width:16.22%;
}
.sm-simple > li:nth-child(3) {
	width:16.22%;
}
.sm-simple > li:nth-child(4) {
	width:10.81%;
}
.sm-simple > li:nth-child(5) {
	width:8.11%;
}
.sm-simple > li:nth-child(6) {
	width:10.81%;
}
.sm-simple > li:nth-child(7) {
	width:16.22%;
}
.sm-simple > li:nth-child(8) {
	width:13.15%;
}
.sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
	padding: 5px 0;
	color: #333333;
    background: none;
}
.sm-simple ul {
	border: none;
}
.sm-simple ul a, .sm-simple ul a:hover, .sm-simple ul a:focus, .sm-simple ul a:active, .sm-simple ul a.highlighted {
	padding: 5px 5px 5px 5px;
}
.sm-simple ul > li {
	border-top: none ;
}
.contents{
	width: 90%;
	margin-left:auto;
	margin-right:auto;
}
.footer1 .rightBlock{
    width: 50.3125%;
}
.footer1 .leftBlock{
    width: 49.6875%;
}

}