@charset "UTF-8";
/* CSS Document */

.page-site section,
.page-for-business section {
	margin-bottom: 70px;
}

.page-for-business section#business-contact {
	margin-bottom: 0;
}

/**このサイトについて**/
.page-site h2,
.page-faq h2 {
	position: relative;
	font-size: 24px;
	color: #3C66C4;
	margin: 60px 0px 30px;
	padding-left: calc(1em + 10px);
}

.page-site h2::before, 
.page-for-business h3::before,
.page-faq h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.3em;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background: #FA9100;
}

.page-site h3 {
	font-size: 17px;
	font-weight: 500;
	margin-top: 60px;
}

.page-site ul {
	list-style: none;
	padding: 0;
	margin: 50px 0;
}

.page-site li {
	margin: 10px 0;
}

.page-site p {
	margin-bottom: 40px;
}

/**射水市観光協会について**/
.pdf-list  {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
}

.pdf-list li {
	width: 49%;
	margin: 15px 0;
	position: relative;
}

.white-btn {
	display: block;
	box-sizing: border-box;
	width: 100%;
	position: relative;
	padding: 10px 20px;
	border: 1.5px solid #3C66C4;
	border-radius: 40px;
	font-weight: 500;
	color: #3C66C4;
	text-decoration: none;
}

.white-btn::after{
	content: '';
	display: block;
	position: absolute;
	align-items: center;
	top: 50%;
	right: 15px;
	width: 1.5em;
	height: 1.5em;
	background-image: url("../img/common/btn-blue.svg");
	background-size: cover;
	background-repeat: no-repeat;
	transform: translateY(-50%);
}

.white-btn:hover {
	opacity: .7;
}

.pdf-list li .small,
.page-for-business span.small {
	font-size: 16px;
	font-weight: 300;
}

@media screen and (max-width: 768px) {
	.pdf-list {
		display: block;
		margin: 0 auto;
        max-width: 450px;
	}
	.pdf-list li {
		width: 100%;
		max-width: 450px;
	}
}

/***事業者向け情報***/
.page-for-business h3 {
	position: relative;
	font-size: 22px;
	color: #3C66C4;
	margin: 60px 0 10px;
	padding-left: calc(1em + 10px);
}

.page-for-business ul,
.page-for-business ol {
	padding: 0;
	list-style: none;
}

.page-for-business li {
	margin-bottom: 10px;
}

.parking-wrap {
	background-color: rgb(250 145 0 / .10);
	border-radius: 10px;
	padding: 10px 30px;
}

.parking-wrap h4 {
	color: #FA9100;
}

.parking-wrap ul {
	list-style: initial;
	padding-left: 1.2em;
}

/***よくある質問***/
.page-faq dl {
	background-color: #EBEFF9;
	border-radius: 12px;
}

.page-faq dt {
	position: relative;
	font-size: 20px;
	font-weight: 500;
	padding: 30px 20px 30px 100px;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-faq dt::before {
	content: 'Q.';
	font-size: 30px;
	font-family: "Fugaz One", sans-serif;
	color: #3C66C4;
	position: absolute;
	left: 50px;
	margin: 0;
}


.page-faq dd {
	position: relative;
	padding: 0px 30px 0px 100px;
	margin: 0;
}

.page-faq dd::before {
	content: 'A.';
	font-size: 30px;
	font-family: "Fugaz One", sans-serif;
	color: #FA9100;
	position: absolute;
	top: -7px;
	left: 50px;
	margin: 0;
}

.page-faq dd a {
	display: table;
	margin: 10px 0;
	color: #5A5A5A;
}

.faq-answer {
	padding-bottom: 30px;
}

.b-acc-plus {
  display: inline-block;
  vertical-align: middle;
  color: #3C66C4;
  line-height: 1;
  width: 1.3em;
  height: 0.2em;
  background: currentColor;
  border-radius: 0.2em;
  position: relative;
}

.b-acc-plus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.b-acc-plus.is-minus::before {
  transform: rotate(0deg);
}

.page-faq .b-accordion {
	position: relative;
}

.page-faq .b-acc-btn {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: none;
	border: none;
	cursor: pointer;
}

.page-faq .b-acc-plus {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.page-faq dt {
		margin-left: 30px;
		padding: 20px 45px 20px 20px;
		font-size: 18px;
	}

	.page-faq dt::before {
		margin-left: -62px;
        font-size: 24px;
	}
	
	.page-faq dd {
		padding: 0px 30px 0px 48px;
	}
	
	.page-faq dd::before {
		font-size: 26px;
		top: -3px;
		left: 16px;
	}
}

