@charset "utf-8";
/* 
---------------------------------------
リセット
---------------------------------------
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
	margin: 0;
	padding: 0;
}
html {
	height: 100%;
	width: 100%;
	overflow-y: scroll;
}
input, textarea {
	margin: 0;
	padding: 0;
}
img, button {
	border: none;
}
img {
	vertical-align: bottom;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
	font-weight: normal;
}
a:focus {
	outline: none;
}
/*iOSでフォーカス時に画面がズームするのを防ぐ*/
input,
textarea,
select{
  font-size: 16px;
}
/*padding や border に依存しない width, height 指定*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/* 
---------------------------------------
clear
---------------------------------------
*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.clear, .both {
	clear: both;
}
*:first-child+html .clearfix {
	zoom: 1;
} /* IE7 */
.clear_both {
	clear: both
}
/* 
---------------------------------------
link
---------------------------------------
*/
a {/**/
	color: #666;
	text-decoration: underline;
}
a:link {/*未訪問のリンク*/
}
a:visited {/*訪問済みのリンク*/
}
a:hover-- {/*ポイント時のリンク*/
	text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
a:hover{
	transition-duration: 0.5s;
}
a:active {/*選択中のリンク*/
}
a:hover img-- {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
a:hover img.none_alpha {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
footer a,
header a,
#slide a,
#copy a,
#fixed_right_banner a,
#fixed_footer_button a{
	text-decoration: none;
}
/*PCサイトで電話番号リンクさせない*/
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
a[href^="tel:"]:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}

@media screen and (max-width: 1024px) { /* タブレット 縦から */
a[href^="tel:"] {
	pointer-events: auto;
}
}
/* 
---------------------------------------
font-weight
---------------------------------------
*/
.bold {
	font-weight: bold;
}
/*  
---------------------------------------
text_align
---------------------------------------
*/
.alnL {
	text-align: left;
}
.alnC {
	text-align: center;
}
.alnR {
	text-align: right;
}
/* 
---------------------------------------
font-color
---------------------------------------
*/
.font-white {
	color: #fff;
}
.font-red {
	color: #FF0000;
}
/* 
---------------------------------------
float
---------------------------------------
*/
.fL {
	float: left;
}
.fR {
	float: right;
}
/* 
---------------------------------------
h1-h6
---------------------------------------
*/
h1, h2, h3, h4, h5, h6 {
	line-height: 1;
	font-weight: normal;
}
/* 
---------------------------------------
br
---------------------------------------
*/
br.sp {
	display: none;
}
br.pc {
	display: inline-block;
}
@media screen and (max-width: 480px) {
br.sp {
	display: inline-block;
}
	br.pc {
	display: none;
}
}
/*
---------------------------------------
リストマーカー
---------------------------------------
*/
/* ※ */
ul.asterisk {
}
ul.asterisk li:before {
	content: '※';
}
/* (1)(2)・・・*/
ul.parentheses {
	padding-left: 2em;
	text-indent: -2em;
}
ul.parentheses li {
	list-style-type: none;
	list-style-position: inside;
	counter-increment: cnt;
}
ul.parentheses li:before {
	display: marker;
	content: "(" counter(cnt) ") ";
}
/* ①②・・・*/
ul.maru-number {
	counter-reset: myCounter;
}
ul.maru-number li {
	padding-left: 25px;
	text-indent: 0;
	position: relative;
}
ul.maru-number li:before {
	content: counter(myCounter);
	counter-increment: myCounter;
	display: block;
	float: left;
	line-height: 17px;
	margin-left: -25px;
	margin-top: 3px;
	text-align: center;
	height: 18px;
	width: 18px;
	border-radius: 50%;
	border: 1px solid #666;
}
/* 数字*/
ul.decimal {
	list-style-type: decimal;
	list-style-position: inside;
	padding-left: 1em;
	text-indent: -1em;
}
/* ローマ字*/
ul.roman {
	list-style-type: upper-roman;
	list-style-position: inside;
	padding-left: 1em;
	text-indent: -1em;
}
/* 黒丸*/
ul.disc {
	list-style-type: disc;
	list-style-position: inside;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
/*
---------------------------------------
背景色
---------------------------------------
*/
.bg-blue-gray {
background: #eff3f9;
}
/* 
---------------------------------------
body
---------------------------------------
*/
body {
	min-width: 1020px;/* スマホでheader等の背景が伸びないのを防ぐ */
	min-height: 100%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	-webkit-text-size-adjust: 100%;/* 文字サイズを自動調整する機能を無効化 */
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
body {
	min-width: 100%;
}
}
/* 
---------------------------------------
wrapper
---------------------------------------
*/
.wrapper {
	width: 100%;
	background: #C48F43--; /* 仮 */
}
/* 
---------------------------------------
inner：共通（幅100％時のコンテンツ幅）
---------------------------------------
*/
.inner, .inner-tbp, .hd-inner {
	width: 1020px;
	margin: 0 auto;
	background: #E2E7FF--;/* 仮 */
}
.inner, .inner-tbp {
	padding: 0 20px;
}
.inner-tbp {
	padding-top: 110px;
	padding-bottom: 110px;
}
.hd-inner {
	padding: 15px 0;
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
.inner, .inner-tbp, .hd-inner {
	width: 100%;
}
.inner-tbp {
	padding-top: 60px;
	padding-bottom: 60px;
}
.hd-inner {
	padding: 15px;
}
}
@media screen and (max-width: 896px)  {/* スマホ 横から */
.hd-inner {
	padding: 0 0 0 10px;
}
}
/*
---------------------------------------
contents
---------------------------------------
*/
@media screen and (max-width: 896px)  {/* スマホ 横から */
#contents {
	padding-top: 70px;/* header高さ分 */
}
}

/* ↓↓↓↓　ここから　↓↓↓↓ */
/***************************************
お問い合せ：contact.html
***************************************/
#contact-form .details-wp{
	background: #fff;
	padding: 60px;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#contact-form .details-wp{
	padding: 20px;
}
}

