@charset "UTF-8";
/* 株式会社Review DMS CSS Document */

:root {
  --fsize-mid: 30px;
  --fsize-H2: 2em;
}

*{
	padding:0px;
	margin:0px;
	border:0px;
	-webkit-text-size-adjust: 100%;
}

body {
	letter-spacing:1px;
	font-size:18px;
	font-family: "Montserrat", sans-serif;
	font-weight:400;
	line-height:180%;
	color:#333;
}

ul{
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
}
ol{
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
}
li{
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	margin: 0;
}

.vertical {
	writing-mode: vertical-rl;
	color: #bbb;
}

.line {
	letter-spacing: -3px;
}

/*_____ menu layout _____*/
.pc {
	display:block;
}
.tablet {
	display:none;
}

@media screen and (max-width: 1024px) {
.pc{
	display:none;
}
.tablet{
	display:block;
}

}


#wrapper{
	margin: 0 auto;
	background-color: #fff;
}


#logo_area{
	color: #ffffff;
	display: flex;
	padding: 15px 20px 0px;
	justify-content: space-between;
	width: 100%;
	z-index: 9999;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;  /*webkit系*/
	-moz-box-sizing: border-box;  /*Firefox*/
}

.horizontal_line {
	height: 2px;
	background-color: #62a0c7;
	margin: 30px 20px;
	width: 100%;
}

#header {
	color: #ffffff;
	display: flex;
	padding: 10px 20px 15px;
	position: sticky;
	top: 0;
	justify-content: right;
	width: 100%;
	z-index: 9999;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;  /*webkit系*/
	-moz-box-sizing: border-box;  /*Firefox*/
	transition: background-color 0.3s;
}

@media (min-width: 1024px) {

	#header.scrolled {
		background-color: rgb(153, 153, 153, 0.85);
	}

}

#header.scrolled .gnav_menu > a:not(a:last-child) {
	color: #fff;
}

.site_logo img {
    height: auto;
    width: 200px;
    display: block;
}

/*---------------------------------
menuゾーン
---------------------------------*/
.gnav_menu_area {
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 20px;
}

.gnav_menu_area li {
	position: relative;
}

.gnav_menu_area li:nth-last-child(2), .top_entry {
	background-color: #4285f4;
	border-radius: 9999px;
	margin: 0px 10px;
}

.gnav_menu_area li:nth-last-child(2) a, .entry_anker {
	color: #fff;
}

.gnav_menu_area li:nth-last-child(2) a img, .gnav_menu_area li:last-child a img {
	width: 22px;
	padding-left: 10px;
}

.gnav_menu_area li:last-child {
	background-color: #fff;
	border-radius: 9999px;
	margin: 0px 10px;
	border: 1px solid #4285f4;
}

.gnav_menu_area li:last-child a, .gnav_menu_area li:nth-last-child(2) a, .entry_anker {
	display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.9rem;
}

.site_logo + nav.gnav .gnav_menu {
    margin-left: 16px;
}

.site_logo + nav.gnav .gnav_menu:first-child {
    margin-left: 0px;
}

.gnav_menu, .gnav_menu a {
	color: #333;
}

.buttom_menu {
	padding: 0 1.2em;
}

/* サブメニュー */
.submenu {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	background: rgb(46, 46, 46, 0.75);
	border-radius: 5px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	list-style: none;
	padding: 10px 0;
	min-width: 160px;
	z-index: 100;
}

.submenu li a {
	display: block;
	padding: 6px 20px;
	/*color: #333;*/
	color: #fff;
	text-decoration: none;
	text-align: center;
}

.submenu li a:hover {
	background: #eee;
	color: #333
}

/* 吹き出しの三角 */
.submenu::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid rgb(46, 46, 46, 0.75);
}

/* ホバー時に表示 */
.gnav_menu_area > li:hover .submenu {
	display: block;
}

/*---------------------------------
トップ　ヘッダーメッセージ　エリア
---------------------------------*/

