@charset "utf-8";

/*共通*******************************************************************/

/*ページ共通********/

/**page-header*********************************/

.page-header {
	width: 100%;
	aspect-ratio: 19 / 4;
	position: relative;
	background-size: cover;
}
.page-ttl {
	position: absolute;
	left: 0;
	bottom: -10px;
	background: #fff;
	padding: 10px 60px 0;
	border-radius: 0 20px 0 0;
}
.page-ttl .jp_ttl {
	line-height: 1.5;
}
.page-ttl .jp_ttl, .page-ttl .en_ttl {
	line-height: 1.5;
}
.page-ttl .sub-ttl{
	font-size: 28px;
}

/**breadcrumbs**/
.breadcrumbs {
	font-size: 12px;
	color: #666;
	padding-top: 10px;
	padding-bottom: 10px;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: flex-end;
}

/************************************
***ページヘッダー
*************************************/
/* .privacy-policy .page-header {
	background: url(../images/privacy.jpg) center;
	background-size: cover;
}

.disclaimer .page-header {
	background: url(../images/discream.jpg) center;
	background-size: cover;
}

.faq .page-header {
	background-image: url(../images/faq_header.jpg);
	background-position: center 30%;
	background-size: cover;
}

.links .page-header {
	background-image: url(../images/links_header.jpg);
	background-position: center;
	background-size: cover;
}

.aboutus .page-header {
	background-image: url(../images/aboutus_header.webp);
	background-position: center;
	background-size: cover;
}

.archive.two-column .page-header, .blog .page-header {
	background: url(../images/blog_header.jpg) center;
	background-size: cover;
	margin-top: 120px;
}

.post-type-archive-item .page-header {
	background-image: url(../images/reform_header.jpg);
	background-position: 50% 70%;
	background-size: cover;
}

.item-bathroom .page-header {
	background-image: url(../images/bathroom_header.jpg);
	background-position: 50% 49%;
	background-size: cover;
}

.item-washroom .page-header {
	background-image: url(../images/washroom_header.jpg);
	background-position: 50% 50%;
	background-size: cover;
}

.item-toilet .page-header {
	background-image: url(../images/toilet_header.jpg);
	background-position: 50% 55%;
	background-size: cover;
}

.post-type-archive-maker-plan .page-header {
	background-image: url(../images/maker-plan_header.jpg);
	background-position: center top;
	background-size: cover;
} */


@media(max-width:1600px){
	.page-header {
		aspect-ratio: 8 / 3;
	}

}

@media(max-width:991px){
	.page-ttl {
		padding: 10px 30px 0;
	}

}

@media(max-width:767px){
	.breadcrumbs {
		margin-top: 20px;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.page-header h1 {
		font-size: 24px;
	}
	.page-ttl .en_ttl {
		font-size: 14px;
	}
	.page-ttl {
		padding: 5px 20px 0 15px;
		border-radius: 0 15px 0 0;
		bottom: -20px;
	}
	.page-header {
		aspect-ratio: 16 / 9;
	}
	
}

/**装飾********************************************************/

/**ドットライン**/
.dot_part {
  width: calc(100% + 11px);
  height: 32px;
	overflow: hidden;
	position: relative;
}
.dot_part:before {
	content: "";
	display: block;
  width: calc(100% + 1px);
  height: 100%;
  background-image: url("../images/dot.svg");
  background-repeat: round no-repeat;
  background-position: left center;
  background-size: auto 32px; /* 高さを要素に合わせる（横は自動） */
	position: absolute;
	left: 0;
	top: 0;
}
.dot_part_s {
	width: calc(100% + 8px);
	height: 24px;
}
.dot_part_s:before {
	background-size: auto 24px;
}

@media(max-width:767px){
	.dot_part {
  	width: calc(100% + 8px);
		height: 24px;
	}
	.dot_part:before {
		background-size: auto 24px;
	}
	.dot_part_s {
  	width: calc(100% + 6px);
		height: 18px;
	}
	.dot_part_s:before {
		background-size: auto 18px;
	}
}
/************************************************************/

/* =========================================
   2. 問い合わせフォーム用CSS (完全修正版)
   ========================================= */

.require-note {
	position: relative;
}
.require-note .require {
	position: absolute;
	top: -7px;
	left: -0.8em;
}

/* --- 基本レイアウト (DL/DT/DD) --- */
#mail_form dl {
  display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
  padding-bottom: 30px;
	margin-bottom: 30px;
}
#mail_form dl dt {
  width: 250px;
	padding-top: 8px;
	padding-left: 15px;
	padding-right: 20px;
	box-sizing: border-box;
}
#mail_form dl dd {
  width: calc(100% - 250px); box-sizing: border-box;
}
@media (max-width: 767px) {
  #mail_form dl { 
		display: block; 
		padding-bottom: 20px; 
		margin-bottom: 20px; }
  #mail_form dl dd { 
		width: 100%; 
		padding-left: 0; }
  #mail_form dl dt { 
		width: 100%;
		margin-bottom: 10px;}
}

