@charset "utf-8";

/*--------------------------------------------------
  CSS変数定義
--------------------------------------------------*/
:root {
	--black: #000;
	--white: #fff;
	--blue-gradation: linear-gradient(90deg, rgba(0, 138, 208, 1), rgba(102, 193, 238, 1));
	--contact-gradation: linear-gradient(90deg, rgba(236, 209, 56, 1) 0%, rgba(240, 147, 66, 1) 100%);
	--yokohama-blue: #005BAC;
	--nagoya-red: #E6023B;
	--yokohama-light-blue: #79AFE5;
	--nagoya-light-red: #eaa9a4;
}

/*--------------------------------------------------
  基本ユーティリティ
--------------------------------------------------*/
.sp {
	display: none !important;
}

@media screen and (max-width: 850px) {
	.sp {
		display: block !important;
	}

	.pc {
		display: none !important;
	}
}

/*--------------------------------------------------
  基本レイアウト
--------------------------------------------------*/
.introduction {
	text-align: center;
	font-weight: 700;
	margin-bottom: 20px;
}

.page_description {
	text-align: center;
	font-size: clamp(12px, 1.2vw, 16px);
	line-height: 1.8;
}

.venue_tags {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.venue_tag {
	padding: 5px 9px 6px 10px;
	border-radius: 40px;
	color: #FFFFFF;
	font-size: clamp(8px, 1vw, 10px);
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1;
	text-align: center;
}

.venue_price_list .venue_tag {
	width: 9vw;
}

.venue_tag.yokohama {
	background-color: #005BAC;
}

.venue_tag.nagoya {
	background-color: #E6023B;
}

.venue_tag.nagoya_grey {
	background-color: #B0B0B0;
}

.advertising_program .btn_cont {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
	width: 100%;
}

.advertising_program .btn_cont .btn {
	width: auto !important;
}

.advertising_program .advertorial .btn_cont .btn {
	padding: 10px 3em 10px 1em !important;
}

.advertising_program .btn_cont .btn.color_orange {
	background: var(--contact-gradation) !important;
}

@media screen and (min-width: 1200px) {
	.venue_tag {
		width: 30%;
	}

	.venue_price_list .venue_tag {
		width: 20%;
	}
}

@media screen and (max-width: 480px) {
	.advertising_program .btn_cont {
		row-gap: 10px;
	}

	.advertising_program .btn_cont .btn {
		width: 80% !important;
		max-width: unset !important;
		line-height: 1.6;
	}

	.advertising_program .advertorial .btn_cont .btn {
		font-size: 12px;
	}
}


/*--------------------------------------------------
  ページ内リンクリスト
--------------------------------------------------*/
.page_links_container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 40px auto 60px;
	max-width: 1200px;
}

.page_link_item {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, rgba(185, 217, 142, 1) 0%, rgba(0, 174, 149, 1) 100%);
	border-radius: 70px;
	padding: 10px 30px 10px 30px;
	transition: transform 0.2s ease;
	cursor: pointer;
	min-height: 60px;
	position: relative;
}

.page_link_item.contact_link {
	background: var(--contact-gradation);
}

.page_link_item::after {
	content: "\f078";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: 20px;
	color: #FFFFFF;
	font-size: 12px;
}

.link_content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}

.link_title {
	font-size: clamp(11px, 1.2vw, 14px);
	font-weight: 700;
	line-height: 1.4;
	color: #FFFFFF;
	margin: 0;
	text-align: center;
}

.contact_link .link_title {
	font-size: 14px;
}


/*--------------------------------------------------
  広告プログラムセクション
--------------------------------------------------*/
.ad_program_section {
	margin: 0 0 100px;
}

.ad_program_section.flag_block .ad_content_wrapper {
	margin-top: 80px;
}

.ad_program_section.flag_block .ad_content_wrapper.flag_block_first {
	margin-top: clamp(20px, 2vw, 30px);
}

.ad_program_header {
	margin-bottom: clamp(10px, 2vw, 30px);
}

.ad_title_bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(90deg, rgba(0, 138, 208, 1) 0%, rgba(102, 193, 238, 1) 100%);
	border-radius: 7.5px;
	padding: 10px 14px;
	gap: 10px;
}

.ad_title {
	font-size: clamp(14px, 1.2vw, 19px);
	font-weight: 900;
	line-height: 1.4;
	color: #FFFFFF;
	margin: 0;
}

