@charset "UTF-8";
@import "//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.css";

.bigbox1 {
	width: 100%;
    max-width: 700px;
	height: 500px;
	margin: 40px auto;
    display: flex;
    justify-content: space-between;
	position: relative;right: 250px;
}

.box1inbox {
    position: relative;top: 40px;
}

.solid {
	color: #000000;
	text-decoration: none;
	font-size: 12px;
	letter-spacing:0.3em;
	font-family: acumin-pro, sans-serif;
  }

.solid:hover{
	color: #fdfdfd;
    background-color: #000000;
	transition: 0.3s;
  }

  .solid_2 {
	color: #000000;
	text-decoration: none,underline;
	letter-spacing:0.3em;
	font-family: acumin-pro, sans-serif;
  }

.solid_2:hover{
	color: #fdfdfd;
    background-color: #000000;
	transition: 0.3s;
  }

.nosolid{
	color: #000000;
	text-decoration: none;
	font-size: 12px;
	letter-spacing:0.3em;
	font-family: acumin-pro, sans-serif;
  }  

.bigbox2 {
	width: 100%;
    max-width: 700px;
	margin: 40px auto;
	position: relative;right: 250px;
}

/*　アコーディオン　*/
.bigbox2 iframe{
	width: 560px;
	height: 315px;
}

.box_imagebox{
	text-align: center;
}

body {
	overflow-y: scroll;
	font-family: sans-serif;
	background: #eee;
  }
  body > div {
	width: 25%;
	min-width: 700px;
	margin: 0 auto;
  }
  
  input {
	display: none;
  }
  input ~ div {
	height: 1px;
	overflow: hidden;
  }
  input ~ div > * {
	background-color: rgba(182, 182, 182, 0.08);
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	font-size: 12px;
	line-height: 1.75em;
  }
  input + label {
	display: block;
	position: relative;
	padding: 20px 0;
	font-weight: 700;
	font-size: 14px;
  }
  input + label:after,
  input + label:before {
	position: absolute;
	background: rgb(206, 39, 30);
	content: "";
	-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	top: 50%;
  }
  input + label:after {
	right: 4px;
	height: 10px;
	width: 2px;
	margin-top: -5px;
  }
  input + label:before {
	right: 0;
	width: 10px;
	height: 2px;
	margin-top: -1px;
  }
  
  input:checked ~ div {
	height: auto;
	margin: 0 0 50px;
  }
  input:checked ~ div > * {
	opacity: 1;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-transition-delay: 0.25s;
			transition-delay: 0.25s;
  }
  input:checked + label:before {
	-webkit-transform: rotate(360deg);
			transform: rotate(360deg);
	-webkit-transition: 0.5s;
	transition: 0.5s;
  }
  input:checked + label:after {
	-webkit-transform: rotate(450deg);
			transform: rotate(450deg);
	-webkit-transition: 0.5s;
	transition: 0.5s;
  }
  
  label:hover {
	cursor: pointer;
  }