/* --- フォーム部品共通 --- */
.require { position: relative; }
.require:after {
  content: "*";
	display: inline-block;
	color: #ED1D24;
  position: absolute;
	top: 9px;
	left: 0;
	font-size: 20px;
}
span.require { padding-left: 15px; }

#mail_form input[type="text"],
#mail_form input[type="email"],
#mail_form input[type="tel"],
#mail_form textarea,
#mail_form select.wpcf7-form-control {
    width: 100%; padding: 15px 10px;
    border: 1px solid #808080;
		color: #222;
    font-size: 16px;
		background: #fff;
    box-sizing: border-box;
		border-radius: 2px;
}
input::placeholder, textarea::placeholder { 
	color: #ccc; 
}
.p-postal-code, #reform_zip {
	padding-left: 1.8em !important;
}
.p-postal-code, .dropdown, #reform_zip { 
	width: 100% !important;
	max-width: 260px;
}
@media (max-width: 767px) {
	.dropdown {
		max-width: none;
	}
	.p-postal-code, #reform_zip { 
		max-width: 180px;
	}
}
span.wpcf7-form-control-wrap[data-name="zip"], span.wpcf7-form-control-wrap[data-name="reform_zip"] {
    position: relative; 
}
span.wpcf7-form-control-wrap[data-name="zip"]::before,
span.wpcf7-form-control-wrap[data-name="reform_zip"]::before  {
    content: "〒";
    position: absolute;
    top: 12px;
    left: 10px;               /* 左端からの距離 */
    font-size: 14px;
    color: #333;
    z-index: 10;              /* 入力欄より上に表示 */
    pointer-events: none;     /* クリックを入力欄に透過させる */
}

#mail_form select.wpcf7-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23019FE6' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px; padding-right: 35px; cursor: pointer;
}

/* --- カスタムチェックボックス (CF7標準 & 自作共通) --- */
.wpcf7-list-item { display: block; margin: 0 0 8px 0; }
input[type="checkbox"], input[type="radio"] { display: none; } /* inputは非表示 */

/* CF7標準 */
.wpcf7-list-item-label {
    display: inline-block; position: relative;
    padding-left: 35px; cursor: pointer; line-height: 24px;
}
.wpcf7-list-item-label:before {
    width: 22px; height: 22px; content: ''; position: absolute; left: 0; top: 0;
    background: #fff; border: 1px solid #ccc; border-radius: 3px;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    content: ""; position: absolute;
    width: 12px; height: 6px; top: 6px; left: 5px; transform: rotate(-45deg);
    border-bottom: 3px solid #ED1D24; border-left: 3px solid #ED1D24;
}

/* 自作ラベル (.custom-checkbox-label) 用 */
.custom-checkbox-label { cursor: pointer; display: inline-block; margin-top: 12px; }
.check-text { position: relative; padding-left: 35px; display: inline-block; line-height: 24px; }
.check-text:before {
    content: ''; position: absolute; left: 0; top: 0;
    width: 22px; height: 22px; background: #fff; border: 1px solid #ccc; border-radius: 3px; box-sizing: border-box;
}
.custom-checkbox-label input[type="checkbox"]:checked + .check-text:after {
    content: ""; position: absolute;
    width: 12px; height: 6px; top: 6px; left: 5px; transform: rotate(-45deg);
    border-bottom: 3px solid #ED1D24; border-left: 3px solid #ED1D24;
}

