.all_style{
	width: 100%;
	height: auto;
	font-size: 16px;
	color: #1a1a1a;
	text-align: center;
	font-family: Noto Sans JP,Hiragino Kaku Gothic Pro,ヒラギノ角ゴ Pro W3,メイリオ,Meiryo,ＭＳ Ｐゴシック,sans-serif;
}

.all_style a {
  color: white;
}

.all_style a:hover {
  text-decoration: none;
}

.calendar_menu{
	position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #F5BF1E;
    padding: 15px 0;
    z-index: 0;
}
#calendar_nav{
	display: flex;
	list-style: none;
	overflow: hidden;
	align-items: center;
    justify-content: center;
}
#calendar_nav li{
	width: calc(100%/5);
	text-align: center;
}
#calendar_nav li a{
	font-size: 14px;
	color: #1a1a1a;
	font-weight: bold;
	text-decoration: none;
}

.contents_style{
	box-sizing: border-box;
	padding: 50px 0;
	background: #eef0f1;
}
.contents_style h2{
	color: #F5531D;
	margin-bottom: 50px;
	text-align: center;
	font-size: 2.5em;
	font-weight: bold;
}
.contents_style h3{
	margin: 50px 0;
	text-align: center;
	font-size: 1.8em;
	font-weight: bold;
}
.calendar_box{
	padding: 50px 20px;
}

.wrapper{
	display: flex;
    justify-content: space-around;
}
.element{
	box-sizing: border-box;
	width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
	width : -webkit-calc(100% / 3) ;
	width : calc(100% / 3) ;
	padding: 10px;
	text-align: center;
}
.element img{
	max-width: 80%;
	margin-bottom: 20px;
}
.category_title{
	display: inline-block;
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 1.3em;
}
.element02{
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
	width : -webkit-calc(100% / 3) ;
	width : calc(100% / 3) ;
	padding: 0 10px 50px 10px;
	text-align: center;
}
.element02 img{
	max-width: 100%;
	margin-bottom: 20px;
}
.element03{
	box-sizing: border-box;
	width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
	width : -webkit-calc(100% / 3);
	width : calc(100% / 3);
	padding: 25px;
	text-align: center;
	font-size: 0.8em;
}
.element03 img{
	max-width: 80%;
	margin-bottom: 20px;
}
.point_title{
	display: inline-block;

	font-size: 16px;
	font-weight: bold;
	margin-bottom: 1.3em;
	background:linear-gradient(transparent 75%, #F5997A 75%);
}
.point_text{
	display: inline-block;
	width: 100%;
	text-align: left;
}
.calendar_btn{
	margin-top: auto;
}

.btn_category{
	display: inline-block;
	padding: 7px 20px;
	border-radius: 10px;
	font-size: 1em;
	text-decoration: none;
	color: #FFF;
	background: #4c4d55;
	transition: .4s;
}
.btn_category:hover {
	color: #fff;
	opacity: 0.7;
}

.btn_line{
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	padding: 0.5em;
	margin: 10px 0;
	border-radius: 1000px;
	font-size: 1.2em;
	text-decoration: none;
	color: #FFF;
	transition: .4s;
}
.btn_line:hover {
	color: #fff;
	opacity: 0.7;
}
.btn_cart{
	background: #1DBFF5;
}
.btn_web{
	background: #1DBFF5;
}

.btn_tmp{
	display: inline-block;
	padding: 7px 20px;
	margin: 30px auto 50px auto;
	border-radius: 10px;
	font-size: 1em;
	text-decoration: none;
	color: #FFF;
	background: #4c4d55;
	transition: .4s;
}
.btn_tmp:hover {
	color: #fff;
	opacity: 0.7;
}

.calendar_text{
	font-size: 0.8em;
	text-align: left;
	margin-bottom: 30px;
}
.calendar_text_title{
	display: inline-block;
	width: 100%;
	height: 2em;
	margin-bottom: 40px;
	font-weight: bold;
}

.calendar_caution{
	background: #fff;
	box-sizing: border-box;
	padding: 15px;
	text-align: left;
}
.calendar_caution ul{
	margin-left: 1.5em;
	list-style-type: disc;
	font-size: 12px;
}
.calendar_caution li{
	padding: 5px 0;
}

.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	width: auto;
	margin: 2em auto;
}
.cp_box label {
	font-weight: bold;
	display: block;
	width: 70%;
	margin: 0 auto 50px auto;
	padding: 0.3em 1em;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
	background: silver;
	border-radius: 10px;
}
.cp_box label:before{
	display: inline-block;
    content: '\f078';
    font-family:"Font Awesome 5 Free";
    padding-right: 15px;
    transition: 0.2s;
}
.cp_box label:hover {
	opacity: 0.7;
}
.cp_box input:checked ~ label:before {
     content: '\f00d';
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}
.cp_box input:checked ~ div {
	transition: 0.8s;
}
/* 続きを読むを押すと表示されるテキストの高さ */
.cp_box input:checked ~ div.cp_container {
	padding: 10px 0;
    height: auto;
    opacity: 1;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}
.modal {
  position: absolute;
  top: 20%;
  left: 24%;
  background: #F3F6F7;
  padding: 20px 20px 20px;
  border-radius: 10px;
  width: 650px;
  height: auto;
  text-align: left;
}
.closebutton{
	text-align:center;
	margin-top:10px;
}
.close {
  display: inline-block;
  padding: 7px 20px;
  background-color: #4c4d55;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1em;
  margin: 10px auto;
  cursor: pointer;
}

.btn_pageTop{
	z-index: 10;
}