@charset "utf-8";
/* CSS Document */

/* スクロールでフェードイン（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; }
}


nav#pc ul {
  justify-content: space-evenly;
}
nav#pc .nav_contact .nav_tel{
	font-size: 161.6%;
}
header .logo a p{
	line-height: 1.1;
}

@media screen and (max-width: 1200px) {
    nav#sp .nav_contact .nav_tel {
		font-size: 161.6%;
	}
	.hamburger_contact p.hamburger_tel{
		font-size: 24px;
	}
	.hamburger-menu_button{
		height: 80px;
	}
}
/* ============== 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: 4rem;
	color: var(--back_color);
	font-weight: 600;
	letter-spacing: 4px;
	position: relative;
	text-align: center;
	width: 100%;
}

/* ==== パンくずリスト ==== */

#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;
}



/* ============== contents共通 =================== */

.contents_inner{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding-top: 5rem;
	position: relative;
	z-index: 2;
}
.contents_inner h2{
	font-size: 2.6rem;
	font-weight: bold;
	position: relative;
	padding-bottom: 2rem;
	color: var(--font_color);
	letter-spacing: 2px;
	text-align: center;
}
.contents_inner h2::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 5%;
	height: 3px;
	background-color: var(--main_color);
}
.title{
	font-size: 1.2rem;
	font-weight: 900;
	text-align: center;
	color: var(--main_color);
}
span.green{
	color: var(--sub_color_light);
}

/* ============== contents01 =================== */
.contents01{
	width: 100%;
	position: relative;
}
.contents01 .text{
	text-align: center;
	padding-top: 2rem;
	width: 80%;
	margin: 0 auto;
	letter-spacing: 1px;
}

table.profile{
	width: 100%;
	margin: 2rem 0;
}
table.profile tr{
	letter-spacing: 1px;
}
table.profile th{
	width: 28%;
	padding: 1.2rem 0 1.2rem 2rem;
	vertical-align: top;
	border-bottom: solid 2px var(--back_color);
	background-color: rgba(0,104,183,0.1);
	color: var(--main_color);
	text-align: left;
	font-weight: 500;
	
}
table.profile td{
	width: 72%;
	padding: 1.2rem 0 1.2rem 2rem;
	border-bottom: solid 1px rgba(0,104,183,0.2);
}

/* ============== contents02 =================== */
.contents02{
	width: 100%;
	position: relative;
	padding-bottom: 5rem;
}
.contents02 h3{
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--main_color);
	text-align: center;
	padding-top: 3rem;
	letter-spacing: 1px;
}
.contents02 .text{
	text-align: center;
	padding: 1rem 0 0.5rem;
	letter-spacing: 1px;
}