#contact-form .detail-list{
	width: 100%;
}
#contact-form .detail-list th{
	width: 30%;
}
#contact-form .detail-list th,
#contact-form .detail-list td{
	padding: 30px 0;
	border-bottom: 1px solid #ccc;
	vertical-align: middle;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#contact-form .detail-list th,
#contact-form .detail-list td{
	display: block;
	width: 100%;
}
#contact-form .detail-list th{
	border-bottom: none;
	padding-bottom: 0;
}
#contact-form .detail-list td{
	padding-top: 10px;
}
}
#contact-form .detail-list ul.matter li{
	margin-bottom: 15px; 
}
#contact-form .detail-list ul.matter li:last-child{
	margin-bottom: 0; 
}
#contact-form .policy{
	text-align: center;
	margin-top: 30px;
}
#contact-form .policy a{
	display: block;
	color: #007bc7;
	margin-bottom: 15px;
}
/* form周り */
#contact-form span.necessary{
	font-size: 12px;
	color: #FF0000;
	vertical-align: super;
	font-weight: bold;
}
#contact-form input,
#contact-form textarea{
	border: 1px solid #ccc;
	padding: 10px;
	background: #f4f4f4;
}
#contact-form input[type=text],
#contact-form input[type=email],
#contact-form input[type=tel],
#contact-form input[type=url],
#contact-form textarea{
	width: 100%;
}
#contact-form input[type=postal-code]{
	width: 10em;
}
@media screen and (max-width: 896px)  {/* スマホ 横から */
#contact-form input[type=text],
#contact-form input[type=email],
#contact-form input[type=tel],
#contact-form input[type=url],
#contact-form textarea{
	width: 100%;
}
}
#contact-form textarea{
	height: 200px;
}
#contact-form input:focus,
#contact-form textarea:focus{
    border:solid 1px #FF0000;
	outline: 0;
}
#contact-form input[type=radio] {
    width: 15px;
    height: 15px;
	margin-right: 10px;
	position: relative;
	top: 2px;
}
#contact-form input[type=checkbox] {
    width: 20px;
    height: 20px;
	margin-right: 10px;
	position: relative;
	top: 2px;
}
/* 確認・リセットボタン */
#contact-form .button-box{
	width: 60%;
	margin: 30px auto 0 auto;
}
#contact-form .button-box .fL,
#contact-form .button-box .fR{
	width: 48%;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#contact-form .button-box{
	width: 100%;
}
}
#contact-form .button-box .button-confirmation,
#contact-form .button-box .button-reset{
	text-align: center;
	width: 100%;
	border:none;
	padding:15px 30px;
	font-size: 19px;
	cursor:pointer;
	color: #fff;
}
#contact-form .button-box .button-confirmation{
	background: #007bc7;
}
#contact-form .button-box .button-reset{
	background: #777;
}
#contact-form .button-box .button-confirmation:hover,
#contact-form .button-box .button-reset:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
#contact-form .button-box input[type="submit"],
#contact-form .button-box input[type="reset"] {
	-webkit-appearance: none;
}
#contact-form ::placeholder {
  color: #B8B8B8;
}




/* 251223追加 */
h1 {
	text-align: center;
	font-weight: bold;
}

.form-row {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.item {
  display: flex;
  flex-direction: column;
  width: 100%;      /* 幅は好みで調整 */
}

.item-half {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);      /* 幅は好みで調整 */
}

label {
  font-weight: bold;
  margin-bottom: 4px;
}

input,
select {
  padding: 6px;
  font-size: 14px;
}

.table-wrap {
   margin: 40px 0;
}

.option-table {
  width: 100%;
  border-collapse: collapse;
}

.option-table th,
.option-table td {
  border: 1px solid #ccc;
  padding: 4px 8px;
  font-size: 14px;
}

.option-table th {
  background-color: #f5f5f5;
}

.option-table td.center {
  text-align: center;
}

.option-table input[type="number"] {
  width: 4em;
  text-align: right;
}


/* 注意事項　260105追加 */
.precautions {
  border: 1px solid #000;
  padding: 10px;
  margin-bottom: 30px;
}

.cancel-table {
  border-collapse: collapse;
  font-size: 0.9em;
  margin: 10px 0;
}

.cancel-table th,
.cancel-table td {
  border: 1px solid #999;
  padding: 4px 8px;
  text-align: center;
  white-space: nowrap;
}

.cancel-table th {
  background-color: #f5f5f5;
}


/***************************************
お問合せ　thanksページ：thanks.html
***************************************/
.thanks-message{
	text-align: center;
}
.thanks-message .tt{
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 15px;
}

a.re_btn{
	min-width: 90px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	padding: 10px 15px;
	margin-top: 40px;
	color: #fff;
	background: #007bc7;
	border: 1px solid #fff;
}
/* ↑↑↑↑　ここまで　↑↑↑↑ */