@charset "UTF-8";

/* Reset & Base */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: 400;
	font-style: normal;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing: border-box;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section,
picture {
	display: block;
	box-sizing: border-box;
}

ol,
ul {
	list-style: none;
	list-style-type: none;
}

table {
	width: 100%;
	border-collapse: collapse;
}

html {
	position: relative;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	position: relative;
	min-width: 1100px;
	font-size: 16px;
	font-family: "Zen Old Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 500;
	line-height: 2.25;
	letter-spacing: 0.05em;
	color: #1f2428;
	background: #dcd8d5;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

a:link,
a:visited {
	color: #1f2428;
	text-decoration: none;
}

a {
	box-sizing: border-box;
	transition: all 0.3s;
}

a:hover {
	opacity: 0.5;
}

a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	line-height: 1;
	vertical-align: bottom;
}

p {
	line-height: 2.25;
}

.en {
	font-family: "Old Standard TT", serif;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.flexbox {
	display: flex;
	justify-content: space-between;
}

.flexbox.mid {
	align-items: center;
}

.flexbox.center {
	justify-content: center;
}

.sp_auto {
	width: auto !important;
	height: auto !important;
}

.pc_inline {
	display: inline;
}

.sp_inline {
	display: none;
}

.tab_hidden {
	display: inline;
}

.tabsp_hidden {
	display: block;
}

.pc_block {
	display: block;
}

.tabsp_block {
	display: none;
}

/* Sections common */
.sec_tit02 {
	padding-bottom: 48px;
	font-size: 3.6rem;
	font-weight: bold;
	letter-spacing: 0.3em;
	line-height: 1.5;
	text-align: center;
}

.sec_lead {
	font-size: 2.8rem;
	font-weight: bold;
	letter-spacing: 0.3em;
	line-height: 1.7;
	text-align: center;
}

.table {
	border: 1px solid #1f2428;
}

.table th,
.table td {
	padding: 24px;
	border: 1px solid #1f2428;
	font-size: 1.8rem;
	line-height: 2;
	vertical-align: top;
}

.table th {
	background: rgba(31, 36, 40, 0.8);
	color: #fff;
	font-weight: bold;
}

.table td a {
	color: #cc7112;
	text-decoration: underline;
}

/* Header */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(220, 216, 213, 0.95);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	backdrop-filter: blur(10px);
}

#header .header_inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

#header .header_logo {
	line-height: 1;
	flex-shrink: 0;
}

#header .header_logo a {
	display: block;
}

#header .header_logo img {
	height: 45px;
	width: auto;
}

#header .header_nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

#header .header_nav ul {
	display: flex;
	gap: 32px;
	align-items: center;
	margin: 0;
	padding: 0;
}

#header .header_nav li {
	white-space: nowrap;
}

#header .header_nav ul a {
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding: 8px 0;
	position: relative;
}

#header .header_nav ul a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #cc7112;
	transition: width 0.3s;
}

#header .header_nav ul a:hover::after {
	width: 100%;
}

#header .header_tel {
	display: flex;
	align-items: center;
}

#header .header_tel a {
	display: inline-block;
	padding: 10px 24px;
	background: #022c53;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	border-radius: 5px;
	transition: background 0.3s;
	white-space: nowrap;
}

#header .header_tel a:hover {
	background: #cc7112;
	opacity: 1;
}

#header .header_tel a::after {
	display: none;
}

#header .menu_toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 10px;
}

#header .menu_toggle span {
	display: block;
	width: 30px;
	height: 2px;
	background: #1f2428;
	transition: all 0.3s;
}

#header .menu_toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

#header .menu_toggle.active span:nth-child(2) {
	opacity: 0;
}

#header .menu_toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* MV */
#mv {
	position: relative;
	height: 70vh;
	min-height: 500px;
	max-height: 700px;
	padding-top: 70px;
	background: url(../img/poker/mv_bg.jpg) center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

#mv .mv_logo {
	text-align: center;
}

#mv .mv_logo img {
	max-width: 200px;
	height: auto;
}

/* Lead */
#lead {
	padding: 80px 0;
}

#lead .lead_col {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

#lead .col_body {
	width: 45%;
}

#lead .lead_tit {
	margin-bottom: 32px;
	line-height: 1.5;
}

#lead .lead_tit .main {
	display: block;
	font-size: 5.6rem;
	font-weight: bold;
	letter-spacing: 0.1em;
}

#lead .lead_tit .sub {
	display: block;
	margin-top: 8px;
	font-size: 3.2rem;
	font-weight: bold;
	letter-spacing: 0.3em;
}