#top_header {
	background-image: url(../images/index/top_back_image.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
/*  height: 100vh;*/
	text-align: center;
	background-position: center 20%; 
}

.top_header_area {
	margin-top:30px;
}

#top_header h1 {
	padding-top: 55px;
	font-size: clamp(1.8rem, 1.364rem + 2.18vw, 3rem);
	line-height: 4rem;
	margin: 30px auto;
	width: 90%;
}

#top_header h2 {
	font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
	line-height: 2rem;
	margin: 0 auto 50px auto;
	width: 90%;
}


@media (max-width: 768px) {
	#top_header h1 {
		line-height: 3rem;
	}
}

.header_image {
	margin-bottom: 20px;
    position:relative;
}

.herader_input {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*left: calc(50% - 132px);*/
    display:flex;
    border: 1px solid #999;
    border-radius: 3px;
    overflow: hidden;
}

.herader_input input {
    width: 200px;
    padding: 8px;
    background-color:#fff;
    border: none;
    outline: none;
}

.header_bottom {
    background-color: #f8aa32;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_image > img {
	width: 80%;
	max-width: 950px;
}

.top_entry {
	margin: auto;
	width: 16rem;
    text-align: center;
  transition: all 0.3s;
}

.top_entry img {
	width: 22px;
	padding-left: 10px;
}

.entry_anker {
	margin: 10px auto;
	font-size: 1.1rem;
}

.top_entry:hover {
  transform: translateY(-3px);
}

/*---------------------------------
毎月更新されるデータ　エリア
---------------------------------*/

.updated_section {
	max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px 40px 20px;
}

/* 見出し */
.updated_title {
    text-align: center;
    font-size: clamp(1.5rem, 1.071rem + 1.81vw, 2.2rem);
    margin-bottom: 50px;
    font-weight: bold;
}

.updated_subtitle {
    text-align: center;
}

.blue-text {
    color: #2d79e6;
}

/* レイアウト構造 */
.updated_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* スマホで折り返し */
}

.updated_image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.laptop_img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.updated_list {
    flex: 1;
    min-width: 320px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 各リストアイテム */
.updated_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.updated_icon-box {
    width: 45px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 14px;
}

.updated_icon-box svg {
    width: 100%;
    height: 100%;
}

.updated_text-box h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #2d79e6;
    font-weight: bold;
}

.updated_text-box p {
    font-size: 1rem;
    font-weight: bold;
}

/* レスポンシブ調整 (タブレット・スマホ) */
@media (max-width: 768px) {
    .updated_wrapper {
        flex-direction: column;
        text-align: left;
    }
    .updated_image {
        order: 1; /* 画像を上に（お好みで） */
        margin-bottom: 20px;
    }
    .updated_list {
        order: 2;
    }
}


/*---------------------------------
法人・店舗データベース　エリア
---------------------------------*/


/* 基本設定 */
.databae_section {
    color: #333;
    padding: 60px 0 0 0;
    margin: 0 auto 50px auto;
}

/* タイトル */
.updated_title {
    text-align: center;
    font-size: 1.9rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* --- 中段：ブルー背景エリア --- */
.database_area1 {
    background-image: url(../images/index/top_back_image.svg);
    background-size: cover;
    background-position: center;
    padding: 40px 2rem;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 50px;
}

.database_box {
    display: grid;
    flex: 1;
    max-width: 1100px;
    gap: 60px;
    margin: auto;
    place-items: center;
    grid-template-columns: 1fr 100px 13rem;
    grid-template-areas: "discription image string";
}

.discription_wrapper {
	grid-area: "discription";
}

.image_wrapper {
	grid-area: "image";
}

.string_wrapper {
	grid-area: "string";
}

@media (max-width: 768px) {
	.database_box {
    grid-template:
        "description" auto
        "image" auto
        "string" auto;
	}
}

.database_area1 h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* カテゴリーリスト（中段） */
.database_area1 ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.database_area2 {
	max-width: 1100px;
	margin: auto;
}

/* --- 共通：タグのデザイン --- */
.databae_section li {
    background: #fff;
    padding: 8px 15px 8px 25px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* タグ左側の青い棒 */
.databae_section li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: #0076a3;
    border-radius: 10px;
}

.databae_section .discription_wrapper li::before {
    background-color: #2d79e6;
}

/* --- 右側：数字部分 --- */
.database_area1 .count-box {
    text-align: center;
    font-weight: bold;
}

.database_area1 .count-num {
    font-size: 4rem;
    line-height: 1;
}

.database_area1 .count-sub {
    font-size: 1.1rem;
    display: block;
}

/* --- 下段：キーワードグリッド --- */
.keyword-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 20px;
}

