@charset "utf-8";
/*
	SP 768px以下
	TAB 769px以上 1024以下
@media only screen and (min-width: 769px) {}
	PC 1250以上
@media only screen and (min-width: 1250px) {}
*/

/* ---
    global
          ---*/
html {
	font-size: 62.5%;
}
body {
	font: 1.5em -apple-systrem, blinkMacSystremFont, YuGothic-M, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	color: #535353;
	line-height: 1.5;
}
@media only screen and (min-width: 769px) {
	body {
		font-size: 1.55em;
	}
}
@media only screen and (min-width: 1250px) {
	body {
		font-size: 1.6em;
	}
}

/* ---
      main
          ---*/
@media only screen and (min-width: 769px) {
	main {
		box-sizing: border-box;
		overflow-x: hidden;
		position: relative;
		width: 100%;
		height: 100%;
		max-width: 100%;
	}
	main::after {
		content: '';
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		background: url("../img/pc-bg.jpg") center center / cover no-repeat;
		background-attachment: fixed;
		z-index: -1;
	}
}

/* ---
   container
          ---*/
@media only screen and (min-width: 769px) {
	.wrapper-pc {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
/* #content */
#content {
	width: 100%;
}
@media only screen and (min-width: 769px) {
	#content {
		order: 2;
		width: 650px;
		max-width: 100%;
		position: relative;
		overflow: hidden;
		z-index: 1;
		margin: auto;
		-webkit-box-shadow: 4px 4px 20px rgba(0,0,0,.1);
		box-shadow: 4px 4px 20px rgba(0,0,0,.1);
	}
}
/* sidenavi */
.sidenavi .sidenavi_inner {
	position: relative;
}
.sidenavi ul.btn-wrap {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 199;
	width: calc(100% - 45px);
}
.sidenavi.action .btn-wrap li.web,
.sidenavi.action .btn-wrap li.line {
	width: 50%;
	margin-bottom: 0;
}
.sidenavi.action .btn-wrap .btn {
	width: 100%;
	height: 45px;
	padding: 0;
	font-size: min(4vw, 20px);
}
.sidenavi.action .btn-wrap .btn span {
	padding: 2.5% 0;
}
.sidenavi.action .btn-wrap .btn img {
	height: 95%;
	max-height: 35px;
	width: auto;
	margin-right: 10px;
}
.btn-wrap .btn:after {
	display: none;
}
@media only screen and (min-width: 769px) {
	.sidenavi.action .btn-wrap .btn {
		height: 65px;
	}
}
@media only screen and (min-width: 1250px) {
	.sidenavi {
		order: 1;
		position: fixed;
		top: 0;
		width: calc((100% - 650px)/2);
		height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
	}
	.sidenavi .sidenavi_inner {
		text-align: center;
	}
	.sidenavi .logo img {
		width: 250px;
		margin-bottom: 20%;
	}
	.sidenavi ul.btn-wrap {
		position: relative;
		width: 100%;
		display: block;
	}
	.sidenavi.action .btn-wrap li.web,
	.sidenavi.action .btn-wrap li.line {
		width: 250px;
    margin: 15% auto 0;
	}
	.sidenavi.action .btn-wrap .btn {
		height: auto;
		margin: auto;
    padding: 3% 10%;
    box-sizing: border-box;
	}
	.sidenavi.action .btn-wrap li.web .btn,
	.sidenavi.action .btn-wrap li.line .btn {
		font-size: 1.4em;
	}
	.btn-wrap .btn:after {
		display: block;
	}
	.sidenavi .btn-wrap .btn img {
		width: 40px;
	}
}
/* header */
header {
	position: fixed;
  top: 0;
	right: 0;
	z-index: 200;
}
header .hamburger {
	position: absolute;
	right: 15px;
	top: 8px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 300;
}
header .hamburger_border {
	position: absolute;
	left: 11px;
	width: 18px;
	height: 2px;
	background-color: #333;
	transition: all .6s;
}
header .hamburger_border_top {
	top: 14px;
}
header .hamburger_border_center {
	top: 20px;
}
header .hamburger_border_bottom {
	top: 26px;
}
header.nav-open nav {
	right: 0;
}
header.nav-open .hamburger_border_top {
	transform: rotate(45deg);
	top: 20px;
}
header.nav-open .hamburger_border_center {
	width: 0;
	left: 50%;
}
header.nav-open .hamburger_border_bottom {
	transform: rotate(-45deg);
	top: 20px;
}
header .logo {
	display: block;
}
header .header_inner {
	position: relative;
	width: 100%;
}
header nav {
	position: fixed;
	right: -320px;
	height: 100vh;
	width: 300px;
	background-color: rgb(255 255 255 / 50%);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	-webkit-box-shadow: 4px 4px 20px rgba(0,0,0,.1);
  box-shadow: 4px 4px 20px rgba(0,0,0,.1);
	transition: all .6s;
	overflow-y: auto;
}
header nav ul li {
	margin: 10% 0;
}
header nav ul li a {
	color: #535353;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	align-items: flex-end;
	text-decoration: none;
	font-size: .8em;
	line-height: 1;
	padding-bottom: 2.5%;
}
header nav ul li a .fon-en {
	line-height: 1;
	font-size: 1.5em;
	margin-right: 10px;
}
header nav ul li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #535353;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
header nav ul li a:hover {
	background-color: inherit;
	color: #1a1a1a;
}
header nav ul li a:hover::after {
	transform: scale(1, 1);
}
header nav ul li.icon a:hover {
	transform: scale(.9);
	transition: transform .3s;
}
@media only screen and (min-width: 769px) {
	header {
		order: 3;
		width: calc((100% - 650px)/2);
	}
	header .logo {
		display: none;
	}
	header .title {
		font-size: 2rem;
		font-weight: 600;
	}
	header nav ul li a span.fon-en {
		margin-right: 15px;
	}
}
@media only screen and (min-width: 1250px) {
	header nav {
		position: fixed;
		right: 0;
		height: 100vh;
    width: calc((100% - 650px)/2);
		background: none;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	header nav ul li a {
		font-size: .85em;
	}
	header nav ul li a .fon-en {
		font-size: 1.6vw;
	}
	header .hamburger {
		display: none;
	}
}

/* firstview */
#firstview {
	position: relative;
}
#firstview .logo {
	position: absolute;
	left: 10px;
	top: 10px;
	max-width: 50%;
}
#firstview .mainVisual {
	position: relative;
}
#firstview .mainVisual img.catch {
	width: 35%;
	position: absolute;
	top: 0;
	left: 0;
}
#firstview .Campaign img.cp {
	margin-bottom: 15%;
}
@media only screen and (min-width: 1250px) {
	#firstview {
		padding-top: 0;
	}
}
/* firstview A */
/*#firstview.B {
	display: none;
}
#firstview {
	background: url("../img/fvA_bg.jpg") center center / cover no-repeat;
	padding-top: 65px;
}
#firstview .mainVisual img.point {
	margin-top: -20%;
}
#firstview .Campaign img.tit {
	margin: -10% auto -5%;
}*/
/* firstview B */
#firstview.A {
	display: none;
}
#firstview {
	background: url("../img/fvB_bg.jpg") center center / cover no-repeat;
	padding-top: 20%;
}
#firstview .Campaign img.tit {
	margin: 0 auto -5%;
}
@media only screen and (min-width: 1250px) {
	#firstview .mainVisual img.catch {
		top: -15%;
	}
}


