body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #575353;
  line-height: 1.6;
  background-color: #fff;
 
}
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

a,
p,
dt,
dd,
span,
strong {
  color: #575353;
  font-size: 18px;
}

a {
  transition: .5s;

}

ul {
  list-style: none;
}

a:hover {
  color: #8E8E8E;
  opacity: .8;
  cursor: pointer;
}

.cl {
  clear: both;
}

@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }

}

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

  a,
  p,
  dt,
  dd,
  span,
  strong {
    font-size: 14px;
  }

  body {
    margin-top: auto !important;
  }
}

header {
	background: #fff;
}
header .menuwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .menuwrap h1 {
  width: 15%;
}
header .menuwrap .headmenu {
  width: 61%;
  margin: 0 2%;
  justify-content: space-between;
}

header .headmenu {
  display: flex;
}

header .headmenu li a {
  display: block;
  font-weight: bold;
  color: #F9226B;
}
header .headmenu li:nth-child(2) a {
  color: #D0D477;
}
header .headmenu li:nth-child(3) a {
  color: #1A8428;
}
header .headmenu li:nth-child(4) a {
  color: #4B38D2;
}
header .headmenu li:nth-child(5) a {
  color: #00E3DC;
}

header .headmenu li:nth-child(6) a {
  color: #E9203B;
}
header .headmenu li:nth-child(7) a {
  color: #FFA60C;
}
header .headmenu li:nth-child(8) a {
  color: #060606;
}

.cp_fullscreenmenu .toggle {
display: none;
}
@media screen and (max-width: 768px) {

a,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: inherit;
}
.cp_fullscreenmenu {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 60px;
}

