@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Helvetica', 'Arial', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN','Meiryo', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
	box-sizing: border-box;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: #191919;
	text-decoration: none;
}
a:visited {
	color: #191919;
}
a:hover {
	opacity: 0.7;
}
a:active {
	color: #191919;
}

.left, .right {
	float: none;
	margin: 0;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	margin: 0 auto;
	color: #000;
	font-size: 1.6rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	position: fixed;
	top: 0;
	width: 100%;
}
.content {
	max-width: 1000px;
	width: 95%;
	margin: 0 auto;
}
.top_content {
	max-width: 1200px;
	width: 95%;
	margin: 0 auto;
}
#container {
	position: relative;
	text-align: left;
	overflow: hidden;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media screen and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.5rem;
	}
	.content, .top_content {
		width: 90%;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}

/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
.br-tb {
	display: none;
}
.br-sp {
	display: none;
}

.pc-off{
	display: none;
}

@media screen and (max-width:896px) {
	.br-tb {
		display: block;
	}
	.tb-off {
		display: none;
	}
}
@media screen and (max-width:430px) {
	.br-sp {
		display: block;
	}
	.sp-off {
		display: none;
	}
	.pc-off{
		display: block;
	}
}

/* ローディング */
#splash {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1200;
	background: #fff;
	text-align:center;
}
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo img {
	width: 100px;
}
@keyframes fadeIn{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


.top_btn a {
	background-color: #000;
	border-radius: 50vh;
	padding: 15px 35px;
	color: #fff;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 10px;
	width: fit-content;
	margin-top: 40px;
}
.top_btn a span {
	background-color: #fff;
	border-radius: 50%;
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
}
.top_btn a span::after {
	content: "";
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	width: 7px;
	height: 7px;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width:450px) {
	.top_btn a {
		margin: 40px auto 0;
	}
}


/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/

#header .header_content {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
	padding: 20px 120px 20px 30px;
}
#header .header_logo {
	display: grid;
	grid-template-columns: auto auto;
	gap: 20px;
}
#header .header_logo h1 {
	font-size: 11px;
	font-weight: normal;
}
#header .header_logo h1 span {
	display: block;
}
#header .header_btn {
	display: grid;
	grid-template-columns: auto auto;
	gap: 15px;
	align-items: center;
	width: fit-content;
	margin-left: auto;
	margin-bottom: 20px;
}
#header .header_btn .lang ul {
	background-color: #000;
	display: flex;
	border-radius: 50vh;
	padding: 13px 10px;
}
#header .header_btn .lang ul li {
	display: block;
}
#header .header_btn .lang ul li a {
	color: #fff;
	padding: 0 10px;
	border-right: 1px solid #fff;
	line-height: 0.8;
	display: flex;
	font-size: 12px;
}
#header .header_btn .lang ul li:last-child a {
	border-right: 0;
}
#header .header_btn .sns ul li a img {
	width: 38px;
}
#header .header_nav nav ul {
	display: flex;
	gap: 40px;
	font-size: 14px;
}
#header .header_lang {
	display: none;
	position: relative;
}
#header .header_lang::after {
	content: "";
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	width: 7px;
	height: 7px;
	position: absolute;
	right: 12px;
	top: 45%;
	transform: translate(0, -50%) rotate(45deg);
}
#header .header_lang select {
	appearance: none;
	background-color: #000;
	color: #fff;
	padding: 2px 25px 2px 15px;
	border: 0;
	border-radius: 50vh;
	font-size: 14px;
}
    
@media screen and (max-width:1150px) {
	#header .header_nav nav ul {
		gap: 20px;
	}
}
@media screen and (max-width:1000px) {
	#header .header_btn, #header .header_nav {
		display: none;
	}
	#header .header_lang {
		display: block;
	}
}
@media screen and (max-width:896px) {
	#header {
		position: static;
	}
	#header.bg {
		background-color: transparent;
	}
	#header .header_lang {
		margin-right: 15px;
	}
	#header .header_content {
		padding: 15px 75px 15px 15px;
	}
	#header .header_logo h1 {
		font-size: 10px;
	}
	#header .header_logo img {
		height: 60px;
	}
}
@media screen and (max-width:355px) {
	#header .header_lang select {
		padding: 2px 20px 2px 10px;
    font-size: 12px;
	}
	#header .header_lang::after {
    width: 6px;
    height: 6px;
    right: 10px;
	}
	#header .header_logo img {
		height: 45px;
	}
}

/*------------------------------------------------------------
	メインビジュアル
------------------------------------------------------------*/
#mainvisual .mainvisual_content {
	position: relative;
	width: 100%;
	overflow: hidden;
}
#mainvisual .mainvisual_img{
	width: 100%;
	object-fit: cover; /* 画像の縦横比を保ちつつ全体にフィット */
}
#mainvisual .mainvisual_txt{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); /* 縦横中央に配置 */
	width: 200px; /* 必要に応じて調整 */
}
#mainvisual .mainvisual_img.sp_img {
	display: none;
}

@media screen and (max-width:896px) {
	#mainvisual .mainvisual_txt{
		width: 150px; /* 必要に応じて調整 */
	}
}

@media screen and (max-width:768px) {

	#mainvisual .mainvisual_img {
		height:calc(100vh - 90px) ;
	}
	#mainvisual .mainvisual_img.sp_img {
		display: block;
	}
	#mainvisual .mainvisual_img.pc_img {
		display: none;
	}
	#mainvisual .mainvisual_img img {
		height: 100%;	
	}
}

/*------------------------------------------------------------
	トップーニュース
------------------------------------------------------------*/

#top_news .top_news-left {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 30px;
	line-height: 1.8;
	margin: 40px 0 40px;
}
#top_news .top_news-left img{
	width: 300px;
	margin: 0 auto;
}
#top_news .top_news-left .txt h2 {
	font-size: 22px;
	letter-spacing: 1px;
	font-weight: bold;
}
#top_news .top_news-left .txt p {
	font-size: 20px;
}
#top_news .top_news-right h2 img {
	margin-bottom: 15px;
}
#top_news .top_news-right ul li {
	border-top: 1px solid #000;
}
#top_news .top_news-right ul li a {
	padding: 15px 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1em;
}
#top_news .top_news-movie {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	margin: 0 calc(50% - 50vw) 80px;
}
#top_news .top_news-movie iframe {
	aspect-ratio: 16/9;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:896px) {
	#top_news .top_news-movie {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin: 0 auto 40px;
	}
}
@media screen and (max-width:700px) {
	#top_news .top_news-left {
		grid-template-columns: 1fr;
		text-align: center;
	}
	#top_news .top_news-right ul li a {
		grid-template-columns: 1fr;
		gap: 7px;
	}
}

/*------------------------------------------------------------
	トップーリンク
------------------------------------------------------------*/
#top_link .top_link-content {
	display: grid;
	background-color: #000;
	grid-template-columns: auto auto;
}
#top_link .top_link-item {
	text-align: center;
	height: 377px;
}

#top_link .top_link-item:nth-child(1) a {
	background-image: url(../img/top/top_link_img_01.jpg);
	background-size: cover;
}
#top_link .top_link-item:nth-child(2) a {
	background-image: url(../img/top/top_link_img_02.jpg);
	background-size: cover;
}
#top_link .top_link-item:nth-child(3) a {
	background-image: url(../img/top/top_link_img_03.jpg);
	background-size: cover;
}
#top_link .top_link-item:nth-child(4) a {
	background-image: url(../img/top/top_link_img_04.jpg);
	background-size: cover;
}
#top_link .top_link-item a {
	color: #fff;
	height: 100%;
	width: 100%;
	display: grid;
	align-content: center;
	background-color:rgba(0, 0, 0, 0.3);
	background-blend-mode:darken;
}
#top_link .top_link-item .title {
	margin: 0 auto;
	width: 300px;
}
#top_link .top_link-item p {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
#top_link .top_link-item p::before {
	content: "";
	background-color: #fff;
	width: 1px;
	height: 18px;
	display: block;
}

@media screen and (max-width:896px) {
	#top_link .top_link-item:nth-child(n+1) {
		width: 100%;
		height: clamp(250px, 65vw, 377px);
	}
	#top_link .top_link-content {
		grid-template-columns: auto;
	}
}
@media screen and (max-width:450px) {
	#top_link .top_link-item .title {
		width: 230px;
	}
}

/*------------------------------------------------------------
	トップー特徴
------------------------------------------------------------*/
#top_feature {
	margin: 100px 0;
	overflow: hidden;
}
#top_feature .top_feature-item {
	display: grid;
	grid-template-columns: 40% 1fr;
	align-items: center;
	gap: 50px;
	margin-bottom: 100px;
}
#top_feature .top_feature-item.reverse {
	grid-template-columns: 1fr 40%;
}
#top_feature .top_feature-item:last-child {
	margin-bottom: 0;
}
#top_feature .top_feature-item .txt h2 {
	font-size: clamp(34px, 8vw, 58px);
	font-weight: 200;
	line-height: 1.2;
	margin-bottom: 30px;
}
#top_feature .top_feature-item .txt p {
	line-height: 1.8;
	font-weight: 300;
}
#top_feature .top_feature-item .img {
	margin-right: calc(100% - 60vw + 50px);
	overflow: hidden;
}
#top_feature .top_feature-item.reverse .img {
	margin-right: 0;
	margin-left: calc(100% - 60vw + 50px);
}

