@charset "UTF-8";

@media only screen and (min-width: 769px) {
}
@media only screen and (max-width: 768px) {
}
/*--------------------------------------
  基本スタイル
--------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
	padding: 0;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.main {
	width: 100%;
}

/* リスト共通リセット */
dl,
ol,
ul {
	padding: 0;
	margin: 0;
}

dl li,
ol li,
ul li {
	list-style: none;
}

/*--------------------------------------
  レスポンシブ表示制御
--------------------------------------*/
@media only screen and (min-width: 769px) {
	.pcNone,
	.display_sp {
		display: none !important;
	}
}

@media only screen and (max-width: 768px) {
	.display_pc {
		display: none !important;
	}
	h1 {
		font-size: 1em;
	}
}

/*--------------------------------------
  ヘッダー
--------------------------------------*/
header {
	position: fixed; /* absolute → fixed に変更 */
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10; /* トップ画像より前面に表示 */
	background: rgba(255, 255, 255, 0.7); /* 半透明背景（不要なら削除） */
}

header .headBox {
	width: 100%;
	max-width: 1200px;
	padding: 20px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* ボタン共通スタイル */
.btn {
	display: inline-block;
	padding: 5px;
	border-radius: 5px;
	text-align: center;
}

/* メールボタン */
a.btn_mail {
	width: 150px;
}

a.btn_mail img {
	width: 100%;
}

/* 右側トップ要素 */
.topR {
	width: 44%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media only screen and (max-width: 768px) {
	header .headBox img {
		width: 100%;
	}
	
	.topL {
		width: 30%;
	}
}

/*--------------------------------------
  トップイメージ
--------------------------------------*/
.topImg {
	position: relative;
	text-align: center;
}

.img-wrapper {
	position: relative;
}

.topText {
	position: absolute;
	top: 150px;				     /* 上から */
	left: 50%;				     /* 横中央基準 */
	transform: translateX(-50%); /* 横幅の半分ずらして中央揃え */
}

/* 見出し帯 */
.obi {
	background: #ffd5e7;
	padding: 15px 0;
	text-align: center;
}
.obi h2 span {
	color: #FF0004;
	font-size: 48px;
	font-weight: bold;
}
.maker {
	text-align: center;
	padding: 2em 0;
	color: #fff;
	border-bottom: 1px solid #ffd5e7;
}
.maker h2 {
	background: #ff61a5;
}
.maker ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	width: 50%;
	margin: 1em auto 0;
}
.maker ul li img {
	width: 100%;
}

@media only screen and (max-width: 768px) {
	picture img {
		width: 100%;
	}
	.topText {
		position: absolute;
		width: 100%;
		top: 80px;
		left: 50%;
		transform: translateX(-50%);
	}
	.obi h2 span {
		font-size: 28px;
	}
	.obi img {
		width: 90%;
	}
	.telBannaer_sp {
		padding: 1em 2em;
	}
	.telBannaer_sp img {
		width: 100%;
	}
	.maker ul {
		width: 90%;
	}
	.maker ul li {
		width: calc(100% / 3);
	}
}

/*--------------------------------------
  自動簡易見積り
--------------------------------------*/
.estimate {
	padding-top: 50px;
}

.installationList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.installationList li {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	background: #fff;
	width: 49%;
	gap: 10px;
	padding: 10px;
	font-size: 14px;
}

.installationList li div {
	width: 30%;
}

.installationList li img {
	width: 100%;
}

.installationList li p {
	width: 70%;
	text-align: justify;
	margin: 0;
}

/* フォーム全体 */
#estimateForm {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background-color: #ffeff7;
	padding: 40px;
	max-width: 900px;
	margin: 0 auto;
	border: 4px solid #ff61a5;
	border-radius: 20px;
}

/* フィールドセット */
#estimateForm fieldset {
	border: none;
	padding: 0 0 1em;
	margin: 0;
	border-bottom: 1px solid #ff61a5;
}

