@charset "shift_jis"; 

/*********************************************************
共通設定
*********************************************************/


/*
見出し
*********************************************************/

h1{}
/*ページタイトル*/
.ttlPage{
	width:100%;
	height:200px;
	background-image:url(../images/common/pagettl_bg.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
	}
	.ttlPage .inner{
		height:100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
		}
	.ttlPage_ttl{
		text-align:left;
		font-family: var(--bs-font-serif);
		font-size:2.5em;
		line-height:1;
		color:#fff;
		background:rgba(187,182,166,0.9);
		padding:0.75em 0.5em;
		border-radius: 10px;
		width:100%;
		max-width:800px;
		}
/*大タイトル*/
h3{
	color:#fff;
	background-color:#bbb6a6;
	background-image:url(../images/common/ttl_l_bg.jpg);
	background-position:left;
	background-repeat:no-repeat;
	background-size: cover;
	padding:1em;
	font-size:1.625em;
	line-height:1.2em;
	margin-bottom:1em;
	}
/*中タイトル*/
h4{
	font-size:1.375em;
	line-height:1.2em;
	border-top:2px solid #bbb6a6;
	border-bottom:1px solid #bbb6a6;
	color:#7d7a6b;
	padding:0.75em;
	margin-bottom:1em;
	background-color:#fff;
	}
/*小タイトル*/
h5{
	font-size:1.25em;
	line-height:1.2em;
	border:1px solid #bbb6a6;
	color:#7d7a6b;
	padding:0.75em;
	margin-bottom:1em;
	background-color:#fff;
	}
h6{
	background-color:#bbb6a6;
	font-size:1.125em;
	line-height:1.2em;
	color:#fff;
	padding:0.75em;
	margin-bottom:1em;
	}
/*アイコンタイトル*/
.iconTtl{
	font-size:1.125em;
	font-weight:700;
	line-height:1.2em;
	margin-bottom:10px;
	}
	.iconTtl i{
		color:#7d7a6b;
		}
/*TABLET*/
@media only screen and (min-width : 600px){
.ttlPage_ttl{
	text-align:center;
	}
}
/*PC*/
@media only screen and (min-width : 1025px){
/*ページタイトル*/
.ttlPage{
	height:400px;
	}
.ttlPage_ttl{
	font-size:2.5em;
	padding:1em 0.5em;
	}
/*大タイトル*/
h3{
	font-size:1.625em;
	padding:1.25em 1em;
	}
/*サブタイトル*/
h4{
	padding:1em;
	}
}
/*IE*/
@media all and (-ms-high-contrast:none){
}

/*
共通-コンテンツ
*********************************************************/
.contents{ padding:50px 0; position:relative;}
/*TABLET*/
@media only screen and (min-width : 600px){
/*	.contents{padding:40px 0;}*/
}
/*PC*/
@media only screen and (min-width : 1025px){
	.contents{ padding:100px 0; }
}

/*
subMenu
***********************************************************/
.subMenu {
	margin-bottom: 30px;
}
.subMenu ul {
	width:100%;
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content:center;
}
.subMenu li {
	margin-right:0.5%;
	margin-bottom:5px;
}
.subMenu li a {
	text-decoration: none;
	color: #000;
	background-color: #e9e7e3;
	padding: 0.75em 1em;
	border-radius: 5px;
	line-height: 1;
	display: block;
	font-size:0.750em;
	font-weight: 700;
	text-align: center;
}
.subMenu li a:hover,
.subMenu li a:active {
	color: #9b9684;
}
.subMenu.fixed-nav{ margin-bottom:0; padding:10px 60px 5px 10px; }

@media only screen and (min-width: 600px) {
	.subMenu li a { font-size:0.875em; }
}

@media only screen and (min-width: 1025px) {
	.subMenu.fixed-nav{ top:0; bottom: auto; padding:10px 0px 5px 0px; }
	.subMenu.fixed-nav li a{ font-size:0.750em; }
	.subMenu ul{ justify-content: flex-start; }
	.subMenu li { width:19.6%; }
	.subMenu li:nth-child(5n) {	margin-right:0; }
}

/*
ヘッダー
*********************************************************/

/*
フッター
*********************************************************/

/* バナーエリア */
.bnrArea{
	background-color:#e9e7e3;
	padding:50px 0;
	}
/*TABLET*/
@media only screen and (min-width : 600px){
}
/*PC*/
@media only screen and (min-width : 1025px){
.bnrArea{
	padding:100px 0;
	}
}
/*IE*/
@media all and (-ms-high-contrast:none){
}
	
/* サイトマップ */
.siteMap {
  padding: 25px 0;
}

.siteMap .inner > ul {
  display: flex;
  flex-wrap: wrap;
}

.siteMap .inner > ul > li {
  width: 50%; /* SPデフォルトは1列 */
  padding: 0 1.5em;
  box-sizing: border-box;
  margin-bottom: 2em;
}

.siteMap .inner > ul > li > a {
  font-family: var(--bs-font-serif);
  color: #7d796a;
  display: block;
  text-align: center;
  border-bottom: 1px solid #d6d3ca;
  padding-bottom: 1em;
  margin-bottom: 1em;
  font-weight: bold;
  text-decoration: none;
}

.siteMap .inner > ul > li > a:hover {
  text-decoration: underline;
}

.siteMap .inner > ul > li > ul {
}

.siteMap .inner > ul > li > ul > li {
  margin-bottom: 0px;
}

.siteMap .inner > ul > li > ul > li > a {
  display: block;
  font-size: 0.875em;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-left: 1em;
}

.siteMap .inner > ul > li > ul > li > a::before {
  content: "-";
  position: absolute;
  left: 0;
}

.siteMap .inner > ul > li > ul > li > a:hover {
  text-decoration: underline;
}

.siteMap .inner > ul > li > ul > li > ul {
  padding-left: 1em;
}

.siteMap .inner > ul > li > ul > li > ul > li > a {
  display: block;
  font-size: 0.750em;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-left: 1em;
}

.siteMap .inner > ul > li > ul > li > ul > li > a::before {
  content: "･";
  position: absolute;
  left: 0;
}

.siteMap .inner > ul > li > ul > li > ul > li > a:hover {
  text-decoration: underline;
}

/* Tablet: 2列表示 */
@media only screen and (min-width: 600px) {
  .siteMap .inner > ul > li {
    
  }
	}
/* PC: 4列表示 */
@media only screen and (min-width: 1025px) {
	.siteMap {
  	padding: 50px 0;
	}
  .siteMap .inner > ul > li {
    width: 25%;
		border-left: 1px solid #d6d3ca;
  }
	.siteMap .inner > ul > li:nth-child(4){
		border-right: 1px solid #d6d3ca;
		}
}
/* IE対応（念のため） */
@media all and (-ms-high-contrast: none) {
  .siteMap .inner > ul {
    display: -ms-flexbox;
  }
  .siteMap .inner > ul > li {
    display: block;
  }
}

/* 詳細 */
.footerInfo {
  border-top: 1px solid #d6d3ca;
  padding: 25px 0;
}
.footerInfoBox {
  display: flex;
  flex-direction: column; /* ← スマホは縦並び */
  align-items: center;
  gap: 2em;
}
/* 左ブロック（ロゴ・住所） */
.footerInfoBoxL {
  text-align: center;
}
.footerInfoBoxL img {
	margin-left:auto;
	margin-right:auto;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}
.footerInfoBoxL p {
  font-size: 0.875em;
}
/* 右ブロック（お問い合わせボタン） */
.footerInfoBoxR {
  width: 100%;
  text-align: center;
}
.footerInfoBoxR a {
  display: block;
  padding: 1em 0.5em;
  text-align: center;
  font-family: var(--bs-font-serif);
  width: 100%;
  min-width: unset; /* SPでは幅に制限をつけない */
	text-decoration:none;
}
/* お問い合わせボタン1 */
.footerInfoBoxR_btn01 {
	border: 1px solid #9b9684;
  background-color: #9b9684;
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.625em;
}

.footerInfoBoxR_btn01:hover{
	background-color: #fff;
	color:#9b9684;
	}

.footerInfoBoxR_btn01 span {
  display: inline-block;
  font-size: 0.538em;
}

/* お問い合わせボタン2 */
.footerInfoBoxR_btn02 {
  border: 1px solid #9b9684;
  color: #9b9684;
}

.footerInfoBoxR_btn02:hover{
	background-color: #9b9684;
	color:#fff;
	}
/*TABLET*/
@media only screen and (min-width: 600px) {
}

/*PC*/
@media only screen and (min-width: 1025px) {
	.footerInfo {
		padding: 50px 0;
	}
	
  .footerInfoBox {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
	
  .footerInfoBoxL {
    text-align: left;
  }

	.footerInfoBoxL img {
		margin-left:inherit;
		margin-right:inherit;
	}

  .footerInfoBoxR {
    max-width: 320px;
    text-align: right;
  }
}

/* =========================
   Internet Explorer
========================= */
@media all and (-ms-high-contrast: none) {
  .footerInfoBox {
    display: -ms-flexbox;
    -ms-flex-direction: column;
    -ms-align-items: center;
  }

  @media screen and (min-width: 600px) {
    .footerInfoBox {
      -ms-flex-direction: row;
      -ms-justify-content: space-between;
      -ms-align-items: center;
    }
  }
}

/* キャッチコピー */
.copyright{
	background-color:#e9e7e3;
	padding:2em 0;
	font-size:0.75em;
	line-height:1;
	text-align:center;
	}
	

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

/* ボタン */
.btn{
	color:#a19d8c;
	background-color:#fff;
	border:1px solid #a19d8c;
	display:block;
	font-family: var(--bs-font-serif);
	text-align:center;
	font-weight:700;
	padding:1em 0.5em;
	max-width:250px;
	width:100%;
	line-height:1.2em;
	text-decoration:none;
	}
	.btn:hover,
	a:hover .btn,
	a:active .btn{
		color:#fff;
		background-color:#a19d8c;
		opacity: 1;
		filter: alpha(opacity=1);
		}

/* 拡大ボタン */
.zoomBtn{
	position: relative;
	display:block;
	cursor: zoom-in;
	}
.zoomBtn_icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  transition: opacity 0.3s;
  pointer-events: none;
	line-height:1;
	z-index: 9;
	}
	.zoomBtn:hover .zoomBtn_icon{
		background: rgba(0, 0, 0, 0.8);
		}

/* 画像拡大ボタン */
.imgZoomHover {
	display:block;
  overflow: hidden;
}
.imgZoomHover .imgZoomHoverCont {
	overflow: hidden;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.imgZoomHover:hover .imgZoomHoverCont {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/* テキストリンク */
.txtBtn{
	color:#48435c;
	font-weight:700;
	text-decoration:underline;
	}

/* ニュース */
/* ホワイト版*/
.news-white .newsListDate,
.news-white .newsListTtl a,
.news-white .newsListTtl a:hover {
	color: #fff;
	}
.news-white .newsListTtl a::after {
	background-color:#fff;
	}
.news{
	}
/*一覧*/
.newsScroll{
	max-height:400px;
	overflow-y:auto;
	}
	.newsScroll::-webkit-scrollbar {
    width: 3px;
		}
	.newsScroll::-webkit-scrollbar-track {
    background-color:#ddd;
		}
 	.newsScroll::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
		background-color:#ccc;
		}
.newsList li:first-child {
  border-top: 1px solid #ddd;
	}
	.newsList li {
		display: flex;
		flex-direction: column;
		padding: 1em;
		border-bottom: 1px solid #ddd;
		}
		.newsListDate {
			color: #7d796a;
			font-weight: bold;
			}
			.newsListTtl a {
				color: #000;
				text-decoration: none;
				position:relative;
				display:inline-block;
				}
			.newsListTtl a::after {
				content: '';
				position: absolute;
				bottom: 0;
				left: 0;
				width: 0;
				height: 1px;
				background-color:#000;
				-webkit-transition: width 0.3s;
				-o-transition: width 0.3s;
				transition: width 0.3s;
				}
			.newsListTtl a:hover::after {
				width: 100%;
				}
			.newsListTtl a:hover {
				color: #000;
				}
/*詳細*/
.newsDetailDate{
	color:#7d796a;
	font-weight:bold;
	margin-bottom:1em;
	line-height:1;
	}
.newsDetailTtl{
	color:#000;
	background-color:transparent;
	background-image:none;
	padding:0 0 1em 0;
	font-size:1.563em;
	line-height:1.4em;
	margin-bottom:1em;
	border-bottom:3px solid #d6d3ca;
	}
.newsDetailCont{
	}
/*TABLET*/
@media only screen and (min-width: 600px) {
  .news li {
    flex-direction: row;
    padding: 1.5em 2em;
    gap: 1em;
    align-items: flex-start;
  }
  .newsListDate {
    margin-right: 1em;
    /*width: 120px;*/
    flex-shrink: 0;
    margin-bottom: 0; /* 上の余白を戻す */
  }
  .newsListTtl {
    flex: 1;
  }
}
/*PC*/
@media only screen and (min-width: 1025px) {
  .newsListDate {
    margin-right: 1em;
  }
}
/*IE*/
@media all and (-ms-high-contrast: none) {
  .newsList li {
    display: -ms-flexbox;
    -ms-flex-direction: row;
  }
}



/*----------------------------------------------------------------------------------------------------

アンカーリンクのオフセット (固定ヘッダー用)
	
----------------------------------------------------------------------------------------------------*/
/*
<!-- ヘッダーのナビゲーション（例） -->
<header class="site-header--fixed">
  <nav>
    <a href="#section-a">セクションAへ</a>
    <a href="#section-b">セクションBへ</a>
  </nav>
</header>

<main>
  <!-- リンク先のセクションに直接IDとクラスを指定 -->
  <section id="section-a" class="scroll-target">
    <h2>セクションA</h2>
    <p>このセクションの上部が、ヘッダーに隠れることなく表示されます。</p>
  </section>

  <section id="section-b" class="scroll-target">
    <h2>セクションB</h2>
    <p>こちらも同様に、ヘッダーの下にきれいに表示されます。</p>
  </section>
</main>
*/

.scroll-target {
  scroll-margin-top: 100px; /* スマホでのヘッダーの高さ */
}
@media only screen and (min-width: 1025px) {
  .scroll-target {
    scroll-margin-top: 100px; /* PCでのヘッダーの高さ */
  }
}

/*----------------------------------------------------------------------------------------------------

サムネイル用(サイズ調整・上下中央)
	
----------------------------------------------------------------------------------------------------*/
.aspectFit {
	display:block;
	position: relative;
	width: 100%;
	background-color:#f5f3ee;
	overflow:hidden;
	}
	.aspectFit:before {
		content:"";
		display: block;
		}
		.aspectFit-11:before { padding-top: 100%; } /* 1:1 spect-ratio: 100 / 100; */
		.aspectFit-43:before { padding-top: 75%; } /* 4:3 */
		.aspectFit-32:before { padding-top: 66.66%; } /* 3:2 */
		.aspectFit-169:before { padding-top: 56.25%;} /* 16:9 */
		.aspectFit-219:before { padding-top: 42.857%; } /* 21:9 */
		.aspectFit > img,
		.aspectFit > video {
			position: absolute;
			top: 50%;
			left: 50%;
			-webkit-transform: translateY(-50%) translateX(-50%);
					-ms-transform: translateY(-50%) translateX(-50%);
							transform: translateY(-50%) translateX(-50%);
			-webkit- transform: translateY(-50%) translateX(-50%);
			display:inline;
			max-width:100%;
			max-height:100%;
			width: auto;
			height: auto;
			-o-object-fit: contain;
			   object-fit: contain;
			}

/*----------------------------------------------------------------------------------------------------

パンくずリスト
	
----------------------------------------------------------------------------------------------------*/
.breadcrumb ul::-webkit-scrollbar{
	height:3px;
}
.breadcrumb ul::-webkit-scrollbar-track{
   background-color: #ccc;
}
.breadcrumb ul::-webkit-scrollbar-thumb{
   background-color: #333;
}
.breadcrumbWrap{
	padding:10px 0 10px 0;
	border-bottom:1px solid #eee;
	}
.breadcrumb ul{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
	overflow-x: scroll;
	word-break: keep-all;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	}
.breadcrumb ul li{
	font-size:1.4rem;
  padding-right:30px;
	}
.breadcrumb ul li:not(:last-child) {
 position:relative;
 padding-right:30px;
 }
.breadcrumb ul li:not(:last-child) ::after{
	font-family: "FontAwesome";
  content: "\f105 ";
  display: block;
  position: absolute;
  width: 10px;
  height: 15px;
  top: 0px;
  right: 8px;
	}
.breadcrumb ul li a{
	color:#000;
  text-decoration:underline;
	} 
@media only screen and (min-width: 600px) {
  .breadcrumb ul::-webkit-scrollbar {
    display: none; /* PCではスクロールバー非表示（必要に応じて削除） */
  }
}
@media only screen and (min-width: 1025px) {
  .breadcrumb ul {
    overflow-x: visible;
    white-space: normal;
    word-break: break-word;
  }
}


/*----------------------------------------------------------------------------------------------------

フォーム 進捗バー
	
----------------------------------------------------------------------------------------------------*/
/* 基本スタイル (モバイルファースト: 600px未満の画面に適用) */
.progressBarWrap {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}

.progressBar {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 40px; /* モバイルでの高さを少し低めに設定 */
    background-color: #eee;
}

.progressBar li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    padding: 0 10px; /* モバイルでのパディングを調整 */
    font-weight: bold;
    color: #fff;
    background-color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0.8em; /* モバイルでのフォントサイズを小さく */
}

/* 矢印の基本スタイル (モバイル向け) */
.progressBar li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px; /* heightの半分 (45px / 2) */
    top: 0;
    width: 0;
    height: 0;
    border-top: 20px solid transparent; /* heightの半分 */
    border-bottom: 20px solid transparent; /* heightの半分 */
    border-left: 10px solid #ccc; /* heightの半分 */
    z-index: 1;
}

