@charset "utf-8";



/***** TOPページ総称コンテンツ *****/

/***** gmap *****/
.gmap {
height: 0;
overflow: hidden;
padding-bottom: 56.25%!important;
position: relative;
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}

/***** ボタン *****/
.ActArea {
    display: flex;
    justify-content: center;
    align-items: center;    
    text-align: center;
	margin-top: 48px;
}
.ActButton {
    background-image: linear-gradient(110deg, #84e252 33%, #09bcd3);
    border-radius: 9999px;
    display: inline-block;
    transition: transform 0.2s ease;
    width: 680px;
    height: 112px;
}
.ActButton a {
    color: #FFF;
    text-decoration: none;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 24px;
    height: 100%;
}

.ActButton img {
    max-width: 100%;
    height: auto;
    transition: transform 0.2s ease;
}

.ActButton:hover img {
    transform: translateX(5px);
}
.Action2 {
	padding: 64px 0 96px;
}
.Action2 .ContentsHead {
	margin-bottom: 0; 
}
.Action2 .ActArea {
	margin-top: 0; 
}
.ActButton2 {
    background-image: linear-gradient(110deg, #E2DC52 33%, #F88F00);
    border-radius: 9999px;
    display: inline-block;
    transition: transform 0.2s ease;
    width: 680px;
    height: 112px;
}
.ActButton2 a {
    color: #FFF;
    text-decoration: none;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: clamp(0.8rem, 2vw, 24px);
    height: 100%;
	text-align: left;
}
.ActButton2 a p {
	margin: 0;
}
.ActButton2 a span {
	display: block;
    font-size: clamp(1.6rem, 2vw, 32px);
    font-family: "Montserrat", sans-serif;
}
.ActButton2 img {
    max-width: 100%;
    height: auto;
    transition: transform 0.2s ease;
}

.ActButton2:hover img {
    transform: translateX(5px);
}
@media (max-width: 767px) {
.Action2 {
	padding: 32px 0 48px;
}
}
@media (max-width: 680px) {
.ActButton,
.ActButton2 {
    width: 100%;
    height: auto;
}
.ActButton1 a {
    padding: 16px 24px;
}
.ActButton2 a {
    padding: 8px 24px;
}
.ActButton img,
.ActButton2 img {
    max-width: 40px;
}
}

/* 声スライド */
.Voice {

}


/***** 強みページコンテンツ *****/
.Strongths .ContentsHead p.SubTitle {
    background: #07D0D8;
    color: #FFF;
}
.StrongthsContents {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
}
.StrongthsContents li {
	margin-bottom: 48px;
	text-decoration: none;
	list-style: none;
	padding: 16px;
    border-radius: 8px;
    align-items: stretch;
    border: solid 2px #07D0D8;
    background: #FFFFFF;
    flex: 0 0 calc(50% - 16px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.StrongthsContents li:last-child {
	margin-bottom: 0;
}
.StrongthsContents img {
	border-radius: 8px;
}
.StrongthsContents li .StrongthsHead h3 {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 24px);
    color: #07D0D8;
    margin: 0 auto 8px;
}
.StrongthsContents li .StrongthsHead span {
    font-size: clamp(1.5rem, 4vw, 40px);
    padding: 0 0.5rem 0 0;
    font-family: "Montserrat", sans-serif;
}
.StrongthsContents li .StrongthsHead p {
    margin: 0 auto 16px;
    font-size: clamp(0.8rem, 2vw, 1.0rem);
}
@media screen and (max-width: 480px) {
.StrongthsContents li {
        padding: 8px;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

/***** 買取ステップ *****/
.process-flow-sp {
  display: none;
}
/* 全体のフローエリア */
.process-flow-pc {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
  box-sizing: border-box;
  position: relative;
}

/* 各ステップ */
.process-step {
  display: flex;
  gap: 20px;
  position: relative;
}

/* ステップ番号 */
.step-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #F6E1C4; /* 外枠 */
  border-radius: 50%;
  background-color: #FFA726; /* 内側のオレンジ */
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* 縦の点線 */
.process-step::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -120px;
    width: 2px;
    border-left: 2px dashed #FFA726;
    transform: translateX(-50%);
}

.process-step:last-child::after {
  display: none; /* 最後のステップは線を非表示 */
}

/* ステップの内容 */
.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* ステップ画像 */
.step-image img {
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 横幅768px以下のデザインは無効化（PC専用） */
@media (max-width: 768px) {
  .process-flow-pc {
    display: none;
  }
/* 全体のフローエリア */
.process-flow-sp {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0px auto;
  padding: 16px;
  max-width: 600px;
  position: relative;
}

/* 各ステップ */
.process-step-sp {
  position: relative;
  padding-left: 50px; /* 点線の位置確保 */
  border-left: 2px dashed #FFA726;
}
/* ステップ番号 */
.step-number {
  position: absolute;
  top: 0;
  left: -30px; /* 点線に合わせる */
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFA726;
  color: #fff;
  border-radius: 50%;
  border: 4px solid #F6E1C4; /* 外枠の色 */
  font-size: 1.2rem;
  font-weight: bold;
}

/* ステップのヘッダー */
.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.step-header h3 {
  font-weight: bold;
        margin: 0;
}

.step-body p {
	font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ステップ画像 */
.step-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

}


/***** Chishiki お役立ちコンテンツ *****/
.Chishiki {
	background-image: radial-gradient(#4BB5EB 2px, transparent 2px), radial-gradient(#4BB5EB 2px, #f1fcff 2px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}
.ChishikiInner {
  margin: 20px 0;
}

.ChishikiList {
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
}

.ChishikiItem {
  width: calc(50% - 20px); /* 2列表示で、間にマージンをつけるために計算 */
  margin: 10px; /* 各アイテムの間にマージンを設定 */
  box-sizing: border-box;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
	position: relative;
	overflow: hidden;
}
.ChishikiItem a {
	padding: 16px 40px 16px 16px;
    overflow: hidden;
    display: block;
	transition: background-color 0.3s ease, transform 0.3s ease;
	text-decoration: none;
	color: #333;
}
.ChishikiItem a:hover {
	background: #CAF6F7;
	color: #2644AC;
}
.ChishikiItem a h3 {
	font-size: clamp(1.0rem, 2vw, 1.3rem);
    margin: 0;
}
.ChishikiItem a h3:before {
    content: "";
    position: absolute;
    top: 50%; /* 垂直中央に配置 */
    right: 16px; /* 右側に配置 */
    transform: translateY(-50%); /* テキストの高さに合わせて位置調整 */
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 13px solid #333;
    transition: border-left-color 0.3s ease; /* ホバー時の色変化にスムーズなトランジション */
}

/* ホバー時の矢印色変更 */
.ChishikiItem a:hover h3:before {
    border-left-color: #2644AC;
}
/* 小さな画面では1列表示に変更 */
@media (max-width: 768px) {
  .ChishikiItem {
    width: 100%;
  }
}

/***** Covid ウイルス対策コンテンツ *****/

.Covid ul {
  display: flex;
  align-items: center; /* 画像とテキストの中央揃え */
  justify-content: space-between; /* コンテンツ間にスペースを追加 */
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
}
.Covid ul li {
display: flex;
  justify-content: space-between;
  flex: 0 0 calc(33.333% - 16px); 
  background-color: #FFFFFF;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  border: solid 2px #07D0D8;
}
/* 画像のスタイル */
.CovidImg {
	width: 35%;
}
.CovidTaxt {
	width: 65%;
	flex: 1;
	padding-left: 16px;
}
.CovidTaxt h3 {
	font-size: clamp(0.8rem, 1vw, 16px);
    margin: 0 auto 8px;
    position: relative;
    background: #07D0D8;
    padding: 8px;
    border-radius: 8px;
    color: #FFF;
}
.CovidTaxt h3:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 16px;
    border: 8px solid transparent;
    border-top: 8px solid #07D0D8;
    width: 0;
    height: 0;
}

.CovidTaxt p {
  font-size: clamp(0.8rem, 1vw, 0.8rem);
  margin: 0 auto 8px;
}

/* レスポンシブ対応: 画面が小さい場合に縦並びに */
@media screen and (max-width: 768px) {
.Covid ul {
    
  }

.Covid ul li {
    flex: 0 0 100%; /* 画面幅いっぱいを使う */
    margin-bottom: 20px; /* コンテンツ間のスペースを追加 */
  }
}
