@charset "utf-8";

/* -----------------------------
	-area
-------------------------------- */
.contents{
	background: var(--lightblue);
}

#wrapper{
	overflow: clip;
}
@media screen and (max-width: 768px){
}


/* -----------------------------
	intro-area
-------------------------------- */
.intro-area .catch-l{
	padding: 30px 0 0;
	font-weight: bold;
}
.intro-area .basic-txt{
	padding: 30px 0 0;
	width: 750px;
}
@media screen and (max-width: 768px){
	.intro-area {
		position: relative;
		margin: 50px 0 0;
	}
	.intro-area .catch-l{
		padding: 20px 0 0;
	}
	.intro-area .basic-txt{
		padding: 20px 0 0;
		width: 100%;
	}
}

/* -----------------------------
	problem-area
-------------------------------- */
/* problem-list */
.problem-area .problem-list{
	margin: 50px 0 0;
}
.problem-area .problem-list .catch-m{
	text-align: center;
	color: var(--blue);
}

.problem-area .problem-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px 20px;
	margin: 50px 0 0;
}
.problem-area .problem-list ul li{
	width: calc((100% / 2) - 20px);
	background: #fff;
	padding: 45px 20px 20px;
	text-align: center;
	border: dotted 1px var(--blue);
	position: relative;
}
.problem-area .problem-list .top-txt{
	background: var(--blue);
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
	padding: 10px 20px;
	border-radius: 50px;
	position: absolute;
	top: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	width: 90%;
}
/*
.problem-area .problem-list .top-txt::before{
	content: '';
	position: absolute;
	width: 20px;
	height: 15px;
	background: var(--blue);
	bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}*/
.problem-area .problem-list .top-txt::after{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 12px solid var(--blue);
	border-bottom: 0;
	bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.problem-area .problem-list .subcatch{
	color: var(--pink);
	font-weight: bold;
	position: relative;
}
.problem-area .problem-list .subcatch:before, 
.problem-area .problem-list .subcatch:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
	background: var(--pink);
}
.problem-area .problem-list .subcatch:before {
  left:0;
	margin: 0 0px 0px 130px;
}
.problem-area .problem-list .subcatch:after {
  right: 0;
	-webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
	margin: 0 130px 0px 0px;
}

.problem-area .problem-list .catch-s{
	padding: 0px 0 0;
}
.problem-area .problem-list .basic-txt{
	padding: 10px 0 0;
	text-align: left;
}

@media screen and (min-width: 769px) {
  .accordion-title {
    pointer-events: none; /* クリック不可に */
    cursor: default;
	  display: none;
  }
  .accordion-content {
    display: block !important; /* 強制表示 */
  }
}
@media screen and (max-width: 768px){
	/* problem-list */
	.problem-area .problem-list{
		margin: 30px 0 0;
	}
	.problem-area .problem-list .catch-m{
		font-size: 1.7rem;
	}

	.problem-area .problem-list ul{
		display: block;
		margin: 40px 0 0;
	}
	.problem-area .problem-list ul li{
		width: 100%;
		padding: 45px 20px 20px;
	}
	.problem-area .problem-list ul li:nth-child(n + 2){
		margin: 40px 0 0;
	}
	.problem-area .problem-list .top-txt{
		font-size: 1.4rem;
		padding: 5px 20px;
	}
	.problem-area .problem-list .top-txt::before{
		height: 10px;
		bottom: -10px;
	}
	.problem-area .problem-list .top-txt::after{
		border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 15px solid var(--blue);
    border-bottom: 0;
    bottom: -10px;
	}
	.problem-area .problem-list .subcatch{
		font-size: 1.4rem;
	}
	.problem-area .problem-list .subcatch:before, 
	.problem-area .problem-list .subcatch:after {

	}
	.problem-area .problem-list .subcatch:before {
		margin: 0 0px 0px 15px;
	}
	.problem-area .problem-list .subcatch:after {
		margin: 0 15px 0px 0px;
	}
	.problem-area .problem-list .catch-s{
	}
	.problem-area .problem-list .basic-txt{
	}
		.accordion-content {
		display: none; /* 初期は非表示 */
	}
	.accordion-content.is-open {
		display: block;
	}
	.accordion-title {
		cursor: pointer;
		background: #eee;
		padding: 10px;
		width: 200px;
		margin: 10px auto 0;
		border-radius: 30px;
		display: table;
		font-size: 1.4rem;
		position: relative;
	}
	.accordion-title::before{
		content: '\2b';
		position: absolute;
		font-size: 2rem;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
	.accordion-title.is-hidden {
	display: none;
	}
}

/* -----------------------------
	flow-area
-------------------------------- */
.flow-area{
	margin: 100px 0 0;
}
.flow-area ul{
	
}
.flow-area ul li{
	width: 100%;
	display: flex;
	gap: 30px;
	padding: 20px;
}
.flow-area ul li::before{
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	border-top: 20px solid var(--blue);
	border-bottom: 0;
	bottom: -28px;
	top: auto;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.flow-area ul li:nth-child(3)::before{
	display: block;
}
.flow-area ul li .title{
	padding: 0;
	font-size: 2.3rem;
}
.flow-area ul li .img{
	width: 200px;
	height: 150px;
	object-fit: cover;
}
.flow-area ul li > div{
	flex: 1;
}
@media screen and (max-width: 768px){
	.flow-area{
		margin: 50px 0 0;
	}
	.flow-area ul li{
		display: block;
		padding: 10px;
	}
	.flow-area ul li:nth-child(3)::before{
		bottom: -29px;
	}
	.flow-area ul li:nth-child(n + 2){
		margin: 30px 0 0;
	}
	.flow-area ul li .title{
		font-size: 2rem;
	}
	.flow-area ul li .img{
		width: 100%;
		height: 150px;
	}
}

/* -----------------------------
	faq-area
-------------------------------- */
.faq-area{
	padding: 100px 0 150px;
}
@media screen and (max-width: 768px){
	.faq-area{
		padding: 50px 0;
	}
}