/* -------------------------------------------
   リフォーム詳細エリア（アコーディオン）
   ------------------------------------------- */
.reform-accordion-wrapper {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
  padding-bottom: 30px;
	margin-bottom: 30px;
}
.reform-accordion-wrapper .label {
	width: 250px;
	padding-top: 8px;
	padding-left: 15px;
	box-sizing: border-box;
}
.reform-group-form-area {
  width: calc(100% - 250px); box-sizing: border-box;
}
@media (max-width: 767px) {
  .reform-accordion-wrapper { display: block; padding-bottom: 20px; margin-bottom: 20px; }
  .reform-group-form-area { width: 100%; padding-left: 0; }
  .reform-accordion-wrapper .label { margin-bottom: 10px; }
}


.reform-accordion-wrapper { width: 100%; margin-bottom: 30px; }
.reform-header label {
    font-weight: 400; font-size: 16px; cursor: pointer; display: inline-block;
}
.reform-header input[type="checkbox"] + span { padding-left: 35px; position: relative; display: inline-block; }
.reform-header input[type="checkbox"] + span:before {
    width: 22px; height: 22px; content: ''; position: absolute; left: 0; top: 0;
    background: #fff; border: 1px solid #ccc; border-radius: 3px;
}
.reform-header input[type="checkbox"]:checked + span:after {
    content: ""; position: absolute;
    width: 12px; height: 6px; top: 6px; left: 5px; transform: rotate(-45deg);
    border-bottom: 3px solid #ED1D24; border-left: 3px solid #ED1D24;
}

/* 詳細パネル */
.reform-detail-area {
    display: none; /* 初期非表示 */
    margin-top: 10px;
		margin-bottom: 30px;
    border: 1px solid #707070; 
		border-radius: 5px;
}
.detail-inner { padding: 20px; }
.detail-title {
		display: inline-block;
    font-size: 15px;
		font-weight: bold; 
    background: #64B4C3; 
		color: #fff; /* 青背景で見出しっぽく */
    padding: 10px; 
		border-radius: 4px; 
		margin-bottom: 15px;
}
.desc-text { font-size: 15px; margin-bottom: 20px; }

.sub-toggle-wrapper {
	padding-left: 1em;
}

/* レイアウト */
.flex-row { display: flex; justify-content: space-between; flex-wrap: wrap; }
.col-input { width: 48%; }
.col-image { width: 48%; text-align: center; }
.col-image img { max-width: 100%; height: auto; }

.input-line { 
	display: flex; 
	align-items: center; 
	margin-bottom: 10px;
	column-gap: 7px;
}
.unit-label {  
	font-weight: 600; 
	font-size: 14px; 
}
#area-bath .unit-label {
	width: 60px;
}
#area-wash .unit-label {
	width: 100px;
}
#area-toilet .unit-label {
	width: 80px;
}
.input-line .wpcf7-form-control-wrap {
	flex: 1;
}
/* .short-input { width: 80px !important; padding: 5px !important; margin: 0 5px; } */

.img-select-row, .check-grid-row { 
	display: flex;
	flex-wrap: wrap;
	padding-left: 1em;
}
.img-select-row {
	justify-content: space-between;
}
.img-item { 
	margin-right: 15px; 
	margin-bottom: 10px; 
	text-align: center; 
	cursor: pointer; 
	font-size: 12px; }
.check-item { margin-right: 15px; 
	margin-bottom: 5px; cursor: 
	pointer; }

/* 縦並びの画像選択肢 (画像上・チェック下) */
.img-item.vertical {
    display: flex; 
		flex-direction: column; 
		align-items: center;
		row-gap: 10px;
}
.img-item {  
	width: 22%; 
	margin-bottom: 5px;  
 }