/* レジェンド */
#estimateForm legend {
	font-weight: bold;
	font-size: 18px;
}

/* ラベルスタイル（ボタン風） */
#estimateForm label {
	display: inline-block;
	padding: 10px 15px;
	margin: 5px 5px 0 0;
	border: 2px solid #ff61a5;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: #fff;
	user-select: none;
}

#estimateForm label:hover {
	background-color: #ffe0ef;
}

/* 選択中のラベル */
#estimateForm label.active {
	background-color: #ff61a5;
	color: #fff;
	border-color: #ff61a5;
}

/* ラジオボタン非表示 */
#estimateForm input[type="radio"] {
	display: none;
}

#estimateForm .notice {
	font-size: 14px;
	margin: .5em 0 0;
}

/* 金額表示 */
#price {
	background-color: #fff;
	font-size: 24px;
	font-weight: bold;
	margin: 20px 0;
	padding: 20px;
	border-radius: 20px;
	text-align: center;
}
.result p {
	margin: 0;
}
.result strong {
	font-size: 24px;
	font-weight: bold;
}
.resultPrice {
	font-size: 36px;
	font-weight: bold;
	color: #ff61a5;
}
.resultWarranty {
	font-size: 20px;
	font-weight: bold;
	color: #ff61a5;
}
.resultButton {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 50%;
	padding: 1em 0;
	margin: 0 auto;
}
.resultButton a {
	width: 45%;
}
/* 電話ボタン */
.resultTel {
  background-color: #ff6666; /* 好きな色に変更してください */
  padding: 10px;
  border: none;
  border-radius: 8px; /* 角丸にしたい場合 */
  cursor: pointer;
}
/* メールボタン */
.resultMail {
  background-color: #66aaff; /* 好きな色に変更してください */
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
/* ボタン内の画像を調整 */
.resultTel img,
.resultMail img {
  display: block;
  max-width: 100%;
  height: auto;
}

.redNotice {
	color: #FF0004;
}

@media only screen and (max-width: 768px) {
	.estimate {
		padding-top: 0;
	}
	.installationList {
		gap: 10px;
	}
	.installationList li {
		width: 100%;
	}
	#estimateForm {
		padding: 20px;
		max-width: 900px;
		margin: 0 auto;
		border: 3px solid #ff61a5;
	}
	#estimateForm label {
		padding: 5px 10px;
		margin: 5px 0 0;
	}
	#price {
		font-size: 20px;
		font-weight: inherit;
		margin: 20px 0 0;
		padding: 10px;          /* 上下の余白を確保 */
		border-radius: 15px;
	}
	.result p {
		font-size: 14px;
	}
	.result strong {
		font-size: 16px;
	}
	.resultPrice {
		font-size: 24px;
	}
	.resultWarranty {
		font-size: 16px;
	}
	.resultButton {
		width: 100%;
		padding: 1em 0 0;
		margin: 0 auto;
	}
	.resultButton a {
		width: 48%;
	}
}

/*--------------------------------------
  コンテンツ
--------------------------------------*/
.contents,
.shopContents,
.reassurance {
	margin: 1em auto 100px;
}

.contents {
	max-width: 1200px;
}

.shopContents {
	max-width: 1000px;
}

.reassurance {
	max-width: 900px;
}

@media only screen and (max-width: 768px) {
	.contents,
	.shopContents,
	.reassurance {
		margin: 1em 1em 4em;
	}
}

/*--------------------------------------
  代表機種
--------------------------------------*/
.itemList {
    display: flex;
    gap: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    border: 4px solid #ff61a5;
    border-radius: 20px;
}

.itemList li {
	width: calc(100% / 3);
}

.itemList li img {
	width: 100%;
}

@media only screen and (max-width: 768px) {
	.itemList {
		flex-wrap: wrap;
	}
	.itemList li {
		width: 100%;
		margin: 0 auto;
	}
	.itemList li img {
		width: 100%;
		display: block;
	}

}