/* sec #trouble */
#trouble {
	background: url("../img/01_bg.jpg") center center / cover no-repeat;
	position: relative;
}
#trouble .top {
	position: relative;
	text-align: center;
}
#trouble .top img.top {
	width: 75%;
}
#trouble .top img.top-side {
	position: absolute;
	top: -60%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
#trouble .main {
	text-align: right;
}
#trouble .main img.case {
	margin-top: -10%;
}
#trouble .main img.list {
	width: 70%;
	margin: 0 5% 10% 0;
}

/* sec #cause */
#cause {
	background: url("../img/02_bg.jpg") center center / cover no-repeat;
	position: relative;
}
#cause .top {
	text-align: center;
}
#cause .top img.tit,
#cause .top img.illust01 {
	width: 75%;
}
#cause .main {
	position: relative;
	text-align: center;
}
#cause .main img.in {
	width: 60%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
#cause .bottom img.self {
	margin-bottom: 5%;
}

/* sec .action */
.action .btn-wrap {
	width: 75%;
	margin: auto;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
}
.action .btn-wrap .btn {
	display: block;
	height: auto;
	font-size: 3.75vw;
	padding: 2vw 0;
	border: none;
	color: #fff;
}
#ac-01.action .btn-wrap li.web .btn,
#ac-01.action .btn-wrap li.web .btn {
	font-size: min(4.5vw , 30px);
}
.action .btn-wrap .btn span {
	filter: drop-shadow(1px 1px 2px #363636);
}
.action .btn-wrap li {
	width: 47.5%;
	margin-bottom: 5%;
}
.action .btn-wrap li .btn img {
	width: 7vw;
	margin-right: 5px;
}
.action .btn-wrap li p {
	font-size: 3vw;
	letter-spacing: .05em;
	margin-top: 5px;
	text-align: center;
}
.action .btn-wrap li.web {
	width: 100%;
}
.action .btn-wrap li.web .btn {
  background-image: linear-gradient(100deg, rgba(148, 128, 91, 1), rgba(213, 198, 171, 1) 40%, rgba(122, 109, 85, 1));
}
.action .btn-wrap li.line .btn {
  background-image: linear-gradient(100deg, rgba(55, 147, 99, 1), rgba(134, 182, 144, 1) 40%, rgba(40, 131, 104, 1));
}
.action .btn-wrap li.tel .btn {
	background-image: linear-gradient(100deg, rgba(72, 72, 71, 1), rgba(172, 170, 166, 1) 43%, rgba(73, 69, 68, 1));
}
.action .btn-wrap li.web .btn:after {
	background: #7a6d55;
}
.action .btn-wrap li.line .btn:after {
	background: #288368;
}
.action .btn-wrap li.tel .btn:after {
	background: #494544;
}
@media only screen and (min-width: 769px) {
	.action .btn-wrap {
		width: 70%;
	}
	.action .btn-wrap li {
		margin-bottom: 5%;
	}
	.action .btn-wrap .btn {
		font-size: 2rem;
		padding: 2.5% 0;
	}
	.action .btn-wrap li .btn img {
		width: 40px;
		margin-right: 10px;
	}
	.action .btn-wrap li p {
		margin-top: 10px;
		letter-spacing: .1em;
		font-size: 1em;
	}
	.action .btn-wrap li p span {
		margin-right: 5px;
	}
}

/* sec #ac-01 */
#ac-01 {
	background: url("../img/ac-01_bg.jpg") center center / cover no-repeat;
	position: relative;
	padding-bottom: 5%;
}
#ac-01 .top img.tit {
	margin-top: 150px;
}
#ac-01 .main img.point {
	margin-top: -20%;
}
#ac-01 .campaign {
	position: relative;
}
#ac-01 .campaign .btn-wrap {
	position: absolute;
	left: 50%;
	bottom: 7%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
