@charset "utf-8";
body {
	animation: loading 1s;
}
@keyframes loading {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*----------------------------------------------------------------------------

メインビジュアル

---------------------------------------------------------------------------*/
.contact_main{
	padding:3em 0 ;
	margin: 0 auto;
	max-width:1040px;
	background:url(../..//cmn/images/line.png) no-repeat 0 100%;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.contact_main dt{
	margin:0 0 15px;
}
@media screen and (max-width:768px){
.icon-img img{
	max-width:200px;
	}
}


.headline{
	text-align:center;
	margin:80px auto 40px;
}
.headline_text{
	max-width:520px;
	margin: 0 auto 60px;
	line-height:2;
	letter-spacing:2px;
	text-align:center;
}
.headline_text span{
	display:block;
	margin:0 0 30px;
}
@media screen and (max-width:768px){
	.headline img {
		max-width: 60%;
	}
	.headline_text {
		margin: 0 auto 60px;
	}
}


.qa-6 {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 5px;
/*    border-bottom: 2px solid #d6dde3;*/
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 0em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    letter-spacing:2px;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 0em;
    font-weight: 600;
    font-size: 1.1em;
}

.qa-6 summary::before {
    color: #000;
    content: "Q";
    padding:.3em .7em;
		background:#D9E021;
		width:40px;
		height:40px;
		border-radius:50%;
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 2px solid #333333b3;
    border-right: 2px solid #333333b3;
    content: '';
    transition: transform .5s;
}

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

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    margin-left: 45px;
    padding: .3em 3em 1.5em 3em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

@media screen and (max-width:768px){
.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    margin-left: 0px;
    padding: .3em 3em 1.5em 3em;

	}
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #fff;
    content: "A";
    padding:.3em .85em;
		width:40px;
		height:40px;
		border-radius:50%;
		background:#C1272D;
		
}