/*--------------------------------------
  補助金
--------------------------------------*/
.subsidy {
	border: 3px solid #ff61a5;
	border-radius: 10px;
	padding: 0;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
}

.subsidy h2 {
	background: #ff61a5;
	color: #fff;
	font-size: 40px;
	margin: 0;
}

.subsidy img {
	padding: 30px 1em;
}

.subsidy p span {
	color: #ff61a5;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	.subsidy h2 {
		font-size: 20px;
	}
	.subsidyLimit {
		font-size: 14px;
		margin: 1em;
	}
}

/*--------------------------------------
  タイトル共通
--------------------------------------*/
.estimate h2,
.item h2,
.voice h2,
.example h2,
.shopInner h3,
.worry h2,
.reassurance h2,
.license h2,
.flow h2,
.areaWrap H2,
.reviewWrap h2,
.contact h2,
.qa h2,
.prTx h2 {
	font-size: 36px;
	text-align: center;
	position: relative;
}

.estimate h2::after,
.item h2::after,
.voice h2::after,
.example h2::after,
.shopInner h3::after,
.worry h2::after,
.reassurance h2::after,
.license h2::after,
.flow h2::after,
.areaWrap H2::after,
.reviewWrap H2::after,
.contact h2::after,
.qa h2::after,
.prTx h2::after {
	content: "";
	display: block;
	width: 120px;
	height: 5px;
	background-color: #ff61a5;
	margin: 0 auto 1em;
	border-radius: 9999px;
}

@media only screen and (max-width: 768px) {
	.estimate h2,
	.item h2,
	.voice h2,
	.example h2,
	.shopInner h3,
	.worry h2,
	.reassurance h2,
	.license h2,
	.flow h2,
	.areaWrap h2,
	.reviewWrap H2,
	.contact h2,
	.qa h2,
	.prTx h2 {
		font-size: 24px;
	}
}

