@charset "UTF-8";
@import "../common/main.css";
@import "style.css";

.mainImg {
	background-image: url(mainImg.jpg);
}

.mainImg h3 {
	letter-spacing: 8px;
	text-indent: 8px;
}

h7 {
	background-color: var(--blue_2);
	font-size: 1.0rem;
	font-weight: bold;
	margin-bottom: 10px;
}

h8 {
	display: block;
	font-size: 1.0rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--blue);
}


@media screen and (max-width: 768px) {

}

.flow-img-box{
	width: 100%;
	margin: 0 auto;
}
.flow-img-box img{
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}


.three_box{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.three_box_item{
	width: calc(100%/3 - 20px);
	border: 2px solid var(--blue);
	border-radius: 20px;
	overflow: hidden;
	padding: 10px 20px;
	box-sizing: border-box;
	/* display: flex;
	flex-wrap: wrap;
	align-items: flex-start; */
}
.three_box_item h7{
	width: 100%;
	text-align: center;
	background-color: var(--white);
	color: var(--blue);
	box-sizing: border-box;
	font-weight: bold;
}
.three_box_item p{
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {

.three_box_item{
	width: 100%;
	padding: 10px 20px;
}

}




/* アコーディオン
-------------------------------------------------------------------------*/
.accordion-001 {
	width: 100%;
  background-color: #f2f2f2;
}

.accordion-001:not([open]) {
    margin-bottom: 20px;
}

.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-radius: 5px;
    background-color: var(--blue_2);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion-001[open] summary::after {
    transform: rotate(225deg);
}

.accordion-001 .ans_box {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    transition: transform .5s, opacity .5s;
		padding: 20px;
		margin-bottom: 20px;
}

.accordion-001[open] .ans_box {
    transform: none;
    opacity: 1;
}

p.txt_ans{
	position: relative;
	padding-left: 20px;
}
p.txt_ans::before{
	content: "A．";
	color: #ff0000;
	position: absolute;
	top: 0;
	left: 0;
}