@media screen and (max-width:896px) {
	#top_feature .top_feature-item, #top_feature .top_feature-item.reverse {
		grid-template-columns: 1fr;
		margin-bottom: 70px;
	}
	#top_feature .top_feature-item .img {
		margin-right: calc(50% - 50vw);
	}
	#top_feature .top_feature-item.reverse .txt {
		order: 1;
	}
	#top_feature .top_feature-item.reverse .img {
		margin-left: calc(50% - 50vw);
		order: 2;
	}
}
 


/*------------------------------------------------------------
	トップーユーザー
------------------------------------------------------------*/

#top_user .top_user-content h2 {
	font-size: clamp(34px, 8vw, 58px);
	font-weight: 200;
	margin-bottom: 40px;
	line-height: 1.2;
}
#top_user .top_user-content .top_btn a{
	margin: 0 auto;
}
#top_user .top_user-content p {
	margin-bottom: 50px;
	line-height: 1.8;
}
#top_user .top_user-ttl {
	text-align: center;
	margin-top: 50px;
}
#top_user .top_user-inner {
	max-width: 1000px;
	margin: 0 auto;
}
#top_user .top_user-text-content{
	width: 90%;
	margin: 0 auto;
}
/*------------------------------------------------------------
	トップーアバウト
------------------------------------------------------------*/
#top_about {
	overflow: hidden;
	margin: 100px 0 40px;
}
#top_about .top_about-content h2 {
	font-size: clamp(34px, 8vw, 58px);
	font-weight: 200;
	margin-bottom: 40px;
	line-height: 1.2;
}
#top_about .top_about-content h3 {
	font-size: clamp(22px, 4vw, 26px);
	font-weight: 600;
	text-align: center;
	margin-bottom: 40px;
}
#top_about .top_about-content h4 {
	font-size: clamp(17px, 4vw, 19px);
	font-weight: 600;
	line-height: 2.0;
	margin-bottom: 40px;
}
#top_about .top_about-content p {
	text-align: left;
	margin-bottom: 50px;
	line-height: 1.8;
}
#top_about .top_about-ttl {
	text-align: center;
}
#top_about .top_about-inner {
	max-width: 1000px;
	/* width: 95%; */
	margin: 0 auto;
}
#top_about .top_about-item {
	display: grid;
	grid-template-columns: 35% 1fr;
	gap: 80px;
	align-items: center;
	margin-bottom: 100px;
}
#top_about .top_about-item .img {
	margin-right: calc(100% - 65vw + 120px);
	overflow: hidden;
}
#top_about .top_about-item.reverse {
	grid-template-columns: 1fr 35%;
}
#top_about .top_about-item.reverse .img {
	margin-right: 0;
	margin-left: calc(100% - 65vw + 120px);
}
#top_about .top_about-inner.inner_01, #top_about .top_about-inner.inner_02 {
	text-align: center;
}
#top_about .top_about-inner.inner_03 {
	display: grid;
	grid-template-columns: 285px 1fr;
	align-items: center;
	gap: 60px;
	margin-bottom: 140px;
}
#top_about .top_about-inner.inner_03 .left {
	overflow: hidden;
}
#top_about .top_about-inner.inner_03 .left img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
#top_about .top_about-inner.inner_03 .right h4 {
	margin-bottom: 25px;
}
#top_about .top_about-inner.inner_03 .right p {
	margin-bottom: 0;
}
#top_about .top_about-inner.inner_04 h4 {
	text-align: center;
}
#top_about .top_about-btn {
	margin: 0 auto 70px;
	width: fit-content;
}

@media screen and (max-width:896px) {
	#top_about .top_about-item {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 70px;
	}
	#top_about .top_about-item .img {
		margin-right: calc(50% - 50vw);
	}
	#top_about .top_about-item.reverse {
		grid-template-columns: 1fr;
	}
	#top_about .top_about-item.reverse .txt {
		order: 1;
	}
	#top_about .top_about-item.reverse .img {
		margin-left: calc(50% - 50vw);
		order: 2;
	}
	#top_about .top_about-inner.inner_01, #top_about .top_about-inner.inner_02 {
		text-align: left;
	}
	#top_about .top_about-inner.inner_03 {
		grid-template-columns: 1fr;
		margin-bottom: 70px;
		gap: 40px;
	}
	#top_about .top_about-inner.inner_03 .left {
		order: 2;
	}
	#top_about .top_about-inner.inner_03 .right {
		order: 1;
	}
	#top_about .top_about-content h2 {
		text-align: center;
	}
}



/*------------------------------------------------------------
	トップーサポート
------------------------------------------------------------*/
#top_support {
	background-color: #000;
	color: #fff;
}
#top_support .top_support-content {
	padding: 80px 0 100px;
}
#top_support .top_support-ttl {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 15px 0;
	text-align: center;
}
#top_support .top_support-ttl h2 {
	font-size: clamp(20px ,4vw, 24px);
}
#top_support .top_support-ttl h2 span {
	font-size: clamp(30px, 6vw, 36px);
}
#top_support .top_support-content h3 {
	text-align: center;
	font-size: clamp(20px, 4vw, 26px);
	margin-top: 60px;
	margin-bottom: 20px;
}
#top_support .top_support-content p a {
	color: #fff;
	text-decoration: underline;
}
#top_support .top_support-content ul {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	gap: 20px;
	margin: 60px 0;
}
#top_support .top_support-content ul li img {
	border-radius: 28px;
	border: 1px solid #707070;
}
#top_support .top_support-content ul li h4 {
	text-align: center;
	font-size: clamp(18px, 4vw, 22px);
	margin-top: 20px;
}
#top_support .top_support-content ul li.arrow {
	width: 25px;
	height: 75%;
	display: block;
	position: relative;
}
#top_support .top_support-content ul li.arrow::before, #top_support .top_support-content ul li.arrow::after {
	content: "";
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#top_support .top_support-content ul li.arrow::before {
	width: 5px;
	height: 25px;
}
#top_support .top_support-content ul li.arrow::after {
	width: 25px;
	height: 5px;
}

@media screen and (max-width:768px) {
	#top_support .top_support-content ul {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr auto 1fr auto 1fr;
		max-width: 300px;
		margin: 60px auto;
	}
	#top_support .top_support-content ul li.arrow {
		width: 100%;
		height: 25px;
	}
}

/*------------------------------------------------------------
	トップーメッセージ
------------------------------------------------------------*/
#top_message {
	margin: 100px 0;
}
#top_message .top_message-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}
#top_message .top_message-content .left {
	margin-left: calc(100% - 45vw);
}
#top_message .top_message-content .right p {
	line-height: 1.8;
	font-size: 18px;
}
#top_message .top_message-content .right p.name {
	text-align: right;
	font-size: 14px;
	margin-top: 30px;
	line-height: 1.5;
}
#top_message .top_message-content .right p.name span {
	font-size: 22px;
	font-weight: bold;
}

@media screen and (max-width:896px) {
	#top_message .top_message-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	#top_message .top_message-content .left {
		margin-left: auto;
	}
}
@media screen and (max-width:450px) {
	#top_message {
		margin: 0 0 100px;
	}
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#footer {
	background-color: #000;
}
#footer .footer_content {
	padding: 50px 50px 100px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 30px;
}
#footer .footer_nav nav {
	display: grid;
	grid-template-columns: auto auto auto;
	width: fit-content;
	gap: 50px;
}
#footer .footer_nav nav ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
#footer .footer_nav nav ul li a {
	color: #fff;
	font-size: clamp(12px, 3vw, 14px);
}
#footer .footer_right {
	text-align: right;
}
#footer .footer_logo a h1 {
	color: #fff;
	font-size: 12px;
	margin-bottom: 15px;
	font-weight: normal;
}
#footer .footer_copy {
	color: #fff;
	font-size: 12px;
	margin-top: 15px;
}

@media screen and (max-width:896px) {
	#footer .footer_content {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	#footer .footer_right {
		text-align: center;
	}
}
@media screen and (max-width:600px) {
	#footer .footer_content {
		padding: 50px 5% 100px;
	}
	#footer .footer_nav nav {
		grid-template-columns: auto auto;
		gap: 30px;
	}
}


/*------------------------------------------------------------
	下層ー共通
------------------------------------------------------------*/
#sec_top .sec_top-content {
	padding: 30px 0;
}
#sec_top .sec_top-ttl {
	text-align: center;
	margin-bottom: 10px;
}
#sec_top .sec_top-ttl h2 {
	font-size: 50px;
	font-family: 'futura';
	font-weight: bold;
	line-height: 1.0;
}
#sec_top .sec_top-ttl p {
	font-size: 18px;
	font-weight: 600;
}
#sec_top .sec_top-pankuzu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13px;
}