/*--------------------------------------
  店舗・ショールーム
--------------------------------------*/
.shopContainer {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.shopContent {
	width: 63%;
}

.shopImage {
	max-width: 350px;
	box-sizing: border-box;
}

.shopImage img {
	max-width: 100%;
	height: auto;
}

.shopTitle,
.shopText {
	margin-bottom: 10px;
}

.shopTitle {
	font-size: 20px;
	font-weight: bold;
}

.shopText {
	font-size: 18px;
	text-align: justify;
	margin-left: 1em;
	margin-bottom: 0;
}

.shopText address,
.shopList li dl dd address {
	margin-bottom: 10px;
}

.shopList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.shopList li {
	width: 48%;
	text-align: left;
	padding: 0 20px;
	border-left: 3px solid #ff61a5;
	margin-left: 0;
}

.shopList li dl dt {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.shopList li dl dd {
	margin: 0;
}

@media only screen and (max-width: 768px) {
	.shopContainer {
        display: inherit;
        width: 90%;
        margin: 0 auto 10%;
    }
	.shopContent {
		width: 100%;
	}
	.shopTitle {
        font-size: 18px;
        text-align: center;
    }
	.shopText {
		font-size: 14px;
		margin-bottom: 0;
		margin-inline-start: 0;
	}
	.shopList li {
		width: 100%;
		text-align: left;
		padding: 0 10px;
		border-left: 3px solid #ff61a5;
		margin-left: 0;
	}
	.shopList li dl dt {
		font-size: 16px;
	}
	.shopList li dl dd {
		font-size: 14px;
	}
}

/*--------------------------------------
  問い合わせバナー
--------------------------------------*/
.form {
	margin-bottom: 5em;
}

.formBanner {
	background: url(../images/formBg.png) no-repeat top center;
	background-size: cover;
	max-width: 1200px;
	margin: 0 auto;
	height: 424px;
}

.formInner {
	width: 90%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.formL {
	width: 40%;
}

.formL img {
	width: 100%;
}

.formLInner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 1em auto 0;
}

.formL a {
	display: block;
	width: 48%;
}

@media only screen and (max-width: 768px) {
	.form {
		margin: 1em 1em 4em;
	}
	.formBanner {
		background: url(../images/formBg.png) no-repeat top right;
		background-size: cover;
		margin: 0 auto;
		height: auto;

	  /* 高さを比率で管理（例: 16:9） */
	  aspect-ratio: 150 / 53;
	}
	.formInner {
		width: 100%;
		height: 130%;
	}
	.formL {
		width: 55%;
		margin: 0.5em 1em;
	}
}

/*--------------------------------------
  ボタン共通グラデーションアニメーション
--------------------------------------*/
a.btn_tel, button.telBtn {
	background: linear-gradient(-45deg, #3978e5, #27c8b7, #79EBD8, #3978e5);
}

a.btn_mail, button.mailBtn {
	background: linear-gradient(-45deg, #ff61a5, #FF9900, #FFCC00, #ff61a5);
}

a.btn_line, button.lineBtn {
	background: linear-gradient(-45deg, #06c755, #67f50a, #f5f10a, #06c755);
}
a.btn_tel,
a.btn_mail,
a.btn_line,
button.telBtn,
button.mailBtn,
button.lineBtn {
	background-size: 800% 400%;
	padding: 1em 2em;
	display: inline-block;
	border: none;
	border-radius: 10px;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	transition: all 0.5s ease-in-out;
	animation: gradient 10s infinite cubic-bezier(.62, .28, .23, .99) both;
}

a.btn_mail {
	padding: 1em 1em; /* btn_mailのみ左右1em */
}

/* ホバー・アクティブ時 */
a.btn_mail:hover,
button.telBtn:hover,
button.mailBtn:hover,
button.lineBtn:hover {
	animation: gradient 3s infinite;
	transform: scale(1.05);
}

a.btn_mail:active,
button.telBtn:active,
button.mailBtn:active,
button.lineBtn:active {
	animation: gradient 3s infinite;
	transform: scale(0.8);
}

@keyframes gradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@media only screen and (max-width: 768px) {
}

/*--------------------------------------
  心配
--------------------------------------*/
.worry img {
	width: 100%;
}

@media only screen and (max-width: 768px) {
}

/*--------------------------------------
  安心
--------------------------------------*/
.reassuranceList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 35px;
}

.reassuranceList li {
	width: 48%;
	height: 450px;
	background-size: contain;
	background-position: center;
}

/* 個別背景画像 */
.reassurance01 { background: url(../images/reassurance01.png) no-repeat center; }
.reassurance02 { background: url(../images/reassurance02.png) no-repeat center; }
.reassurance03 { background: url(../images/reassurance03.png) no-repeat center; }
.reassurance04 { background: url(../images/reassurance04.png) no-repeat center; }

@media only screen and (max-width: 768px) {
	.reassuranceList {
		gap: 10px;
	}
	.reassuranceList li {
		width: 48%;
		height: 200px;
	}
}

/*--------------------------------------
  資格証
--------------------------------------*/
.license {
    max-width: 900px;
}
.license ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin: 1em 0;
}

.license ul.licenseList01 li {
	width: 50%;
}

ul.licenseList02 {
	background: #ffeef5;
	padding: 10px;
}
ul.licenseList03 {
	background: #ffeef5;
	padding: 10px;
}

.license ul li img {
	width: 100%;
}

@media only screen and (max-width: 768px) {
	.license ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
	}
	.license ul.licenseList01 li {
		width: calc(100% / 2.1);
	}
	ul.licenseList02 li {
		width: calc(100% / 3.2);
	}
	ul.licenseList03 li {
		width: calc(100% / 3.2);
	}
}

/*--------------------------------------
  流れ
--------------------------------------*/
.flowContainer {
	display: flex;
	justify-content: space-between;
	padding: 20px 25px;
	border-radius: 15px;
	margin: 0;
}

.flowContent {
	display: block;
	overflow: hidden;
	margin-left: 15px;
	box-sizing: border-box;
	width: 100%;
}

.flowTitle,
.flowText {
	padding-left: 0;
	border: none;
}

.flowTitle {
	margin: 0 0 10px;
	padding: 5px 20px 5px 0;
	font-size: 24px;
	font-weight: bold;
	border-bottom: 3px solid #ff61a5;
}

.flowText {
	margin-bottom: 0;
	margin-left: 20px;
	font-size: 20px;
	text-align: justify;
}

@media only screen and (max-width: 768px) {
	.flowContainer {
		display: flex;
		justify-content: space-between;
		padding: 0 0 25px;
		border-radius: 15px;
		margin: 0;
	}
	.flowImage {
		width: 30%;
	}
	.flowImage img {
		width: 100%;
	}
	dl.flowContent dt {
		width: 35%;
	}
	dl.flowContent dt img {
		width: 100%;
	}
	.flowTitle {
		font-size: 16px;
	}
	.flowText {
		margin-left: 10px;
		font-size: 12px;
	}
}

/*--------------------------------------
  エリア
--------------------------------------*/
.areaTab {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.areaTab li {
	width: 50%;
	text-align: center;
}

.areaTab li a {
	display: block;
	background: #ffbfdb;
	margin: 0 2px;
	padding: 10px 20px;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	border-radius: 10px 10px 0 0;
}

/* liにactiveクラスがついた時の形状 */
.areaTab li.active a {
	background: #ff61a5;
}

/* エリアの表示非表示とアニメーション */
.area {
	display: none;     /* 初期非表示 */
	opacity: 0;	       /* 透過0 */
	background: #fff;
	padding: 50px;
	border: 1px solid #ccc;
}

.area.is-active {
	display: block;
	animation: displayAnime 1s forwards;
}

@keyframes displayAnime {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* エリアコンテンツ */
.areaContainer {
	display: flex;
	justify-content: space-between;
	margin: 0;
}

.areaImage {
	max-width: 400px;
	box-sizing: border-box;
}

.areaImage img {
	max-width: 100%;
	height: auto;
}

.areaContent {
	display: block;
	overflow: hidden;
	margin: 0;
	box-sizing: border-box;
	width: 100%;
}

@media only screen and (min-width: 769px) {
	.areaContent {
		margin-left: 15px;
	}
}

.areaTitle,
.areaText {
	padding-left: 0;
}

.areaTitle h3 {
	font-size: 24px;
	margin: 0 0 10px;
	border-bottom: 1px solid #ccc;
}

.areaText {
	margin-bottom: 0;
	font-size: 20px;
	text-align: justify;
}

/* モバイル対応 */
@media only screen and (max-width: 768px) {
	.areaBox {
		margin-bottom: 10%;
	}

	.areaTab li a {
		padding: 5px 10px;
		font-size: 1em;
		border-radius: 5px 5px 0 0;
	}

	.area {
		padding: 2%;
	}

	.areaImage {
		max-width: inherit;
		width: 45%;
	}

	.areaContent {
		width: 50%;
	}

	.areaTitle h3 {
		margin: 0 0 2%;
		font-size: 1em;
	}

	.areaText {
		font-size: 14px;
		margin-left: 0;
	}
}

/*--------------------------------------
  お問い合わせ
--------------------------------------*/
.contact-box {
	padding: 60px 0 80px;
	margin-bottom: 50px;
	border: 3px solid #ff61a5;
	border-radius: 30px;
}

.contact-box p {
	margin: 0;
}

@media screen and (min-width: 768px) {
	.contact-box {
		padding: 30px;
	}
}

/*--お問い合わせボタン--*/
.toiawaseBtn {
	display: flex;
	flex-flow: wrap;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 50px;
}

ul.toiawaseBtn li {
	width: 55%;
}

ul.toiawaseBtn li img {
	width: 100%;
}

button.telBtn,
button.mailBtn,
button.lineBtn {
	background-size: 800% 400%;
	padding: 1em 2em;
	display: inline-block;
	border: none;
	border-radius: 10px;
	font-size: 17px;
	font-weight: 700;
	color: white;
	transition: all 0.5s ease-in-out;
	animation: gradient 10s infinite cubic-bezier(.62, .28, .23, .99) both;
}

button.telBtn:hover,
button.mailBtn:hover,
button.lineBtn:hover {
	animation: gradient 3s infinite;
	transform: scale(1.05);
}

button.telBtn:active,
button.mailBtn:active,
button.lineBtn:active {
	animation: gradient 3s infinite;
	transform: scale(0.8);
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media only screen and (max-width: 768px) {
	.toiawaseBtn {
		margin-bottom: 5%;
	}

	button.telBtn,
	button.mailBtn,
	button.lineBtn {
		padding: 0.5em;
	}
}

/* お問い合わせ文言 */
@media screen and (min-width: 768px) {
	.contactNotice {
		max-width: 810px;
		width: 81%;
		margin: 0 auto;
	}

	.contactNotice .notes {
		font-size: 14px;
	}
}

.contactNotice .contact-txt {
	font-weight: bold;
	margin-bottom: 0.5em;
}

.contactNotice .contactRed {
	font-weight: bold;
	color: #ff61a5;
}

.contactNotice .notes {
	padding-left: 1em;
}

.formBox {
	background: #FFF;
	padding: 0 50px;
}

.contactForm textarea {
	font-size: 16px;
	padding: 5px 5px 4px;
	width: 68%;
	overflow: auto;
	color: #333;
	line-height: 1.7;
	background: #fbfbfb;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 3px;
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 10%);
	transition: background-color .2s;
	resize: vertical;
}

.contactForm input[type=date],
.contactForm input[type=datetime-local],
.contactForm input[type=datetime],
.contactForm input[type=email],
.contactForm input[type=month],
.contactForm input[type=number],
.contactForm input[type=password],
.contactForm input[type=search],
.contactForm input[type=tel],
.contactForm input[type=text],
.contactForm input[type=time],
.contactForm input[type=url],
.contactForm input[type=week] {
	min-height: 40px;
	padding-right: 8px;
	padding-left: 8px;
	color: #333;
	font-size: 16px;
	line-height: 1.8;
	vertical-align: middle;
	background: #fbfbfb;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 3px;
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 10%);
	transition: background-color .2s;
	-webkit-appearance: none;
}

.contactForm-width-full {
	width: 100%;
}

.formText {
	padding: 0 0 25px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.formList {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 0 3px;
	padding: 0;
	list-style: none;
	background: #F6F6F6;
}

.formList-group {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
	background: #ffeef5;
	border-bottom: 12px solid #fff;
}

.formImg {
	float: left;
	width: 25%;
	height: 100%;
	margin-left: 70%;
	margin-bottom: -30%;
}

.formList-control,
.formList-label {
	display: block;
	width: 100%;
	box-sizing: border-box;
}

.formList-ttl {
	padding: 15px 15px 5px;
	font-weight: 400;
}

@media screen and (min-width: 768px) {
	.formList-control {
		padding: 5px 15px 15px;
	}

	.formList-label {
		padding: 15px 15px 5px;
		vertical-align: top;
	}
}
@media only screen and (max-width: 768px) {
	.formText {
		padding: 0 0 25px;
		font-size: 16px;
		text-align: left;
	}
}

.formRadio {
	position: relative;
	display: inline-block;
	margin-right: 15px;
	cursor: pointer;
	line-height: 1.7;
}

.formRadio input {
	position: absolute;
	margin: 0;
	padding: 0;
	font-size: 100%;
	opacity: 0;
}

input[type=radio],
select {
	cursor: pointer;
}

.radio-input {
	display: none;
}

.radio-input + label {
	padding: 0 0 0 28px;
	position: relative;
	margin-right: 20px;
}

.radio-input + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #D6D6D6;
	background: #fff;
	border-radius: 50%;
}

.radio-input:checked + label::after {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	left: 5px;
	width: 10px;
	height: 10px;
	background: #333;
	border-radius: 50%;
}

.formList-label {
	line-height: 1.5;
}

.formWidth-full {
	width: 100%;
}

.marginBottom-small {
	margin-bottom: 10px !important;
}

::placeholder {
	color: #999;
}

.contact-box input[required]:required,
.contact-box textarea[required]:required {
	background: #fffdeb;
}

.label-required {
	margin: 0 5px;
	padding: 3px 8px;
	color: #fff;
	background: #ED6969;
	border-radius: 15px;
	font-size: 12px;
	vertical-align: text-bottom;
}

@media screen and (min-width: 768px) {
	.label-required {
		margin: 0 10px;
	}
}

.formList-col {
	margin: 0 0 10px;
	padding: 0 5px;
}

.formList-col:last-child {
	margin: 0;
}

.formCol-4 {
	float: left;
	width: 33.33333%;
}

.formCol-8 {
	float: left;
	width: 66.66667%;
}

.privacy-checkbox {
	text-align: center;
	font-weight: bold;
	margin: 0 auto 40px;
}

.privacy-checkbox label {
	text-align: left;
	margin-left: 0.3rem;
}

.form-btn-box {
	text-align: center;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
	cursor: pointer;
	-webkit-appearance: button;
}

.form-btn-box .link-btn {
	position: relative;
	max-width: 230px;
	margin: 0 auto;
}

.form-btn-box .link-btn.right-arrow::before {
	content: '';
	width: 12px;
	height: 12px;
	border: 2px solid;
	border-radius: 2px;
	position: absolute;
	top: 50%;
	border-color: #FFF #FFF transparent transparent;
	transform: translate(0, -50%) rotate(45deg);
	right: 20px;
}

.centerText {
	text-align: center;
	margin: 0;
}

.btn-attention-block-large {
	width: 100%;
	max-width: 230px;
	background: #ff6347;
	color: #fff;
	font-weight: 600;
	line-height: 1.3;
	border: 0;
	display: inline-block;
	padding: 18px 25px;
	text-align: center;
	border-radius: 40px;
	font-size: 16px;
	box-sizing: border-box;
	transition: background-color .25s linear;
}

.form-btn-box .btn-attention-block-large:hover {
	background: #3F9FD3;
}

div#ssl-seal {
	margin-top: 1.5em;
}

div#ssl-seal a {
	color: #000000;
	text-decoration: none;
	font: bold 10px verdana,sans-serif;
	letter-spacing: .5px;
	margin: 0px;
	padding: 0px;
}

.formHide {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}

@media only screen and (max-width: 768px) {
	.contact-box {
		padding: 4%;
		margin-bottom: 10%;
		border-radius: 10px;
	}

	.contactNotice {
		font-size: 1em;
		margin-bottom: 4%;
	}

	.contactNotice .notes {
		padding-left: 0;
		font-size: .8em;
	}

	.formBox {
		padding: 0;
	}

	.formList-group {
		padding: 2%;
	}

	.formList-label {
		line-height: 2;
	}

	.formList-ttl {
		padding: 0;
	}

	.formImg {
		height: auto;
		margin-left: 70%;
		margin-bottom: -35%;
		width: 30%;
	}

	.formCol-4,
	.formCol-8,
	.contactForm .request textarea {
		width: 100%;
	}
}

/*--------------------------------------
  よくある質問
--------------------------------------*/
.accordion-area {
	max-width: 1000px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.accordion-area li {
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Q部分（濃いピンク） */
.accordion-area .title {
	background-color: #ff61a5;
	color: #fff;
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	margin: 0;
	position: relative;
}

.accordion-area .title::after {
	content: "Q";
	position: absolute;
	right: 15px;
	font-size: 18px;
	transition: transform 0.3s;
}

.accordion-area .title.active::after {
	content: "A";
}

/* A部分（薄ピンク） */
.accordion-area .box {
	background-color: #ffe0ef;
	padding: 0 15px; /* 初期は閉じた状態なので上下padding 0 */
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
}

.accordion-area .box.open {
	padding: 15px;
	max-height: 500px; /* 大きめにしておく（中身に合わせて） */
}

.accordion-area .box p {
	margin: 0;
}

@media only screen and (max-width: 768px) {
}

/*--------------------------------------
  フッター
--------------------------------------*/
footer {
	background-color: #ff61a5;
	color: #fff;
	padding: 20px 40px;
	font-family: sans-serif;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	min-height: 120px;
	max-width: 1200px;
	margin: 0 auto;
	gap: 20px;
}

/* 左側 */
.footer-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* 上下に配置 */
}

.footer-left .footer-logo img {
	padding-top: 1em;
	height: auto;
}

.footer-left .footer-privacy a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}

.footer-left .footer-privacy a:hover {
	text-decoration: underline;
}

/* 右側 */
.footer-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* 上下に配置 */
	text-align: right;
}

