body, h1, h2, h3, p  , img
{
    margin: 0;
    padding: 0;
    vertical-align: top;
    list-style-type: none;
    text-decoration: none;
    font-size: 16px;
    color: #707070;
    font-family: "Roboto","Noto Sans Japanese","游ゴシック","YuGothic","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",sans-serif !important;
}
h2 {
    border-bottom: 5px solid #B7AAAA;
    box-shadow: 0px 2px 0px rgba(222,216,216,0.47);
    margin: 40px 80px 40px 60px;
    font-size: 22px;
    -webkit-box-shadow: 0px 2px 0px rgba(222,216,216,0.47);
}
header {
    background-color: hsla(0,0%,100%,1.00);
    height: 100px;
}
.inner {
	display: flex;
}
.logo {
	margin: 20px 0px 20px 60px;
}
.sns  {
	margin: 50px 0px 50px 0px;
	padding:0% 0% 0% 70%;
}
.sns img {
  padding: 0px 0px 0px 10px;
}
/* ナビゲーションを最前面に表示させるため*/
.open {
    position: relative;
}
/* ナビゲーションバー*/
.cp_navi {
    background-color: #B7AAAA;
    font-size: 0px;
    z-index: 9999;
    overflow: hidden;
    text-shadow: 0px;
}
.cp_navi ul {
    margin: 0;
    padding: 0;
    text-align: center;
    text-shadow: px 0px;
}
.cp_navi ul li {
    display: inline-block;
    list-style-type: none;
    margin: 0 auto;
    border-left: 1px solid #FFFFFF;
    color: #FFFFFF;
}
.cp_navi ul li:last-child {
    border-right: 1px solid #FFFFFF;
}
.cp_navi > ul > li > a {
    display: block;
    line-height: 50px;
    padding: 0 10px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 20px;
}
/* ▽アイコン */
.cp_navi > ul > li > a > .caret {
    border-top: 6px solid #FFFFFF;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
.cp_navi > ul > li:hover > a > .caret {
    border-top-color: #B7AAAA;
}
.cp_navi > ul > li:hover {
    background-color: hsla(0,0%,100%,0.33);
}
.cp_navi > ul > li:hover > a {
    color: #707070;
}
.cp_navi > ul > li > div {
    background-color: hsla(0,0%,100%,0.58);
    display: none;
    position: absolute;
    z-index: 200;
    font-size: 18px;
    width: 300px;/*サブナビゲーションのリストの幅 */
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.cp_navi > ul > li:hover > div {
    display: block;
}
.cp_navi > ul > li > div ul > li {
    display: block;
}
/*サブメニュー */
.cp_navi > ul > li > div ul > li > a {
    color: #707070;
    display: block;
    text-decoration: none;
    text-align: left;
}
.cp_navi > ul > li > div ul > li:hover > a {
    background-color: #B7AAAA;
    color: #FFFFFF;
}

/* 親要素（div.slider）の幅と高さでサイズを決める */
.slider {
    width: 1000px;
    height: 530px;
    text-align: center;
    clear: both;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}
/* 以下は必須 */
	.slider > div {
		width: 100%;
		height: 100%;
		display: flex;
		flex-wrap: wrap;
		position: absolute;
		left: 0;
		top: 0;
	}
.slider > div > div {
		flex: none;
		background-repeat: no-repeat;
	}
.slider > div img.slider-img {
    display: none;
	}
.sub-items {
    width: 90%;
    margin-left: 5%;
}
.sub-items img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.pagetop {
  right: 5%;
  bottom: 5%;
  position: fixed;
  display: none;
}
.pagetop::before{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    content: "";
    vertical-align: middle;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 25%;
    border-radius: 50%;
    margin: auto;
    background-color: #B7AAAA;
}

.pagetop::after{
    content: '';
    width: 9px;
    height: 9px;
    border: 0px;
    border-top: solid 2px #FFFFFF;
    border-right: solid 2px #FFFFFF;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -4px;
    margin-left: 9px;
}
/*index.htmlのcssここから*/
.topics {
  background-image: url(img/bg01.png);
  padding: 80px 0px 80px 0px;
  overflow: hidden;
  height: auto;
  width: 100%;
}
.topics_table {
    overflow: hidden;
    background-color: hsla(0,0%,100%,0.72);
    margin: 0px 0px 80px 80px;
	padding: 40px 0px 60px 80px;
    width: 65%;
}


.topics_table dt {
	float: left;
    width: 20%;
    height: 40px;
    border-bottom: 3px solid rgba(183,170,170,0.30);
    line-height: 70px;
}

.topics_table dd {
    overflow: hidden;
	width: 73%;
    height: 40px;
    border-bottom: 3px solid rgba(183,170,170,0.30);
    line-height: 70px;

}


.topics_img {
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px 40px 0px 80px;
}
.topics_img .img01 p {
  text-align: center;
  margin: 20px 40px 20px 40px;

}
.topics_img .img02 p {
  text-align: center;
  margin: 20px 40px 20px 40px;

}
.topics_img .img03 p {
  text-align: center;
  margin: 20px 40px 20px 40px;
}
.topics_img .img04 p {
  text-align: center;
  margin: 20px 40px 20px 40px;
}
.news {
    background-image: url(img/bg01.png);
    padding: 40px 0px 80px 80px;
}
.news_data {
    width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.news_data img {
    margin: 40px 0px 20px 0px;
}
.news_text  {
    width: 50%;
	margin: 60px 0px 40px 40px;
	padding:20px 0px 0px 20px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 3px 3px 2px 2px rgba(180,174,174,0.60);
    box-shadow: 3px 3px 2px 2px rgba(180,174,174,0.60);
    border-radius: 10px;
}
.news .button {
	width: 100%;
    text-align: center;
	display:none;}

.access {
    background-image: url(img/bg01.png);
    padding: 60px 0px 80px 40px;
    display: flex;
}
.access .map{
    clear: both;
	padding: 0px 0px 0px 40px;
}
.access .setumei {
  display: block;
  background-color: #FFFFFF;
  -webkit-box-shadow: 2px 2px 2px 2px rgba(180,174,174,0.60);
  box-shadow: 2px 2px 2px 2px rgba(180,174,174,0.60);
  height: 278px;
  padding: 20px 20px 0px 20px;
  margin: 0px 40px 40px 60px;
}
.contact .map {
    float: left;
}

.maptext{
	margin: 20px 0px 0px 0px;
}
.mail{
	margin: 20px 0px 20px 0px;
}
/*index.htmlのcssここまで*/

/*aboutus.htmlのcssここから*/
.aboutus_koutei h3 {
    border-bottom: 2px dotted #B7AAAA;
    text-align: center;
}
.sub_mainimg img {
	width:100%;
	max-width: 75%;
	height: auto;
	display: block;
	margin: 0 auto;
	padding-bottom: 20px;
	padding-top: 40px;
}
.aboutus_text{
	margin-left: 80px;
	margin-right: 80px;
}
/*親要素*/
.aboutus_koutei{
	display:flex;
	margin-left: 60px;
	margin-right: 80px;
	width: 85%;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
	justify-content: flex-start;
}
/*子要素*/
.aboutus_box{
    width: 18%;
    padding: 10px;
	margin:10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #B7AAAA;
}
.aboutus_box.text{
	width:30%;	
}
.aboutus_box img{
	width: 80%;
	height:auto;
	padding: 10px;
	display:block;
	margin: 0 auto;	
}
/*aboutus.htmlのcssここまで*/

/*workshop.htmlのcssここから*/
.workshop_text{
	margin: 0px 80px 40px 80px;
}
.workshop_data{
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.photo1{
    margin: 10px 20px 10px 60px;
}
.wtable_group{
	margin: 0px 20px 10px 60px;
}
h3{
	height: 30px;
}
h3 img{
	margin: 5px 0px 10px 0px;

}
table{
	width: 600px;
}
th,td{
    background-color: #F7EFEF;
	padding:10px 10px 10px 10px;
}
th{
	width: 20%;
}
td{
	width: 80%;
}
/*workshop.htmlのcssここまで*/

/*gallery.htmlのcssここから*/

.gallery_mainimg {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}
.photog{
	width:90%;
	display:flex;
	flex-wrap: wrap
}
.photog img{
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
	margin-left: 20px
}
/*gallery.htmlのcssここまで*/
/*sitemap.htmlのcssここから*/
.sitemap {
    margin-left: 10%;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
    margin-right: 10%;
    vertical-align: top;
}
.sitemap table {
    table-layout: fixed;
    width: 80%;
    border-collapse: collapse;
}
.sitemap td {
	height: 30px;
	padding: 3px;
}
.s-sitemap{
	display: none;
}

a:link, a:visited, a:hover, a:active {
    color: #B7AAAA;
    text-decoration: none;
}
/*sitemap.htmlのcssここまで*/
body footer {
    clear: both;
    overflow: hidden;
}

body footer .b {
    border-top: 50px solid #B7AAAA;
    text-align: center;
    margin-bottom: 20px;
	margin-top: 60px;
}

body footer .c {
    margin-bottom: 20px;
    text-align: center;
}

@media screen and (max-width: 1200px) {
.topics {
  padding: 40px 0px 40px 0px;
}
.topics_table {
    margin: 0px 0px 80px 0px;
	padding: 20px 20px 40px 55px;
    width: 100%;
}
.about_box{
		width:50%;
	}
.aboutus_koutei img{
	width: 75%;
	height:auto;
	}
}
@media screen and (max-width: 1024px) {
.sns  {
	padding:0% 0% 0% 60%;
}

/* ナビゲーションバー*/
.cp_navi{
	    display: flex;
      justify-content: center;
}
.slider {
    width: 700px;
    height: 371px;
    margin-top: 10px;
    margin-bottom: 10px;
}
}

@media screen and (max-width: 900px) {
/* ナビゲーションバー*/
.cp_navi > ul > li > a {
    font-size: 16px;
}
.cp_navi > ul > li > div {
    font-size: 16px;
}
.slider {
    width: 650px;
    height: 344px;
    margin-top: 10px;
    margin-bottom: 10px;
}
}
@media screen and (max-width: 768px) {
body,p{
font-size: 16px;
  }
h2{
font-size: 16px;
  }
.topics_table dt {
	float: none;
}

.topics_table dd {
    border-bottom: none;
    line-height: 40px;
}
.topics_img {
	margin: 0px 20px 0px 20px;
}
.topics_img .img01 p {
  margin: 20px 20px 20px 20px;
}
.topics_img .img02 p {
  margin: 20px 20px 20px 20px;
}
.topics_img .img03 p {
  margin: 20px 20px 20px 20px;
}
.topics_img .img04 p {
  margin: 20px 20px 20px 20px;
}
}
  
@media screen and (max-width: 640px) {
body,p{
	font-size: 14px;
  }
.logo{
	margin: 5px 10px;		
}
.logo img{
	width: 80%;	
	height: auto;
}
.sns img{
	position:absolute;
    width: 8%;
	height: auto;
    left: 30%;
	top: 20px;
}
#nav-toggle {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
}

#nav-toggle span {
  width: 100%;
  height: 4px;
  display: block;
  background-color: #707070;
  position: absolute;
  left: 0px;
  transition: 0.3s;
}
#nav-toggle span:nth-child(1) {
  top: 1px;
}
#nav-toggle span:nth-child(2) {
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  top: 22px;
}
#nav-toggle.open span:nth-child(1) {
  top: 11px;
  transform: rotate(315deg);
}
#nav-toggle.open span:nth-child(2) {
  width: 0;
  left: 50%;
}
#nav-toggle.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-315deg);
}
.cp_navi ul li {
	display:block;
}
/* ナビゲーションバー*/
.cp_navi{
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
}
.cp_navi ul li {
    width: 100%;
}
.cp_navi > ul > li:hover {
    border: 2px solid #707070;
}
/* ▽アイコン */
.cp_navi > ul > li > a > .caret {
    display: none;
}
.cp_navi > ul > li:hover > div {
    display: none;
}
.cp_navi > ul > li > div ul > li {
    display: none;
}
/*サブメニュー */
.cp_navi > ul > li > div ul > li > a {
    display: none;
}
.cp_navi ul{
display:none;
		
	}