/*------------------------------------------------------------
	下層ーNOVO MARK Ⅱ
------------------------------------------------------------*/
#novo .novo_movie iframe {
	aspect-ratio: 16/9;
	width: 100%;
	height: 100%;
	background-color: #efefef;
}
#novo .top_content {
	position: relative;
}
#novo .novo_movie .btn_volume {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 100;
	text-align: right;
}
#novo .novo_movie .movie_control {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.50);
	transition: 0.3s ease;
	text-decoration: none;
	line-height: 1.2;
}
#novo .novo_feature .item {
	margin: 80px 0;
}
#novo .novo_feature .item h2 {
	font-size: clamp(24px, 4vw, 39px);
	font-weight: 200;
	line-height: 1.3;
}
#novo .novo_info {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 15px;
	align-items: center;
	margin: 60px 0;
}
#novo .novo_info .right h3 {
	font-size: 18px;
	margin-bottom: 10px;
}
#novo .novo_info .right .novo_info-table table {
	width: 100%;
	border-spacing: 0;
}
#novo .novo_info .right .novo_info-table table th, #novo .novo_info .right .novo_info-table table td {
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	padding: 10px;
	font-size: 13px;
}
#novo .novo_info .right .novo_info-table table th {
	vertical-align: top;
	font-weight: normal;
	width: 102px;
}
#novo .novo_info .right .novo_info-table table td:last-child {
	border-right: 1px solid #000;
}
#novo .novo_info .right .novo_info-table table tr:last-child th, #novo .novo_info .right .novo_info-table table tr:last-child td {
	border-bottom: 1px solid #000;
}
#novo .novo_img {
	margin: 60px 0;
}
#novo .novo_img .top {
	display: grid;
	grid-template: "img01 img01 img02 img03 img04" "img01 img01 img05 img06 img07";
	gap: 10px;
	grid-template-columns: repeat(5, 1fr);
}
#novo .novo_img .top img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
#novo .novo_img .top img:nth-child(1) {
	grid-area: img01;
}
#novo .novo_img .top img:nth-child(2) {
	grid-area: img02;
}
#novo .novo_img .top img:nth-child(3) {
	grid-area: img03;
}
#novo .novo_img .top img:nth-child(4) {
	grid-area: img04;
}
#novo .novo_img .top img:nth-child(5) {
	grid-area: img05;
}
#novo .novo_img .top img:nth-child(6) {
	grid-area: img06;
}
#novo .novo_img .top img:nth-child(7) {
	grid-area: img07;
}
#novo .novo_img .middle {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	margin-top: 10px;
}
#novo .novo_img .bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 10px;
}
#novo .novo_feature .item_01 .top {
	display: grid;
	grid-template-columns: 45% 1fr;
	align-items: center;
	gap: 40px;
}
#novo .novo_feature .item_01 .top .txt p {
	margin-top: 30px;
	line-height: 1.8;
}
#novo .novo_feature .item_01 .bottom {
	margin-top: 30px;
}
#novo .novo_feature .item_01 .bottom ul {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
	margin-bottom: 30px;
}
#novo .novo_feature .item_01 .bottom ul li {
	background-color: #F0F0F0;
	padding: 30px;
	border-radius: 20px;
}
#novo .novo_feature .item_01 .bottom ul li:first-child {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
#novo .novo_feature .item_01 .bottom ul li .inner {
	text-align: center;
}
#novo .novo_feature .item_01 .bottom ul li .inner p {
	margin-top: 15px;
	font-weight: 600;
}
#novo .novo_feature .item_02 h2 {
	text-align: center;
	margin-bottom: 45px;
}
#novo .novo_feature .item_02 .box {
	display: grid;
	grid-template-columns: 40% 1fr;
	gap: 40px;
}
#novo .novo_feature .item_02 .box .left {
	line-height: 1.8;
}
#novo .novo_feature .item_02 .box .right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
#novo .novo_feature .item_02 .box .right .inner {
	text-align: center;
}
#novo .novo_feature .item_02 .box .right .inner p {
	font-size: 14px;
	font-weight: 600;
	margin-top: 10px;
}
#novo .novo_feature .item_02 .chart {
	border: 5px solid #E3E3E3;
	padding: 30px 25px 50px;
	margin-top: 50px;
}
#novo .novo_feature .item_02 .chart h3 {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}
#novo .novo_feature .item_02 .chart ul {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	align-items: flex-end;
}
#novo .novo_feature .item_02 .chart ul li {
	text-align: center;
}
#novo .novo_feature .item_02 .chart ul li img {
	max-width: 80%;
	margin-bottom: 20px;
}
#novo .novo_feature .item_02 .chart ul li p {
	padding: 10px 0;
	color: #fff;
	font-weight: 600;
}
#novo .novo_feature .item_02 .chart ul li:nth-child(1) p {
	background-color: #35AE9A;
}
#novo .novo_feature .item_02 .chart ul li:nth-child(2) p {
	background-color: #8FA67C;
}
#novo .novo_feature .item_02 .chart ul li:nth-child(3) p {
	background-color: #8C845E;
}
#novo .novo_feature .item_02 .chart ul li:nth-child(4) p {
	background-color: #7A4F31;
}
#novo .novo_feature .item_02 .chart ul li:nth-child(5) p {
	background-color: #693D27;
}
#novo .novo_feature .item_02 .chart ul li:nth-child(6) p {
	background-color: #46190F;
}
#novo .novo_feature .item_02 .chart ul li:nth-child(7) p {
	background-color: #360905;
}
#novo .novo_feature .item_02 .chart ul li:first-child {
	display: grid;
	grid-template-columns: auto 1fr;
}
#novo .novo_feature .item_02 .chart ul li:last-child {
	display: grid;
	grid-template-columns: 1fr auto;
}
#novo .novo_feature .item_02 .chart ul li:first-child::before, #novo .novo_feature .item_02 .chart ul li:last-child::after {
	content: "";
	height: 100%;
	width: 20px;
	display: block;
}
#novo .novo_feature .item_02 .chart ul li:first-child::before {
	background-color: #35AE9A;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
#novo .novo_feature .item_02 .chart ul li:last-child::after {
	background-color: #360905;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
}
#novo .novo_feature .item_03 h2 {
	text-align: center;
	margin-bottom: 50px;
}
#novo .novo_feature .item_03 .box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px;
}
#novo .novo_feature .item_03 .box .left {
	text-align: right;
}
#novo .novo_feature .item_03 .box .left img:last-child {
	margin-top: 20px;
	max-width: 177px;
}
#novo .novo_feature .item_03 .box .right p {
	line-height: 1.8;
	margin-bottom: 30px;
}
#novo .novo_feature .item_04 h2 {
	font-size: clamp(24px, 4vw, 37px);
	text-align: center;
	margin-bottom: 50px;
}
#novo .novo_feature .item_04 .box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px;
}
#novo .novo_feature .item_04 .box .right a {
	border: 3px solid #C9C9C9;
	display: grid;
	grid-template-columns: auto auto;
	gap: 25px;
	justify-content: center;
	align-items: center;
	padding: 20px;
	margin-top: 40px;
}
#novo .novo_feature .item_04 .box .right a img {
	max-width: clamp(90px, 25vw, 150px);
}
#novo .novo_feature .item_04 .box .right a p {
	font-weight: 300;
	font-size: clamp(14px, 4vw, 20px);
}
#novo .novo_feature .item_04 .box .right a h3 {
	font-weight: 600;
	display: grid;
	grid-template-columns: auto auto;
	gap: 8px;
	align-items: center;
	width: fit-content;
	margin-top: 10px;
	font-size: clamp(15px, 4vw, 24px);
}
#novo .novo_feature .item_04 .box .right a h3 span {
	width: 21px;
	height: 21px;
	background-color: #000;
	border-radius: 50%;
	position: relative;
}
#novo .novo_feature .item_04 .box .right a h3 span::before {
	content: "";
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 7px;
	height: 7px;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#novo .novo_feature .item_05 h2 {
	text-align: center;
	margin-bottom: 50px;
}
#novo .novo_feature .item_05 .box {
	margin-bottom: 80px;
}
#novo .novo_feature .item_05 .box .ttl {
	border-bottom: 2px solid #BABABA;
	padding-bottom: 10px;
	margin-bottom: 25px;
	position: relative;
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
	align-items: center;
}
#novo .novo_feature .item_05 .box .ttl::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	border-bottom: 2px solid #000;
	width: 234px;
}
#novo .novo_feature .item_05 .box h3 {
	font-size: 20px;
	font-weight: normal;
}
#novo .novo_feature .item_05 .box ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
}
#novo .novo_feature .item_05 .box ul li {
	text-align: center;
}
#novo .novo_feature .item_05 .box ul li img {
	margin-bottom: 10px;
}
#novo .novo_feature .item_05 .box ul li p {
	font-weight: 600;
}
#novo .novo_feature .item_05 .box ul li p span {
	font-weight: 200;
}
#novo .novo_feature .item_05 .box h4 {
	background-color: #BA3301;
	border-radius: 12px;
	color: #fff;
	text-align: center;
	padding: 10px 20px 15px;
	font-size: clamp(16px, 4vw, 20px);
	font-weight: normal;
	margin-top: 30px;
}
#novo .novo_feature .item_05 .box h4 span {
	font-size: clamp(26px, 4vw, 30px);
}

