/***** フォントサイズに対するＣＳＳ *****/

:root {
	--font-h4: 2vw;
	--font-p: 1.5vw;
	--font-text: 2vw;
	--font-QA: 4vw;
	--font-answer: 1.4vw;
	}

/***** コンテンツに対するＣＳＳ *****/
main {
	width: 100%;
	height: auto;
	letter-spacing: 0.1vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	}

.page_title {
	box-sizing: border-box;
	width: 90%;
	height: 40vw;
	margin-top: 8vw;
	padding-left: 2%;
	background: url(../images/query/q_irasuto.webp) center right 5% / 35% auto no-repeat;
	border-radius: 2vw;
	box-shadow: 0.2vw 0.2vw 0.4vw var(--color-1);
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	}

h2 {
	font-size: 4vw;
	font-weight: bold;
	}

h2::before {
	color: #fff;
	content: "- Question";
	box-sizing: border-box;
	font-size: 2vw;
	text-align: left;
	text-shadow: 0.2vw 0.2vw 0.4vw #777;
	display: flex;
	flex-direction: column;
	}

h2::after {
	color: #fff;
	content: "Frequently Asked Questions";
	box-sizing: border-box;
	width: 45%;
	padding: 0.5vw 1vw;
	background-color: var(--color-1);
	border-radius: 1vw;
	font-size: 2vw;
	text-align: center;
	display: flex;
	flex-direction: column;
	}

.page_title p {
	background: rgba(255, 255, 255, 0.5);
	font-size: 1.5vw;
	line-height: 2.5vw;
	}

.content {
	width: 100%;
	height: auto;
	margin: 0 0 2vw 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	}

.content_title {
	width: 90%;
	height: auto;
	margin: 15vw 0;
	}

h3 {
	color: #555;
	font-size: 2.5vw;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.5vw;
	}

h3 span {
	color: #c1e1dc;
	font-size: 3vw;
	}

.content_title h3 {
	width: auto;
	height: auto;
	}

.content_title .line {
	width: 77%;
	height: auto;
	}

aside {
	width: 90%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	}

section {
	width: 100%;
	height: auto;
	margin: 8vw 0;
	background: #ffeb94;
	border-radius: 2vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: -10;
	}

hgroup {
	position: relative;
	background: #c1e1dc;
	width: 90%;
	height: 8vw;
	margin: 5vw;
	padding: 0;
	border-radius: 5vw;
	display: flex;
	flex-direction: row;
	align-items: baseline;
	}

.question h4 {
	position: absolute;
	top: 0.5vw;
	left: 0.5vw;
	width: 6vw;
	height: auto;
	margin: 0;
	padding: 0;
	color: #c1e1dc;
	background: #fff;
	border: solid 0.5vw #c1e1dc;
	border-top-left-radius: 50%;
	border-top-right-radius: 50%;
	border-bottom-left-radius: 50%;
	border-bottom-right-radius:  15%;
	font-size: var(--font-QA);
	text-align: center;
	}

hgroup .text {
	position: absolute;
	top: 2vw;
	left: 8vw;
	color: #fff;
	padding: 1% 2%;
	font-size: var(--font-text);
	font-weight: bold;
	text-shadow: 0.2vw 0.2vw 0.2vw#979797;
	}

.answer {
	position: relative;
	width: 90%;
	height: auto;
	margin: 3vw;
	}

.answer h5 {
	position: absolute;
	top: -3vw;
	left: 0;
	width: 6vw;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	background: #f4a45f;
	border-top-left-radius: 50%;
	border-top-right-radius: 50%;
	border-bottom-left-radius: 50%;
	border-bottom-right-radius:  15%;
	font-size: var(--font-QA);
	text-align: center;
	}

.answer .reply {
	width: 80%;
	height: auto;
	margin: 0 5%;
	padding: 2% 5%;
	font-size: var(--font-answer);
	border: solid 0.5vw #f4a45f;
	background: #fff;
	border-radius: 2vw;
	display: flex;
	justify-content: center;
	align-items: center;
	}

.answer div {
	width: 80%;
	height: auto;
	margin: 0 5%;
	padding: 2% 5%;
	border: solid 0.5vw #f4a45f;
	background: #fff;
	border-radius: 2vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	}

.answer div p {
	width: 100%;
	height: auto;
	padding: 2% 0;
	font-size: var(--font-answer);
	}

.answer div dl {
	width: 70%;
	padding: 0.5% 0;
	font-size: var(--font-answer);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	}

.answer div dl dt {
	width: auto;
	height: auto;
	padding: 1% 0;
	text-align: left;
	}

.answer div dl dd {
	width: auto;
	height: auto;
	padding: 1% 0;
	}

.answer div .flow_area {
	box-sizing: border-box;
	background: #fff2e5;
	border: solid 0.1vw #f4a45f;
	border-radius: 1vw;
	}

.answer div .flow_area dt {
	width: 40%;
	text-align: center;
	}

.answer div .flow_area dd {
	width: 50%;
	}

