@charset "Shift_JIS";

/*メディアクエリ*/

@media (min-width: 0px) and (max-width: 599px) {
   div#guide { width: 95%; }
}
@media (min-width: 600px) and (max-width: 959px) {
   div#guide { width: 95%; }
}
@media (min-width: 960px) {
   div#guide { width: 960px; }
}

/* アコーディオンメニュー */
.cp_actab {
position: relative;
overflow: hidden;
width: 100%;
margin: 0 auto;
color: #ffffff;
}
.cp_actab input {
position: absolute;
z-index: -1;
opacity: 0;
}
.cp_actab label {
font-weight: bolder;
line-height: 1.5;
position: relative;
display: block;
padding: 1em 3em 1em 1em;
cursor: pointer;
margin: 0 0 1px 0;
background: #808080;
}
.cp_actab .cp_actab-content {
overflow: hidden;
max-height: 0;
-webkit-transition: max-height 0.35s;
transition: max-height 0.35s;
color: #333333;
background: #f7f6f5;
}
.cp_actab .cp_actab-content p {
margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
max-height: 1000em;
}
/* Icon */
.cp_actab label::after {
line-height: 3;
position: absolute;
top: 0;
right: 0;
display: block;
width: 3em;
height: 3em;
-webkit-transition: all 0.35s;
transition: all 0.35s;
text-align: center;
}
.cp_actab input[type=checkbox] + label::after {
content: '+';
}
.cp_actab input[type=checkbox]:checked + label::after {
transform: rotate(315deg);
}




/* 見出し */

h5 {
padding: 0.5em;/*文字周りの余白*/
color: #494949;/*文字色*/
background: #f5f5f5;/*背景色*/
border-left: solid 5px #97D9D5;/*左線（実線 太さ 色）*/
}
h4 {
  position: relative;
  padding: 0.6em;
  background: #97D9D5;
		color: #FFFFFF;
}

h4:after {
position: absolute;
content: '';
top: 100%;
left: 30px;
border: 15px solid transparent;
border-top: 15px solid #97D9D5;
width: 0;
height: 0;
}
	.under {
  background: linear-gradient(transparent 50%, yellow 50%);
  }
	.under_mint {
  border-bottom: solid 3px #afeeee;
  }

h7 {
  position: relative;
  padding: 0.6em;
  background: #666666;
  color: #FFFFFF;
	font-weight: bold;
}

h7:after {
position: absolute;
content: '';
top: 100%;
left: 30px;
border: 15px solid transparent;
border-top: 15px solid #666666;
width: 0;
height: 0;
}

/* 枠 */
.waku_box {    
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    width: 300px;
    background: #f1f1f1;
	text-align: center;
	font-weight: bold;
  }

*, *:before, *:after {
	box-sizing: border-box;
}
.col_3{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_3 > div{
	width: 33.33333%;
	padding: 10px;
}
@media screen and (max-width: 959px) {
	.col_3 > div{
		width: 50%;
	}
}
@media screen and (max-width: 599px) {
	.col_3 > div{
		width: 100%;
	}
}

/* 円 */
.circle{
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align:center;
  line-height: 80px;
  vertical-align: middle;
  border: solid 3px #333;
}

/* フォント */
.small { 
	font-size: medium;
}


/*右固定タブバナーここから*/
.back {
	z-index: 70;
	width: 25%;
	max-width: 200px;
	text-align: center;
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-weight: bold;
	color: #ffffff;
	border: 3px solid #FFF;
	padding: 2pt;
	background-color: #83bebb;
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	-khtml-opacity: 0.85;
	opacity: 0.85;
	-webkit-box-shadow: 1px 1px 2px #666666;
	-moz-box-shadow: 1px 1px 2px #666666;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
.back a:link, .back a:visited, .back a:visited, .back a:hover, .back a:active {
	color: #ffffff;
}


/*ボタンここから*/
.square_btn{
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #00BCD4;
    background: #ECECEC;
    transition: .4s;
  }

.square_btn:hover {
    background: #97D9D5;
    color: white;
}