#novo .faq_content .faq_ttl {
	text-align: center;
	margin-bottom: 50px;
}
#novo .faq_content .faq_ttl h2 {
	font-size: clamp(30px, 7vw, 37px);
	font-weight: 500;
	letter-spacing: 4px;
}
#novo .faq_content .faq_inner {
	display: grid;
	grid-template-columns: calc(70% - 50px) 30%;
	gap: 50px;
}
#novo .faq_content .faq_nav {
	margin-bottom: 50px;
}
#novo .faq_content .faq_nav nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 30px;
}
#novo .faq_content .faq_nav nav ul li a {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 7px;
}
#novo .faq_content .faq_nav nav ul li a span {
	width: 18px;
	height: 18px;
	background-color: #000;
	border-radius: 50%;
	position: relative;
}
#novo .faq_content .faq_nav nav ul li a span::before {
	content: "";
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	width: 7px;
	height: 7px;
	position: absolute;
	left: 50%;
	top: 45%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#novo .faq_content .faq_wrapper {
	margin-bottom: 100px;
}
#novo .faq_content .faq_wrapper h3 {
	margin-bottom: 30px;
	font-size: clamp(2.2rem, 4vw, 2.6rem);
	font-weight: bold;
	padding-bottom: 10px;
	position: relative;
}
#novo .faq_content .faq_wrapper h3::before {
	content: "";
	background: linear-gradient(to right, #000 20%, #efefef 20%);
	height: 3px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
#novo .faq_content .faq_wrapper ul li {
	margin-bottom: 30px;
}
#novo .faq_content .faq_wrapper ul li span {
	font-weight: 500;
	font-size: 2.0rem;
	background-color: #000;
	color: #fff;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: grid;
	align-content: center;
	text-align: center;
}
#novo .faq_content .faq_wrapper ul li .question {
	margin-bottom: 10px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 15px;
	align-items: baseline;
}
#novo .faq_content .faq_wrapper ul li .question h4 {
	font-size: 2.0rem;
	font-weight: bold;
}
#novo .faq_content .faq_wrapper ul li .answer {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 15px;
	align-items: baseline;
}
#novo .faq_content .faq_wrapper ul li .answer p {
	font-size: 1.8rem;
}

@media screen and (max-width:896px) {
	#novo .faq_content .faq_nav {
    width: fit-content;
    margin: 0 auto 50px;
	}
	#novo .faq_content .faq_nav nav ul {
		flex-direction: column;
		gap: 10px 0;
	}
	#novo .faq_content .faq_wrapper {
		margin-bottom: 50px;
	}
	#novo .faq_content .faq_wrapper ul li .question h4 {
		font-size: 1.8rem;
	}
	#novo .faq_content .faq_wrapper ul li .answer p {
		font-size: 1.6rem;
	}
	#novo .faq_content .faq_inner {
		display: block;
	}
	#novo .faq_content .faq_wrapper ul li .vimeo, #novo .faq_content .faq_wrapper ul li img {
		margin: 30px 0;
	}
}

@media screen and (max-width:896px) {
	#novo .novo_info {
		grid-template-columns: 1fr;
	}
	#novo .novo_feature .item_01 .top {
		grid-template-columns: 1fr;
	}
	#novo .novo_feature .item_01 .top .img {
		grid-area: 2;
		text-align: center;
	}
	#novo .novo_feature .item_01 .top .img img {
		max-width: 484px;
		width: 100%;
	}
	#novo .novo_feature .item_01 .top .txt {
		grid-area: 1;
	}
	#novo .novo_feature .item_01 .bottom {
		margin-top: 50px;
	}
	#novo .novo_feature .item_01 .bottom ul {
		grid-template-columns: 1fr;
	}
	#novo .novo_feature .item_01 .bottom ul li:first-child {
		grid-template-columns: 1fr;
	}
	#novo .novo_feature .item_02 .box {
		grid-template-columns: 1fr;
	}
	#novo .novo_feature .item_02 .chart ul {
		grid-template-rows: repeat(7, auto);
		grid-template-columns: 100%;
		width: fit-content;
		margin: 0 auto;
	}
	#novo .novo_feature .item_02 .chart ul li {
		width: fit-content;
		display: flex;
		flex-direction: row-reverse;
		margin-right: auto;
	}
	#novo .novo_feature .item_02 .chart ul li p {
		writing-mode: vertical-rl;
		padding: 10px 15px;
	}
	#novo .novo_feature .item_02 .chart ul li img {
		margin-bottom: 0;
		padding: 15px;
		padding-right: 0;
		width: 100%;
		height: 100%;
		max-width: 170px;
	}
	#novo .novo_feature .item_02 .chart ul li:first-child, #novo .novo_feature .item_02 .chart ul li:last-child {
		grid-template-rows: auto auto;
		grid-template-columns: 1fr;
		writing-mode: horizontal-tb;
		width: fit-content;
	}
	#novo .novo_feature .item_02 .chart ul li:first-child::before, #novo .novo_feature .item_02 .chart ul li:last-child::after {
		width: 100%;
		height: 20px;
	}
	#novo .novo_feature .item_02 .chart ul li:first-child::before {
		clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	}
	#novo .novo_feature .item_02 .chart ul li:last-child::after {
		clip-path: polygon(100% 0, 0 0, 50% 100%);
	}
	#novo .novo_feature .item_02 h2, #novo .novo_feature .item_03 h2, #novo .novo_feature .item_04 h2, #novo .novo_feature .item_05 h2 {
		text-align: left;
	}
	#novo .novo_feature .item_03 .box {
		grid-template-columns: 1fr;
	}
	#novo .novo_feature .item_04 .box {
		grid-template-columns: 1fr;
	}
	#novo .novo_feature .item_05 .box ul {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width:600px) {
	#novo .novo_feature .item_05 .box h4 .br-sp {
		display: block;
	}
}

@media screen and (max-width:430px) {
	#novo .novo_feature .item_04 .box .right a {
		gap: 15px;
		padding: 20px 10px;
	}
	#novo .novo_feature .item_04 .box .right a h3 {
		margin-top: 5px;
	}
}



/*------------------------------------------------------------
	下層ーバナー
------------------------------------------------------------*/
#banner {
	background-color: #F7F7F7;
}
#banner .banner_content {
	/* display: grid;
	grid-template-columns: 1fr 1fr; */
	text-align: center;
}
#banner .banner_item {
	padding: 50px 0 90px;
}
#banner .banner_item h3 {
	font-size: 20px;
	font-weight: normal;
	padding: 3px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin: 0 auto 20px;
	max-width: 320px;
}
#banner .banner_item p {
	margin-bottom: 30px;
}
#banner .banner_item a {
	background-color: #000;
	color: #fff;
	padding: 15px 15px 15px 0;
	border-radius: 50vh;
	width: 100%;
	display: inline-block;
	position: relative;
}
/* #banner .left {
	border-right: 1px solid #B9B9B9;
} */
#banner .left a {
	max-width: 316px;
}
#banner .right .link {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
#banner .right a {
	max-width: 150px;
}
#banner .banner_item a span {
	background-color: #fff;
	border-radius: 50%;
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
}
#banner .banner_item a span::before {
	content: "";
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	width: 7px;
	height: 7px;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width:896px) {
	#banner .banner_content {
		grid-template-columns: 1fr;
	}
	#banner .banner_item {
		padding: 50px 0;
	}
	#banner .left {
		border-right: 0;
		border-bottom: 1px solid #333333;
	}
}