.ad_tags {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ad_tag {
	padding: 7px 20px 8px;
	border-radius: 60px;
	color: #FFFFFF;
	font-size: clamp(10px, 1.2vw, 14px);
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1;
	text-align: center;
}

.detail_section_title .ad_tag {
	display: inline-block;
	padding: 5px 12px 6px 14px;
	margin: 2px 0 0 10px;
}

.ad_tag.limited {
	background-color: #F09342;
}

.ad_tag.yokohama {
	background-color: var(--yokohama-blue);
}

.ad_tag.nagoya {
	background-color: var(--nagoya-red);
}

.ad_description {
	margin-bottom: 30px;
}

.ad_description p {
	font-size: clamp(14px, 1.2vw, 16px);
	font-weight: 400;
	line-height: 2;
	color: #000000;
	margin: 0;
}

.ad_content_wrapper {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.ad_content_wrapper.second {
	margin-top: 40px;
}

.ad_details_section {
	flex: 1;
}

.ad_details {
	margin-bottom: 40px;
}

.ad_details:last-child {
	margin-bottom: 0;
}

.ad_image_section {
	flex: 1;
	max-width: 520px;
}

.ad_sample_image img {
	width: 100%;
	height: auto;
	display: block;
}

.image_note {
	font-size: 12px;
	color: #666;
	line-height: 1;
	text-align: left;
}


.detail_table {
	width: 100%;
	border-collapse: collapse;
}

.detail_table th {
	width: 160px;
	padding: 10px;
	background: var(--yokohama-light-blue);
	font-size: clamp(14px, 1.2vw, 16px);
	font-weight: 700;
	line-height: 1.8;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
	border: 2px solid #fff;
	border-right: 2px solid var(--yokohama-light-blue);
}

.detail_table.nagoya th {
	background: var(--nagoya-light-red);
	border-right: 2px solid var(--nagoya-light-red);
}

.detail_table th:first-child {
	border-left: none;
}

.detail_table tr:first-child th {
	border-top: 2px solid var(--yokohama-light-blue);
}

.detail_table.nagoya tr:first-child th {
	border-top: 2px solid var(--nagoya-light-red);
}

.detail_table tr:last-child th {
	border-bottom: 2px solid var(--yokohama-light-blue);
}

.detail_table.nagoya tr:last-child th {
	border-bottom: 2px solid var(--nagoya-light-red);
}

.detail_table td {
	width: 450px;
	padding: 10px 20px;
	background: #FFFFFF;
	border: 2px solid var(--yokohama-light-blue);
	border-left: none;
	font-size: clamp(14px, 1.2vw, 16px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.5;
	color: #000000;
	vertical-align: middle;
}

.detail_table.nagoya td {
	border: 2px solid var(--nagoya-light-red);
}

.detail_table tr:last-child td {
	border-bottom: 2px solid var(--yokohama-light-blue);
}

.detail_table .bullet-notes p {
	padding-left: 1em;
	text-indent: -1em;
}

.detail_table.nagoya tr:last-child td {
	border-bottom: 2px solid var(--nagoya-light-red);
}

.detail_table .price {
	font-size: clamp(20px, 1.2vw, 22px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
}

.detail_table .note {
	font-size: 12px;
	color: #777;
	display: block;
	line-height: 1.6;
	margin-top: 6px;
	padding-left: 1em;
	text-indent: -1em;
}

.venue_price_list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.venue_price_item {
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1;
}

.table_note_wrapper {
	margin-top: clamp(5px, 1vw, 15px);
}

.table_note {
	font-size: clamp(12px, 1.2vw, 14px);
	color: #777;
	line-height: 1.5;
	margin: 0;
	text-indent: -1em;
	padding-left: 1em;
}

@media screen and (max-width: 768px) {
	.ad_details_section {
		width: 100%;
	}
}


/*--------------------------------------------------
  お申込み・お問合せについて
--------------------------------------------------*/
.contact_section .contact_content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 50px;
}

.contact_section .contact_content .btn_cont {
	margin-top: 20px;
}

.contact_section .contact_content p {
	font-size: clamp(14px, 1.2vw, 18px);
}

.contact_section .blue_txt_box {
	margin-top: 20px;
}

@media screen and (max-width: 850px) {
	.contact_section .blue_txt_box {
		width: 100%;
	}

	.contact_section .contact_content p {
		text-align: left;
	}
}


/*--------------------------------------------------
  Detail section title with border line
--------------------------------------------------*/
.detail_section_title {
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 20px;
	margin-bottom: clamp(5px, 1.5vw, 20px);
	font-size: clamp(16px, 1.2vw, 19px);
	font-weight: 900;
	line-height: 1.8;
}

.detail_section_title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 100%;
	background: var(--yokohama-blue);
}

.detail_section_title.nagoya::before {
	background: var(--nagoya-red);
}

.detail_description {
	margin: 0 0 20px;
	font-size: clamp(14px, 1.2vw, 16px);
	line-height: 1.8;
}


@media screen and (max-width: 850px) {
	.page_links_container {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin: 35px 0;
	}
}

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

	.venue_price_list .venue_tag {
		width: 24%;
	}

	.ad_title_bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		padding: 20px 14px;
	}
}

@media screen and (max-width: 480px) {
	.page_links_container {
		grid-template-columns: 1fr;
		gap: 15px;
		margin: 30px 0;
	}

	.page_link_item {
		padding: 8px 45px 8px 30px;
		min-height: 45px;
	}

	.page_link_item::after {
		right: 20px;
		font-size: 10px;
	}

	.venue_tag {
		width: 30%;
		padding: 3px 5px 4px 6px;
	}

	/* 広告プログラムセクション レスポンシブ */
	.ad_program_section {
		margin: 60px 0;
	}

	.ad_tag {
		padding: 5px 12px;
	}

	.venue_tags {
		gap: 5px;
	}

	.ad_image_section {
		max-width: 100%;
	}

	.detail_table,
	.detail_table tbody,
	.detail_table tr,
	.detail_table th,
	.detail_table td {
		display: block;
	}

	.detail_table th,
	.detail_table td {
		width: 100%;
		font-size: 14px;
	}

	.detail_table th {
		padding: 4px 15px;
		border: 2px solid #79AFE5;
		border-bottom: none;
		text-align: left;
	}

	.detail_table.nagoya th {
		border: 2px solid var(--nagoya-light-red);
	}

	.detail_table td {
		padding: 10px 15px;
	}

	.detail_table tr:first-child th {
		border-top: 2px solid #79AFE5;
	}

	.detail_table tr:last-child th {
		border-bottom: 2px solid #79AFE5;
	}

	.detail_table td {
		border-left: 2px solid #79AFE5;
	}

	.detail_section_title h4 {
		font-size: 18px;
	}
}