.block-section { margin-top: 25px; border-top: 1px dotted #ddd; padding-top: 15px; }
.sub-label { font-weight: 600; margin-bottom: 10px; display: block; }

@media screen and (max-width: 768px) {
    .col-input, .col-image { width: 100%; }
    .col-image { margin-top: 20px; }
    .img-item { width: 45%; margin-right: 0; margin: 0 2% 10px; }
}
@media screen and (max-width: 500px) {
	.check-grid-row {
		flex-direction: column;
	}
}

/* -------------------------------------------
   「知ったきっかけ」エリア
   ------------------------------------------- */
.source-item {
	margin-bottom: 15px;
}
.source-input-area {
	display: none;
	margin-top: 10px;
	margin-left: 35px; 
}
.input-caption { 
	display: inline-block; 
	margin-right: 10px; font-size: 14px; 
}
input.full-width { 
	width: 70% !important; 
	max-width: 400px; 
}
@media screen and (max-width: 767px) {
    .source-input-area { 
			margin-left: 0; 
		}
    input.full-width { 
			width: 100% !important; 
		}
		.input-caption {
			display: block;
			width: 100%;
		}
		.dammy_space {
			display: none;
		}
}

/* =========================================
   画像アップロードボタンのカスタマイズ
   ========================================= */

/* 各行のレイアウト */
.file-upload-row {
    display: flex;
    align-items: center;
}
.mb-15 { margin-bottom: 15px; }

/* 「画像1」などのラベル */
.file-num-label {
    font-weight: 600;
    margin-right: 20px;
    width: 50px; /* 幅を揃える */
}

/* ボタンの外枠（ここをデザインする） */
.custom-file-btn {
    position: relative;
    display: inline-block;
    width: 250px;           /* ボタンの横幅（画像に合わせて調整） */
    height: 45px;           /* ボタンの高さ */
    border: 1px solid #999; /* 枠線の色 */
    border-radius: 8px;     /* 角丸の強さ */
    background: #fff;
    cursor: pointer;
    transition: background 0.3s;
    
    /* 中の文字を中央揃え */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ホバー時のアクション */
.custom-file-btn:hover {
    background-color: #f0f0f0;
}

/* デフォルトのファイル入力を透明にして上に被せる（重要） */
.file-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;           /* 透明にする */
    cursor: pointer;
    z-index: 2;           /* 文字より手前に配置 */
}

/* ボタンの中の文字（ファイルを選択 / ファイル名） */
.file-btn-text {
    font-size: 14px;
    color: #333;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 長いファイル名は省略 */
    padding: 0 10px;
    width: 100%;
    text-align: center;
}

/* リセット（×）ボタン */
.file-reset-btn {
    margin-left: 10px;       /* ボタンとの間隔 */
    cursor: pointer;
    color: #999;             /* 通常時の色（グレー） */
    font-size: 24px;         /* ×の大きさ */
    font-weight: bold;
    line-height: 1;
    display: none;           /* 最初は隠しておく */
    transition: color 0.2s;
}

/* マウスを乗せた時に赤くする */
.file-reset-btn:hover {
    color: #cc0000;
}

/* ファイルアップロードのエラー表示調整 
***********************************/
/* 1. CF7のラッパーを無効化（基準点にしない） */
.custom-file-btn .wpcf7-form-control-wrap {
    position: static !important; /* これが重要：親のボタンを基準にする */
    display: inline !important;
    width: auto !important;
    height: auto !important;
}

/* ２. エラーメッセージをボタンの下に配置する */
.custom-file-btn .wpcf7-not-valid-tip {
    position: absolute;  /* 絶対配置でボタンから切り離す */
    top: 100% !important;           /* ボタンの真下に配置 */
    left: 0;
    width: 250px;        /* ボタンの幅に合わせる（または auto） */
    margin-top: 5px;     /* 少し隙間を空ける */
    font-size: 12px;     /* 文字サイズ調整 */
    color: #dc3232;      /* 赤色 */
    line-height: 1.4;    /* 行間 */
    font-weight: normal; /* 太字解除 */
    z-index: 10;
    text-align: center;    /* 左寄せ */
    white-space: normal; /* 長い場合は折り返す */
}

/* ３. エラーが出ている時は、行の間隔を少し広げる */
/* （エラー文が下の行に被らないようにするため） */
.file-upload-row:has(.wpcf7-not-valid-tip) {
    margin-bottom: 35px; /* 通常15px + エラー文の分 */
}

/* ※ :has が効かない古いブラウザ向けの保険（余白を常に少し広めにする案） */
/* .file-upload-row { margin-bottom: 25px; } */





/* その他共通 ****************************************************************/

.file-row input[type="file"] { border: none !important; padding: 10px 0 !important; }
#mail_form .rule {
  padding: 20px; border: 1px solid #ccc; background: #fff;
  height: 200px; overflow-y: scroll; border-radius: 4px;
}
.check-disabled { opacity: 0.5; pointer-events: none; transition: .3s; }
.check-disabled.is-active { opacity: 1; pointer-events: auto; }