/*------------------------------------------------------------
	下層ー製品紹介
------------------------------------------------------------*/
#product {
	overflow: hidden;
}
#product .product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 100px;
}
#product .product .img {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-template: "img01 img01 img01 img02" "img01 img01 img01 img03";
	min-height: 575px;
}
#product .product .img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
#product .product .img img:nth-child(1) {
	grid-area: img01;
}
#product .product .img img:nth-child(2) {
	grid-area: img02;
}
#product .product .img img:nth-child(3) {
	grid-area: img03;
}
#product .product .product_left .img {
	margin-left: calc(100% - 50vw);
}
#product .product .product_right .img {
	margin-right: calc(100% - 50vw);
}
#product .product .inner {
	width: fit-content;
	display: grid;
	grid-template-columns: auto auto;
	gap: 20px;
	margin: 30px auto;
}
#product .product .inner .logo {
	text-align: center;
}
#product .product .inner .logo h2 {
	font-size: 24px;
	font-weight: normal;
}
#product .product .inner .logo h2 img {
	max-width: 160px;
}
#product .product .inner .logo p {
	font-size: 12px;
	font-weight: 200;
}
#product .product .inner .txt p {
	font-weight: 600;
	font-size: 14px;
}
#product .product .inner .txt p span {
	font-weight: 200;
	font-size: 13px;
}
#product .product_content h3 {
	font-size: clamp(24px, 5vw, 39px);
	font-weight: 200;
}
#product .product_content a {
	text-align: center;
	border-radius: 50vh;
	padding: 15px 10px;
	background-color: #000;
	color: #fff;
	width: 100%;
	max-width: 316px;
	margin: 0 auto;
	display: block;
	position: relative;
}
#product .product_content a span {
	background-color: #fff;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translate(0, -50%);
}
#product .product_content a span::before {
	content: "";
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	width: 7px;
	height: 7px;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#product .product_ttl {
	text-align: center;
	margin-bottom: 50px;
}
#product .product_ttl h3 {
	width: fit-content;
	margin: 0 auto;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 5px 0;
}
#product .feature_item {
	padding: 50px 0;
	border-bottom: 1px solid #C7C7C7;
}
#product .feature_item:nth-child(2) {
	padding-top: 0;
}
#product .feature_item .img {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
#product .feature_item .inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	padding: 40px 0 0;
}
#product .feature_item .inner .ttl {
	display: flex;
	align-items: center;
	justify-content: center;
}
#product .feature_item .inner .ttl h2 {
	background-color: #000;
	color: #fff;
	font-size: clamp(40px, 6vw, 54px);
	font-weight: 200;
	padding: 5px 15px;
	width: fit-content;
	letter-spacing: 2px;
	line-height: 1.2;
}
#product .feature_item .inner .txt h3 {
	margin-bottom: 30px;
	line-height: 1.2;
}
#product .feature_item .inner .txt p {
	line-height: 1.8;
	font-weight: 300;
}
#product .feature_item_03 .img {
	gap: 20px;
}
#product .feature_item_03 .img iframe {
	aspect-ratio: 16/9;
	width: 100%;
}
#product .feature_item_03 .img p {
	font-size: 13px;
	font-weight: 200;
	margin-top: 15px;
}
#product .madeinkyoto_ttl {
	background-color: #000;
	text-align: center;
	margin: 0 calc(50% - 50vw) 50px;
	padding: 50px 0;
}
#product .madeinkyoto_ttl h3 {
	color: #fff;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 200;
}
#product .madeinkyoto_ttl p {
	color: #fff;
	font-size: clamp(18px, 4vw, 20px);
	font-weight: 600;
	position: relative;
	z-index: 0;
}
#product .madeinkyoto_ttl p::before {
	content: "";
	border-bottom: 1px solid #CECECE;
	width: 100vw;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	z-index: -1;
}
#product .madeinkyoto_ttl p span {
	background-color: #000;
	position: relative;
	padding: 0 30px;
}
#product .madeinkyoto_ttl p span::before, #product .madeinkyoto_ttl p span::after {
	content: "";
	border-left: 1px solid #CECECE;
	height: 100%;
	width: 1px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%) rotate(40deg);
}
#product .madeinkyoto_ttl p span::before {
	left: -15px;
}
#product .madeinkyoto_ttl p span::after {
	right: -15px;
}
#product .madeinkyoto_content iframe {
	aspect-ratio: 16/9;
	width: 100%;
	height: 100%;
	background-color: #efefef;
}
#product .madeinkyoto_content .txt {
	padding: 50px 0 70px;
}
#product .madeinkyoto_content .txt p {
	line-height: 1.8;
	margin: 30px 0 60px;
}
#product .madeinkyoto_img {
	margin: 0 calc(50% - 50vw);
}
#product .heat {
	margin-top: 75px;
}
#product .heat_box {
	display: grid;
	grid-template-columns: 1fr 50%;
	gap: 55px;
}
#product .heat_box .left {
	margin-left: calc(100% - 50vw + 55px);
	overflow: hidden;
}
#product .heat_box .left img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
#product .heat_box .right h4 {
	font-size: 30px;
	font-weight: 200;
	margin-bottom: 25px;
}
#product .heat_box .right p {
	line-height: 1.8;
}
#product .strength {
	padding: 70px 0 100px;
}
#product .strength_ttl {
	position: relative;
	z-index: 0;
	margin: 0 calc(50% - 50vw) 100px;
}
#product .strength_ttl::before {
	content: "";
	border-bottom: 1px solid #000;
	width: 100vw;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	z-index: -1;
}
#product .strength_ttl h2 {
	background-color: #000;
	color: #fff;
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 200;
	width: fit-content;
	margin: 0 auto;
	padding: 10px 20px;
}
#product .strength_item {
	border: 5px solid #DDDDDD;
	padding: 80px;
	position: relative;
	margin-bottom: 100px;
}

#product .strength_item > p {
	line-height: 1.8;
}
#product .strength_item .ttl {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
	width: 100%;
}
#product .strength_item_03 .ttl {
	transform: translate(-50%, -25%);
}
#product .strength_item .ttl h3 {
	text-align: center;
}
#product .strength .heat_ttl {
	font-weight: 200;
	font-size: clamp(29px, 5vw, 45px);
	line-height: 1.2;
}
#product .strength .heat_ttl span {
	border: 1px solid #707070;
	margin-left: -1px;
	background-color: #fff;
	aspect-ratio: 1/1;
}
#product .strength .heat_ttl span:last-child {
	border-right: 1px solid #707070;
}
#product .strength_item_01 .heat_ttl span:nth-child(n+6), #product .strength_item_02 .heat_ttl span:nth-child(n+4), #product .strength_item_03 .heat_ttl span:nth-child(-n+10), #product .strength_item_03 .heat_ttl span:nth-child(n+25) {
	background-color: #000;
	color: #fff;
}
#product .strength_item .inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	text-align: center;
	margin-bottom: 40px;
}
#product .strength_item .inner .left {
	border-right: 1px solid #BCBCBC;
}
#product .strength_item .inner img {
	max-width: 220px;
}
#product .strength_item .inner p {
	font-size: clamp(18px, 4vw, 22px);
	font-weight: 600;
	margin: 10px 0;
}
#product .strength_item .inner p span {
	background-color: #000;
	color: #fff;
	font-size: clamp(16px ,4vw, 20px);
	max-width: 240px;
	width: 100%;
	display: inline-block;
	padding: 5px;
}
#product .strength_item_03 {
	margin-bottom: 0;
}
#product .strength_item_03 .inner {
	grid-template-columns: auto 1fr;
	align-items: center;
}
#product .strength_item_03 .inner p {
	text-align: left;
}
#product .strength_item_03 .inner .left {
	border-right: 0;
}


@media screen and (max-width:896px) {
	#product .product {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	#product .product .product_left .img, #product .product .product_right .img {
    margin: 0 calc(50% - 50vw);
		min-height: auto;
	}
	#product .product .inner {
		grid-template-columns: 1fr;
	}

	#product .feature_item .img {
		grid-template-columns: 1fr;
	}
	#product .feature_item .inner {
		padding: 40px 0 0;
		grid-template-columns: 1fr;
	}
	#product .feature_item .inner .ttl {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#product .heat_box {
		grid-template-columns: 1fr;
	}
	#product .heat_box .left {
    margin-left: calc(50% - 50vw);
	}
	#product .strength {
		padding: 70px 0 60px;
	}
	#product .strength_item {
		padding: 40px 15px 30px;
		margin-bottom: 50px;
	}
	#product .strength_item_03 {
		padding-top: 80px;
		margin-bottom: 0;
	}
	#product .strength_ttl {
		margin-bottom: 50px;
	}
	#product .strength_item .inner {
		grid-template-columns: 1fr;
	}
	#product .strength_item .inner .left {
		border-right: 0;
		border-bottom: 1px solid #BCBCBC;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	#product .strength_item_03 .inner {
		gap: 30px;
	}
	#product .strength_item_03 .inner .left {
		border-bottom: 0;
		margin-bottom: 0;
		padding-bottom: 0;
	}
}
@media screen and (max-width:430px) {
	#product .strength_ttl h2 {
		padding: 5px 10px;
		text-align: center;
	}
	#product .strength_item .inner img {
		max-width: 160px;
	}
	#product .strength_item .inner p span {
		max-width: 200px;
	}
	#product .madeinkyoto_ttl {
		padding: 50px 10px;
	}
}