.keyword-list {
    list-style: none;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .database_area1 {
        flex-direction: column;
        text-align: center;
    }
    .database_area1 ul {
        justify-content: center;
    }
    .database_area1 .count-box {
        text-align: center;
    }
}


/*---------------------------------
目的別に選べるデータ活用　エリア
---------------------------------*/

.results_section {
    background-color: #e4f1f9;
    padding-top: 60px;
    padding-bottom: 10px;
}

.results_area {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 50px;
}

.results_title {
    font-size: 1.5;
    margin-bottom: 30px;
    line-height: 1.5;
    padding: 0 10px;
}


/* カードのレイアウト */
.results_card-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* レスポンシブ対応 */
    margin: 0 20px 50px 20px;
}

.results_card {
    background: #fff;
    border-radius: 8px;
    flex: 1;
    /*min-width: 300px;*/
    min-width: 350px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    flex-grow: 0;
}

.results_card-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to bottom, #89c4e1 0%, #68aecf 50%, #519bc1 100%);
    padding: 10px 0;
}


.results_inner {
    padding: 0 20px 20px 20px;
}

.results_card-desc {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 30px;
}

.results_case {
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: left;
}

/* 色の定義 */
.color-blue { color: #3b82f6; }
.bg-blue { background-color: #3b82f6; color: #fff; }
.bg-orange { background-color: #ffab40; color: #fff; }
.bg-white { background-color: #fff; color: #ff4d4d; border: 1px dotted #999 !important; }

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .results_card {
        width: 100%;
    }
    .results_card-desc {
        height: auto;
    }
}


/*---------------------------------
共通　無料カウント登録ボタン
---------------------------------*/


.top_entry1 {
	background-color: #fff;
	border-radius: 9999px;
	margin: 30px auto;
	width: 16rem;
	transition: all 0.3s;
	border: 1px solid #3b82f6;
    text-align: center;
}

.entry_anker1 {
	color: #666;
	margin: 10px auto;
	font-size: 1.1rem;
	    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.top_entry1 img {
	width: 22px;
	padding-left: 10px;
}

.top_entry1:hover {
  transform: translateY(-3px);
}

/*---------------------------------
Features エリア
---------------------------------*/

.features-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 30px 20px;
}

/* 中央寄せの共通幅 */
.features-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px; /* ここで左右の余白を確保 */
}

.main-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: bold;
}

/* --- 背景色を幅いっぱいに付ける設定 --- */
.feature-section-gray {
    background-color: #eee; /* 薄いグレー */
    width: 100%;
    padding: 60px 0; /* 上下の余白 */
    margin-bottom: 40px;
}

/* 各機能のブロック */
.feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* 02のブロック用のマージン（背景がないので直接指定） */
.features-container .feature-item {
    margin-bottom: 80px;
}

/* テキストエリア */
.feature-content {
    flex: 1.7;
}

.feature-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    border-bottom: 2px solid #00b3cc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.feature-number {
    font-size: 1.8rem;
    font-weight: bold;
}

.feature-title {
    font-size: 1.45rem;
}

.feature-body h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-body p {
    font-size: 0.95rem;
    text-align: justify;
}

/* 画像エリア */
.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    /*background: #fff;*/
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        gap: 20px;
    }
}

/*---------------------------------
導入後の変化　エリア
---------------------------------*/

.change_section {
    background-color: #e4f1f9;
    padding-top: 50px;
    padding-bottom: 60px;
    margin-top: 50px;
}