@media only screen and (min-width: 769px) {
	#ac-01 .campaign .btn-wrap {
		bottom: 8%;
	}
}
@media only screen and (min-width: 1250px) {
	#ac-01 .campaign .btn-wrap {
		bottom: 10%;
	}
}

/* sec #type */
#type {
	background: url("../img/03_bg.jpg") center center / cover no-repeat;
}
#type .top img {
	width: 55%;
	margin: auto 5%;
}
#type .top img.sub-tit {
	margin-top: 5%;
}
#type .bottom {
	text-align: center;
}
#type .bottom img {
	width: 45%;
}

/* sec #menu */
#menu {
	background: url("../img/04_bg.jpg") center center / cover no-repeat;
}
#menu .top {
	text-align: center;
}
#menu .top img {
	width: 95%;
	margin: -7% auto 0;
}
#menu .top img.back {
	width: 100%;
	margin: 0;
}
#menu .main-01 {
	text-align: center;
	margin-top: 5%;
}
#menu .main-01 img.tit {
	width: 65%;
}
#menu .main-02 {
	position: relative;
	text-align: right;
}
#menu .main-02 img.left {
	position: absolute;
	left: 0;
	bottom: 5%;
	width: 40%;
	z-index: 10;
}
#menu .main-02 img.right {
	width: 90%;
}
#menu .bottom {
	text-align: center;
}
#menu .bottom img {
	width: 20%;
}