/* 送信ボタン */
#mail_form input[type="submit"], #confirm_button, #back_button {
  display: block; 
	width: 280px; 
	max-width: 100%; 
	height: 60px;
  border-radius: 30px; 
	background: #fff; 
	font-size: 18px; 
	font-weight: 700; 
	letter-spacing: 0.1em; 
	transition: all .3s; 
	cursor: pointer;
}
#mail_form input[type="submit"], #confirm_button {
	border: 2px solid #005AB7;
  color: #005AB7; 
}
#back_button {
	border: 2px solid #e95d08;
  color: #e95d08; 
}

#confirm_button {
	margin: 60px auto 0;
}
#form_submit_area {
	display: flex;
	justify-content: center;
	gap: 20px;
}

@media(min-width:768px){
    #mail_form input[type="submit"]:hover, #confirm_button:hover {
        background: #005AB7; 
				color: #fff; 
				transform: translateY(-2px); 
				box-shadow: 0 5px 15px rgba(0,90,183,0.2);
    }
		#back_button:hover {
        background: #e95d08; 
				color: #fff; 
				transform: translateY(-2px); 
				box-shadow: 0 5px 15px rgba(0,90,183,0.2);
    }
}

/* --- 擬似確認画面用スタイル（最終統合版） --- */

/* 1. 入力要素を「ただの文字」に見せる */
#mail_form.confirm-mode .wpcf7-form-control:not([type="submit"]) {
    pointer-events: none;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    padding-left: 0 !important;
    color: #000 !important;
    font-weight: 600;
}

/* 2. テキストエリアの余白・高さ調整 */
/* 確認画面（confirm-modeあり）の時は、JSで指定した高さを強制する */
#mail_form.confirm-mode textarea.wpcf7-form-control {
    line-height: 1.6 !important;
    min-height: 1.6em !important;
    overflow: hidden !important; /* スクロールバーを消す */
    resize: none !important;
    padding: 0 !important;
    margin-top: 5px;
    height: auto !important; /* rows指定を無視してJSの計算結果を優先 */
}

/* 通常モード（confirm-modeなし）の時は、rows属性による高さを生かす */
#mail_form:not(.confirm-mode) textarea.wpcf7-form-control {
    height: auto; 
}

/* 3. 郵便番号の調整 */
#mail_form.confirm-mode span.wpcf7-form-control-wrap[data-name="reform_zip"],
#mail_form.confirm-mode span.wpcf7-form-control-wrap[data-name="zip"]{
  padding-left: 1.8em;
}

/* 4. プレースホルダーを隠す */
#mail_form.confirm-mode ::-webkit-input-placeholder { color: transparent !important; }
#mail_form.confirm-mode :-ms-input-placeholder { color: transparent !important; }
#mail_form.confirm-mode ::-moz-placeholder { color: transparent !important; }
#mail_form.confirm-mode :placeholder-shown { color: transparent !important; }

/* 4. キャプションを隠す */
#mail_form.confirm-mode .form-caption {
	display: none;
}

/* 5. 入力内容確認タイトル */
.confirm-ttl {
	display: none;
}
#mail_form.confirm-mode .confirm-ttl {
	display: block;
}

/* --- 非選択項目の非表示とレイアウト調整 --- */

/* 1. チェックがない項目を隠す */
#mail_form.confirm-mode .not-selected {
    display: none !important;
}

/* 2. 画像の横並び崩れ防止（4カラム死守） */
#mail_form.confirm-mode .img-select-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
}