/*------------------------------------------------------------
	下層ー導入事例
------------------------------------------------------------*/
#case .case_wrapper {
	margin-bottom: 75px;
}
#case .case_top-image {
	margin-bottom: 60px;
}
#case .case_side {
	max-width: 230px;
}
#case .case_search {
	margin-bottom: 40px;
}
#case .case_search-ttl {
	border-bottom: 5px solid #000;
	margin-bottom: 10px;
}
#case .case_search-ttl h3 {
	font-size: 20px;
	font-weight: 600;
}
#case .case_search-ttl h3 span {
	font-size: 11px;
	font-weight: 300;
	margin-left: 5px;
	display: inline-block;
}
#case .case_search .search_item {
	margin-bottom: 30px;
}
#case .case_search .search_item h4 {
	font-weight: 600;
	margin-bottom: 10px;
}
#case .case_search .search_item h4 span {
	font-size: 12px;
	margin-left: 10px;
	display: inline-block;
}
#case .case_search .search_list {
	display: flex;
	flex-direction: column;
}
#case .case_search .search_list label {
	border: 1px solid #000;
	margin-top: -1px;
	padding: 10px 15px;
	font-size: 13px;
}
#case .case_search .search_list label input {
	margin-right: 7px;
}
#case .case_search .search_btn, #case .case_search .reset_btn {
	max-width: 160px;
	margin: 0 auto;
	position: relative;
}
#case .case_search .search_btn span, #case .case_search .reset_btn span {
	position: absolute;
	right: 20px;
	border-radius: 50%;
	width: 15px;
	height: 15px;
}
#case .case_search .search_btn span::before, #case .case_search .reset_btn span::before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

#case .case_search .reset_btn span.reset_icon {
	background-color: #000;
	top: 14px;
}
#case .case_search .reset_btn span.reset_icon::before {
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
}
#case .case_search .search_btn span.search_icon {
	background-color: #fff;
	bottom: 14px;
}
#case .case_search .search_btn span.search_icon::before {
	border-top: 1.5px solid #000;
	border-right: 1.5px solid #000;
}

#case .case_search .search_btn input {
	background-color: #000;
	color: #fff;
	border-radius: 50vh;
	width: 100%;
	padding: 10px 0;
	font-size: 13px;
	border: 0;
}
#case .case_search .reset_btn a {
	background-color: #fff;
	border: 1px solid #000;
	color: #000;
	margin-bottom: 11px;
	border-radius: 50vh;
	width: 100%;
	padding: 10px 0;
	font-size: 13px;
	display: block;
	text-align: center;
}

#case .case_side-ttl {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 10px;
	margin-bottom: 25px;
}
#case .case_side-ttl::before {
	content: "";
	width: 12px;
	height: 1px;
	display: block;
	background-color: #000;
}
#case .case_side-ttl h3 {
	line-height: 1.0;
}
#case .case_item ul li {
	border-bottom: 1px solid #D3D3D3;
	margin-bottom: 30px;
	padding-bottom: 20px;
}
#case .case_item ul li:last-child {
	border-bottom: 0;
}
#case .case_item ul li img {
	aspect-ratio: 230/160;
	object-fit: cover;
	width: 100%;
}
#case .case_item ul li h4 {
	margin: 10px 0;
	font-weight: 600;
	text-align: center;
}
#case .case_item ul li h4 span {
	font-size: 14px;
}
#case .case_item ul li p {
	font-size: 14px;
}
#case .case_detail iframe {
	aspect-ratio: 16/9;
	width: 100%;
	height: 100%;
	background-color: #BCBCBC;
	margin-bottom: 35px;
}
#case .case_detail .inner {
	margin-bottom: 75px;
}
#case .case_detail .inner h3 {
	font-size: clamp(20px, 4vw, 26px);
	font-weight: 600;
	text-align: center;
	margin-bottom: 40px;
}
#case .case_detail .inner p {
	line-height: 1.8;
	word-break: break-all;
}
#case .case_nav {
	max-width: 600px;
	margin: 0 auto 40px;
}
#case .case_nav nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	justify-content: center;
}
#case .case_nav nav ul li a {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 8px;
	font-weight: 600;
}
#case .case_nav nav ul li a span {
	background-color: #000;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: block;
	position: relative;
}
#case .case_nav nav ul li a span::before {
	content: "";
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 7px;
	height: 7px;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#case .case_archive ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px 20px;
}
#case .case_archive ul li {
	text-align: center;
}
#case .case_archive ul li img {
	aspect-ratio: 216/162;
	object-fit: cover;
	width: 100%;
}
#case .case_archive ul li h4 {
	margin-top: 15px;
	font-weight: 600;
	font-size: 15px;
}
#case .case_btn {
	margin-top: 40px;
}
#case .case_btn a {
	text-align: center;
	border-radius: 50vh;
	padding: 15px 10px;
	background-color: #000;
	color: #fff;
	width: 100%;
	max-width: 260px;
	margin: 0 auto;
	display: block;
	position: relative;
}
#case .case_btn a span {
	background-color: #fff;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translate(0, -50%);
}
#case .case_btn a span::before {
	content: "";
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	width: 7px;
	height: 7px;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.cls-1 {
	stroke: #888;
	stroke-miterlimit: 10;
	stroke-width: 2px;
}
.cls-1, .cls-2 {
	fill: none;
}
.cls-3 {
	fill: #222;
	font-size: 15px;
}
.cls-3, .cls-4, .cls-5 {
	isolation: isolate;
}
.cls-3, .cls-5 {
	font-family: HiraginoKaku-W6-90msp-RKSJ-H, HiraginoKaku;
}
.cls-2 {
	stroke: #d8d8d8;
}
.cls-6 {
	fill: #f4f4f4;
}
.cls-7 {
	fill: #141414;
}
.cls-8, .cls-5 {
	fill: #fff;
}
.cls-9 {
	fill: #9ee5e8;
}
.cls-5 {
	font-size: 16px;
}
.cls-10 {
	fill: #e6df88;
}
.cls-11 {
	fill: #888;
}

@keyframes infinity-scroll-left {
	from { transform: translateX(0); }
	to { transform: translateX(calc(-1 * var(--scroll-width))); }
  }
  
  .scroll-infinity__wrap {
	width: 100vw;           /* 画面幅いっぱいに */
	overflow: hidden;       /* はみ出しを隠す */
	margin: 100px 0;
  }
  
  .scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	animation: infinity-scroll-left 40s linear infinite;
  }
  
  .scroll-infinity__item {
	flex: 0 0 auto;         /* 要素の幅を固定 */
	width: 400px;
	margin-right: 130px;
  }

  .scroll-infinity__item:last-child {
	margin-right: 0; /* 最後の余白を削除（任意） */
  }
  
  .scroll-infinity__item > img {
	width: 100%;
	height: auto;
	display: block;
  }

@media screen and (max-width:896px) {
	#case .case_side {
		max-width: 100%;
		order: 2;
	}
	#case .case_main {
		order: 1;
	}
	#case .case_archive ul {
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width:430px) {
	.scroll-infinity__item {
		width: 250px;
		margin-right: 60px;
	  }
}

/*------------------------------------------------------------
	下層ー導入事例一覧
------------------------------------------------------------*/
#case .case_taxonomy-nav {
	margin-bottom: 40px;
}
#case .case_taxonomy-nav ul {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	gap: 12px;
}
#case .case_taxonomy-nav ul li a {
	background-color: #A8A8A8;
	border-radius: 8px;
	color: #fff;
	padding: 10px 25px;
	height: 100%;
	min-height: 65px;
	text-align: center;
	display: grid;
	align-content: center;
}
#case .case_taxonomy-nav ul li.active a {
	background-color: #141414;
}
#case .case_taxonomy ul p.case_area-name:first-child {
	margin-top: 0;
}
#case .case_taxonomy ul p.case_area-name {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	margin-top: 100px;
}
#case .case_taxonomy ul p.case_area-name::before {
	content: "";
	width: 9px;
	height: 20px;
	display: block;
	background-color: #000;
}
#case .case_taxonomy ul li {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 30px 0;
	border-bottom: 1px solid #C6C6C6;
}
#case .case_taxonomy ul li:first-child {
	padding-top: 0;
}
#case .case_taxonomy ul li > img {
	aspect-ratio: 316/237;
	width: 100%;
	object-fit: cover;
}
#case .case_taxonomy ul li .inner h4 {
	font-size: 18px;
	font-weight: 600;
}
#case .case_taxonomy ul li .inner p {
	line-height: 1.8;
	font-size: 15px;
}
#case .case_taxonomy ul li .inner p.area {
	margin: 5px 0 15px;
	font-size: 14px;
}
#case .case_taxonomy ul li .inner p.catch_copy {
	font-size: 15px;
	margin-bottom: 15px;
}
#case .case_taxonomy ul li .inner p.catch_copy a {
	text-decoration: underline;
}
#case .case_taxonomy ul li .inner > a {
	background-color: #000;
	color: #fff;
	border-radius: 50vh;
	padding: 8px 0;
	max-width: 163px;
	width: 100%;
	display: block;
	position: relative;
	text-align: center;
	font-size: 13px;
}
#case .case_taxonomy ul li .inner > a span {
	background-color: #fff;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
}
#case .case_taxonomy ul li .inner > a span::before {
	content: "";
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	width: 7px;
	height: 7px;
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width:1030px) {
	#case .case_taxonomy-nav ul {
		grid-template-columns: repeat(5, 1fr);
	}
}
@media screen and (max-width:600px) {
	#case .case_taxonomy ul li {
		grid-template-columns: 1fr;
	}
	#case .case_taxonomy-nav ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