/* 全体コンテナの設定 */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* カード間の隙間 */
    padding: 20px;
    justify-content: center;
}

/* カードの基本スタイル */
.card {
    box-sizing: border-box;
    border: 2px solid #5da5d1;
    border-radius: 20px;
    padding: 30px 20px;
    background-color: #fff;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

/* レスポンシブ対応：画面が1000px以下の時は2つ並び */
@media (max-width: 1000px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* レスポンシブ対応：画面が650px以下の時は1つ並び */
@media (max-width: 650px) {
  .card {
    flex: 1 1 100%;
  }
}

/* テキスト部分のスタイル */
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}
.card-title::before {
    content: "▶";
    position: absolute;
    left: 0;
    /*top: 5px;*/
    font-size: 1rem;
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
}

/* 導入前・矢印・画像部分のレイアウト */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto; /* 下部に固定 */
}

.status-before {
    font-size: 0.9rem;
    color: #333;
}
.status-before span {
    border-right: 1px solid #ccc;
    padding-right: 8px;
    margin-right: 8px;
}

/* オレンジ色の矢印の描画 */
.orange-arrow {
    display: inline-block;
    width: 100%;
    height: 6px;
    background-color: #ffb84d;
    position: relative;
}
.orange-arrow::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -6px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #ffb84d; /* 矢印の先端部分 */
}

/* 画像部分の設定 */
.status-image img {
    width: 120px;
    height: auto;
    object-fit: contain;
}


/*---------------------------------
Q&A エリア
---------------------------------*/

.qa-container {
  max-width: 900px;
  margin: 0px auto;
  padding: 60px 20px;
  color: #333;
}

.qa-title {
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

/* 質問項目 */
.qa-item {
  border-bottom: 1px solid #ddd;
}

.qa-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  text-align: left;
}

.qa-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qa-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.question-text {
  font-size: 18px;
  font-weight: bold;
}

/* ＋アイコンの動き */
.toggle-icon {
  font-size: 24px;
  font-weight: lighter;
  transition: transform 0.3s ease;
}

/* 回答項目 (初期表示は非表示) */
.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fcfcfc;
}

.qa-answer-content {
  display: flex;
  gap: 15px;
  padding: 10px 0 30px 0;
}

.answer-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* アクティブ時のスタイル */
.qa-item.is-open .qa-answer {
  max-height: 500px;
}

.qa-item.is-open .toggle-icon {
  transform: rotate(45deg); /* +を傾けて×、もしくはJSで文字を-に変える */
}

/* レスポンシブ (スマホ対応) */
@media (max-width: 600px) {
  .question-text {
    font-size: 15px;
  }
  .answer-text {
    font-size: 14px;
  }
  .qa-icon {
    width: 30px;
    height: 30px;
  }
}

/*---------------------------------
to フォーム　エリア
---------------------------------*/

.toform_section {
	text-align: center;
	background: linear-gradient(134deg, #2B89BD, #84C4DC);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.toform_midashi {
	font-size: var(--fsize-mid);
	font-weight: bold;
	padding: 100px 20px;
	color: #fff;
}

.button-container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 100px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-group a {
	text-decoration:none;
}

.label {
    color: white;
    font-size: 25px;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.05em;
}

.cta-button {
    background-color: white;
    border-radius: 26px;
    padding: 18px 26px;
    font-size: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 60px;
    min-width: 360px;
    justify-content: center;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.cta-button.blue {
    color: #2B89BD;
    border: 2px solid #2B89BD;
}

.cta-button.green {
    color: #84C4DC;
    border: 2px solid #84C4DC;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .button-container {
        gap: 40px;
    }

    .cta-button {
        min-width: 280px;
        padding: 15px 40px;
        font-size: 16px;
    }

    .label::before,
    .label::after {
        width: 30px;
    }
}

/*---------------------------------
notice　エリア
---------------------------------*/

.notice-container {
    margin: 50px auto;
    padding: 60px 0;
}

.card-list3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 30px;
	padding: 30px 80px 0 80px;
	margin-bottom: 100px;

}