#lead .lead_tit02 {
	margin-bottom: 32px;
	font-size: 2.4rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.8;
}

#lead .lead_txt {
	font-size: 1.8rem;
	line-height: 2;
}

#lead .lead_buttons {
	display: flex;
	gap: 16px;
	margin-top: 32px;
}

#lead .lead_btn {
	display: inline-block;
	padding: 14px 24px;
	font-size: 1.6rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s;
	text-align: center;
	white-space: nowrap;
}

#lead .lead_btn_tel {
	background: #022c53;
	color: #fff;
}

#lead .lead_btn_tel:hover {
	background: #cc7112;
	opacity: 1;
}

#lead .lead_btn_line {
	background: #06c755;
	color: #fff;
}

#lead .lead_btn_line:hover {
	background: #05b04d;
	opacity: 1;
}

#lead .col_pic {
	width: 50%;
}

/* Newopen */
#newopen {
	padding: 80px 0 24px;
}

#newopen .newopen_tit {
	padding-bottom: 80px;
	text-align: center;
}

#newopen .newopen_tit img:first-child {
	max-width: 350px;
	height: auto;
}

#newopen .newopen_tit br+img {
	margin-top: 24px;
	max-width: 420px;
	height: auto;
}

#newopen .newopen_video {
	margin-bottom: 80px;
}

#newopen .newopen_video video {
	width: 100%;
}

#newopen .newopen_bg {
	padding: 88px 0 306px;
	background: rgba(31, 36, 40, 0.8);
}

#newopen .newopen_bg .bg_txt {
	color: #fff;
	font-size: 2.6rem;
	letter-spacing: 0.3em;
	line-height: 1.66;
	text-align: center;
}

#newopen .newopen_bg .bg_txt .label {
	display: inline-block;
	padding: 8px 24px;
	background: #cc7112;
	margin-right: 32px;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.2;
	text-align: center;
	vertical-align: middle;
}

#newopen .newopen_bg .bg_box {
	position: relative;
	margin-top: 56px;
}

#newopen .newopen_bg .bg_box .box_item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc(50% - 4px);
	padding: 12px 24px;
	background: #f5e3d0;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.3;
	letter-spacing: 0.05em;
	text-align: center;
}

#newopen .newopen_bg .bg_box .box_item .color {
	display: block;
	margin-top: 4px;
	color: #cc7112;
	font-size: 3.1rem;
	font-weight: bold;
	line-height: 1.1;
	letter-spacing: 0.05em;
}

#newopen .newopen_bg .bg_box .box_item .small {
	display: block;
	margin-top: 2px;
	font-size: 1.8rem;
	font-weight: 400;
}

#newopen .newopen_bg .bg_box .box_circle {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 96px;
	height: 96px;
	margin: auto;
	background: #cc7112;
	border-radius: 50%;
	color: #fff;
	padding-top: 34px;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-align: center;
}

#newopen .newopen_mv {
	margin-top: -210px;
	text-align: center;
}

#newopen .newopen_mv img {
	max-width: 700px;
	width: 100%;
	height: auto;
}

#newopen .newopen_pic {
	margin-top: 32px;
	margin-bottom: 56px;
	gap: 36px 0;
}

#newopen .newopen_pic .pic_item {
	width: 30.8%;
	max-width: 332px;
}

#newopen .newopen_col {
	margin-top: 168px;
}

#newopen .newopen_col .col_item {
	position: relative;
	width: 47.41%;
	max-width: 512px;
}

#newopen .newopen_col .col_item .item_box {
	position: absolute;
	left: 0;
	right: 0;
	top: -60px;
	width: 160px;
	margin: 0 auto 0;
	padding-bottom: 8px;
	background: rgba(31, 36, 40, 0.8);
	color: #fff;
	font-size: 2.4rem;
	line-height: 1.2;
	text-align: center;
}

#newopen .newopen_col .col_item .item_box .icon {
	display: block;
	margin: -30px auto 5px;
}

#newopen .newopen_col .col_item .item_box .num {
	display: block;
	font-size: 4rem;
	line-height: 1;
}

#newopen .newopen_col .col_item .item_pic {
	margin-bottom: 28px;
}

#newopen .newopen_col .col_item .sec_lead {
	margin-bottom: 20px;
	font-size: 2.2rem;
	letter-spacing: 0.3em;
}

/* Info */
#info {
	padding: 80px 0 40px;
	letter-spacing: 0;
}

#info .table th {
	width: 30%;
}

/* Price */
#price {
	padding: 80px 0 100px;
	letter-spacing: 0;
}

#price .table th {
	width: 30%;
}

