@charset "UTF-8";
/* CSS Document */
html {
    scroll-behavior: smooth;
}
.top-img {
  margin-top: 50px;
 background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
 url("../img/houmon-img/top-img7665.jpg");
  background-position: center top;
  background-size: cover;

  clip-path: polygon(0 0, 100% 0%, 100% 70%, 50% 100%, 0 70%);
  height: 50vh;
  opacity: 0;
  transform: translateY(-100%); /* 初期位置を画面外の上に設定 */
  transition: transform 1s ease-out, opacity 1s ease-out; /* アニメーションの設定 */
}

.top-img.show {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻る */
}

.top-img h1 {
  font-size: 2rem;
  padding-top: 200px;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
letter-spacing: 0.5px; /* 文字の間隔を少し広げる */
}



.top-text{
	font-size: 1.5rem;
	font-weight: 600;
	width: 80%;
	margin: 60px auto;
	line-height: 4rem;
}
@media screen and (max-width: 1100px){
	.top-text{
		font-size: 1.2rem;
		width: 90%;
		line-height: 2.5rem;
	}
}


/*検討中の方へ*/
.kentou {
  position: relative;
  overflow: hidden;
  margin: 100px auto;
  background-image: url("img/background-img01.png");
  z-index: 0;
}

.kentou::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* 白色の半透明レイヤー */
  z-index: -1; 
}
.kentou h2{
	padding-top: 50px;
	font-size: 2rem;
	
}

.kentou-00{
	display: flex;
	flex-wrap: wrap;
	gap:30px;
	justify-content: center;
	padding-bottom: 50px;
}

.kentou-01 {
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kentou-01:hover {
    transform: scale(1.05); /* 拡大 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 影を強調 */
	border: solid #FF9854;
}

.kentou-01 img{
	width: 100px;
}
.kentou-00 a{
	margin-top: 20px;
	text-decoration: none;
	color: #333;
	font-size: 1.3rem;
}


/*矢印*/
.arrow-icon {
  width: 30px; /* 丸アイコンの直径 */
  height: 30px;
  background-color: #ff6600; /* 丸の背景色 */
  border-radius: 50%; /* 丸くする */
  display: flex;
  justify-content: center;
  align-items: center;
  
 margin: 20px auto ;
}

.arrow {

  width: 0;
  height: 0;
  border-left: 10px solid transparent; /* 矢印の左部分 */
  border-right: 10px solid transparent; /* 矢印の右部分 */
  border-top: 10px solid #fff; /* 矢印の色 */
}


/*流れ*/
.flow{
	width: 80%;
	margin: 50px auto;
	text-align: left;
	
}

.flow h2{
	font-size: 2rem;
	text-align: center;
	margin-bottom: 20px;
	color: #FF9854;

}

.flow h3{
	font-size: 1.5rem;
}
.flow p{
	font-size: 1.2rem;
	line-height: 2rem;
	
}
.step {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  
  opacity: 0; /* 初期状態で非表示 */
  transform: translateY(-50px); /* 初期位置を上にずらす */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.active {
  opacity: 1; /* 表示 */
  transform: translateY(0); /* 元の位置に移動 */
}

.step-arrow {
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #ff6600; /* 矢印の色 */
    margin: 10px auto; /* 中央寄せ */
}




.inquiry{
	margin: 100px auto;
}
.inquiry h1{
	font-size: 2rem;
	text-align: center;
}
.inquiry a{
	background-color: #FF9854;
	border-radius: 20px;
	padding: 20px;
	text-decoration: none;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	transition: background-color 0.5s ease-in-out; /* 背景色の変化を0.5秒かけて */
}
.inquiry a:hover{
	background-color: #FFC263;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 影を強調 */
}

@media screen and (max-width: 800px){
	.flow{
		width: 90%;
	}
	.step-arrow{
		
	}
}
/*費用について*/

.hiyou-02{
	width: 80%;
	margin: 50px auto;
}

.hiyou-02 h1{
	color: #FF9854;
	font-size: 2rem;
	text-align: center;
	margin:20px auto;
}

.hiyou-02 h2{
	color: #FF9854;
	font-size: 1.5rem;
	margin-bottom: 5px;
	text-align: left;
	width: 80%;
	max-width: 850px;
	margin: 0 auto;
}

.hiyou-02 p{
	margin: 15px auto;
	font-size: 1.2rem;
	line-height: 2rem;
	text-align: left;
	max-width: 800px;
}

.hiyou-02{
    text-align: right; /* aタグを右寄せにするため親要素に適用 */
}

.table {
  width: 80%;
	max-width: 850px;
	margin: 0 auto;
  border-collapse: collapse; /* 枠線を重ならないように */
}

.table td {
  border: 2px solid #FFBC97; /* 枠線 */
  padding: 15px;
  text-align: center; /* セル内のテキストを中央寄せ */
	font-size: 1.5rem;
}

.table tr{
	background-color: #fff;
}

.table tr:first-child{
	background-color: #FF9854;
	color: #fff;
}



.hiyou-02 a{
    background-color: #FF9854;
    color: #fff;
    padding: 7px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block; /* ボタンがインライン要素として表示されるように */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 立体的に見せる */
    transition: all 0.3s ease; /* アニメーションを滑らかに */
	margin-right: 15%;
   
}

.hiyou-02 a:hover {
    background-color: #FFC263;/* ホバー時に色が変わる */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* 影が大きくなる */
    transform: translateY(-2px); /* 少し浮き上がる */
}

@media screen and (max-width: 800px){
	.hiyou-02 {
		width: 95%;
	}
	.hiyou-02 h1{
		margin-top: 50px;
	}
	.hiyou-02 h2{
		margin-left: 0px;
	}
	.hiyou-02{
		width: 95%;
		margin: 0 auto;
	}
	.table {
		width: 100%;
		max-width: 850px;
	}
	.table td{
		font-size: 1rem;
	}
	.hiyou-02 a{
		margin-right: 0px;
	}
}

/*お問い合わせ・パンフレット*/
.houmon-contact-text{
	font-size: 1.5rem;
	margin-top: 100px;
	font-weight: 700;
}
.houmon-contact{
	display: flex;
	gap:30px;
	margin: 20px auto 100px;
	justify-content: center;
}
.houmon-contact a{
	font-size: 2rem;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
}
.houmon-contact img{
	height: 150px;
	margin: 0 auto;
}
.contact-inquiry img{
	width: 150px;
}
.contact-inquiry,.contact-pamphlet{
	background-color: #FF9854;
	width: 300px;
	height: 300px;
	padding: 20px;
	border-radius: 20px;
	transition: background-color 0.5s ease-in-out; /* 背景色をゆっくり変化 */
	transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-inquiry:hover,.contact-pamphlet:hover{
	background-color: #FFC263;
transform: scale(1.05); /* 拡大 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 影を強調 */
}
@media screen and (max-width: 960px){
	.houmon-contact{
	display: block;
		justify-content: center;	
}
	.contact-inquiry,.contact-pamphlet{
	width: 280px;
	height: 150px;
		margin: 20px auto;
	
}
	.houmon-contact a{
display: flex;
		text-align: center;
		font-size: 1.2rem;
		line-height: 2rem;
		
}
	.houmon-contact img{
	height: 90px;
	margin: 0 auto;
		padding-top: 30px;
}
.contact-inquiry img{
	width: 50px;
}
}