/* sec #anxiety */
#anxiety {
	background: url("../img/05_bg.jpg") center center / cover no-repeat;
}
#anxiety .top {
	width: 60%;
	margin: 0 auto 10% 5%;
}
#anxiety .top li:first-child img {
	margin-top: 20%;
}
#anxiety .top img {
	margin: 10% auto 0;
}
#anxiety .bottom {
	text-align: center;
}
#anxiety .bottom img {
	width: 70%;
	margin-bottom: 5%;
}

/* sec #dr */
#dr {
	background: url("../img/06_bg.jpg") center center / cover no-repeat;
}
#dr .top {
	position: relative;
}
#dr .top .left {
	width: 50%;
}
#dr .top .right {
	position: absolute;
	right: 2.5%;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 60%;
}
#dr .main img.catch {
	margin-top: -10%;
}
#dr .main .menu {
	position: relative;
}
#dr .main .menu .text-wrap {
	position: absolute;
	text-align: center;
	left: 2.5%;
	top: 2.5%;
	width: 55%;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
#dr .main .menu .text-wrap:first-child {
}
#dr .main .menu.reverse .text-wrap {
	right: 2.5%;
	left: inherit;
	margin-top: -2px;
}
#dr .main .menu .text-wrap p {
	font-size: min(3.8vw, 20px);
}
#dr .main .menu .text-wrap h3 {
	font-size: min(5.5vw, 30px);
	margin: 2% 0 0;
	font-weight: bold;
}
#dr .main .menu .text-wrap ul {
	display: inline-block;
}
#dr .main .menu .text-wrap li {
	color: #535353;
	text-align: left;
	margin: 2vw 0 0;
  line-height: 1;
	-webkit-box-pack: start;
	justify-content: flex-start;
}
#dr .main .menu .text-wrap li:before {
	margin-right: 10px;
	width: 20px;
	content: "";
	display: inline-block;
	margin-right: 10px;
	height: 1px;
	background: #535353;
}
@media only screen and (min-width: 769px) {
	#dr .main .menu .text-wrap p {
    font-size: 1.2em;
	}
	#dr .main .menu .text-wrap h3 {
		font-size: 2.2em;
	}
}
@media only screen and (min-width: 1250px) {
	#dr .main .menu .text-wrap li {
		margin: 1.5vw 0 0;
	}
}

/* sec #ba */
#ba {
	background: url("../img/07_bg.jpg") center center / cover no-repeat;
}
#ba .main-tit {
	padding-top: 10%;
}
#ba .main-tit::before {
	top: 0;
}
#ba .swiper {
	width: 100%;
}
#ba .swiper-slide {
	background-position: center;
	background-size: cover;
	width: 80%;
	opacity: 0.4;
	overflow: hidden;
	transition: .7s;
}
#ba .swiper-slide-active {
	opacity: 1;
	z-index: 1;
	transform: scale(1.5);
}
#ba .swiper-slide img {
	display: block;
	width: 100%;
}
#ba .swiper-pagination {
	position: relative;
}
#ba .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: gray;
}
#ba .swiper-button-next,
#ba .swiper-button-prev {
	color: gray;
}
#ba .swiper h4 {
	font-weight: bold;
	text-align: center;
	color: #fff;
	background: #0b192b;
	font-size: 1.2rem;
	padding: 2% 0;
}
#ba .swiper h4 small {
	font-weight: normal;
}
#ba .swiper .img-wrap {
	position: relative;
}
#ba .swiper figure {
	position: absolute;
	top: 0;
	right: 10px;
	color: #fff;
	background: none;
	mix-blend-mode: difference;
}
#ba .swiper p {
	font-size: 1rem;
	line-height: 1.2;
	margin-top: 10px;
}
@media only screen and (min-width: 769px) {
	#ba .swiper h4 {
		font-size: 1.8rem;
	}
}