/* LINE Open Chat */
#line {
	padding: 80px 0 100px;
	background: #f5f5f5;
}

#line .sec_tit02 .sec_sub {
	display: block;
	font-size: 2rem;
	font-weight: 500;
	margin-top: 12px;
	color: #cc7112;
}

#line .line_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	margin-top: 40px;
}

#line .line_text {
	flex: 1;
}

#line .line_lead {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.8;
	margin-bottom: 24px;
	color: #1f2428;
}

#line .line_desc {
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 32px;
}

#line .line_button a {
	display: inline-block;
	padding: 16px 40px;
	background: #06c755;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	border-radius: 8px;
	transition: all 0.3s;
	text-decoration: none;
}

#line .line_button a:hover {
	background: #05b04d;
	opacity: 1;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

#line .line_qr {
	flex-shrink: 0;
	text-align: center;
}

#line .line_qr img {
	width: 300px;
	height: 300px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#line .qr_caption {
	margin-top: 16px;
	font-size: 1.4rem;
	color: #666;
}

/* Footer */
#footer {
	padding: 60px 0 40px;
	background: rgba(31, 36, 40, 0.9);
	color: #fff;
	text-align: center;
}

#footer .f_address {
	margin-bottom: 30px;
	font-size: 1.6rem;
	line-height: 2;
	font-style: normal;
}

#footer .f_address a {
	color: #fff;
	text-decoration: underline;
}

#footer .f_tel {
	margin-bottom: 40px;
}

#footer .f_tel a {
	display: inline-block;
	padding: 16px 40px;
	background: #cc7112;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	border-radius: 5px;
}

#footer .f_copyright {
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 1.4rem;
	opacity: 0.7;
}

/* Responsive - Tablet */
@media screen and (max-width: 1200px) {
	#header .header_inner {
		padding: 0 30px;
	}

	#header .header_nav {
		gap: 24px;
	}

	#header .header_nav ul {
		gap: 20px;
	}

	#header .header_nav ul a {
		font-size: 1.4rem;
	}

	#header .header_tel a {
		padding: 8px 20px;
		font-size: 1.4rem;
	}

	.container {
		padding: 0 30px;
	}

	#lead .lead_col {
		padding: 0 30px;
	}
}