/*------------------------------------------------------------
	下層ー生豆紹介
------------------------------------------------------------*/
#beans .beans_content {
	margin-bottom: 100px;
}
#beans .beans_list {
	background-color: rgba(0, 0, 0, 0.4);
	background-blend-mode:darken;
	background-image: url(../img/beans/beans_img_01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	margin-bottom: 100px;
	padding: 80px 60px 100px;
}
#beans .beans_list img {
	opacity: 0.6;
}
#beans .beans_list .txt {
	text-align: center;
	color: #fff;
}
#beans .beans_list .txt h3 {
	font-size: clamp(23px, 4vw, 31px);
	margin-bottom: 30px;
}
#beans .beans_list .txt p {
	line-height: 2.0;
	font-size: clamp(16px, 4vw, 20px);
}
#beans .beans_list .beans_btn {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	width: 90%;
}
#beans .beans_list .beans_btn a {
	border: 3px solid #fff;
}
#beans .beans_btn a {
	background-color: #000;
	border-radius: 50vh;
	max-width: 433px;
	width: 100%;
	margin: 0 auto;
	padding: 15px 0;
	color: #fff;
	display: block;
	text-align: center;
	position: relative;
	font-size: clamp(16px, 4vw, 20px);
	font-weight: 600;
}
#beans .beans_btn a span {
	background-color: #fff;
	width: 23px;
	height: 23px;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translate(0, -50%);
	border-radius: 50%;
}
#beans .beans_btn a span::before {
	content: "";
	border-right: 2px solid #000;
	border-top: 2px solid #000;
	width: 8px;
	height: 8px;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#beans .beans_detail {
	margin-bottom: 45px;
}
#beans .beans_detail h2 {
	text-align: center;
	font-size: clamp(22px, 4vw, 39px);
	font-weight: 200;
	margin-bottom: 35px;
}
#beans .beans_detail p {
	line-height: 1.8;
	margin-bottom: 1em;
}
#beans .beans_detail .beans_img_01 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 20px;
	margin-bottom: 50px;
}
#beans .beans_detail .beans_img_02 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 26px;
	margin-bottom: 50px;
}

@media screen and (max-width:896px) {
	#beans .beans_list {
		margin-bottom: 100px;
		padding: 50px 30px 80px;
	}
	#beans .beans_list .txt p {
		text-align: left;
	}
	#beans .beans_detail .beans_img_01 {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}
	#beans .beans_detail .beans_img_02 {
		gap: 15px;
	}
}
@media screen and (max-width:896px) {
	#beans .beans_list {
		padding: 50px 15px 80px;
	}
}

/*------------------------------------------------------------
	下層ー生豆紹介ラインナップ
------------------------------------------------------------*/
#beans .beans_lineup {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 50px;
}
#beans .beans_lineup .beans_side {
	max-width: 192px;
}
#beans .beans_lineup .beans_side h3 {
	display: grid;
	grid-template-columns: auto 1fr;
	align-content: center;
	gap: 10px;
	font-size: 20px;
	line-height: 1.0;
	margin-bottom: 15px;
}
#beans .beans_lineup .beans_side h3::before {
	content: "";
	width: 9px;
	height: 19px;
	background-color: #000;
	display: block;
}
#beans .beans_lineup .beans_side .main_cate {
	margin-bottom: 30px;
}
#beans .beans_lineup .beans_side .sub_cate {
	margin-bottom: 25px;
}
#beans .beans_lineup .beans_side .main_cate > li p {
	border-bottom: 1px dotted #000;
	padding: 10px 0;
	cursor: pointer;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 10px;
}
#beans .beans_lineup .beans_side .main_cate > li p span {
	display: block;
	width: 18px;
	height: 18px;
	position: relative;
}
#beans .beans_lineup .beans_side .main_cate > li p span::before, #beans .beans_lineup .beans_side .main_cate > li p span::after {
	content: "";
	background-color: #000;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
#beans .beans_lineup .beans_side .main_cate > li p span::before {
	height: 1px;
	width: 100%;
}
#beans .beans_lineup .beans_side .main_cate > li p span::after {
	height: 100%;
	width: 1px;
}
#beans .beans_lineup .beans_side .main_cate > li p.active span::after {
	opacity: 0;
}

#beans .beans_lineup .beans_side .sub_cate {
	display: none;
}
#beans .beans_lineup .beans_side .sub_cate li a {
	border-bottom: 1px dotted #000;
	padding: 10px 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: center;
}
#beans .beans_lineup .beans_side .sub_cate li a span {
	background-color: #000;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	position: relative;
}
#beans .beans_lineup .beans_side .sub_cate li a span::before {
	content: "";
	width: 6px;
	height: 6px;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#beans .beans_lineup .beans_side .relate_link li {
	border-top: 1px dotted #000;
}
#beans .beans_lineup .beans_side .relate_link li a {
	padding: 10px 0;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 15px;
}
#beans .beans_lineup .beans_side .relate_link li a span {
	background-color: #000;
	width: 15px;
	height: 15px;
	display: block;
	position: relative;
	border-radius: 50%;
}
#beans .beans_lineup .beans_side .relate_link li a span::before {
	content: "";
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	width: 5px;
	height: 5px;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#beans .beans_lineup .side_banner {
	margin-bottom: 50px;
}
#beans .beans_lineup .side_banner ul li {
	margin-bottom: 20px;
}
#beans .beans_lineup .side_banner ul li:last-child {
	margin-bottom: 0;
}
#beans .beans_lineup .side_banner ul li a img {
	width: 100%;
}
#beans .beans_main .beans_img {
	margin-bottom: 30px;
}
#beans .beans_main .beans_img img {
	width: 100%;
}
#beans .beans_main .beans_item {
	margin-bottom: 75px;
}
/* #beans .beans_main .beans_item:last-child {
	margin-bottom: 0;
} */
#beans .beans_main .beans_item h3 {
	display: grid;
	grid-template-columns: auto 1fr;
	align-content: center;
	gap: 10px;
	font-size: 20px;
	line-height: 1.0;
	margin-bottom: 15px;
}
#beans .beans_main .beans_item h3::before {
	content: "";
	width: 9px;
	height: 19px;
	background-color: #000;
	display: block;
}
#beans .beans_main .beans_item ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
}
#beans .beans_main .beans_banner h3 {
	margin-bottom: 5px;
}
#beans .beans_main .beans_banner .banner {
	margin-bottom: 20px;
}
.post-password-form p {
	margin-bottom: 15px;
}

@media screen and (max-width:896px) {
	#beans .beans_lineup {
		grid-template-columns: 1fr;
	}
	#beans .beans_lineup .beans_side {
		order: 2;
		max-width: 100%;
	}
	#beans .beans_lineup .beans_main {
		order: 1;
	}
	#beans .beans_main .beans_banner {
		display: none;
	}
}
@media screen and (max-width:600px) {
	#beans .beans_main .beans_item ul {
		grid-template-columns: 1fr 1fr;
	}
}

/*------------------------------------------------------------
	下層ー生豆紹介アーカイブ
------------------------------------------------------------*/
#beans .beans_archive .beans_img p {
	text-align: right;
	font-size: 11px;
	margin-top: 20px;
}
#beans .beans_archive .beans_detail .ttl {
	width: fit-content;
	margin: 40px 0 30px 0;
}
#beans .beans_archive .beans_detail .ttl img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-height: 90px;
}
#beans .beans_archive .beans_detail h3 {
	font-size: clamp(22px, 4vw, 32px);
	font-weight: 200;
	margin-bottom: 25px;
}
#beans .beans_archive .beans_item ul {
	gap: 30px 15px;
}
#beans .beans_archive .beans_item ul li img {
	margin-bottom: 10px;
}
#beans .beans_archive .beans_item ul li p {
	font-size: 14px;
}
#beans .beans_archive .beans_item ul li h4 {
	font-size: clamp(15px, 4vw, 17px);
	margin: 4px;
}
#beans .beans_archive .beans_map {
	margin-bottom: 60px;
}
#beans .beans_archive .beans_map h3 {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
}
#beans .beans_archive .beans_map iframe {
	width: 100%;
	height: 430px;
}