/* sec #reason */
#reason {
	background: url("../img/08_bg.jpg") center center / cover no-repeat;
}
#reason .top img {
   margin: 25% auto 0;
}
#reason .main {
	padding-bottom: 25%;
}
#reason .reason-wrap {
	position: relative;
	margin-top: -5%;
}
#reason .reason-wrap.reverse {
	text-align: right;
}
#reason .reason-wrap img {
	width: 50%;
}
#reason .reason-wrap img.text {
	position: absolute;
	right: 2.5%;
	bottom: 5%;
	width: 55%;
}
#reason .reason-wrap.reverse img.text {
	left: 2.5%;
	right: inherit;
}

/* sec #price */
#price {
	background: url("../img/09_bg.jpg") center center / cover no-repeat;
}
#price .main {
	text-align: center;
	margin-bottom: 5%;
}
#price .main img {
	width: 35%;
}
#price .accordion h3 {
	display: inline-block;
	width: 80%;
}
#price .accordion h3::before,
#price .accordion h3::after {
	z-index: 10;
	background: #fff;
  right: 10%;
}
#price .accordion h3 p {
	padding: 2% 10% 2% 0;
	font-size: 2rem;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  will-change: transform, filter;
  transform-style: preserve-3d;
  transition: all .3s ease-out;
}
#price .accordion h3 p::before {
  content: "";
  height: 40px;
  display: inline-block;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -5px;
  z-index: -1;
  border-radius: 50px;
  opacity: .8;
  filter: blur(15px);
}
#price .accordion h3 p,
#price .accordion h3 p::before {
  background: rgb(11,27,43);
	background: -moz-linear-gradient(75deg, rgba(11,27,43,0.4962359943977591) 0%, rgba(123,172,186,0.7539390756302521) 100%);
	background: -webkit-linear-gradient(75deg, rgba(11,27,43,0.4962359943977591) 0%, rgba(123,172,186,0.7539390756302521) 100%);
	background: linear-gradient(75deg, rgba(11,27,43,0.4962359943977591) 0%, rgba(123,172,186,0.7539390756302521) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b1b2b",endColorstr="#7bacba",GradientType=1);
}
#price .accordion div {
	width: 90%;
	margin: 5% auto 0;
}
#price .accordion h4 {
	font-size: 1.8rem;
	font-weight: bold;
	margin: 30px 0 10px;
	text-align: center;
}
#price .accordion table {
	width: 100%;
}
#price .accordion table tr {
	border-top: 1px solid #acacac;
}
#price .accordion table tr:last-child {
	border-bottom: 1px solid #acacac;
}
#price .accordion table th,
#price .accordion table td {
	padding: 4% 0;
}
#price .accordion table th {
	text-align: center;
	font-size: 1.3rem;
}
#price .accordion table th.th-c {
	font-size: 1.2rem;
}
#price .accordion table td {
	text-align: right;
	font-size: 1.7rem;
}
#price .bottom {
	position: relative;
}
#price .bottom .pay-wrap {
	text-align: center;
	width: 80%;
	position: absolute;
	top: 47.5%;
	left: 51%;
	transform: translate(-47.5%, -51%);
	-webkit-transform: translate(-47.5%, -51%);
	-ms-transform: translate(-47.5%, -51%);
}
#price .bottom .pay-wrap h3 {
	font-weight: bold;
	font-size: min(5vw, 2.75rem);
	margin-bottom: 3%;
}
#price .bottom .pay-wrap p {
	line-height: 1.4;
	font-size: .9em;
}
#price .bottom .pay-wrap .box-wrap {
	margin: 4% auto;
}
#price .bottom .pay-wrap .box-wrap img {
	width: 40%;
	margin-left: 10px;
}
@media only screen and (min-width: 769px) {
	#price .accordion table th {
		font-size: 1.2em;
	}
	#price .accordion table th.th-c {
		font-size: 1em;
	}
	#price .accordion table td {
		font-size: 2em;
	}
	#price .bottom .pay-wrap h3 {
    margin-bottom: 2.5%;
	}
	#price .bottom .pay-wrap p {
		font-size: 1em;
	}
	#price .bottom .pay-wrap .box-wrap h4 {
		font-size: 1.2em;
	}
}

/* .bg-wrap */
.bg-wrap {
	background: url("../img/10_bg-long.jpg") center center / cover no-repeat;
}