header .menuwrap {
  display: block;
}
header .menuwrap .headmenu,
header .menuwrap h1 {
  width: 100%;
}
header .menuwrap h1 img {
  display: block;
  width: 50%;
  margin: 0 auto;
}
/*menuコンテンツ*/
.cp_fullscreenmenu .menu {
	position: fixed;
	top: 0;
	left: 0;
	visibility: hidden;
	overflow: hidden;
	width: 100%;
	height: 100%;
	pointer-events: none;
	outline: 1px solid transparent;

	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	align-items: center;
	justify-content: center;
}
.cp_fullscreenmenu .menu > div {
	overflow: hidden;
	width: 100%;
	transition: all 0.4s ease;
	-webkit-transform: scale(0);
	        transform: scale(0);
	text-align: center;
	color: #fefefe;
	background: rgb(26 26 26 / 80%);

	flex: none;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	align-items: center;
	justify-content: center;
}
.cp_fullscreenmenu .menu > div > ul {
	display: block;
	max-height: 100vh;
	margin: 0;
	padding: 0 1em;
	list-style: none;
	transition: opacity 0.4s ease;
	opacity: 0;
}
.cp_fullscreenmenu .menu > div > ul > li {
	font-size: 24px;
	display: block;
	margin: 1em;
	padding: 0;
}
.cp_fullscreenmenu .menu > div > ul > li > a {
	position: relative;
	display: inline;
	cursor: pointer;
	transition: color 0.4s ease;
}
.cp_fullscreenmenu .menu > div > ul > li > a:hover {
	color: #e5e5e5;
}
.cp_fullscreenmenu .menu > div > ul > li > a:hover:after {
	width: 100%;
}
.cp_fullscreenmenu .menu > div > ul > li > a:after {
	position: absolute;
	z-index: 1;
	bottom: -0.15em;
	left: 0;
	width: 0;
	height: 2px;
	content: '';
	transition: width 0.4s ease;
	background: #e5e5e5;
}
/*クリックしたらメニューが開閉の動作*/
.cp_fullscreenmenu .toggle {
  display: block;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	cursor: pointer;
	opacity: 0;
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span {
	-webkit-transform: rotate(135deg);
	        transform: rotate(135deg);
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span:before,
.cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
	top: 0;
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
	opacity: 0;
}
.cp_fullscreenmenu .toggle:checked ~ .menu {
	visibility: visible;
	pointer-events: auto;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div {
	transition-duration: 0.75s;
	-webkit-transform: scale(1);
	        transform: scale(1);
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul {
	opacity: 1;
  margin-top: 16px;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(1) {
	transition-delay: 0.4s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(2) {
	transition-delay: 0.6s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(3) {
	transition-delay: 0.8s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(4) {
	transition-delay: 1.0s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(5) {
	transition-delay: 1.2s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(6) {
	transition-delay: 1.4s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(7) {
	transition-delay: 1.6s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(8) {
	transition-delay: 1.8s;
}
.cp_fullscreenmenu .toggle:hover + .hamburger {
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.cp_fullscreenmenu .toggle:checked:hover + .hamburger > span {
	-webkit-transform: rotate(225deg);
	        transform: rotate(225deg);
}
/*ハンバーガー*/
.cp_fullscreenmenu .hamburger {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: block;
	width: 60px;
	height: 60px;
	padding: 0.5em 1em;
	cursor: pointer;
	transition: box-shadow 0.4s ease;
	border-radius: 0 0.12em 0.12em 0;
	background: rgb(255 255 255 / 70%);

	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.cp_fullscreenmenu .hamburger > span {
	position: relative;
	top: 50%;
	display: block;
	width: 100%;
	height: 2px;
	transition: all 0.4s ease;
	background: #4b38d2;
}
.cp_fullscreenmenu .hamburger > span:before,
.cp_fullscreenmenu .hamburger > span:after {
	position: absolute;
	z-index: 1;
	top: -10px;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	content: '';
	transition: all 0.4s ease;
	background: inherit;
}
.cp_fullscreenmenu .hamburger > span:after {
	top: 10px;
}
.cp_fullscreenmenu .menu > div > ul.snsmenu {
  display: flex;
  margin-bottom: 30px;
}
.cp_fullscreenmenu .menu > div > ul > li {
  margin: 0 10px;
}

}

footer {
  background: #010000;
  padding: 40px 0 0 0;
}
.footerwrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.footerwrap img {
  display: block;
  width: 15%;
}
.footerwrap ul {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin-bottom: 40px;
  margin-left: 5%;
}
.footerwrap ul  li {
  margin-bottom: 16px;
  margin-right: 26px;
}
.footerwrap ul  li a {
  display: block;
  color: #fff;
}
.footerbottom {
  padding: 10px 0;
  background: #F9C704;
  text-align: center;
}
.footerbottom p {
  font-size: 12px;
  color: #060606;
}
main {
  padding: 0 0 80px 0;
}
.wrap {
width: 100%;
max-width: 1200px;
margin: 0 auto;
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}


.linkbtn01 {
	display: block;
	width: 350px;
	margin: 30px auto 0 auto;
	padding: 20px 60px;
	border-radius: 40px;
	text-align: center;
	background: #FF4E4E;
	color: #fff;
	font-weight: bold;
	box-shadow: 0px 10px 10px -9px rgba(0, 0, 0, 0.2);
  }
  
  .linebtnimg {
	display: block;
	width: 350px;
	margin: 0 auto;
  }
  @media screen and (max-width: 768px) {
	.wrap {
		max-width: 95%;
		}
  footer {
    padding: 20px 0 0 0;
  }
.footerwrap {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.footerwrap img {

  width: 80%;
  margin: 0 auto 20px auto;
}
.footerwrap ul {
  justify-content: center;
  width: 90%;
  margin-bottom: 10px;
  margin-left: 0;
  margin: 0 auto 10px auto;
}
.footerwrap ul li {
  max-width: 150px;
  margin-right: 0;
  width: 50%;

}
.linebtnimg {
    width: 90%;
}
.linkbtn01 {
    width: 100%;
}
}
header .koushikiline {
	display: block;
	width: 16%;
	margin:  0 auto;
	padding: 14px 30px;
	border-radius: 40px;
	text-align: center;
	background: #00B900;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
}
@media screen and (max-width: 768px) {

	header .koushikiline {
		width: 70%;
		margin: 30px auto;
	}
}

.newswrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
  }
  
  .newswrap h2 {
	font-size: 26px;
	padding-left: 20px;
	margin-bottom: 6px;
  }
  
  .newswrap ul.accordion-area {
	width: 900px;
	border-radius: 20px;
	margin: 30px auto 40px auto;
	padding: 3px 0 20px 0;
	background: #fffbe6;
	list-style: none;
  }
  
  .accordion-area li {
	width: 800px;
	margin: 10px auto;
	border-bottom: 1px solid #ccc;
  
  }
  
  .accordion-area li .accttl {
	display: flex;
	align-items: center;
	position: relative;
	/*+マークの位置基準とするためrelative指定*/
	cursor: pointer;
	font-size: 1rem;
	font-weight: normal;
	padding: 3% 3% 3% 50px;
	transition: all .5s ease;
  }
  
  .accordion-area li .accdate {
	margin-right: 6px;
	font-size: 12px;
  }
  
  /*アイコンの＋と×*/
  .accordion-area li .accttl::before,
  .accordion-area li .accttl::after {
	position: absolute;
	content: '';
	width: 15px;
	height: 2px;
	background-color: #333;
  
  }
  
  .accordion-area li .accttl::before {
	top: 48%;
	left: 15px;
	transform: rotate(0deg);
  
  }
  
  .accordion-area li .accttl::after {
	top: 48%;
	left: 15px;
	transform: rotate(90deg);
  
  }
  
  /*　closeというクラスがついたら形状変化　*/
  .accordion-area li .accttl.close::before {
	transform: rotate(45deg);
  }
  
  .accordion-area li .accttl.close::after {
	transform: rotate(-45deg);
  }
  
  /*アコーディオンで現れるエリア*/
  .box {
	display: none;
	/*はじめは非表示*/
	background: #f3f3f3;
	margin: 0 3% 3% 3%;
	padding: 3%;
  }
  
  .accordion-area li .box a {
	display: block;
	font-size: 14px;
	color: #FF4E4E;
	text-decoration: underline;
  }
  