@charset "utf-8";
/*
Theme Name: 
Author: s.toyokawa
Description:  のテーマ
version: 1.0.0
*/

/*common
-----------------------------------------------------------------------------------------*/
html,
body {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}


@media screen and (min-width:768px) {
	.sp {
		display: none;
	}
}

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


/*single
-----------------------------------------------------------------------------------------*/

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


/*404
-----------------------------------------------------------------------------------------*/
div.error-message {
	font-size: 150%;
}

@media screen and (max-width:767px) {
	div.error-message {
		font-size: 120%;
	}
}

/*header
-----------------------------------------------------------------------------------------*/

.header {
	position: fixed;
	z-index: 900;
	top: 0;
	right: 0;
	left: 0;
	transition: all 0.3s;
	height: 80px;
}

.js-header.is-scroll {
	/* background: rgba(62, 62, 62, 0.2); */
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 14.06%, rgba(0, 0, 0, 0.395831) 57.81%, rgba(0, 0, 0, 0) 100%);
}

.header-bg {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 14.06%, rgba(0, 0, 0, 0.395831) 57.81%, rgba(0, 0, 0, 0) 100%);
}


.header-inner {
	max-width: 1500px;
	margin-inline: auto;
	padding-left: 36px;
	height: inherit;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-logo {
	max-width: 114px;
	width: 100%;
	height: inherit;
}

.header-logo a {
	height: inherit;
	display: flex;
	align-items: center;
	transition: all 0.3s;
}

.header-logo a:hover {
	opacity: 0.6;
}

.header-logo img {
	max-width: 114px;

	width: 100%;
	object-fit: contain;
}

.header-nav {
	display: flex;
	align-items: center;
	height: inherit;
}

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

	.header,
	.js-header.is-scroll {
		height: 80px;
	}

	.header-inner {
		padding-right: 5px;
	}

	.header-logo {
		max-width: 140px;
	}


}

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

	.header,
	.js-header.is-scroll {
		height: 70px;
	}

	.header-inner {
		padding-left: 10px;
		padding-right: 10px;
	}

}


.header-nav,
.header-nav-contact {
	height: inherit;
	position: relative;
	z-index: 999;
}


.header-nav-contact a {
	width: 280px;
	background: rgba(173, 2, 12, 1);
	color: rgb(255, 255, 255);
	height: 80px;
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
}

.header-nav-contact a:hover {
	opacity: 0.6;
}

.header-nav-contact-icon {
	width: 25px;

}



.header-nav-contact-body {
	display: inline;

}

.header-nav-contact-body::before {
	/* content: ""; */
	display: inline-block;
	width: 25px;
	height: 40px;
	background-image: url(../tatsujin/images/assets/phone-icon.svg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	left: -30px;


}

.header-nav-tel {
	display: block;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1;
}

.header-nav-time {
	display: block;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1;
}


.header-nav-contact-icon-sp {
	display: none;
}


.header-hamburger {
	display: block;
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	position: relative;
	z-index: 999;
	width: 150px;
	height: inherit;
	background: transparent;
	cursor: pointer;
	transition: .3s;
}

.header-hamburger:hover {
	opacity: 0.6;
}


.hamburger-icon {
	display: none;

}

.hamburger-icon-open {
	display: inline;
	max-width: 92px;
}

.hamburger-icon-close {
	max-width: 40px;

}

.js-hamburger.is-open .hamburger-icon-open {
	display: none;
}

.js-hamburger.is-open .hamburger-icon-close {
	display: inline;
}

.header-hamburger-img::after {
	content: "MENU";
	font-family: Noto Serif JP;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 0.2em;
	text-align: center;
	display: block;
	color: rgba(255, 255, 255, 1);
	margin-top: 5px;
}

.header-hamburger-img.is-open::after {
	content: "CLOSE";
}


.header-drawer {
	position: absolute;
	z-index: 800;
	top: 0;
	right: -120%;
	width: 50%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(12px);
	overflow-y: scroll;
	scrollbar-width: none;
	padding: 114px 30px;
	transition: .6s;
}

.header-drawer.is-open {
	right: 0%;
}

.header-drawer-nav {
	text-align: center;

}

.header-drawer::-webkit-scrollbar {
	display: none;
}

.header-drawer-nav-list a {
	display: inline-block;
	color: rgb(255, 255, 255);
	text-align: center;
	font-family: Shippori Mincho;
	font-weight: 700;
	font-size: clamp(1.5rem, 0.713rem + 1.64vw, 2.25rem);
	/* 24-36:768-1500 */
	line-height: 1;
}

.header-drawer-nav-list+.header-drawer-nav-list {
	margin-top: 30px;
}

.header-drawer-nav-list a::after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background: rgba(255, 255, 255, 1);
	margin-top: 6px;
	transition: all .3s;
	transform: scale(0, 1);
	transform-origin: center top;
}