/* sec #flow */
#flow {
	background: url("../img/10_bg.png") center center / cover no-repeat;
	padding: 20% 0 30%;
}
#flow .swiper {
	width: 90%;
	padding-bottom: 10%;
}
#flow .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: gray;
}
#flow .swiper-button-next {
	top: 20%;
	color: gray;
}
#flow .swiper li .box-wrap {
	justify-content: space-between;
	-webkit-justify-content: space-between;
	flex-wrap: wrap;
}
#flow .swiper li .box-wrap picture {
	width: 80%;
}
#flow .swiper li .box-wrap picture img {
	width: 100%;
}
#flow .swiper li .box-wrap .box {
	padding-right: 0;
	padding: 5%;
	background: rgb(239 239 239 / 50%);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	text-align: left;
	width: 95%;
	margin: -5% 0 0 5%;
}
#flow .swiper li .box-wrap .box .num {
	font-size: 2rem;
	line-height: 1;
}
#flow .swiper li .box-wrap .box .num .i {
	font-size: 4.5rem;
	margin-right: 10px;
}
#flow .swiper li .box-wrap .box .num span:not([class]) {
	margin-left: 10px;
	font-size: 3.5rem;
}
#flow .swiper li .box-wrap .box h3 {
	font-size: 2.4rem;
	letter-spacing: .04em;
	margin: 5% 0 2%;
	font-weight: bold;
}
#flow .swiper li .box-wrap .box p {
	font-size: 1.45rem;
}

/* sec #detail */
.tab-wrap {
	width: 90%;
	margin: auto;
	background: rgba( 246, 246, 246, 0.5 );
	box-shadow: 0 8px 32px 0 rgba( 180, 180, 180, 0.4 );
}
.tab-wrap .tab-area {
	margin-top: 20px;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.tab-wrap .tab-area .tab {
	width: calc(99% / 3);
	box-sizing: border-box;
	padding: 2.5% 0;
	cursor: pointer;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	transition: all 0.2s ease 0s;
	background-color: rgba(11,27,43,0.6);
}
.tab-wrap .tab-area .tab:hover {
	background-color: rgba(123,172,186,0.75);
}
.tab-wrap .tab-area .tab.active {
	background: rgba(246,246,246,0.5);
	color: #535353;
}
.tab-wrap .tab-area .tab p {
	display: inline-block;
	line-height: 1.2;
	letter-spacing: .1rem;
}
.tab-wrap .tab-area .tab p span {
	display: block;
	font-size: 2.5rem;
	line-height: 1.4;
}
.tab-wrap .content-area {
	background: rgba(246,246,246,0.5);
	border: 1px solid rgba( 255, 255, 255, 0.18 );
	padding: 5%;
}
.tab-wrap .content-area .content {
	display: none;
}
.tab-wrap .content-area .content.active {
	display: block;
}
.tab-wrap .content-area table {
	width: 100%;
}
.tab-wrap .content-area table tr:nth-child(even) {
	background-color: #fff;
}
.tab-wrap .content-area table tr th,
.tab-wrap .content-area table tr td {
	padding: 2.5% 0;
}
.tab-wrap .content-area table tr th {
	font-weight: bold;
}

/* sec #faq */
#faq {
	padding-bottom: 10%;
}
#faq .accordion {
	border-bottom: 1px solid #4e4c4d;
	width: 90%;
	margin: auto;
}
#faq .accordion h3 {
	border-top: 1px solid #4e4c4d;
	padding: 2rem 5.5rem 2rem 1rem;
}
#faq .accordion p {
	position: relative;
	text-align: left;
	font-size: 1.6rem;
	margin-left: 40px;
}
#faq .accordion div {
	padding: .5rem 1rem 2rem;
}
#faq .accordion p::before {
	position: absolute;
	font-size: 2.5rem;
	font-family: century-gothic, sans-serif;
}
#faq .accordion h3 p::before,
#faq .accordion div p::before {
	left: -35px;
}
#faq .accordion h3 p::before {
	content: "Q.";
	color: #568092;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
#faq .accordion div p::before {
	content: "A.";
	color: #535353;
	top: -10px;
}

/* sec #ac-02 */
#ac-02 {
	background: url("../img/ac-02_bg.jpg") center center / cover no-repeat;
}
#ac-02 .top {
	width: 60%;
	padding: 10% 0 5%;
	margin: auto;
}
#ac-02.action .btn-wrap li .btn:after {
    background: #fff;
}
#ac-02.action .btn-wrap li p {
	color: #fff;
}

