
/* スクロールでフェードイン（JSで制御） */
.scroll-in{
	transition: 1s;
	opacity: 0;
	transform: translateY(20px);
}
.scroll-in.show {
    opacity: 1;
    transform: translateY(0);
}
/* マスク（クリップパス） */
.mask-in{
	animation: maskIn 1s forwards;
	clip-path: inset(0 100% 0 0);
}
@keyframes maskIn{
	to{ clip-path: inset(0 0 0 0); opacity: 1; }
}

/* ============== main title =================== */
main{
	padding-top: 120px;
}
#main_visual{
	width: 100%;
	height: 400px;
	background-image: url(../img/title-05.jpg);
	background-color: var(--main_color_light);
	background-position: center;
	background-size: cover;
}
.main_title{
	width: 100%;
	height: 420px;
	display: flex;
	justify-content: center;
	align-items: center;
}
h1.title{
	font-size: 1.5rem;
	color: var(--back_color);
	font-weight: 600;
	letter-spacing: 4px;
	position: relative;
	padding-top: 4rem;
	text-align: center;
	width: 100%;
}
h1.title::before{
	content: 'CATALOG';
	font-size: 4rem;
	font-weight: 600;
	width: 100%;
    position: absolute;
    top: -30px;
    right: 0;
    left: 0;
    margin: 0 auto;
	text-align: center;
}

/* ==== パンくずリスト ==== */

#pan_box{
	width: 30%;
	min-width: 475px;
	height: 40px;
	margin: -40px auto 0 0;
	background: var(--main_color);
	clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
}
#pan_list{
	margin-left: 30%;
}
ol.topic-path{
	list-style-type: none; /* リストマーク非表示 */
	line-height: 40px;
	font-size: 0.85rem;　/* 文字サイズ */
}
ol.topic-path li{
	display: inline; /* 項目を横並び */
}
ol.topic-path li.first{
	padding: 0 0 1px 45px;
	background-image: url(../img/top_pan.png);
	background-position: 10% 0%;
	background-repeat: no-repeat;
	background-size: 1.3rem;
}
ol.topic-path li.second{
	padding-left: 5px;
	color: var(--back_color);
}
ol.topic-path li a{
	padding-right: 20px;
	background: url(../img/navi-marker.gif) no-repeat right;
	background-size: 8px;
	color: var(--back_color);
	text-decoration: underline;
}
ol.topic-path li a:hover{
	opacity: 0.8;
}

/* ============== catalog =================== */
.catalog{
  padding: 120px 0;
  background: #f8f9fb;
}

.catalog_inner{
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.catalog_title{
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--main_color);
  letter-spacing: 1px;
}

.catalog_title span{
  color: var(--sub_color_light);
}

.catalog h2{
  font-size: 2.5rem;
  color: var(--main_color);
  padding: 1.5rem 0 2rem;
  font-weight: bold;
}

.catalog_text{
  margin: 0 auto;
  line-height: 2;
  letter-spacing: 1px;
}

.catalog_list{
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 70px;
}

.catalog_card{
  width: 50%;
  background: #fff;
  padding: 50px 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog_icon{
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--main_color_light);
  color: var(--main_color);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.catalog_card h3{
  font-size: 1.5rem;
  color: var(--main_color);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.catalog_card p{
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.catalog_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 60px;
  background: var(--main_color);
  color: #fff;
  text-decoration: none;
  transition: .3s;
  font-weight: bold;
  letter-spacing: 1px;
}

.catalog_btn:hover{
  transform: translateY(-3px);
  opacity: 0.9;
}

.catalog_btn.sub{
  background: var(--sub_color_light);
}

/* ============== contents =================== */
/*.contents_inner{
	width: 90%;
	margin: 120px auto;
	background-color: var(--main_color_light);
	padding: 80px 0 100px;
}
.contents_inner_wrap{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
.contents_title{
	font-size: 2.6rem;
	font-weight: 700;
	text-align: center;
	color: var(--main_color);
	padding-bottom: 4.5rem;
	letter-spacing: 1px;
	position: relative;
}
.contents_title::before{
	content: 'お問い合わせフォーム';
	color: var(--main_color);
	font-weight: normal;
	font-size: 1rem;
	position: absolute;
	bottom: 3rem;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.contents_title::after{
	content: '';
	width: 8%;
	height: 3px;
	background-color: var(--main_color);
	position: absolute;
	bottom: 1.5rem;
	left: 0;
	right: 0;
	margin: auto;
}
.contents_title span{
	color: var(--sub_color_light);
}
.form_lead{
	text-align: center;
	padding: 1rem 0 3rem;
}
.form_wrap{
	background-color: #fff;
	padding: 50px 10%;
}
table.form{
	width: 100%;
	background: transparent;
}
table.form tr{
	padding: 1.5rem 10%;
	display: block;
}
table.form th,
table.form td{
	display: block;
	width: 100%;
}
table.form th{
	padding: 0 0 0.5rem 0;
	color: var(--font_color);
	font-size: 0.95rem;
	font-weight: 600;
	text-align: left;
	letter-spacing: 1px;
}
table.form td .box{
	width: 100%;
	background-color: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	box-shadow: none;
	height: 42px;
	outline: none;
}
table.form td .box:focus{
	border-color: var(--main_color);
	background-color: #fff;
	box-shadow: 0 0 0 3px rgba(0,104,183,0.2);
}

table.form th span.hissu{
	background-color: #e5f0fb;
	color: var(--main_color);
	padding: 0 0.5rem;
	font-weight: 500;
	border-radius: 3px;
	font-size: 0.75rem;
	margin-left: 0.5rem;
}
table.form td.radio_btn input{
	margin-left: 1rem;
}
::placeholder{
	color: #9ca3af;
}
table.form td span.yubin_text{
	color: var(--font_color);
	font-size: 0.8rem;
}
table.form td span.yubin a{
	color: var(--main_color);
	font-size: 0.8rem;
	letter-spacing: 1px;
	border-bottom: 1px solid var(--main_color);
}
table.form td span.yubin a:hover{
	color: rgba(0,104,183,0.5);
	letter-spacing: 1px;
	border-bottom: 1px solid rgba(0,104,183,0.5);
}

#btn_box{
	text-align: center;
	padding: 50px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.btn_2{
	width: 176px;
	height: 45px;
	border: none;
	background: var(--main_color);
	color: #fff;
	margin-bottom: 1.5rem;
	font-size: 1rem;
	cursor: pointer;
	border-radius: 6px;
	transition: all .3s;
	font-weight: 600;
}
.btn_2:hover{
	filter: brightness(1.1);
	transform: translateY(2px);
	
}*/

































