@charset "utf-8";

/* ---- タブ＆アコーディオンの動作 ---- */
.method-tab-web * {
  box-sizing: border-box;
  margin: 0 auto;
}
.method-tab-web-area {
  position: relative;
}
.method-tab-web-btn,
.method-tab-web-btn-link {
	overflow: hidden;
}
.method-tab-web-btn::after,
.method-tab-web-btn-link::after {
  content: "\f067";
  font-family: FontAwesome;
	float: right;
	margin-right: 15px;
	display: inline-block;
	width: 20px;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	line-height: 44px;
	color: #ffd400;
}
.method-tab-web-btn.active:after {
  content: "\f00d";
  font-family: FontAwesome;
}
.method-tab-web-btn-link::after {
  content: "\f054";
  font-family: FontAwesome;
}
.method-tab-web-btn-font01 {
  margin-left: 1.5em;
  font-size: 12px;
}
.method-tab-web-cont {
	display: none;
}
.active + .method-tab-web-cont {
  display: block;
}
@media (min-width: 640px){
	.method-tab-web .sp-none{
		display: inline-block;
		padding:0 0.5em;
	}
}
@media only screen and (min-width: 768px) {
	.method-tab-web-area {
		position:relative;
		padding-top: 52px;
		margin: 20px 15px 0;
	}
	.method-tab-web-btn,
  .method-tab-web-btn-link  {
		width: 24.7%;
		position: absolute;
		top: 10px;
		height: 48px;
		line-height: 48px;
		box-shadow: inset 0 -5px 5px rgba(0,0,0,0.1), inset 0 0 1px #fff;
		transition:all 0.2s;
	}
	.method-tab-web-btn:hover,
	.method-tab-web-btn.on,
  .method-tab-web-btn-link:hover {
		position: absolute;
		top: -5px;
		height: 70px;
		padding-top: 5px;
		box-shadow:
		 inset 0 -5px 5px rgba(0,0,0,0),
		 inset 0 0 1px #fff;
	}
  .active + .method-tab-web-cont {
    display: none;
  }
  .method-tab-web-cont.on {
  	display: block;
  }
	.method-tab-web-btn.active:after,
	.method-tab-web-btn:after {
		content: "▼";
		font-size: 12px;
		line-height: 44px;
	}
  .method-tab-web-btn-link::after {
    content: ">";
		font-size: 12px;
		line-height: 44px;
  }
}
@media only screen and (min-width: 960px) {
  .method-tab-web-area {
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
  }
}
/* ---- 中身・デザイン ---- */
.method-tab-web {
  line-height: 1.4;
}
.method-tab-web-ttl {
	background: #000;
	padding: 12px;
	margin-bottom: 20px;
}
.method-tab-web-btn,
.method-tab-web-btn-link  {
	height: 44px;
	line-height: 44px;
	text-align: left;
	padding-left: 20px;
	cursor: pointer;
	font-size: 18px;
	border-bottom: 1px solid #ccc;
}
.method-tab-web-cont {
	background: #f6f6f6;
	border-bottom: 1px solid #ccc;
	padding: 16px 4%;
	position: relative;
	z-index: 1;
}
.method-tab-web-cont-ttl {
	margin: 0;
	background: #fff;
	position: relative;
	font-size: 2rem;
	padding: 0.5em 10px;
	text-align: center;
	border-radius: 2em;
}
.method-tab-web-cont-ttl-icon {
	position: absolute;
	top: 0;
	left: -10px;
	width: 17%;
}
.method-tab-web-cont-txt {
	font-size: 1.2rem;
	padding: 1rem 0;
	line-height: 1.5;
}
.method-tab-web-cont-txt-red {
  font-weight: bold;
  color: red;
}
.method-tab-cont-txt-bold {
 font-weight: bold;
}
.method-tab-web-cont-flow-item {
	margin: 0;
	padding: 0 0 20px;
	overflow: hidden;
}
.method-tab-web-cont-flow-list {
	margin-bottom: 10px;
	border-radius: 4px;
	background: #fff;
	padding: 5px;
}
.method-tab-web-cont-flow-item img {
	width: 25%;
	display: inline-block;
	vertical-align: middle;
}
.method-tab-web-cont-flow-item p {
	text-align: left;
	font-size: 1.4rem;
	line-height: 1.3;
	font-weight: bold;
	width: 67%;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 calc(8% - 0.4em);
}
.method-tab-web-cont-link-area {
  text-align: center;
}
.method-tab-web-cont-link-ttl {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 20px 0 2px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
}
.method-tab-web-cont-link{
	background: #57bc13;
	box-shadow: inset 0 -3px 0 rgba(0,0,0,0.3), inset 0 -60px 0 rgba(0,0,0,0);
	padding: 10px;
	color: #fff;
	text-align: center;
	display: inline-block;
	width: 300px;
	margin: 0 10px 12px;
	border-radius: 4px;
	transition:all 0.2s;
  font-size: 20px;
}
.method-tab-web-cont-link:hover{
	box-shadow: inset 0 -3px 0 rgba(0,0,0,0), inset 0 -60px 0 rgba(0,0,0,0.2);
	color: #fff;
}
.method-tab-web-pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .method-tab-web {
    margin-top: 40px;
  }
	.method-tab-web-btn,
  .method-tab-web-btn-link {
		position:absolute;
		width: 24.3%;
    border: 1px solid #ccc;
	}
  .method-tab-web-btn.shucho {
		left:0;
	}
	.method-tab-web-btn.takuhai {
    left: 25.33%;
 }
	.method-tab-web-btn.houjin {
		left: 50.66%;
	}
  .method-tab-web-btn-link.contactform {
		right: 0;
	}
	.method-tab-web-cont {
		border-top: 6px solid #000000;
		/* margin-top: 10px; */
		width: 100%;
	}
	.method-tab-web-cont-ttl{
		margin:20px 0;
		font-size:28px;
	}
	.method-tab-web-cont-ttl-icon {
		top:0;
		left:-20px;
		width:100px;

	}
	.method-tab-web-cont-ttl br{
		display: none;
	}
	.method-tab-web-cont-txt {
		font-size: 16px;
	}
	.method-tab-web-cont-flow-item{
		overflow: hidden;
		margin-bottom: 1rem;
	}
	.method-tab-web-cont-flow-list {
		float: left;
		width: calc(25% - 6px);
		/* height: 170px; */
		padding: 10px 7px 5px;
		margin-left:7px;
	}
	.method-tab-web-cont-flow-list:first-child {
		margin-left:0;
	}
	.method-tab-web-cont-flow-item img {
		width: 100%;
		margin-bottom:7px;
	}
	.method-tab-web-cont-flow-item p {
		text-align: left;
		font-size: 14px;
		font-weight: bold;
		width: auto;
		display: block;
		line-height:1.3;
		margin:0;
		text-align:center;
		height: 2.6em;
	}
  .method-tab-web-cont-link{
    width: calc(33.33% - 20px - 0.4em);
  }
  .method-tab-web-pc {
    display: block;
  }
}
/* ---- タブ下のLINEボタン ---- */
.method-tab-web--line {
  padding: 2rem 3% 0;
  text-align: center;
}
.method-tab-web--line-txt {
  font-size: 16px;
  color: #ff6012;
}
.method-tab-web--line-link {
  background: #00B900;
  color: #fff;
  font-size: 20px;
  width: 25rem;
  text-align: center;
  padding: 12px 4%;
  position: relative;
  margin: 10px auto;
  border-radius: 4px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.3), inset 0 -60px 0 rgba(0,0,0,0);
}
.method-tab-web--line-link-icon {
  position: absolute;
  left: 2.5rem;
  top: 0;
  font-size: 50px;
}
.method-tab-web--line-btn {
  margin-left: 4rem;
}
@media only screen and (min-width: 768px) {
  .method-tab-web--line {
    padding-top: 40px;
  }
  .method-tab-web--line-txt {
    font-size: 24px;
  }
  .method-tab-web--line-link {
    width: 350px;
    padding: 16px;
  }
  .method-tab-web--line-link-icon.icon-line {
    font-size: 50px;
    top: calc(50% - 26px);
    left: 4rem;
  }
  .method-tab-web--line-btn {
      margin-left: 4rem;
      font-size: 25px;
  }
}