/*------------------------------------------------------------
	下層ー生豆紹介詳細ページ
------------------------------------------------------------*/
#beans .beans_single .beans_top {
	margin-bottom: 30px;
}
#beans .beans_single .beans_top img {
	width: 100%;
	margin-bottom: 30px;
}
#beans .beans_single .beans_top p {
	font-size: 14px;
}
#beans .beans_single .beans_top h3 {
	font-size: clamp(20px, 4vw, 28px);
	margin: 10px 0;
}
#beans .beans_single .beans_speciality {
	display: grid;
	grid-template-columns: auto 1fr;
	margin-bottom: 50px;
}
#beans .beans_single .beans_speciality img {
	max-width: 220px;
	margin-right: 40px;
}
#beans .beans_single .beans_speciality .txt p {
	line-height: 1.8;
}
#beans .beans_single .beans_speciality .txt a {
	text-decoration: underline;
}
#beans .beans_single .beans_info h3 {
	display: grid;
	grid-template-columns: auto 1fr;
	align-content: center;
	gap: 10px;
	font-size: clamp(18px, 4vw, 20px);
	line-height: 1.0;
	margin-bottom: 15px;
}
#beans .beans_single .beans_info h3::before {
	content: "";
	width: 9px;
	height: 19px;
	background-color: #000;
	display: block;
}
#beans .beans_single .beans_table {
	margin-bottom: 85px;
}
#beans .beans_single .beans_table table {
	width: 100%;
	border-spacing: 0;
}
#beans .beans_single .beans_table table th, #beans .beans_single .beans_table table td {
	padding: 15px 0;
	font-weight: normal;
}
#beans .beans_single .beans_table table th {
	border-top: 1px solid #707070;
	width: 165px;
}
#beans .beans_single .beans_table table td {
	border-top: 1px solid #C6C6C6;
	padding-left: 40px;
}
#beans .beans_single .beans_table table tr:last-child th {
	border-bottom: 1px solid #707070;
}
#beans .beans_single .beans_table table tr:last-child td {
	border-bottom: 1px solid #C6C6C6;
}
#beans .beans_single .beans_fraiver {
	margin-bottom: 85px;
}
#beans .beans_single .beans_fraiver dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px dashed #707070;
}
#beans .beans_single .beans_fraiver dl:last-child {
	border-bottom: 0;
}
#beans .beans_single .beans_fraiver dl dt img {
	max-width: 50px;
}
#beans .beans_single .beans_fraiver dl dd h4 {
	font-weight: 600;
	margin-bottom: 10px;
}
#beans .beans_single .beans_fraiver dl dd p {
	font-weight: 300;
}
#beans .beans_single .beans_document {
	margin-bottom: 100px;
}
#beans .beans_single .beans_document h4 {
	font-size: clamp(18px, 4vw, 20px);
	margin-bottom: 10px;
}
#beans .beans_single .beans_document .inner {
	display: grid;
	grid-template-columns: 40% 1fr;
	gap: 25px;
}
#beans .beans_single .beans_document .beans_pop {
	max-width: 278px;
}
#beans .beans_single .beans_document .beans_pop .pdf {
	position: relative;
}
#beans .beans_single .beans_document .beans_pop .pdf a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
}
#beans .beans_single .beans_document .beans_photo .photo {
	width: 100%;
	margin-inline: auto;
	display: grid;
	gap: 10px;
	grid-auto-flow: dense;
	grid-template-columns: repeat(9, 1fr);
}
#beans .beans_single .beans_document .beans_photo .photo .img:nth-child(4n+1) {
	grid-column: span 6;
	grid-row: span 1;
}
#beans .beans_single .beans_document .beans_photo .photo .img:nth-child(4n+2) {
	grid-column: span 3;
	grid-row: span 1;
}
#beans .beans_single .beans_document .beans_photo .photo .img:nth-child(4n+3) {
	grid-column: span 3;
	grid-row: span 2;
}
#beans .beans_single .beans_document .beans_photo .photo .img:nth-child(4n+4) {
	grid-column: span 6;
	grid-row: span 2;
}
#beans .beans_single .beans_document .beans_photo .photo .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


@media screen and (max-width:768px) {
	#beans .beans_single .beans_speciality {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	#beans .beans_single .beans_speciality img {
		margin-right: 0;
		margin-bottom: 40px;
	}
	#beans .beans_single .beans_table table th {
		width: auto;
		min-width: 75px;
	}
	#beans .beans_single .beans_table table td {
		padding-left: 20px;
	}
	#beans .beans_single .beans_fraiver dl {
		align-items: center;
	}
	#beans .beans_single .beans_document {
		margin-bottom: 50px;
	}
	#beans .beans_single .beans_document .beans_pop {
		max-width: 100%;
	}
	#beans .beans_single .beans_document .inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}


.wsp-container ul, .wsp-container ol {
	margin-left: 40px;
	padding-left: 0;
	list-style: revert;
}


/*------------------------------------------------------------
	下層ー検索404
------------------------------------------------------------*/
#case .case_notfound .inner {
	margin-bottom: 50px;
}
#case .case_notfound h3 {
	font-size: 24px;
	margin-bottom: 50px;
}
#case .case_notfound p {
	font-size: 18px;
}
#case .case_notfound .case_btn {
	max-width: 225px;
	margin: 30px auto 0;
}
#case .case_notfound .case_btn a {
	width: 100%;
	background-color: #000;
	border-radius: 50vh;
	color: #fff;
	font-size: 20px;
	position: relative;
}
#case .case_notfound .case_btn a span {
	background-color: #fff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
}
#case .case_notfound .case_btn a span::before {
	content: "";
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	width: 8px;
	height: 8px;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

/* USERS IN THE WORLD */
#user .user_top {
	padding: 60px 0 30px;
	background: url(../img/case/user_bg_02.jpg) no-repeat center;
	background-size: cover;
}
#user .user_bottom {
	padding: 60px 0;
	background: url(../img/case/user_bg_01.jpg) no-repeat center;
	background-size: cover;
}
#user .user_top iframe, #user .user_bottom iframe {
	width: 100%;
	height: 100%;
	object-fit: contain;
	aspect-ratio: 16/9;
}
#user .user_top p {
	color: #000;
	font-size: clamp(28px, 8vw, 36px);
	font-weight: bold;
	text-align: center;
} 
#user .user_middle {
	padding: 0 20px;
	margin-bottom: 80px;
}
#user .user_middle .txt {
	text-align: center;
	margin: 50px 0;
}
#user .user_middle .txt h3 {
	font-size: clamp(27px, 8vw, 40px);
	margin-bottom: 15px;
}
#user .user_middle .txt p {
	font-size: 20px;
}
#user .user_middle ul {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 5px 10px;
}
#user .user_middle ul li a img {
	width: 100%;
}
#user .user_middle ul li a p {
	font-size: 10px;
	text-align: center;
	margin-top: 5px;
	line-height: 1.0;
}
#user .user_middle .modal_content {
	display: none;
}
.modal_content {
	text-align: center;  
}
.modal_content img {
	width: 100%;
}
.modal_content h3 {
	font-size: 22px;
	margin: 10px 0 5px;
}
.modal_content p {
	margin: 5px 0;
}

#fancybox-wrap {
	width: 90% !important;
	max-width: 800px;
	max-height: 90vh;
	position: fixed;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%);
	overflow: auto;
}
#fancybox-content {
	width: 100% !important;
	padding: 40px;
	box-sizing: border-box;
}

@media screen and (max-width:896px) {
	#user .user_middle {
		padding: 0 10px;
	}
	#user .user_middle ul {
		grid-template-columns: repeat(4, 1fr);
		gap: 5px;
	}
	#fancybox-content {
		padding: 20px;
	}
}


.showroom_img {
	margin: 0 calc(50% - 50vw);
}

/* CONTACT US */
#contact {
	width: 95%;
	margin: 0 auto;
}
#contact .contact_top {
	text-align: center;
}
#contact .contact_top-ttl {
	margin: 50px 0;
}
#contact .contact_top-ttl img {
	margin-bottom: 50px;
	width: 435px;
}
#contact .contact_middle-form table {
	width: 100%;
	border-collapse: collapse;
}
#contact .contact_middle-form table th {
	width: 300px;
	padding: 15px 15px 20px 0;
	vertical-align: baseline;
	font-weight: normal;
}
#contact .contact_middle-form table th .required {
	color: red;
}
#contact .contact_middle-form table td {
	padding-bottom: 20px;
}
#contact .contact_middle-form table td input[type="text"], #contact .contact_middle-form table td input[type="email"], #contact .contact_middle-form table td input[type="tel"], #contact .contact_middle-form table td textarea {
	border: 1px solid #000;
	padding: 15px;
	width: 100%;
	box-sizing: border-box;
}
#contact .contact_middle-form table td select {
	border: 1px solid #000;
	padding: 15px;
	box-sizing: border-box;
}
#contact .contact_middle-form .contact_btn {
	text-align: center;
	margin-bottom: 30px;
}
#contact .contact_middle-form .contact_btn input {
	background-color: #fff;
	border: 1px solid #333;
	padding: 10px;
	font-size: 18px;
	transition: 0.3s;
	color: #000;
	font-weight: normal;
	display: block;
	width: 200px;
	margin: 0 auto;
}
#contact .contact_middle-form .contact_btn input:hover {
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
	background-color: #B2B2B2;
}

@media screen and (max-width:768px) {
	#contact {
		width: 90%;
	}
	#contact .contact_top-ttl img {
		margin-bottom: 30px;
	}
	#contact .contact_top-ttl p {
		text-align: left;
	}
	#contact .contact_middle-form table th, #contact .contact_middle-form table td {
		width: 100%;
		display: block
	}
	#contact .contact_middle-form table th {
		padding: 0 0 15px 0;
	}
	#contact .contact_middle-form table td select {
		width: 100%;
	}
}
