﻿@charset "utf-8";
/* PC向け*/
.qalist {
	box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin-top: 60px;
}
.one {
	width: 48%;
	box-shadow: 0 0 4px 1px rgba(113, 135, 164, .12);
	margin: 0 0 90px;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
	transition-property: all;
	transition-duration: .3s;
}
.onething {
	padding: 30px 30px 0;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	position: relative;
}
.number {
	text-align: center;
}
.number::before{
	content: "";
	position: absolute;
	top: -27px;
	left: 0;
	right: 0;
	margin: auto;
	/*background: #f5f0e6;*/
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: .7s;
}
.type1 {
	background: #fff;
}
.type2 {
	background: #eeeeee;
}
.last {
	background: #fff;
	box-shadow: 0 0 4px 1px #FFB7A1;
}
.type1 .number::before{
	background: #f5f0e6;
}
.type1 .numbertxt {
	color: #000;
}
.type1 .strongtype {
	background: linear-gradient(transparent 60%, #f5f0e6 60%);
}
.type2 .number::before{
	background: #4d9bc1c7;
}
.type2 .numbertxt {
	color: #fff;
}
.type2 .strongtype {
	background: linear-gradient(transparent 60%, #4d9ac16f 60%);
}
.last .numbertxt {
	color: #FFF;
}
.last .number::before{
	background: #FFB7A1;
}
.last .strongtype {
	color: #333;
	background: linear-gradient(transparent 60%, #FFB7A1 60%);
}
.numbertxt {
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	z-index: 1;
	font-size: 20px;
	line-height: 1;
	font-family: "UnifrakturMaguntia", cursive;
}
.numbox {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin: 20px 0 30px;
}
.boxtext {
	display: flex;
	flex-direction: column;
}
.boxq {
	font-size: 15px;
	margin-bottom: 20px;
	flex-grow: 1;
	font-weight: 500;
	border-bottom: 1px dashed #6d6d6d;
}
.subarea {
	text-align: center;
    margin: 0 0 50px;
}
.balloon {
    position: relative;
    background-color: #fff;
    border-bottom: solid 2px #6d6d6d8c;
    padding: 16px;
    min-width: 240px;
    max-width: 100%;
    text-align: center;
}
.balloon:before,
.balloon:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.balloon:before {
    border: solid 12px transparent;
    border-top: solid 12px #6d6d6d8c;
}
.balloon:after {
    border: solid 14px transparent;
    border-top: solid 14px #fff;
    margin-top: -5px;
}
.balloon p {
    margin: 0;
    padding: 0;
}
.subtitle {
	display: inline-block;
    font-size: 20px;
    letter-spacing: .35em;
    line-height: 1.5;
    text-align: left;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
    position: relative;
    margin: auto;
	font-weight: bold;
}
.subtitle:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -10px;
    background-color: #333;
    border-radius: 6px;
    width: 5px;
    height: 100%;
}
.sublist {
	font-size: 14px;
    line-height: 1;
    list-style: none;
    padding: 0;
    margin: 2% 0 3%;
}
.sublist span {
	font-size: 12px;
}
.sublist li {
    display: inline-block;
    margin: 0 10px 0 0;
}
.sublist li::after{
	content: "|";
    margin-left: 10px;
}
.sublist li a {
	text-decoration: none;
	color: #333;
}
.lasttag::after{
	content: none!important;
}
.fadeIn {
	opacity: 0;
	transition: 2s;
  }
  .fadeIn.is-show {
	opacity: 1;
  }
  .qandapr {
	font-size: 14px;
	line-height: 1.5;
  }
  .qandapr a {
	background: #eee;
    border-radius: 50px;
    position: relative;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 5px 15px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
  }

  .qandapr a:hover {
    background: #313131;
    color: #FFF;
}

.spbr {
	display: none;
}

/* タブレット向け */
@media screen and (max-width: 961px) {


}

/* スマホ向け */
@media only screen and (max-width: 760px) {
	.one {
		width: 100%;
	}
	.cptype1 {
		background: #fff;
	}
	.cptype2 {
		background: #eeeeee;
	}
	.cptype1 .number::before{
		background: #f5f0e6;
	}
	.cptype1 .strongtype {
		background: linear-gradient(transparent 60%, #f5f0e6 60%);
	}
	.cptype1 .numbertxt {
		color: #000;
	}
	.cptype2 .number::before{
		background: #4d9bc1c7;
	}
	.cptype2 .strongtype {
		background: linear-gradient(transparent 60%, #4d9ac16f 60%);
	}
	.cptype2 .numbertxt {
		color: #fff;
	}
	.sublist {
		margin: 10% 0 10%;
	}
	.spbr {
		display: block;
	}
	.toparea .inner h1 {
		line-height: 1.4;
		padding: 20px 0 !important;
	}
	.qandapr a {
		display: flex;
		max-width: 200px;
		margin: 10px auto;
	}
}