.footer-right .footer-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
}

.footer-right .footer-phone img {
	height: auto;
}

.footer-right .footer-copy small {
	font-size: 12px;
}

@media only screen and (max-width: 768px) {
	footer {
		padding: 1em;
	}
	.footer-container {
		min-height: 70px;
		gap: 5px;
	}
	.footer-left {
		width: 35%;
	}
	.footer-right {
		width: 55%;
	}
	.footer-left img,
	.footer-right img {
		width: 100%;
	}
	.footer-left .footer-logo img {
		padding-top: 0.2em;
	}
	.footer-left .footer-privacy a {
		color: #fff;
		text-decoration: none;
		font-size: 12px;
	}
}

/*--------------------------------------
  プライバシーポリシー
--------------------------------------*/
.privacy {
		padding-top: 3em;
	}

h1 {
    margin: 0;
}

.page_privacy ol li {
	padding: .5em 0 .5em 1em;
}
.page_privacy ol li:first-child {
	padding: 1em 0 .5em 1em;
}
.page_privacy ol li:last-child {
	padding: .5em 0 1em 1em;
}

.comInfo {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    border: 1px solid #ccc;
    border-bottom: none;
}
.comInfo dt {
    background: #f5f5f5;
    padding: 1em;
    width: 150px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-size: 0.95em;
}
.comInfo dd {
    background: #fff;
    padding: 1em;
	margin: 0;
    width: calc(100% - 150px);
    border-bottom: 1px solid #ccc;
    font-size: 0.95em;
}
.page_privacy p.tR {
    margin: 30px 0 0 0;
    font-size: 0.95em;
    line-height: 140%;
    text-align: right;
}
@media only screen and (max-width: 768px) {
	.headBox {
		padding-left: 1em!important;
	}
	.privacy {
		padding: 1em;
	}
	.privacy h2 {
		font-size: 24px;
	}
}
@media only screen and (max-width: 768px) {
	button.telBtn,
	button.mailBtn,
	button.lineBtn {
        padding: 0.2em;
		border-radius: 5px;
    }
}











@media only screen and (max-width: 768px) {
	.fixMenu_sp {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 999;
		width: 100%;
		background: #ffeef5;
		justify-content: space-between;
		align-items: center;
		gap: 5px;
		padding: 4% 2%;
	}
	.btn_tel, a.btn_tel {
		width: calc(100% / 2);
	}
	 a.btn_mail, a.btn_line {
        width: calc(100% / 4);
	}
	a.btn_tel img, a.btn_mail img, a.btn_line img {
		width: 60px;
	}
	a.btn_tel, a.btn_mail, a.btn_line {
		padding: .5em;
		border-radius: 10px;
	}
}