#mail_form.confirm-mode .img-item:not(.not-selected) {
    display: inline-block !important;
    vertical-align: top;
    /* 25%から余白分を引いて、4枚目が落ちるのを防ぐ */
    width: 23% !important; 
    margin-right: 2% !important;
    margin-bottom: 15px !important;
    box-sizing: border-box !important;
}

/* 3. 梁型などの枠：中身があれば表示 */
#mail_form.confirm-mode .sub-detail-box {
    display: block !important;
}







/***************************************************endフォーム**/


/************************************************************
個人情報保護方針
************************************************************/

/* セクション間の余白 */
.privacy-policy__item {
  margin-bottom: 2em;
}

/* お問い合わせエリアの囲みデザイン例 */
.privacy-policy__contact {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  margin-top: 40px;
}
.privacy-policy__title {
	font-weight: 600;
}

/***************************************************個人情報保護方針**/


.table li {
	display: flex;
}
.table_item {
	padding: 15px 10px;
	color: #812503;
	font-weight: 500;
	border-bottom: 1px solid #812503;
	width: 20%;
}
.table_content {
	padding: 15px 10px 15px 30px;
	border-bottom: 1px solid #ddd;
	width: 80%;
}
.table li:first-child .table_item {
	border-top:1px solid #812503;
}
.table li:first-child .table_content {
	border-top:1px solid #ddd;
}

.gmap{
    position : relative;
    height : 0;
    padding-bottom : 40%;
    overflow : hidden;
}
 
.gmap iframe,
.gmap object,
.gmap embed{
    position : absolute;
    top : 0;
    left : 0;
    width : 100%;
    height : 100%;
}

@media (max-width:767px) {
	.table_item {
		padding: 10px 0;
		width: 80px;
		font-size: 13px;}
	.table_content {
		padding: 10px 0 10px 10px;
		width: calc(100% - 80px);
		font-size: 13px;}
	.gmap{
		padding-bottom : 60%; }
	}



/************************************************************
Q&A
************************************************************/

/* ===== FAQ レイアウトのベース ===== */

.faq-list li {
	padding: 23px 0;
	border-bottom: 1px dashed #ccc;
}
.faq-list li:first-child {
	border-top: 1px dashed #ccc;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  display: block;
  padding: 16px 40px 16px 90px; /* 左にアイコン分の余白 */
  cursor: pointer;
  font-size: 24px;
	font-weight: 700;
  line-height: 1.7;
  position: relative;
}


/* Qアイコン（左の丸） */
.faq-toggle::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0091d4;
  color: #fff;
  font-size: 32px;
	font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 右端の開閉矢印 */
.faq-toggle::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #64B4C3;
  border-right: 3px solid #64B4C3;
  transform: translateY(-50%) rotate(135deg); /* ▼風 */
  transition: transform .2s ease;
}

/* open時（▲風に反転） */
.faq-item.open .faq-toggle::after {
  transform: translateY(-50%) rotate(-45deg);
}

/* ===== A部分（薄い水色のボックス） ===== */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-a__inner {
  position: relative;
  margin-top: 8px;
  padding: 30px 24px 30px 90px; /* 左にAアイコン分の余白 */
  background: #F0F7F8;
  border-radius: 12px;
  color: #333;
  line-height: 1.7;
  font-size: 18px;
	font-weight: 500;
}

/* Aアイコン */
.faq-a__inner::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #E95D08;
  color: #fff;
  font-size: 32px;
	font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

#reform-faq {
	background-color: #DDF2F6;
}

.maker-hp-link-ttl span {
	background: #F0F7F8;
	padding: 0 10px;
	position: relative;
	z-index: 1;
}
.maker-hp-link-ttl {
	position: relative;
}
.maker-hp-link-ttl:before {
	content: "";
	display: block;
	width: 100%;
	border-top: 1px solid #3B8491;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
}

.maker-hp-link-logo {
	max-width: 210px;
}

.maker-hp-link {
	row-gap: 20px;
}

.maker-links a {
	display: inline-block;
	position: relative;
	padding-left: 26px;
}
.maker-links a:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/arrow_01.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 4px;
	left: 0;
}
.maker-links {
	row-gap: 10px;
}