.progressBar li:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 20px solid transparent; /* heightの半分 */
    border-bottom: 20px solid transparent; /* heightの半分 */
    border-left: 10px solid #ccc; /* heightの半分 */
    z-index: 2;
}

/* アクティブなステップのスタイル */
.progressBar li.progressBar-active {
    background-color: #B84A4A;
    color: #fff;
}

.progressBar li.progressBar-active:not(:last-child)::after {
    border-left-color: #B84A4A;
}

.progressBar li.progressBar-active + li::before {
    border-left-color: #B84A4A;
}


/* 中画面対応: min-width: 600px */
@media only screen and (min-width: 600px) {
    .progressBar {
        height: 50px; /* 高さを少し上げる */
    }

    .progressBar li {
        padding: 0 15px; /* パディングを調整 */
        font-size: 0.9em; /* フォントサイズを調整 */
    }

    /* 矢印のサイズ調整 */
    .progressBar li:not(:last-child)::after {
        right: -25px; /* heightの半分 */
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 25px solid #ccc;
    }

    .progressBar li:not(:first-child)::before {
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 25px solid #ccc;
    }
}

/* 大画面対応: min-width: 1025px */
@media only screen and (min-width: 1025px) {
    .progressBar {
        height: 60px; /* 高さを元のサイズに戻す */
    }

    .progressBar li {
        padding: 0 20px; /* パディングを調整 */
        font-size: 1em; /* フォントサイズを元のサイズに戻す */
    }

    /* 矢印のサイズ調整 */
    .progressBar li:not(:last-child)::after {
        right: -30px; /* heightの半分 */
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-left: 30px solid #ccc;
    }

    .progressBar li:not(:first-child)::before {
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-left: 30px solid #ccc;
    }
}