.answer div .arrow {
	text-align: center;
	}

.answer div .usage_time dt {
	width: 45%;
	}

.answer div .usage_time dd {
	width: 45%;
	}

.answer div .service dt {
	width: 65%;
	}

.answer div .service dd {
	width: 35%;
	}

.message2 {
	width: 60%;
	margin: 10vw 0 20vw 0;
	background: url(../images/query/koala.webp) right center / auto 100% no-repeat;
	font-size: var(--font-p);
	}



/*-----------------------------------------------------*/
/* mobile用のCSS */
/*-----------------------------------------------------*/



@media (max-width: 1024px){





/***** フォントサイズに対するＣＳＳ *****/

:root {
	--font-h4-t: 2vw;
	--font-p-t: 2.5vw;
	--font-text-t: 3vw;
	--font-QA-t: 5vw;
	--font-answer-t: 3vw;
	}

/***** コンテンツに対するＣＳＳ *****/
.page_title {
	margin-top: 10vw;
	}

h2 {
	font-size: 6vw;
	}

h2::before {
	font-size: 3vw;
	}

h2::after {
	font-size: 3vw;
	width: 52%;
	}

.page_title p {
	font-size: 2.5vw;
	line-height: 3.5vw;
	}

.content_title {
	width: auto;
	padding: 0;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	}

h3 {
	font-size: 4.5vw;
	margin: 10vw 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	}

.content_title h3 span {
	font-size: 5vw;
	}

hgroup {
	height: 10vw;
	}

.question h4 {
	top: 0.6vw;
	left: 0.6vw;
	width: 7.5vw;
	font-size: var(--font-QA-t);
	}

hgroup .text {
	left: 10vw;
	font-size: var(--font-text-t);
	}

.answer {
	display: flex;
	flex-direction: column;
	align-items: center;
	}

.answer h5 {
	top: -5vw;
	width: 7.5vw;
	font-size: var(--font-QA-t);
	}

.answer .reply {
	width: 82%;
	font-size: var(--font-answer-t);
	}

.answer div {
	width: 82%;
	}

.answer div p {
	font-size: var(--font-answer-t);
	}

.answer div dl {
	flex-direction: column;
	font-size: var(--font-answer-t);
	align-items: center;
	}

.answer div dl dt {
	width: 100%;
	text-align: center;
	}

.answer div dl dd {
	width: 100%;
	text-align: center;
	}

.answer div .flow_area dt {
	width: 100%;
	text-align: center;
	}

.answer div .flow_area dd {
	width: 100%;
	}

.answer div .arrow {
	text-align: center;
	}

.answer div .usage_time dt {
	color: #f4a45f;
	width: 100%;
	}

.answer div .usage_time dd {
	width: 100%;
	}

.answer div .service dt {
	color: #f4a45f;
	width: 100%;
	}

.answer div .service dd {
	width: 100%;
	}

.message2 {
	width: 90%;
	font-size: var(--font-p-t);	
	}

}



@media (max-width: 500px){





/***** フォントサイズに対するＣＳＳ *****/

:root {
	--font-h4-m: 2vw;
	--font-p-m: 2.5vw;
	--font-text-m: 3vw;
	--font-QA-m: 5vw;
	--font-answer-m: 3vw;
	}

/***** コンテンツに対するＣＳＳ *****/
.page_title {
	margin-top: 15vw;
	height: 60vw;
	}

.page_title p {
	font-size: 3vw;
	line-height: 4.5vw;
	}

hgroup {
	height: 10vw;
	}

.question h4 {
	top: 0.6vw;
	left: 0.6vw;
	width: 7.5vw;
	font-size: var(--font-QA-t);
	}

hgroup .text {
	left: 10vw;
	font-size: var(--font-text-t);
	}

.answer {
	display: flex;
	flex-direction: column;
	align-items: center;
	}

.answer h5 {
	top: -5vw;
	width: 7.5vw;
	font-size: var(--font-QA-t);
	}

.answer .reply {
	width: 82%;
	font-size: var(--font-answer-t);
	}

.answer div {
	width: 82%;
	}

.answer div p {
	font-size: var(--font-answer-t);
	}

.answer div dl {
	flex-direction: column;
	font-size: var(--font-answer-t);
	align-items: center;
	}

.answer div dl dt {
	width: 100%;
	text-align: center;
	}

.answer div dl dd {
	width: 100%;
	text-align: center;
	}

.answer div .flow_area dt {
	width: 100%;
	text-align: center;
	}

.answer div .flow_area dd {
	width: 100%;
	}

.answer div .arrow {
	text-align: center;
	}

.answer div .usage_time dt {
	color: #f4a45f;
	width: 100%;
	}

.answer div .usage_time dd {
	width: 100%;
	}

.answer div .service dt {
	color: #f4a45f;
	width: 100%;
	}

.answer div .service dd {
	width: 100%;
	}

.message2 {
	width: 90%;
	font-size: var(--font-p-t);	
	}


}