@media(max-width:767px){
	.faq-list li {
		padding: 10px 0;
	}
	.faq-toggle {
  	padding: 10px 33px 10px 60px; /* 左にアイコン分の余白 */
  	font-size: 18px;
		line-height: 1.5;
	}
	.faq-toggle::before {
  	left: 10px;
  	width: 40px;
  	height: 40px;
  	font-size: 24px;
	}
	.faq-toggle::after {
  	right: 10px;
	}
	.faq-a__inner {
  	padding: 20px 15px 20px 60px; /* 左にAアイコン分の余白 */
  	border-radius: 12px;
  	font-size: 15px;
	}
	.faq-a__inner::before {
  	left: 10px;
  	top: 10px;
  	width: 40px;
  	height: 40px;
  	font-size: 24px;
	}
}

@media(max-width:500px){
	.maker-hp-link {
		flex-direction: column;
		align-items: center;
	}
	.maker-hp-link .per-25 {
		width: auto;
	}
}





/************************************************************
リンク集
************************************************************/

#link-collection ul li {
	width: 50%;
	border-bottom: 1px solid #ddd;
	padding: 30px 0;
}
.link-collection-inner {
	width: 98%;
	max-width: 480px;
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}
#link-collection ul li:nth-child(even) .link-collection-inner{
	margin-left: auto;
	margin-right: 0;
}
.link-collection-inner h2 {
	height: 56px;
	display: flex;
	align-items: center;
}
.link-collection-inner a {
	font-size: 20px;
	font-weight: 500;
	transition: .3s;
}

@media(min-width:768px){
	.link-collection-inner a:hover {
		text-decoration: underline;
		opacity: 0.7;
	}
}

@media(max-width:767px){
	#link-collection ul li {
		width: 100%;
		padding: 20px 0;
	}
	.link-collection-inner {
		width: 100%;
		max-width: none;
	}
	.link-collection-inner a {
		font-size: 16px;
	}
	.link-collection-inner {
		row-gap: 10px;
	}
}


/************************************************************
会社概要
************************************************************/

#aboutus_01 .flex {
	column-gap: 30px;
}
#aboutus_01 .text_area {
	flex: 1;
}
#aboutus_01 h3 {
	display: inline-block;
	position: relative;
	padding: 0 5px;
	line-height: 1.5;
	margin-bottom: 20px;
}
#aboutus_01 h3:after {
	content: "";
  display: block;
  width: 100%;
  height: 20px;
  border-radius: 10px;
  background: #FEE30D;
  position: absolute;
  left: 0;
	bottom: -3px;
  z-index: -1;
}


#aboutus_02 ul li {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0;
	border-bottom: dashed 1px #ddd;
}
#aboutus_02 ul li:first-child {
	border-top: dashed 1px #ddd;
}
#aboutus_02 .label {
	width: 30%;
	padding: 0 10px;
}
#aboutus_02 .contents {
	width: 70%;
	padding: 0 10px;
}
#aboutus_02 .contents.license .flex-between {
	max-width: 450px;
}


.sp_br {
	display: none;
}

@media(max-width:767px){
	#aboutus_01 .text_area {
		flex: initial;
		width: 100%;
	}
	#aboutus_01 img {
		width: 50px;
		height: auto;
		display: block;
		margin-left: auto;
		margin-right:0;
		margin-bottom: -30px;
		position: relative;
		z-index: 1;
	}
	#aboutus_01 h3:after {
		content: none;
	}
	#aboutus_01 h3 {
		display: block;
		padding: 5px 50px 5px 10px;
		border-radius: 3px;
		background: #FEE30D;
		font-size: 18px;
	}
	#aboutus_01 h2 {
		text-align: center;
		line-height: 1.5;
	}
	.sp_br {
		display: inline;
	}

	#aboutus_02 .label {
		width: 100%;
		padding: 3px 10px;
		color: #fff;
		background: #3B8491;
		font-weight: 700;
		border-radius: 3px
	}
	#aboutus_02 .contents {
		width: 100%;
		padding: 10px 0 10px 7px;
		font-size: 14px;
	}
	#aboutus_02 ul li, #aboutus_02 ul li:first-child {
		border: none;
		padding: 0;
		margin-bottom: 10px;
	}
}