/* Responsive - Mobile */
@media screen and (max-width: 810px) {
	html {
		font-size: 62.5%;
	}

	body {
		min-width: 0;
		font-size: 16px;
	}

	a[href^="tel:"] {
		pointer-events: auto;
	}

	a:hover {
		opacity: 1;
	}

	.container {
		padding: 0 20px;
	}

	.pc_inline {
		display: none;
	}

	.sp_inline {
		display: inline;
	}

	.tab_hidden {
		display: none;
	}

	.pc_block {
		display: none;
	}

	.tabsp_block {
		display: block;
	}

	/* Header SP */
	#header .header_inner {
		height: 60px;
		padding: 0 20px;
	}

	#header .header_logo img {
		height: 35px;
	}

	#header .header_nav {
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		height: calc(100vh - 60px);
		background: rgba(220, 216, 213, 0.98);
		padding: 40px 20px;
		transform: translateX(-100%);
		transition: transform 0.3s;
		flex-direction: column;
		gap: 0;
		z-index: 999;
	}

	#header .header_nav.active {
		transform: translateX(0);
	}

	#header .header_nav ul {
		flex-direction: column;
		gap: 0;
		align-items: stretch;
	}

	#header .header_nav li {
		border-bottom: 1px solid rgba(31, 36, 40, 0.1);
	}

	#header .header_nav ul a {
		font-size: 1.8rem;
		padding: 20px 0;
	}

	#header .header_nav ul a::after {
		display: none;
	}

	#header .header_tel {
		margin-top: 40px;
		flex-direction: column;
		gap: 20px;
	}

	#header .header_tel a {
		width: 100%;
		text-align: center;
		padding: 16px 24px;
		font-size: 1.8rem;
	}

	#header .menu_toggle {
		display: flex;
	}

	#mv {
		height: 60vh;
		min-height: 400px;
		max-height: 500px;
		padding-top: 60px;
		background: url(../img/poker/mv_bg_sp.jpg) center;
		background-size: cover;
	}

	#mv .mv_logo img {
		max-width: 150px;
	}

	#lead {
		padding: 48px 0;
	}

	#lead .lead_col {
		flex-direction: column;
		padding: 0 20px;
	}

	#lead .col_body {
		width: 100%;
		margin-bottom: 40px;
	}

	#lead .lead_tit .main {
		font-size: 4rem;
	}

	#lead .lead_tit .sub {
		font-size: 2.4rem;
	}

	#lead .lead_tit02 {
		font-size: 2rem;
	}

	#lead .lead_buttons {
		flex-direction: column;
		gap: 12px;
		margin-top: 24px;
	}

	#lead .lead_btn {
		width: 100%;
		padding: 12px 20px;
		font-size: 1.5rem;
	}

	#lead .col_pic {
		width: 100%;
	}

	#newopen {
		padding: 48px 0 24px;
	}

	#newopen .newopen_tit {
		padding-bottom: 40px;
	}

	#newopen .newopen_tit img {
		width: 240px;
		height: auto;
	}

	#newopen .newopen_tit br+img {
		width: 280px;
		margin-top: 20px;
	}

	#newopen .newopen_video {
		margin-bottom: 40px;
	}

	#newopen .newopen_bg {
		padding: 48px 0 200px;
	}

	#newopen .newopen_bg .bg_txt {
		font-size: 2.4rem;
		letter-spacing: 0.1em;
	}

	#newopen .newopen_bg .bg_txt .label {
		display: block;
		width: max-content;
		margin: 0 auto 12px;
		padding: 8px 24px;
		font-size: 2rem;
	}

	#newopen .newopen_bg .bg_box {
		margin-top: 32px;
		flex-direction: column;
	}

	#newopen .newopen_bg .bg_box .box_item {
		display: block;
		width: 100%;
		padding: 20px 8px;
		font-size: 2rem;
		letter-spacing: 0.05em;
	}

	#newopen .newopen_bg .bg_box .box_item .color {
		margin-top: 4px;
		font-size: 2.4rem;
		letter-spacing: 0.05em;
	}

	#newopen .newopen_bg .bg_box .box_item .small {
		font-size: 1.6rem;
	}

	#newopen .newopen_bg .bg_box .box_circle {
		position: relative;
		width: 80px;
		height: 80px;
		margin: -8px auto;
		padding-top: 28px;
		font-size: 2rem;
		letter-spacing: 0;
	}

	#newopen .newopen_mv {
		margin-top: -152px;
	}

	#newopen .newopen_pic {
		margin-top: 24px;
		margin-bottom: 40px;
		gap: 8px 8px;
		flex-wrap: wrap;
	}

	#newopen .newopen_pic .pic_item {
		width: calc(50% - 4px);
		max-width: 100%;
	}

	#newopen .newopen_col {
		margin-top: 24px;
		flex-direction: column;
	}

	#newopen .newopen_col .col_item {
		width: 100%;
		max-width: 100%;
		margin-top: 120px;
	}

	#newopen .newopen_col .col_item .item_box {
		font-size: 2rem;
	}

	#newopen .newopen_col .col_item .item_box .num {
		font-size: 3.2rem;
	}

	#newopen .newopen_col .col_item .item_pic {
		margin-bottom: 24px;
	}

	#newopen .newopen_col .col_item .sec_lead {
		letter-spacing: 0.2em;
	}

	#info {
		padding: 48px 0 48px;
	}

	#info .table th {
		width: 100%;
		display: block;
	}

	#info .table td {
		width: 100%;
		display: block;
	}

	#price {
		padding: 48px 0 96px;
	}

	#price .table th {
		width: 100%;
		display: block;
	}

	#price .table td {
		width: 100%;
		display: block;
	}

	#line {
		padding: 48px 0 64px;
	}

	#line .sec_tit02 .sec_sub {
		font-size: 1.6rem;
		margin-top: 8px;
	}

	#line .line_content {
		flex-direction: column;
		gap: 40px;
		margin-top: 32px;
	}

	#line .line_lead {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}

	#line .line_desc {
		font-size: 1.4rem;
		margin-bottom: 24px;
	}

	#line .line_button a {
		width: 100%;
		text-align: center;
		padding: 14px 32px;
		font-size: 1.6rem;
	}

	#line .line_qr img {
		width: 240px;
		height: 240px;
	}

	#line .qr_caption {
		font-size: 1.2rem;
	}

	.sec_tit02 {
		padding-bottom: 32px;
		font-size: 2.8rem;
	}

	.sec_lead {
		font-size: 2.2rem;
	}

	#footer {
		padding: 50px 0 30px;
	}

	#footer .f_address {
		margin-bottom: 25px;
		font-size: 1.4rem;
	}

	#footer .f_tel a {
		padding: 12px 30px;
		font-size: 2rem;
	}

	#footer .f_copyright {
		padding-top: 30px;
		font-size: 1.2rem;
	}
}