.header-nav-item-contact .header-nav-ja::after {
	content: none;
}


.header-drawer-nav-list a:hover::after {
	transform: scale(1, 1);
	/*X方向にスケール拡大*/
}

.header-drawer-contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	gap: 30px;
}

.header-drawer-contact-text {
	font-weight: 700;
	font-size: clamp(1.25rem, 0.988rem + 0.55vw, 1.5rem);
	line-height: 1;
	color: rgba(255, 255, 255, 1);
}

.header-drawer-noscroll {
	overflow: hidden;
}

.header-none {
	display: none;
	justify-content: end;
}

.flex-end {
	justify-content: end;
}

@media screen and (max-width:1023px) {
	.header-drawer {
		width: 60%;
	}
}


@media screen and (max-width:767px) {
	.header-hamburger {
		width: 70px;
		margin-right: 10px;
	}

	.hamburger-icon-close {
		padding-top: 10px;
	}

	.header-drawer {
		width: 100%;
	}

	.header-drawer-contact {
		gap: 14px;
	}
}

/*footer
-----------------------------------------------------------------------------------------*/
.footer {
	background-color: rgba(44, 44, 44, 1);
	position: relative;
	/* z-index: -1; */
	padding-top: 50px;
}

.footer-bg {
	position: absolute;
	top: 0;
	width: 100%;
	height: 700px;
	background-image: url(../tatsujin/images/assets/footer-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.footer-contact-body {
	margin-left: 49px;

}

.footer-content {
	position: relative;
	z-index: 10;
}

.footer-contact {
	width: fit-content;
	margin-left: auto;
}

.footer-contact-title {
	font-weight: 700;
	font-size: 3rem;
	color: rgba(255, 255, 255, 1);
}


.footer-contact-text {
	font-weight: 500;
	font-size: 1rem;
	color: rgba(255, 255, 255, 1);
	margin-top: 28px;
	letter-spacing: 0.2em;
}

.footer-contact {
	.header-nav-contact {
		margin-top: 9px;
	}

	.header-nav-contact a {
		width: 381px;
	}
}

.footer-contact-seat,
.footer-contact-parking,
.footer-contact-payment {
	color: rgba(255, 255, 255, 1);
}



.footer-contact-button {
	margin-top: 16px;
	margin-left: 49px;
}

.footer-contact-button a {
	text-transform: uppercase;
	width: 381px;
}

.footer-map {
	margin-top: 50px;
}

.footer-bottom {
	padding: 50px 0;
	display: flex;
	gap: 50px;
}

.footer-bottom-logo {
	max-width: 200px;
	width: 100%;
}

.footer-bottom-instagram {
	max-width: 45px;
	width: 100%;
	margin-top: auto;
}


@media screen and (max-width:1023px) {
	.footer-bg {
		height: 550px;
		background-position: center;
	}

	.footer-contact-title {
		text-align: center;
		font-size: 2.5rem;
	}

	.footer-contact-button {
		margin-left: 0;
	}

	.footer-contact-button a {
		width: 300px;
		margin-inline: auto;

	}
}


@media screen and (max-width:767px) {
	.footer-contact-title {
		font-size: 2rem;
	}

	.footer-contact-body {
		margin-left: 0;
	}


	.footer-contact-text,
	.footer-contact-seat,
	.footer-contact-parking,
	.footer-contact-payment {
		letter-spacing: normal;
		font-size: 0.875rem;
	}

	.footer-contact {
		margin-inline: auto;

		.header-nav-contact a {
			width: 250px;
		}
	}

	.footer-contact-button a {
		width: 250px;
	}

	.footer-contact-title,
	.footer-contact-text {
		text-align: center;
	}

	.header-nav-contact a {
		margin-inline: auto;
	}

	.footer-bg {
		background-position: 30%;
	}

	.footer-bottom {
		padding: 30px 0;
		gap: 30px;
	}

	.footer-bottom-logo {
		max-width: 150px;
	}

	.footer-bottom-instagram {
		max-width: 25px;
	}

	.footer-map iframe {
		height: 300px;
	}
}


div.copy-right {
	padding: 30px 0;
	font-family: Noto Sans JP;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: rgb(255, 255, 255);
	text-align: left;
}

@media screen and (max-width:1023px) {
	div.copy-right {
		text-align: center;
	}
}

.footer-nikai-bg {
	background-image: url(../tatsujin/images/assets/footer-nikai-bg.jpg);
}

.footer-bottom-logo-nikai {
	max-width: 104px;
	width: 100%;
}

.footer-bottom-instagram-nikai {
	margin-top: 7px;
}

/*pagetop
-----------------------------------------------------------------------------------------*/
.pagetop {
	position: fixed;
	right: 65px;
	bottom: 30px;
	display: none;
	z-index: 9999;
	cursor: pointer;
	font-family: Noto Serif JP;
	font-weight: 400;
	font-size: 14px;
	writing-mode: vertical-rl;
	/* 縦書きに設定 */

	transform: rotate(180deg);
	/* 180度回転して下から読むようにする */
	color: rgba(255, 255, 255, 1);
}

.arrow {
	position: relative;
	display: inline-block;
	width: 2px;
	height: 114px;
	margin-right: 11.5px;
	margin-top: 8px;
	border-radius: 9999px;
	background-color: rgba(255, 255, 255, 1);
}

.arrow::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: calc(50% - 1px);
	width: 2px;
	height: 25px;
	border-radius: 9999px;
	background-color: rgba(255, 255, 255, 1);
	transform: rotate(30deg);
	transform-origin: 50% calc(100% - 1px);
}

@media screen and (max-width:1439px) {
	.pagetop {
		right: 20px;
	}

	.arrow {
		height: 70px;
	}

	.arrow::before {
		height: 15px;

	}
}

@media screen and (max-width: 767px) {
	.pagetop {
		opacity: 0;
		pointer-events: none;
	}
}

/*news
-----------------------------------------------------------------------------------------*/
.news {
	padding-top: 335px;
	background-image: url(../tatsujin/images/assets/news-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: -216px;
	/* position: relative; */
}

.news-section-title {
	font-size: 3rem;
}

.news-header-content {
	margin-top: -50px;
}


.archive-title {
	width: 150px;
	padding: 5px 0;
	font-weight: 500;
	font-size: 1rem;
	background: rgba(85, 85, 85, 1);
	text-align: center;
	margin-left: auto;
	border-radius: 2px;

}


.archive-select {
	margin-top: 10px;
	text-align: right;
}

.archive-dropdown {
	font-family: Shippori Mincho;
	font-weight: 500;
	font-size: 1rem;
	padding: 2px 5px;
	border: 2px solid rgba(85, 85, 85, 1);
	color: rgba(85, 85, 85, 1);
	border-radius: 5px;
	width: 152px;
	appearance: none;
	/* 矢印を非表示 (モダンブラウザ) */
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url(../tatsujin/images/assets/archive-arrow.svg);
	background-position: right 10px center;
	background-size: 13px 7px;
	background-repeat: no-repeat;
}

.news-item a {
	display: block;
	padding: 15px 0;
	text-align: left;
	transition: opacity 0.3s;

}

@media (any-hover: hover) {
	.news-item a:hover {
		opacity: 0.6;
	}
}


.news-item-meta {
	display: flex;
}

.news-item-date {
	font-size: 1rem;
	font-weight: 700;
}

.news-item-category {
	margin-left: 17px;
	padding: 2px 15px;
	min-width: 94px;
	font-size: 1rem;
	line-height: 1.5;
	color: rgb(255, 255, 255);
	text-align: center;
	border-radius: 2px;
	align-self: center;
	background: rgba(173, 2, 12, 1);
	font-weight: 500;
}


.news-item-title {
	font-weight: 500;
	font-size: 1rem;
	margin-top: 7px;
	/* １行に制限  */
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.news-body {
	margin-top: 30px;
	max-width: 900px;
	margin-inline: auto;
}

.news-body-list a {
	display: flex;
	justify-content: space-between;
}

.news-body-list a:hover {
	opacity: 0.6;
}

.news-body-item {
	max-width: 1070px;
	width: 100%;
	position: relative;
	padding: 0 50px;
	align-self: center;
}

.news-body-img {
	max-width: 364px;
	width: 100%;
}

.news-body-img img {
	aspect-ratio: 364 /233;
	object-fit: cover;
}


.news-body-item .news-item-title {
	margin-top: 16px;
}

.news-body-list+.news-body-list {
	margin-top: 147px;
}

@media screen and (max-width:1439px) {
	.news {
		padding-top: 200px;
	}

	.news-body-list+.news-body-list {
		margin-top: 100px;
	}
}


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

	.news-section-title {
		font-size: 2.5rem;
	}

	.news-header-content {
		flex-direction: column-reverse;
	}

	.news-body-img {
		width: 80%;
	}

	.news-body-list+.news-body-list {
		margin-top: 70px;
	}
}

@media screen and (max-width:767px) {
	.news {
		padding-top: 130px;
		padding-bottom: 50px;
		background-size: cover;
	}

	.news-wrapper {
		margin-top: 100px;
		max-width: 500px;
	}

	.news-header-content {
		margin-top: 30px;
	}

	.news-body {
		margin-top: 20px;
	}


	.news-body-list a {
		flex-direction: column;
	}

	.news-body-img {
		width: 100%;
		max-width: none;
	}

	.news-body-item {
		padding: 20px 40px 20px 0;
	}

	.news-body-item::after {
		width: 20px;
		height: 20px;
	}

	.news-body-list+.news-body-list {
		margin-top: 60px;
	}

}

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




/*news-pagenavi
-----------------------------------------------------------------------------------------*/

.pagenavi .wp-pagenavi {
	clear: both;
	text-align: center;
	display: flex;
	justify-content: center;
	margin-top: 100px;
}

.pagenavi .wp-pagenavi a,
.pagenavi .wp-pagenavi span {
	margin: 0 20px;
	/* padding: 21px 25px 19px 27px; */
	font-size: 1rem;
	line-height: 1;
	white-space: nowrap;
	border-bottom: 2px solid rgba(85, 85, 85, 1);
	border-right: 2px solid rgba(85, 85, 85, 1);
	transition: .3s;
	letter-spacing: 0;
	width: 65px;
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
}

.pagenavi .wp-pagenavi a:hover {
	color: #fff;
	background-color: rgba(85, 85, 85, 1);
	opacity: 1;
}

.pagenavi .wp-pagenavi .current {
	color: #fff;
	background-color: rgba(85, 85, 85, 1);
}

.nextpostslink::after {
	content: "";
	position: relative;
	display: inline-block;
	width: 7px;
	height: 13px;
	background-color: rgba(85, 85, 85, 1);
	-webkit-mask-image: url(../tatsujin/images/assets/next-btn.svg);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: 7px 13px;
	mask-image: url(../tatsujin/images/assets/next-btn.svg);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 7px 13px;
	transition: background-color 0.3s;
}


.previouspostslink::after {
	content: "";
	position: relative;
	display: inline-block;
	width: 7px;
	height: 13px;
	background-color: rgba(85, 85, 85, 1);
	-webkit-mask-image: url(../tatsujin/images/assets/prev-btn.svg);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: 7px 13px;
	mask-image: url(../tatsujin/images/assets/prev-btn.svg);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 7px 13px;
	transition: background-color 0.3s;
}

.previouspostslink:hover::after,
.nextpostslink:hover::after {
	background-color: rgba(255, 255, 255, 1);
	/* ホバー時に白く */
}

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

	.pagenavi .wp-pagenavi {
		margin-top: 40px;
	}

	.pagenavi .wp-pagenavi a,
	.pagenavi .wp-pagenavi span {
		width: 45px;
		height: 45px;
		margin: 0 10px;
	}


}

/*top-news 
-----------------------------------------------------------------------------------------*/
.top-news {
	background-image: url(../tatsujin/images/assets/news-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 50px;
}

.top-news .section-title {
	text-align: center;
	font-weight: 700;
	font-size: 3rem;
}

.top-news-wrapper {
	max-width: 900px;
	margin-inline: auto;
	margin-top: 86px;
}


.top-news-items {
	margin-top: 54px;
}


.news-item {
	border-bottom: 1px solid rgba(85, 85, 85, 0.3);
}

.top-news-button {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

@media screen and (max-width:1023px) {
	.top-news-wrapper {
		margin-top: 80px;
	}
}


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


	.top-news-wrapper {
		max-width: 500px;
		margin-top: 50px;
	}

	.top-news-items {
		margin-top: 30px;
	}

	.news-item a {
		padding: 20px 0;
	}

	.news-item-category {
		padding: 2px 5px;
		min-width: 105px;
	}

	.top-news-button {
		margin-top: 30px;
	}


}

/*news-sub
-----------------------------------------------------------------------------------------*/

.news-sub-wrapper {
	max-width: 900px;
	margin-inline: auto;
}

.news-sub-wrapper.news-item {
	border-bottom: none;
}

.news-sub-title {
	font-weight: 500;
	padding: 50px 0;
	font-weight: 500;
	font-size: 2rem;
	position: relative;
}

.news-sub-title::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-image: url(../tatsujin/images/assets/line-01.svg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
}

.news-sub-body-content {
	margin-top: 50px;
}

.news-sub-body-content {

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: 1.5rem;
		font-weight: 500;
		border-left: 5px solid rgba(173, 2, 12, 1);
		padding-left: 10px;
		margin-bottom: 50px;
	}

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

	p {
		font-weight: 500;
		font-size: revert;
		line-height: calc(40 / 16);
		letter-spacing: 0.175em;
	}

	p+p {
		margin-top: 16px;
	}




}

.news-sub-wrapper {

	.news-item-meta {
		justify-content: space-between;
	}

	.news-item-category {
		margin-left: 0;
	}
}




.pagenavi-news-sub {
	margin-top: 100px;
}

.pagenavi-news-sub-content {
	/* font-size: 0; */
	display: flex;
	justify-content: center;

}



.pagenavi-news-sub-prev,
.news-top-link,
.pagenavi-news-sub-next {
	font-size: 1.25rem;
	padding: 20px 40px;
	border-bottom: 2px solid rgba(85, 85, 85, 1);
	border-right: 2px solid rgba(85, 85, 85, 1);
	transition: .3s;
	margin: 0 33px;
	font-weight: 400;

}

.pagenavi-news-sub-content a:hover {
	color: #fff;
	background-color: rgba(85, 85, 85, 1);
	opacity: 1;
}

.pagenavi-news-sub-next::after {
	content: "";
	position: relative;
	display: inline-block;
	width: 7px;
	height: 13px;
	background-color: rgba(85, 85, 85, 1);
	-webkit-mask-image: url(../tatsujin/images/assets/next-btn.svg);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: 7px 13px;
	mask-image: url(../tatsujin/images/assets/next-btn.svg);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 7px 13px;
	transition: background-color 0.3s;
	margin-left: 10px;
}


.pagenavi-news-sub-prev::before {
	content: "";
	position: relative;
	display: inline-block;
	width: 7px;
	height: 13px;
	background-color: rgba(85, 85, 85, 1);
	-webkit-mask-image: url(../tatsujin/images/assets/prev-btn.svg);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: 7px 13px;
	mask-image: url(../tatsujin/images/assets/prev-btn.svg);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 7px 13px;
	margin-right: 10px;
	transition: background-color 0.3s;
}

.pagenavi-news-sub-next:hover::after,
.pagenavi-news-sub-prev:hover::before {
	background-color: rgba(255, 255, 255, 1);
	/* ホバー時に白く */
}


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

	.pagenavi-news-sub-prev,
	.news-top-link,
	.pagenavi-news-sub-next {
		padding: 10px 22px;
		margin: 0 15px;
		font-size: 1rem;
	}
}

@media screen and (max-width:767px) {
	.news-sub {
		margin-top: 60px;
	}

	.news-sub-title {
		padding: 30px 0;
		font-size: 1.5rem;
	}

	.news-sub-body-content {
		margin-top: 30px;
	}



	.pagenavi-news-sub-next::after,
	.pagenavi-news-sub-prev::before {
		margin: 0;
	}

	.pagenavi-news-sub-prev,
	.news-top-link,
	.pagenavi-news-sub-next {
		margin: 0 10px;
		padding: 10px 18px;
	}

	.pagenavi-news-sub {
		margin-top: 30px;
	}

	.news-sub-body-content {

		h1,
		h2,
		h3,
		h4,
		h5,
		h6 {
			margin-bottom: 30px;
			font-size: 1.25rem;
		}

		p {
			line-height: 2;
		}

		p+p {
			margin-top: 10px;
		}
	}
}




body {
	display: flex;
	display: block;
	flex-direction: column;
	flex-wrap: wrap;
}