/*----------------------------------------------------------------------------------------------------

ページナビ
	
----------------------------------------------------------------------------------------------------*/
/*
<ol class="pagenation">
  <li><a href="">前へ</a></li>
  <li><span>1</span></li>
  <li><a href="">2</a></li>
  <li><a href="">3</a></li>
  <li><a href="">4</a></li>
  <li><a href="">5</a></li>
  <li><a href="">次へ</a></li>
</ol>
*/
.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagenation li {
  margin-top: 5px;
}
.pagenation li:not(:last-child) {
  margin-right: 10px;
}
.pagenation li a,
.pagenation li span {
	display:inline-block;
	width:40px;
	height:40px;
	line-height:38px;
	font-size:0.875em;
	text-align:center;
	color:#a19d8c;
  background-color: #fff;
  border: 1px solid #a19d8c;
	font-family:Arial, Helvetica, sans-serif;
	}
.pagenation li span {
  color: #fff;
  background-color: #a19d8c;
}
.pagenation li a:hover{
	color: #fff;
  background-color: #a19d8c;
	}
@media only screen and (min-width: 600px) {
	}
@media only screen and (min-width: 1025px) {
	}

/*----------------------------------------------------------------------------------------------------

.flexImageText コンテナの基本設定
- flexboxで縦並び（スマホ想定）
- 画像幅と間隔をCSS変数で管理
- gapはスマホで20pxに固定
	
----------------------------------------------------------------------------------------------------*/
.flexImageText {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	--image-width: 35%;         /* デフォルト */
	--gap-size: 30px;           /* PC時に使う gap のデフォルト */
	gap: 20px;                  /* スマホでは常に 20px */
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
	
.flexImageText_tmb {
	width: 100%;
}

.flexImageText_tmb img {
	width: 100%;
	height: auto;
	display: block;
}

/* PC（例: min-width: 769px 以上）では gap をカスタム変数に */
@media (min-width: 769px) {
	.flexImageText {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		gap: var(--gap-size, 30px); /* PC時だけ変数を使う */
	}

	.flexImageText-center {
		-webkit-box-align:center;
		-ms-flex-align:center;
		align-items:center;
		}

	.flexImageText-left .flexImageText_tmb,
	.flexImageText-right .flexImageText_tmb {
		width: var(--image-width);
		-ms-flex-negative: 0;
		    flex-shrink: 0;
	}

	.flexImageText_cont {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
	}

	.flexImageText-right {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
	}
}

/*----------------------------------------------------------------------------------------------------

フォームカスタマイズ
	
----------------------------------------------------------------------------------------------------*/
/*必須フォームの背景*/
.requiredBg{
	background:#ffffed;
	}
	
.requiredTxt{
	color:#B84A4A;
	}

/*必須/任意タグ*/
.requiredTag,
.electiveTag{
	position:absolute;
	top:50%;
	right:10px;
	margin-top:-1em;
  color: #FFF;
  font-weight: 700;
	background-color:transparent;
  padding: 0.5em 0.75em;
  line-height: 1;
  display: inline-block;
  font-size: 0.625em;
  vertical-align: middle;
  white-space: nowrap;
	text-align:center;
	}
	.requiredTag { background-color: #B84A4A; }
	.electiveTag { background-color: #B84A4A; }
	
/* submit/button */
.c-form-submit,
.c-form-button{
	width: 100%;
	max-width: 400px;
	border: none;
	color: #fff;
	font-size:18px;
	line-height:1;
	padding:1.25em 1em !important;
	border-radius: 5px;
	}
	.c-form-submit{
		background-color:#a19d8c !important;
		border: 1px solid transparent !important;
		}
	.c-form-button{
		background-color: #999 !important;
		}
	.c-form-submit:hover{
		color: #a19d8c !important;
    background-color: #fff !important;
    border: 1px solid #a19d8c !important;
		}
	.c-form-button:hover{
		color: #999 !important;
		background-color: #fff !important;
		border: 1px solid #999 !important;
		}
	/*.c-form-submit:focus
	.c-form-button:focus{
		outline: 0;
		border: 2px solid rgb(33, 150, 243);
		}
		.c-form-submit:focus{ background-color: #7C131B !important; }
		.c-form-button:focus{ background-color: #aaa !important; }*/


/*********************************************************
トップページ
*/
/* タイトル */
.topTtl{
	text-align:center;
	font-family: var(--bs-font-serif);
	font-size: 2.125em;
	line-height:1.2em;
	}
	.topTtlEng{
		display:block;
		font-size:0.588em;
		line-height:1em;
		margin-bottom:10px;
		color:#7d796a;
		}
/*TABLET*/
@media only screen and (min-width : 600px){
.topTtlEng{
	margin-bottom:15px;
	}
}
/*PC*/
@media only screen and (min-width : 1025px){
}
/*IE*/
@media all and (-ms-high-contrast:none){
}
/* メインイメージ */
.mainvisual{
	overflow:hidden;
	position:relative;
	width:100%;
	height:400px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-repeat: repeat-x;
  background-size: auto 100%;  /* 高さ100%、幅は自動調整 */
  background-position: 0 0;
	background-image:url(../images/top/mainvisual_bg.jpg);
	background-color:#fff;
	padding:0 4%;
	}
	.mainvisual h2,
	.mainvisual p{
		color:#FFF;
		text-align:center;
		font-family: var(--bs-font-serif);
		font-size:2.5em;
		line-height:1em;
		background:rgba(155,150,132,0.9);
		padding:0.7em 0.7em;
		border-top-left-radius: 0.5em;   /* 左上 */
		border-bottom-right-radius: 0.5em; /* 右下 */
		}
	.mainvisual h2{
		min-width:260px;
		}
		.mainvisual span{
			font-size:0.75em;
			}
	.mainvisual::before {
		content: "";
		position: absolute;
		bottom: 0%;
		left: 0;
		width: 100%;
		padding-top: 6.06%; /* アスペクト比を指定（画像の比率に応じて調整） */
		background-image: url(../images/top/mainvisual_txt.png);
		background-size: contain; /* cover → containに変更して縮小を許可 */
		background-position: center bottom;
		background-repeat: no-repeat;
		z-index: 1;
	}
/*TABLET*/
@media only screen and (min-width : 600px){
.mainvisual{
	height:650px;
	}
.mainvisual h2,
.mainvisual p{
	font-size:3.5em;
	padding:0.7em 0.7em;
	}
.mainvisual h2{
	min-width:360px;
	}
	.mainvisual span{
		font-size:0.893em;
		}
}
/*PC*/
@media only screen and (min-width : 1025px){
	.mainvisual h2 br,
	.mainvisual p br{ 
		display:none;
		}
	.mainvisual h2{
		min-width:500px;
		}

}
/*IE*/
@media all and (-ms-high-contrast:none){
}


	
/*********************************************************
会社案内
*/

/* 代表挨拶 */
.message{
	background-image:url(../images/top/about/message_bg.jpg);
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	background-color:#e9e7e3;
	padding:2em;
	}
	.messageCont{
		width:100%;
		max-width:800px;
		margin-left:auto;
		margin-right:auto;
		}
		.messageContCatch{
			font-family: var(--bs-font-serif);
			font-size:1.875em;
			font-weight:800;
			line-height:1.4em !important;
			margin-bottom:15px !important;
			}
		.message p{
			margin-bottom:5px;
			line-height:1.8em;
			}
		.messageContName{
			margin-top:15px;
			display:flex;
			justify-content: end;
			align-items: center;
			font-size:0.875em;
			font-weight:bold;
			font-family: var(--bs-font-serif);
			line-height:1;
			}
			.messageContName img{
				margin-left:1em;
				max-width:150px;
				}
/*TABLET*/
@media only screen and (min-width : 600px){
}
/*PC*/
@media only screen and (min-width : 1025px){
.message{
	padding:100px 2em;
	/*
	display:flex;
	justify-content: space-between;
	*/
	}
	.messageTmb{
		/*width:30%;*/
		}
	.messageCont{
		/*width:75%;*/
		}
		.messageContCatch{
			margin-bottom:30px !important;
			}
		.message p{
			margin-bottom:10px;
			}
		.messageContName{
			margin-top:30px;
			}
}
/*IE*/
@media all and (-ms-high-contrast:none){
}

/* 会社概要 */
.company{
	width:100%;
	}
	.company tr{
		}
	.company th,
	.company td{
		width:100%;
		display:block;
		}
	.company th{
		font-family: var(--bs-font-serif);
		color: #9b9684;
		text-align:left;
		padding:1em 1em 0.5em 1em;
		}
	.company td{
		padding:0em 1em 1em 1em;
		border-bottom:1px solid #eee;
		}
/*TABLET*/
@media only screen and (min-width : 600px){
}
/*PC*/
@media only screen and (min-width : 1025px){
	.company th,
	.company td{
		display:table-cell;
		padding:1em;
		}
	.company th{
		width:20%;
		border-bottom: 1px solid #d6d3ca;
		}
	.company td{
		width:80%;
		}
}

/* 組織図 */

/* 会社沿革 */
.history {
	position: relative;
	padding:20px 0 0 60px;
	}
	.history:before {
		background-color: #9b9684;
		content: "";
		height: 100%;
		left: 30px;
		position: absolute;
		top: 0;
		width: 1px;
		}
.history_year{
	margin-top:20px;
	padding-bottom:0.5em;
	/*color: #9b9684;*/
	font-family: var(--bs-font-serif);
	font-size:1.125em;
	line-height:1;
	position: relative;
	}
	.history_year:before {
		content: "";
		position: absolute;
		top: 6px;
		left: -35px;
		width: 11px;
		height: 11px;
		background-color: #9b9684;
		border-radius: 50%;
		}
.history_cont{
	margin-top:var(--mt10);
	}
	.history_cont_txt{
		font-size:1.5rem;
		line-height:1.5em;
		}
/*TABLET*/
@media only screen and (min-width : 600px){
}
/*PC*/
@media only screen and (min-width : 1025px){
.history {
	padding:30px 0 30px 60px;
	}
}

/*********************************************************
プライバシーポリシー
*/
#privacy .list {
	background-color:#f7f7f7;
	padding:1em;
	margin-top:10px;
	font-size:0.875em;
	}
	#privacy .list > li{
	margin-bottom:5px;
	}
#privacy .listNumber > li{
	margin-bottom:10px;
	}
#privacy .listNumber > li::marker{
  color: #7d7a6b;
  font-weight: bold;
}
#privacy .table tr th,
#privacy .table tr td{
	font-size:0.875em;
	text-align:left;
	}
