/* bg10 *//* sec11 */
.bg10,
.bgi11 {
	padding: 0 5% 5%;
}
@media only screen and (min-width: 1250px) {
	.bg10,
	.bgi11 {
		padding: 0 15% 5%;
	}
}

/* bg10 */
.bg10 {
	background: #f5f5f5;
}
.bg10 .box {
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	margin-top: 5%;
}
.bg10 .box:first-child {
	margin-top: 0;
}
.bg10 .box .name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	width: 100%;
}
.bg10 .box .name .imgwrap {
	width: 35%;
}
.bg10 .box .name .textwrap {
	width: 60%;
}
.bg10 .box .name .textwrap h3 {
	font-weight: bold;
	font-size: 2.2rem;
}
.bg10 .box .name .textwrap p {
	margin-bottom: 2.5%;
}
.bg10 .box h4 {
	color: #333;
	margin: 2.5% 0;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	padding: 1% 0 1% 10px;
}
.bg10 .box dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: .9em;
 	flex-wrap: wrap;
	margin: 0 1%;
}
.bg10 .box dl dt {
	width: 30%;
}
.bg10 .box dl dd {
	width: 70%;
}
@media only screen and (min-width: 1250px) {
	.bg10 .box .name .imgwrap {
		width: 25%;
	}
	.bg10 .box .name .textwrap {
		width: 70%;
	}
	.bg10 .box dl {
		font-size: 1em;
	}
}

/* sec11 */
.bgi11 {
	background: #fff;
}
.sec11 .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sec11 .container .box {
	width: 100%;
	margin-bottom: 12%;
}
.sec11 .container .box .ttl h3 {
	margin: 3% 0;
	color: #568092;
	font-weight: bold;
	font-size: 2.2rem;
	line-height: 1;
}
.sec11 .container .box dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	/*-webkit-box-align: center;*/
	/*align-items: center;*/
	flex-wrap: wrap;
	margin-bottom: 2.5%;
	/* ↓ 追加 ↓ */
	margin-top: 2%;
	/* ↑ 追加 ↑ */
}
.sec11 .container .box dl dt {
	width: 25%;
}
.sec11 .container .box dl dd {
	width: 75%;
}
.sec11 .tel {
	background-color: #568092;
	border: 1px solid #568092;
  color: #fff;
}
.sec11 .tel:hover {
	background-color: #ffffff;
	border: 1px solid #568092;
	color: #568092;
}

/* ↓ 追加 ↓ */
.sec11 .container .box .sns-btn {
	display: none;
}
.sec11 .container .box dl.action dd {
	-webkit-box-align: center;
	align-items: center;
}
.sec11 .container .box dl.action dd .ac-btn.tel p {
	font-size: 1.7rem;
}
@media only screen and (max-width: 575px) {
	.sec11 .container .box .ttl h3 {
		font-size: 2rem;
	}
	.sec11 .container .box dl.action dd .ac-btn.tel p {
		font-size: 1.5rem;
	}
}
/* ↑ 追加 ↑ */

/*　footer　*/
footer {
	position: relative;
	text-align: center;
	background: #f5f5f5;
	padding: 30px 0 60px;
}
footer #pagetop {
	position: fixed;
	right: 0;
	bottom: 0;
	text-indent: -9999px;
	margin: 0;
	z-index: 199;
}
footer #pagetop a {
	width: 45px;
	height: 45px;
	display: block;
	background: rgba(0,0,0,1);
	transition: opacity .6s ease;
}
footer #pagetop a:hover {
	opacity: .3;
}
footer #pagetop a::before {
	position: absolute;
	top: 5px;
	width: 10px;
	height: 10px;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	margin: auto;
	content: '';
	transform: rotate(-45deg);
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
}
@media only screen and (min-width: 769px) {
	footer {
		padding: 0;
	}
	footer #pagetop a::before {
		top: 7px;
		width: 14px;
		height: 14px;
	}
	footer #pagetop a {
		width: 65px;
		height: 65px;
	}
}
@media only screen and (min-width: 1250px) {
	footer #pagetop {
		z-index: 400;
	}
}
