@charset "utf-8";
/*
 * /css/p_list.css
 * Version: 1.0.0
 * Copyright (c) 2018 Kenshokai All Rights Reserved.
 */
.open_icon {
	position: absolute;
	width: 28px;
	height: 28px;
	float: left;
	margin-right: 10px;
	border: 2px solid #293887;
	border-radius: 100%;
	top: -10px;
}

.open_icon,
.open_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

.open_icon span {
	position: absolute;
	left: 6px;
	width: 50%;
	height: 2px;
	background-color: #293887;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
}

.open_icon span:nth-of-type(1) {
	top: 11px;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
}

.open_icon span:nth-of-type(2) {
	top: 11px;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
}

.open_icon.active span:nth-of-type(1) {
	display: none;
}

.open_icon.active span:nth-of-type(2) {
	top: 11px;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

.gallery_link{
  width: 200px;
  height: 40px;
  margin:0 auto;
  color: #fff;
  font-size: 0.8em;
  font-family: "tbchibirgothicplusk-pro",'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ;
  text-align: center;
  line-height: 40px;
  background: #524e4b;
  transition: 0.3s;
  margin-top: 20px;
}

.gallery_link:hover{
  background: #e0e0e0;
  border:1px solid #524e4b;
  color: #524e4b;
  border-radius: 32px;
}