.card3 {
	position: relative;
	border-radius: 0 12px 12px 12px;
	width: 340px;
	margin-bottom: 20px;
}

.card3 img {
	width: 100%;
	margin-bottom: 12px;
}
.card3 p {
	font-size: 16px;
	line-height: 1.6;
}

.card3_str1 {
	font-weight: 500;
}

.card3_str2 {
	margin:12px 0;
}

.card3_str3 {
	background-color:#999;
	padding: 5px 12px;
	border-radius: 7px;
	text-align: right;
	display: inline;
}

.card3_downoad {
	text-align: right;
}

.card3_str3 a {
	color: #fff;
}

/*---------------------------------
トップ　footer　エリア
---------------------------------*/

#footer {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
	height: 44vh;
	margin: 0;
	padding: 0 5%;
	box-sizing: border-box;
}

/* 左側 */
.fleft-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.logo img {
  width: 300px;
  margin-right: 10px;
}

.login-btn {
  background-color: #002b4c;
  color: #fff;
  padding: 12px 100px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-btn::before {
  content: "🔒";
  font-size: 18px;
}

.fleft-area a {
	text-decoration: none;
}

/* 右側 */
.fright-area {
  display: flex;
  align-items: center;
  gap: 40px;
}

.divider {
  width: 1px;
  height: 135px;
  background: #ccc;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-group a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.link-group a:hover {
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .fright-area {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .divider {
    display: none;
  }
}


@media screen and (max-width: 570px) {

	#footer {
		height: auto;
	}

	.fleft-area {
		display: block;
		text-align: center;
		margin:  40px auto;
	}

	.fright-area {
		text-align: center;
		margin: 0 auto 30px auto;
	}

}

/* ===== 追加ブロック：飲食店データ無料ダウンロード ===== */
.freedl_section {
  padding: 40px 20px;
  background: #fff;
}

.freedl_outer {
  max-width: 800px;
  margin: 0 auto;
  background: #fff8f0;
  border: 2px solid #f5a623;
  border-radius: 16px;
  padding: 28px 32px 24px;
}

.freedl_inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* 左カラム */
.freedl_left {
  flex: 1;
  font-size: 1rem;
}

.freedl_badge {
  display: inline-block;
  background: #f5a623;
  color: #fff;
  font-weight: bold;
  padding: 5px 16px;
  border-radius: 6px;
  margin-bottom: 14px;
  width: 70%;
  text-align: center;
}

.freedl_data_title {
  color: #333;
  margin-bottom: 6px;
  font-weight: normal;
}

.freedl_data_title strong {
  font-size: 26px;
  font-weight: 900;
  color: #f5a623;
}

.freedl_area {
  color: #333;
  margin-bottom: 10px;
}

.freedl_desc {
  color: #555;
  line-height: 1.7;
}

/* 右カラム */
.freedl_right {
  flex: 1;
  font-size: 1rem;
}

.freedl_right_box {
    border: 1px solid #999;
    border-radius: 6px;
    padding: 8px;
    background-color: #fff;
}

.freedl_right_title {
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.freedl_flow_label {
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.freedl_flow_label img {
  width: 20px;
  height: auto;
}

.freedl_dl_icon {
  font-size: 16px;
  color: #555;
}

.freedl_steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.freedl_steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.freedl_step_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}

/* ボタン */
.freedl_btn_wrap {
  margin-top: 22px;
  text-align: center;
}

.freedl_btn {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  background: #f5a623;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 10px;
  transition: opacity 0.2s;
}

.freedl_btn:hover {
  opacity: 0.85;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .freedl_right {
    width: 100%;
  }
  .freedl_inner {
    flex-direction: column;
    gap: 20px;
  }
  .freedl_outer {
    padding: 22px 18px 20px;
  }
  .freedl_btn {
    font-size: 15px;
    max-width: 100%;
    box-sizing: border-box;
  }
}
/* ===== /追加ブロック ===== */
