@charset 'utf-8';

/* ブラウザ独自リセット */
input,textarea {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-appearance: none;
	}


a{
	-webkit-tap-highlight-color:transparent;
	color: #029f98;
}

/* ブラウザ独自の空白をリセット */
*{
	margin: 0;
	padding: 0;
}

/* 全体 */

html{
	font-size: 62.5%;
	margin: 30px 30px;
}

body{
	font-family: -apple-system; /* iOSのシステムフォント */
	/* iOS の Safari 専用プロパティ */
	-webkit-touch-callout: none; /* リンク長押しによるポップアップ無効化 */
	-webkit-user-select: none; /* テキスト長押しによる選択無効化 */
	font-size: 1.6rem;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

ul, ol {
	padding:0;
	margin:0;
	list-style-position: inside;
}


/*header*/

header{
	margin-bottom: 20px;
	text-align: center;
}


/*main*/


.page-title{
	font-size: 2.5rem;
	color: #029f98;
	position: relative;
	display: inline-block;
	margin-bottom: 1em;
}

.page-title:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 4px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #029f98;
	border-radius: 2px;
}

.list-title{
	color: #029f98;
}


.faq-list{
	margin: 5px 0px 20px;
}

.faq-content{
	margin-top: 50px;
}

.faq-content_title{
	padding-bottom: 20px;
	color: #029f98;
	font-size: 2.5rem;
	font-weight: bold;
}

/*アコーディオン*/


.accordion-001:not([open]) {
	margin-bottom: 12px;
}

.accordion-001 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	background-color: #f2f2f2;
	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 #029f98;
	border-right: 3px solid #029f98;
	content: '';
	transition: transform .3s;
}


.accordion-001[open] summary::after {
	transform: rotate(225deg);
}

.accordion-001 p.accordion-content-a {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: 1em 2em 2em 2em;
	color: #333333;
	transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
	transform: none;
	opacity: 1;
}


.accordion-content-q{
	width: 100%;
}


.accordion-content-q::before{
	content: "Q.";
	margin-left: -1.8rem;
	color: #029f98;
}


.accordion-content-a::before{
	content: "A.";
	margin-left: -1.8rem;
	font-weight: bold;
}



/*footer*/

footer{
	padding: 130px 0px 20px;
	text-align: center;
}

footer img{
	max-width: 500px;
}

