@charset "utf-8";

#contents {
	word-break: break-all;
}

#contents h2 {
	margin-bottom: 2em;
}

.glayWakuArea{
	border: solid 1px #999;
    background: #f5f5f5;
    padding: 1em;
    box-sizing: border-box;
}

.asterisk-list {
	list-style: none;
	padding-left: 0;
}

.asterisk-list li {
	text-indent: -1em;
	padding-left: 1em;
	margin-top: 0.8em;
}

.asterisk-list li::before {
	content: "*";
	margin-right: 0.5em;
}

.center {
	text-align: center;
	margin: 2em 0;
}

ol.stepList {
    list-style-type: none;
    counter-reset: square;
    margin-top: 2em;
    margin-bottom: 0;
    padding-left: 0;
}

ol.stepList > li {
	margin-bottom: 2em;
}

ol.stepList > li:before {
    content: counter(square);
    counter-increment: square;
    display: block;
    line-height: 24px;
    text-align: center;
    height: 24px;
    width: 24px;
    margin-right: 10px;
    font-weight: 700;
    float: left;
    background-color: rgba(0, 176, 240, .2);
    color: #333;
    border: #00b0f0 2px solid;
}

a.callBtn {
	display: block;
	margin: 1em auto;
    text-align: center;
	width: 32%;
	background-color: #2d75c7; 
	color: #fff;
	border: none;
	padding: 1em 2em;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

a.callBtn:hover {
	color: #fff;
	text-decoration: none;
    background-color: #34568e;
}

a.callBtn span {
	font-size: 0.9375rem;
}

a.callBtn span.font20 {
	font-weight: bold;
	font-size: 1.25rem;
	display: block;
}

.s5-icon-window {
    margin-left: 0.25em;
}

@media screen and (max-width: 850px){
	.center img {
		width: 100%;
	}	
	
	a.callBtn {
		width: auto;
		padding: 1em;
	}
}


#i_frame {
	width: 640px;
	margin: 25px auto 30px auto;
}

@media screen and (max-width: 690px) {
	#i_frame {
		width: auto;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		max-width: 100%;
	}
	#i_frame iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

#contents .accordion.type_1 button {
	padding: 1em;
	font-weight: bold;
}

#contents .accordion.type_1 button::after {
	content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 0.5em;
    background-image: url(/share5/svg/icon/angle-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.5s
}

#contents .accordion.type_1 button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.dialogue {
	margin: 0;
}

.dialogue .line {
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 0.5em 1em;
	border-radius: 10px;
	margin-bottom: 1em;
}

.dialogue .line dt {
	margin-right: 0.5em;
	white-space: nowrap;
	width: 20%;
}

.dialogue .line dt::after {
	content: "：";
	margin-left: 0.2em;
}

.dialogue .line dd {
	margin: 0;
	flex: 1;
}

.dialogue .cus {
	background-color: #F2EEED;
}

.dialogue .sl {
	background-color: #E1EFFC;
}

.dialogue .sony {
	background-color: #F1F8F8;
}

@media screen and (max-width: 640px) {
	.dialogue .line {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.dialogue .line dt {
		width: auto;
	}
}