.slider {
    width: 300px;
    height: 159px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.pagetop {
  right: 15%;
  bottom: 10%;
}
h2 {
	text-align: center;
}
/*index.htmlここから*/
.topics {
  overflow: visible;
  padding: 20px 0px 20px 0px;
}
.topics_table {
	overflow: visible;
    margin: 0px 0px 40px 5px;
	padding: 20px 10px 20px 10px;
    width: 90%;
}
.topics_table dt {
    width: 80%;
	height: 30px;
    line-height: 30px;
}
.topics_table dd {
	width: 80%;
    height: 40px;
    line-height: 20px;
}
.topics_img {
  margin: 0 auto;
}
.topics img{
  width: 90%;
  margin: 0 auto;
}
.news {
  padding: 0px 0px 40px 20px;
}
.news_img {
	margin: 0 auto;
}
.news_text  {
    width: 100%;
	margin: 20px 20px 20px 0px;
	padding:0px 0px 0px 0px;
}
.access {
    display: block;
	padding-left:5%;
	padding-right: 5%;
}
.access .map{
	padding-left: 5px;
}
.access .setumei {
  padding-top: 10px;
  margin: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
}
/*index.htmlここまで*/
/*about.htmlここから*/
.aboutus_box{
    width: 100%;
}
.aboutus_text{
	margin-left: 20px;
	margin-right: 20px;
}
.aboutus_koutei{
	margin-left: 30px;
	margin-right: 30px;
}
.aboutus_koutei img{
	width: 75%;
	height:auto;
	}
/*about.htmlここまで*/
/*workshop.htmlここから*/
h3{
	text-align: center;
	margin: 0px 0px 30px 0px;
}
.workshop_text{
	margin-left: 20px;
	margin-right: 20px;
}
.photo1 img{
    width: 90%;
	height: auto;
}
.wtable_group{
	margin: 20px 20px 10px 20px;
}
.wtable_group table{
	width: auto;
}
th,td{
	display: block;
	text-align: center
}
th{
	width: 90%
}
td{
	width: 90%
}

/*workshop.htmlここまで*/
/*gallery.htmlここから*/
.photog img{
	width:70%;
	height: auto;
}
/*gallery.htmlここまで*/
/*sitemap.htmlここから*/
.sitemap table {
	display: none;
}
.s-sitemap{
	display: block;
    margin: 0 14%;
    width: 72%;
    vertical-align: middle;
}
.sankaku{
    margin-left: 20px;
}
/*sitemap.htmlここまで*/
}
@media screen and (min-width:641px){
.cp_navi ul{
  display: block
!important;
}
}
