@charset "UTF-8";
/* ------------------------
    メインビジュアル
------------------------ */
.index-hero__grid {
	display: flex;
}
.index-hero__if {
	width: 600px;
	height: 100vh;
}
.index-hero__window {
	position: relative;
	width: 100%;
	height: calc(69% - 120px);
	margin-top: 120px;
}
.index-hero__window .window {
	position: absolute;
	top: calc(50% + 20px);
	left: calc(50% + 15px);
	transform: translateY(-50%) translateX(-50%);
	width: 100%;
	max-width: 315px;
}
.index-hero__window figure {
	width: 100%;
	aspect-ratio: 63 / 76;
	display: block;
    overflow: hidden;
    clip-path: polygon(65px 0, 100% 0, 100% calc(100% - 65px), calc(100% - 65px) 100%, 0 100%, 0% 65px);
}
.index-hero__window figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}
.index-hero__window .message {
	display: block;
	position: absolute;
	top: -30px;
	right: -30px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-family: "Zen Old Mincho", serif;
	font-size: 3.3rem;
	letter-spacing: 8px;
	line-height: 1;
	font-weight: bolder;
	color: #BD0E0E;
	background-color: #F5F1F1;
	padding: 20px 15px 15px;
}
.index-hero__window .message::before {
	content: '';
	background-color: #BD0E0E;
	width: 100%;
	height: 100%;
	position: absolute;
	top: -2px;
	right: -2px;
	z-index: -1;
}
.index-hero__h1 {
	position: relative;
	height: 31%;
	z-index: 1;
}
.index-hero__h1 h1 {
	position: absolute;
	top: calc(50% - 25px);
	left: 80px;
	transform: translateY(-50%);
	color: #fff;
	font-weight: 400;
	white-space: nowrap;
	font-family: "Zen Old Mincho", serif;
	font-size: 4.8rem;
}
.index-hero__h1 h1 .break {
	display: block;
	line-height: 1.5;
}
.index-hero__h1 h1 .break + .break {
	margin-top: -5px;
	padding-left: 40px;
}
.index-hero__h1 h1 .line {
	padding: 5px 0 10px 25px;
	background-color: #BD0E0E;
	animation: break .5s cubic-bezier(0.6, 0, 0.8, 0) .1s both;
}
@keyframes break {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.index-hero__mv {
	position: relative;
	width: calc(100% - 600px);
	height: 100%;
}
.index-hero__mv .index-hero__slide figure {
	position: relative;
	display: block;
	overflow: hidden;
	height: 100vh;
}
.index-hero__mv .index-hero__slide figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.index-hero__slide .hero-slide .slick-list {
	height: 100vh;
	border: 15px solid #fff;
}
.index-hero__slide .slide-animation {
	animation: fadezoom 8s 0s forwards;
}
@keyframes fadezoom {
	0% {
			transform: scale(1);
	}
	100% {
			transform: scale(1.1);
	}
}
.index-hero__award {
	position: absolute;
	right: 80px;
	bottom: 35px;
	display: flex;
	gap: 0 15px;
	pointer-events: none;
}
.index-hero__award figure {
	width: 100%;
	max-width: 190px;
}
.index-hero__award figure img {
	display: block;
}
@media only screen and (max-width: 1180px) {
	.index-hero__if {
		width: 400px;
	}
	.index-hero__mv {
		width: calc(100% - 400px);
	}
	.index-hero__window .window {
		max-width: 250px;
    	left: 50%;
	}
	.index-hero__window .message {
		top: -20px;
		right: -20px;
		font-size: 2.8rem;
		letter-spacing: 8px;
		padding: 15px 10px 10px;
	}
	.index-hero__window figure {
		aspect-ratio: 7 / 8;
		clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0% 40px);
	}
	.index-hero__h1 h1 {
		font-size: 3.2rem;
	}
	.index-hero__award {
		display: block;
	}
	.index-hero__award figure {
		max-width: 160px;
		margin-top: 10px;
	}
}
@media only screen and (max-width: 768px) {
	.index-hero__grid {
		display: block;
	}
	.index-hero__if {
		width: 100%;
		height: 100%;
		min-height: 450px;
		max-height: 450px;
		display: flex;
		justify-content: center;
        gap: 45px;
	}
	.index-hero__window {
		position: relative;
		height: auto;
		margin-top: 125px;
		order: 2;
		width: 100%;
        max-width: 230px;
	}
	.index-hero__window .window {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        width: 100%;
		padding-right: 20px;
	}
	.index-hero__window figure {
		width: 100%;
		aspect-ratio: 7 / 9;
		display: block;
		overflow: hidden;
		clip-path: polygon(35px 0, 100% 0, 100% calc(100% - 35px), calc(100% - 35px) 100%, 0 100%, 0% 35px);
	}
	.index-hero__window figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}
	.index-hero__window .message {
		display: block;
		position: absolute;
		top: -15px;
		right: 0;
		-webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
		font-family: "Zen Old Mincho", serif;
		font-size: 2.4rem;
		letter-spacing: 6px;
		line-height: 1;
		font-weight: bolder;
		color: #BD0E0E;
		background-color: #F5F1F1;
		padding: 15px 10px 10px;
	}
	.index-hero__window .message::before {
		content: '';
		background-color: #BD0E0E;
		width: 100%;
		height: 100%;
		position: absolute;
		top: -2px;
		right: -2px;
		z-index: -1;
	}
	.index-hero__h1 {
		position: relative;
		height: auto;
		z-index: 1;
		width: auto;
		order: 1;
		margin-top: 110px;
		-webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
	}
	.index-hero__h1 h1 {
		position: relative;
		top: unset;
		left: unset;
		right: unset;
		transform: unset;
		color: #fff;
		font-weight: 500;
		white-space: nowrap;
		font-family: "Zen Old Mincho", serif;
		font-size: 2.4rem;
		letter-spacing: 2px;
	}
	.index-hero__h1 h1 .break {
		display: block;
		line-height: 1.5;
	}
	.index-hero__h1 h1 .break + .break {
		margin-top: 0;
		margin-right: -10px;
		padding-left: 0;
		padding-top: 30px;
	}
	.index-hero__h1 h1 .line {
		padding: 15px 6px 2px;
		display: inline-block;
		background-color: #BD0E0E;
	}
	.index-hero__mv {
		position: relative;
		width: 100%;
		height: 400px;
		overflow: hidden;
	}
	.index-hero__mv .index-hero__slide figure {
		position: relative;
		display: block;
		height: 400px;
	}
	.index-hero__mv .index-hero__slide figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.index-hero__slide .hero-slide .slick-list {
		height: 100vh;
		border: none;
	}
	.index-hero__slide .slide-animation {
		animation: fadezoom 8s 0s forwards;
	}
	@keyframes fadezoom {
		0% {
				transform: scale(1);
		}
		100% {
				transform: scale(1.1);
		}
	}
	.index-hero__award {
		position: absolute;
		right: 10px;
		bottom: 10px;
		display: flex;
		gap: 0 10px;
		pointer-events: none;
	}
	.index-hero__award figure {
		width: 100%;
		max-width: 120px;
	}
	.index-hero__award figure img {
		display: block;
	}
}
@media only screen and (max-width: 640px) {
	.index-hero__if {
		min-height: 400px;
		max-height: 400px;
        gap: 35px;
	}
	.index-hero__window {
        max-width: 200px;
	}
	.index-hero__window .message {
		font-size: 2.1rem;
	}
	.index-hero__h1 h1 {
		font-size: 2.4rem;
		letter-spacing: 3px;
	}
}


.index-about {
	position: relative;
	padding-bottom: 120px;
	margin-top: 140px;
}
.index-about::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 600px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(245,241,241,1));
	z-index: -1;
}
.index-about__content {
	width: 100%;
	max-width: 1160px;
	padding: 0 20px;
	margin: 0 auto;
}
.index-about__grid {
	position: relative;
	display: flex;
	gap: 60px;
}
.index-about__grid::before {
	content: 'ABOUT US';
	position: absolute;
	left: -145px;
	bottom: 0;
	font-size: 14rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	/* color: #F5F1F1; */
	color: #F4E7E6;
	z-index: -1;
}
.index-about__text {
	width: 100%;
	max-width: 480px;
}
.index-about__text h2 {
	font-family: "Zen Old Mincho", serif;
	font-size: 3.3rem;
	letter-spacing: 1px;
	line-height: 1.6;
	font-weight: bold;
	padding-bottom: 25px;
	border-bottom: 1px solid #BD0E0E;
}
.index-about__text h2 span {
	color: #BD0E0E;
}
.index-about__text p {
	margin-top: 30px;
	font-family: "Zen Old Mincho", serif;
    font-size: 2.4rem;
    line-height: 2.1;
    letter-spacing: 1px;
    font-weight: 500;
}
.index-about__img {
	width: 100%;
	min-width: 400px;
}
.index-about__img h3 {
	text-align: center;
	font-size: 2.4rem;
	font-weight: 500;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: 1px;
}
.index-about__img h3 span {
	color: #BD0E0E;
}
.index-about__img figure {
	pointer-events: none;
	margin-top: 30px;
}
.index-about__img figure img {
	width: 100%;
}
.index-about-kind {
	margin-top: 140px;
}
.index-about-kind__grid {
	display: flex;
	gap: 40px;
}
.index-about-kind__item {
	position: relative;
	padding-top: 20px;
	width: calc(33.3333% - 13.3333px);
}
.index-about-kind__item .ttl {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2.8rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 1px;
	white-space: nowrap;
	color: #BD0E0E;
	z-index: 1;
}
.index-about-kind__img {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 65%;
}
.index-about-kind__img img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.index-about-kind__item p {
	margin-top: 15px;
    font-size: 2.2rem;
    line-height: 1.6;
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
}
@media only screen and (max-width: 768px) {
	.index-about {
		position: relative;
		padding-bottom: 80px;
		margin-top: 80px;
	}
	.index-about::before {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 600px;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(245,241,241,1));
		z-index: -1;
	}
	.index-about__content {
		width: 100%;
		max-width: 640px;
		padding: 0 20px;
		margin: 0 auto;
		overflow: hidden;
	}
	.index-about__grid {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		gap: 60px;
		padding-bottom: 90px;
	}
	.index-about__grid::before {
		content: 'ABOUT US';
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 0;
		font-size: 7rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		line-height: 1;
		white-space: nowrap;
		/* color: #F5F1F1; */
		color: #F4E7E6;
		z-index: -1;
	}
	.index-about__text {
		width: 100%;
		max-width: 640px;
		text-align: center;
	}
	.index-about__text h2 {
		font-family: "Zen Old Mincho", serif;
		font-size: 2.8rem;
		letter-spacing: 1px;
		line-height: 1.5;
		font-weight: bold;
		padding-bottom: 20px;
		border-bottom: 1px solid #BD0E0E;
	}
	.index-about__text h2 span {
		color: #BD0E0E;
	}
	.index-about__text p {
		margin-top: 30px;
		font-family: "Zen Old Mincho", serif;
		font-size: 2rem;
		line-height: 2;
		letter-spacing: 2px;
		font-weight: 500;
	}
	.index-about__text .btn-01 {
		margin: 40px auto 0;
	}
	.index-about__img {
		width: 100%;
		min-width: unset;
	}
	.index-about__img h3 {
		text-align: center;
		font-size: 2.4rem;
		font-weight: 500;
	}
	.index-about__img h3 span {
		color: #BD0E0E;
	}
	.index-about__img figure {
		pointer-events: none;
		margin-top: 30px;
		width: auto;
		margin: 30px -10px 0;
	}
	.index-about__img figure img {
		margin: auto;
		width: 100%;
		max-width: 540px;
	}
	.index-about-kind {
		margin-top: 40px;
	}
	.index-about-kind__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
	}
	.index-about-kind__item {
		position: relative;
		padding-top: 20px;
		width: 100%;
	}
	.index-about-kind__item .ttl {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		font-size: 2.8rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 1px;
		white-space: nowrap;
		color: #BD0E0E;
		z-index: 1;
	}
	.index-about-kind__img {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 65%;
	}
	.index-about-kind__img img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.index-about-kind__item p {
		margin-top: 15px;
		font-size: 2rem;
		line-height: 1.6;
		text-align: center;
		font-family: "Zen Old Mincho", serif;
		font-weight: 500;
	}
}


.index-concept {
	padding: 100px 0 60px;
}
.index-concept__content {
	position: relative;
	width: 100%;
	max-width: 1160px;
	padding: 0 20px;
	margin: 0 auto;
}
.index-concept__banner {
	position: relative;
	padding: 60px 0;
}
.index-concept__banner::before {
	content: '';
    position: absolute;
    top: 0;
    left: -53px;
    width: 720px;
    height: 102px;
    background: url(./img/CONCEPT.svg) no-repeat center / cover;
	z-index: 1;
}
.index-concept__img {
	width: 100%;
	max-width: 800px;
}
.index-concept__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	height: 380px;
}
.index-concept__img figure img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.index-concept__text {
	width: 100%;
	max-width: 490px;
	background-color: #BD0E0E;
	padding: 65px 50px;
	position: absolute;
	right: 0;
	bottom: 0;
}
.index-concept__text h2 {
	font-size: 3rem;
	text-align: center;
	color: #fff;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	line-height: 1.5;
}
.index-concept__text p {
	color: #fff;
	margin-top: 25px;
}
.index-concept__text .btn-02 {
	margin: 30px auto 0;
}
@media only screen and (max-width: 768px) {
	.index-concept {
		padding: 60px 0;
	}
	.index-concept__content {
		position: relative;
		width: 100%;
		max-width: 1160px;
		padding: 0 20px;
		margin: 0 auto;
	}
	.index-concept__banner {
		position: relative;
		padding: 0;
	}
	.index-concept__banner::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 102px;
		background: url(./img/ONLINE-STORE.svg) no-repeat center / cover;
		z-index: 1;
		display: none;
	}
	.index-concept__img {
		width: 100%;
		max-width: 800px;
	}
	.index-concept__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		height: auto;
		padding-top: 65%;
	}
	.index-concept__img figure img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.index-concept__text {
		width: 100%;
		max-width: 100%;
		background-color: #BD0E0E;
		padding: 30px 30px 40px;
		position: static;
		right: unset;
		bottom: unset;
	}
	.index-concept__text h2 {
		font-size: 2.4rem;
		text-align: center;
		color: #fff;
		font-family: "Zen Old Mincho", serif;
		font-weight: 600;
		line-height: 1.5;
	}
	.index-concept__text p {
		color: #fff;
		margin-top: 20px;
	}
	.index-concept__text .btn-02 {
		max-width: 100%;
		margin: 20px auto 0;
	}
}


.index-brand {
	position: relative;
}
.index-brand__content {
	position: relative;
	width: 100%;
	max-width: 1160px;
	padding: 120px 20px;
	margin: 0 auto;
}
.index-brand__content::before {
	content: 'BRAND LINE UP';
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	position: absolute;
	top: 30px;
	left: -145px;
	font-size: 14rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	/* color: #F5F1F1; */
	color: #F4E7E6;
	z-index: -1;
}
.index-brand h2 {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-family: "Zen Old Mincho", serif;
	text-orientation: upright;
	font-size: 4rem;
	letter-spacing: 6px;
	line-height: 1;
	width: calc(100% - 920px);
	min-width: 200px;
	display: flex;
	align-items: center;
}
.index-brand h2 span {
	color: #BD0E0E;
}
.index-brand__grid {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.index-brand__brand {
	width: 100%;
	max-width: 920px;
}
.index-brand__list li {
	background-color: #F5F1F1;
	border-bottom: 1px solid #BD0E0E;
}
.index-brand__list li + li {
	margin-top: 30px;
}
.index-brand-pork__grid {
	display: flex;
}
.index-brand-pork__img {
	width: 100%;
	max-width: 360px;
}
.index-brand-pork__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 75%;
	height: 100%;
}
.index-brand-pork__img figure img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.index-brand-pork__text {
	width: calc(100% - 360px);
	padding: 20px 40px;
	display: flex;
	align-items: center;
}
.index-brand-pork__text h3 {
	font-family: "Zen Old Mincho", serif;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.5;
	color: #BD0E0E;
}
.index-brand-pork__text p {
	margin-top: 10px;
}
.index-brand .btn-01 {
	margin: 60px auto 0;
}
.index-brand .btn-01 + p {
	text-align: center;
	margin-top: 30px;
}
@media only screen and (max-width: 1040px) {
	.index-brand-pork__grid {
		display: flex;
		flex-wrap: wrap;
	}
	.index-brand-pork__img {
		width: 100%;
		max-width: 100%;
	}
	.index-brand-pork__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 60%;
		height: auto;
	}
	.index-brand-pork__img figure img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.index-brand-pork__text {
		width: 100%;
		padding: 25px 25px 30px;
		display: flex;
		align-items: center;
	}
	.index-brand-pork__text h3 {
		font-family: "Zen Old Mincho", serif;
		font-weight: 500;
		line-height: 1.5;
		color: #BD0E0E;
	}
	.index-brand-pork__text p {
		margin-top: 10px;
	}
	.index-brand .btn-01 {
		margin: 40px auto 0;
	}
	.index-brand .btn-01 + p {
		text-align: center;
		margin-top: 30px;
	}
}
@media only screen and (max-width: 768px) {
	.index-brand {
		position: relative;
	}
	.index-brand__content {
		position: relative;
		width: 100%;
		max-width: 640px;
		padding: 80px 20px;
		margin: 0 auto;
		overflow: hidden;
	}
	.index-brand__content::before {
		content: 'LINE UP';
		-webkit-writing-mode: unset;
		-ms-writing-mode: unset;
		writing-mode: unset;
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 8rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		line-height: 1;
		white-space: nowrap;
		/* color: #F5F1F1; */
		color: #F4E7E6;
		z-index: -1;
	}
	.index-brand h2 {
		-webkit-writing-mode: unset;
		-ms-writing-mode: unset;
		writing-mode: unset;
		font-family: "Zen Old Mincho", serif;
		text-orientation: unset;
		font-size: 3rem;
		letter-spacing: unset;
		line-height: 1;
		width: 100%;
		min-width: 100%;
		display: block;
		align-items: unset;
		text-align: center;
	}
	.index-brand h2 span {
		color: #BD0E0E;
	}
	.index-brand__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: unset;
		gap: 40px;
	}
	.index-brand__brand {
		width: 100%;
		max-width: 920px;
	}
	.index-brand__list li {
		background-color: #F5F1F1;
		border-bottom: 1px solid #BD0E0E;
	}
	.index-brand__list li + li {
		margin-top: 30px;
	}
	.index-brand-pork__grid {
		display: flex;
		flex-wrap: wrap;
	}
	.index-brand-pork__img {
		width: 100%;
		max-width: 100%;
	}
	.index-brand-pork__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 65%;
		height: auto;
	}
	.index-brand-pork__img figure img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.index-brand-pork__text {
		width: 100%;
		padding: 25px 25px 30px;
		display: flex;
		align-items: center;
	}
	.index-brand-pork__text h3 {
		font-family: "Zen Old Mincho", serif;
		font-size: 2.4rem;
		font-weight: 500;
		line-height: 1.5;
		color: #BD0E0E;
	}
	.index-brand-pork__text p {
		margin-top: 10px;
	}
	.index-brand .btn-01 {
		margin: 40px auto 0;
	}
	.index-brand .btn-01 + p {
		text-align: center;
		margin-top: 30px;
	}
}


.index-news {
	background-color: #F5F1F1;
}
.index-news__content {
	position: relative;
	width: 100%;
	max-width: 1160px;
	padding: 120px 20px;
	margin: 0 auto;
}
.index-news__content::before {
	content: 'NEWS';
	position: absolute;
	top: -25px;
	left: -145px;
	font-size: 14rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	color: #fff;
}
.index-news__ttl {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.index-news__ttl h2 {
	font-family: "Zen Old Mincho", serif;
	font-size: 3.3rem;
	letter-spacing: 1px;
	line-height: 1.5;
	font-weight: bold;
}
.index-news__ttl .btn-01 {
	margin-top: 0;
}
.index-news__grid {
	display: flex;
	gap: 30px;
	margin-top: 40px;
}
.index-news__item {
	width: calc(33.333% - 10px);
}
.index-news__link {
	display: block;
}
.index-news__img {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 65%;
}
.index-news__img img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.index-news__link:hover img {
	transform: scale(1.1);
	transition: .3s;
}
.index-news__text {
	margin-top: 15px;
}
.index-news__text .ttl {
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.5;
	display: block;
	transition: .3s;
}
.index-news__link:hover .ttl {
	color: #BD0E0E;
	transition: .3s;
}
.index-news__text .info {
	display: flex;
	align-items: center;
	margin-top: 15px;
}
.index-news__text .info .date {
	font-size: 2rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 1px;
	color: #aaa;
	margin-right: 20px;
}
.index-news__text .info .cate {
	display: block;
	text-align: center;
	background-color: #fff;
	width: 100px;
	height: 25px;
	line-height: 23px;
	color: #BD0E0E;
	font-size: 1.3rem;
	font-weight: 500;
}
@media only screen and (max-width: 768px) {
	.index-news {
		background-color: #F5F1F1;
	}
	.index-news__content {
		position: relative;
		width: 100%;
		max-width: 640px;
		padding: 80px 20px;
		margin: 0 auto;
		overflow: hidden;
	}
	.index-news__content::before {
		content: 'NEWS';
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 7rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		line-height: 1;
		white-space: nowrap;
		color: #fff;
	}
	.index-news__ttl {
		display: block;
		align-items: unset;
		justify-content: unset;
	}
	.index-news__ttl h2 {
		font-family: "Zen Old Mincho", serif;
		font-size: 3rem;
		letter-spacing: 1px;
		line-height: 1.5;
		font-weight: bold;
		text-align: center;
	}
	.index-news__ttl .btn-01 {
		margin-top: 0;
	}
	.index-news__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		margin-top: 40px;
	}
	.index-news__item {
		width: 100%;
	}
	.index-news__link {
		display: block;
	}
	.index-news__img {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 60%;
	}
	.index-news__img img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.index-news__link:hover img {
		transform: scale(1.1);
		transition: .3s;
	}
	.index-news__text {
		margin-top: 15px;
	}
	.index-news__text .ttl {
		font-family: "Zen Old Mincho", serif;
		font-size: 2rem;
		font-weight: 600;
		line-height: 1.5;
		display: block;
		transition: .3s;
	}
	.index-news__link:hover .ttl {
		color: #BD0E0E;
		transition: .3s;
	}
	.index-news__text .info {
		display: flex;
		align-items: center;
		margin-top: 15px;
	}
	.index-news__text .info .date {
		font-size: 2rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 1px;
		color: #aaa;
		margin-right: 20px;
	}
	.index-news__text .info .cate {
		display: block;
		text-align: center;
		background-color: #fff;
		width: 100px;
		height: 25px;
		line-height: 23px;
		color: #BD0E0E;
		font-size: 1.3rem;
		font-weight: 500;
	}
	.index-news .btn-01 {
		margin: 50px auto 0;
	}
}


.index-contact {
	position: relative;
}
.index-contact__content {
	position: relative;
	width: 100%;
	max-width: 1160px;
	padding: 0 20px;
	margin: 0 auto;
}
.index-contact__content::before {
	content: 'CONTACT';
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	color: rgba(255,255,255,.7);
	z-index: 1;
}
.index-contact__inner {
	position: relative;
	padding-top: 120px;
}
.index-contact__inner::before {
	content: '';
	width: 100vw;
	height: calc(100% - 53px - 120px);
	background-color: rgba(189,25,25,.85);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.index-contact__inner::after {
	content: '';
	width: 100vw;
	height: calc(100% - 53px - 120px);
	background: url(./img/contact-back.jpg) no-repeat center / cover;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -2;
}
.index-contact__inner h2 {
	position: relative;
	font-family: "Zen Old Mincho", serif;
	font-size: 4rem;
	letter-spacing: 1px;
	line-height: 1.5;
	font-weight: 600;
	text-align: center;
	color: #fff;
}
.index-contact__grid {
	display: flex;
	gap: 30px;
	margin-top: 60px;
}
.index-contact__item {
	width: calc(33.333% - 10px);
}
.index-contact__link {
	display: block;
}
.index-contact__link:hover img {
	transform: scale(1.1);
	transition: .3s;
}
.index-contact__img {
	display: block;
	position: relative;
	overflow: hidden;
	height: 240px;
}
.index-contact__img img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.index-contact__item h3 {
	text-align: center;
	font-family: "Zen Old Mincho", serif;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1;
	display: block;
	color: #BD0E0E;
	margin-top: 25px;
	position: relative;
}
.index-contact__item h3 span {
	display: inline-block;
	position: relative;
	padding-bottom: 5px;
}
.index-contact__item h3 span::before {
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	left: 1px;
	bottom: 0;
	background-color: #BD0E0E;
	transition: .3s;
}
.index-contact__link:hover h3 span::before {
	width: 100%;
	transition: .3s;
}
.index-contact .btn-01 {
	margin: 60px auto 0;
}
@media only screen and (max-width: 768px) {
	.index-contact {
		position: relative;
	}
	.index-contact__content {
		position: relative;
		width: 100%;
		max-width: 640px;
		padding: 0 20px;
		margin: 0 auto;
	}
	.index-contact__content::before {
		content: 'CONTACT';
		position: absolute;
		top: -11px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 7.5rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		line-height: 1;
		white-space: nowrap;
		color: rgba(255,255,255,.7);
		z-index: 1;
	}
	.index-contact__inner {
		position: relative;
		padding-top: 0;
	}
	.index-contact__inner::before {
		display: none;
	}
	.index-contact__inner::after {
		display: none;
	}
	.index-contact__inner h2 {
		position: relative;
		font-family: "Zen Old Mincho", serif;
		font-size: 3rem;
		letter-spacing: 1px;
		line-height: 1.5;
		font-weight: 600;
		text-align: center;
		color: #fff;
		padding-top: 80px;
		padding-bottom: 40px;
	}
	.index-contact__inner h2::before {
		content: '';
		width: 100vw;
		height: calc(100% + (50vw - 22.5vw));
		background-color: rgba(189,25,25,.85);
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
	}
	.index-contact__inner h2:after {
		content: '';
		width: 100vw;
		height: calc(100% + (50vw - 22.5vw));
		background: url(./img/contact-back.jpg) no-repeat center / cover;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: -2;
	}
	.index-contact__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		margin-top: 0;
	}
	.index-contact__item {
		width: 100%;
	}
	.index-contact__img {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 60%;
		height: auto;
	}
	.index-contact__img img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.index-contact__item h3 {
		text-align: center;
		font-family: "Zen Old Mincho", serif;
		font-size: 2.4rem;
		font-weight: 600;
		line-height: 1;
		display: block;
		color: #BD0E0E;
		margin-top: 15px;
	}
	.index-contact .btn-01 {
		margin: 60px auto 0;
	}
}


.pageA-hero {
	position: relative;
	width: 100%;
	height: 400px;
}
.pageA-hero h1 {
	position: absolute;
	left: 100px;
	bottom: 40px;
	color: #fff;
    font-weight: 400;
    white-space: nowrap;
    font-family: "Zen Old Mincho", serif;
    font-size: 4.4rem;
	z-index: 1;
	animation: pageA .4s cubic-bezier(0.6, 0, 0.8, 0) .1s both;
}
@keyframes pageA {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.pageA-hero h1 span {
	padding: 0 25px 5px;
    display: inline-block;
    background-color: #BD0E0E;
}
.pageA-hero__img {
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	width: calc(100% - 260px);
}
.pageA-hero__img figure {
	position: relative;
	overflow: hidden;
	display: block;
	height: 415px;
}
.pageA-hero__img figure img {
	padding: 15px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.pageA-hero__img .en {
	position: absolute;
	bottom: -5px;
	right: 55px;
	font-size: 14rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	color: rgba(255,255,255,1);
	text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
	.pageA-hero {
		position: relative;
		width: 100%;
		height: auto;
		padding-top: 70px;
	}
	.pageA-hero h1 {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: -20px;
		color: #fff;
		font-weight: 400;
		white-space: nowrap;
		font-family: "Zen Old Mincho", serif;
		font-size: 3rem;
		z-index: 1;
	}
	.pageA-hero h1 span {
		padding: 0 15px 3px;
		display: inline-block;
		background-color: #BD0E0E;
	}
	.pageA-hero__img {
		position: relative;
		top: unset;
		right: unset;
		overflow: hidden;
		width: 100%;
	}
	.pageA-hero__img figure {
		position: relative;
		overflow: hidden;
		display: block;
		height: unset;
		padding-top: 60%;
	}
	.pageA-hero__img figure img {
		padding: 0;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.pageA-hero__img .en {
		position: absolute;
		bottom: unset;
		right: unset;
		top: -12px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 7rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		line-height: 1;
		white-space: nowrap;
		color: rgba(255,255,255,1);
	}
}

.pageB-hero {
	position: relative;
	width: 100%;
	height: 285px;
	padding-bottom: 35px;
}
.pageB-hero__inner {
	background-color: #F5F1F1;
	width: 100%;
	height: 100%;
}
.pageB-hero h1 {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	color: #fff;
    font-weight: 400;
    white-space: nowrap;
    font-family: "Zen Old Mincho", serif;
    font-size: 4.2rem;
	z-index: 1;
	animation: pageB .4s cubic-bezier(0.6, 0, 0.8, 0) .1s both;
}
@keyframes pageB {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.pageB-hero h1 span {
	padding: 0 25px 5px;
    display: inline-block;
    background-color: #BD0E0E;
	line-height: 1.5;
}
.pageB-hero .en {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	color: rgba(255,255,255,1);
	text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
	.pageB-hero {
		position: relative;
		width: 100%;
		height: 220px;
		padding-bottom: 20px;
		padding-top: 70px;
		overflow: hidden;
	}
	.pageB-hero__inner {
		position: relative;
		background-color: #F5F1F1;
		width: 100%;
		height: 100%;
	}
	.pageB-hero h1 {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: -20px;
		color: #fff;
		font-weight: 400;
		white-space: nowrap;
		font-family: "Zen Old Mincho", serif;
		font-size: 3rem;
		z-index: 1;
		animation: pageB .4s cubic-bezier(0.6, 0, 0.8, 0) .1s both;
	}
	@keyframes pageB {
	0% {
		clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	}
	to {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
	}
	.pageB-hero h1 span {
		padding: 0 15px 3px;
		display: inline-block;
		background-color: #BD0E0E;
		line-height: unset;
	}
	.pageB-hero .en {
		position: absolute;
		bottom: unset;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		font-size: 7rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		line-height: .7;
		white-space: nowrap;
		color: rgba(255,255,255,1);
		text-align: center;
	}
	.pageB-hero .en.tume {
		font-size: 6.6rem;
		letter-spacing: -5px;
	}
}

.page-catch {
	position: relative;
	width: 100%;
	max-width: 1160px;
	padding: 0 20px;
	margin: 100px auto 0;
}
.pageB-hero + .page-catch {
	margin: 80px auto 0;
}
.page-catch .catch {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-size: 3.6rem;
	line-height: 1.5;
	font-weight: 600;
	text-align: center;
}
.page-catch .catch span {
	color: #BD0E0E;
}
.page-catch p {
	text-align: center;
	margin-top: 30px;
}
@media only screen and (max-width: 768px) {
	.page-catch {
		position: relative;
		width: 100%;
		max-width: 1160px;
		padding: 0 20px;
		margin: 80px auto 0;
	}
	.pageB-hero + .page-catch {
		margin: 60px auto 0;
	}
	.page-catch .catch {
		display: block;
		font-family: "Zen Old Mincho", serif;
		font-size: 2.8rem;
		line-height: 1.5;
		font-weight: 600;
		text-align: center;
	}
	.page-catch .catch span {
		color: #BD0E0E;
	}
	.page-catch p {
		text-align: left;
		margin-top: 30px;
	}
}


.about-figure {
	position: relative;
	padding-bottom: 100px;
}
.about-figure::before {
	content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 660px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(245, 241, 241, 1));
    z-index: -1;
}
.about-figure__content {
	position: relative;
	width: 100%;
	max-width: 1160px;
	padding: 0 20px;
	margin: 100px auto 0;
}
.about-figure .catch {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-size: 3.6rem;
	line-height: 1.5;
	font-weight: 600;
	text-align: center;
}
.about-figure .catch span {
	color: #BD0E0E;
}
.about-figure .catch + p {
	text-align: center;
	margin-top: 30px;
}
.about-figure__img {
	width: 100%;
	max-width: 640px;
	margin: 50px auto 0;
}
.about-figure__img img {
	width: 100%;
}
.about-flow__content {
	position: relative;
	width: 100%;
	max-width: 1160px;
	padding: 0 20px;
	margin: 100px auto 0;
}
.about-flow__inner {
	position: relative;
	width: 100%;
}
.about-flow__inner::before {
	content: '';
	position: absolute;
	top: 30px;
	left: 130px;
	width: 1px;
	height: calc(100% - 30px);
	background-color: #BD0E0E;
}
.about-flow__item {
	display: flex;
	align-items: flex-start;
}
.about-flow__item + .about-flow__item {
	border-top: 1px solid #ccc;
	margin-top: 50px;
	padding-top: 50px;
}
.about-flow__num {
	position: relative;
	width: 130px;
	height: 60px;
}
.about-flow__num.pochi::before,
.about-flow__num.pochi::after {
	content: '';
	width: 20px;
	height: 20px;
	border-radius: calc(infinity * 1px);
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
	background-color: #BD0E0E;
}
.about-flow__num.pochi::after {
	right: -6px;
	width: 12px;
	height: 12px;
	background-color: #fff;
}
.about-flow__num .num {
	display: block;
	font-size: 6rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1;
	color: #BD0E0E;
}
.about-flow__detail {
	position: relative;
	width: calc(100% - 130px);
}
.about-flow__grid {
	display: flex;
	gap: 40px;
	padding-left: 60px;
}
.about-flow__text {
	width: calc(100% - 400px);
}
.about-flow__text .ttl {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.5;
}
.about-flow__text p {
	margin-top: 15px;
	line-height: 2;
}
.about-flow__text strong {
	color: #BD0E0E;
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.5;
	margin-top: 30px;
}
.about-flow__text .list-01 {
	margin-top: 15px;
}
.about-flow__img {
	width: 100%;
	max-width: 380px;
}
.about-flow__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 75%;
	height: auto;
}
.about-flow__img figure img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.about-flow__item.about-flow-sub__back {
	border-top: none;
	position: relative;
	padding: 50px 0 60px;
}
.about-flow__item.about-flow-sub__back::before {
	content: '';
	width: 100vw;
	height: 100%;
	background-color: #F5F1F1;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.about-flow__item.about-flow-sub__back + .about-flow__item {
	border-top: none;
	margin-top: 0;
	padding-top: 50px;
}
.about-flow-sub__back .en {
	position: absolute;
	right: -140px;
	top: -20px;
	font-size: 11rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	color: #fff;
}
.about-flow-sub__item {
	width: calc(100% - 130px);
	padding-left: 60px;
}
.about-flow-sub__ttl {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1.5;
	color: #BD0E0E
}
.about-flow-sub__ttl span {
	display: block;
}
.about-flow-sub__ttl small {
	font-size: 2.4rem;
	color: #333;
}
.about-flow-sub__grid {
	display: flex;
	gap: 20px;
	margin-top: 40px;
}
.about-flow-sub__box {
	width: calc(50% - 10px);
}
.about-flow-sub__img {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 60%;
	height: auto;
}
.about-flow-sub__img img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.about-flow-sub__text {
	position: relative;
	background-color: #fff;
	padding: 35px 30px;
}
.about-flow-sub__text .line {
	background-color: #BD0E0E;
	color: #fff;
	display: inline-block;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1;
	padding: 10px 20px 10px 30px;
	position: absolute;
	left: 0;
	top: -19px;
}
.about-flow-sub__text .line::before {
	content: '';
	clip-path: polygon(0 0, 0% 100%, 40% 100%);
	background-color: #BD0E0E;
	position: absolute;
	top: 0;
	left: calc(100% - .5px);
	width: 30px;
	height: 100%;
}
.about-flow-sub__text .ttl {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.5;
	color: #BD0E0E;
}
.about-flow-sub__text p {
	margin-top: 10px;
}
@media only screen and (max-width: 768px) {
	.about-figure {
		position: relative;
		padding-bottom: 60px;
	}
	.about-figure::before {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 660px;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(245, 241, 241, 1));
		z-index: -1;
	}
	.about-figure__content {
		position: relative;
		width: 100%;
		max-width: 1160px;
		padding: 0 20px;
		margin: 80px auto 0;
	}
	.about-figure .catch {
		display: block;
		font-family: "Zen Old Mincho", serif;
		font-size: 2.4rem;
		line-height: 1.5;
		font-weight: 600;
		text-align: center;
	}
	.about-figure .catch span {
		color: #BD0E0E;
	}
	.about-figure .catch + p {
		text-align: left;
		margin-top: 30px;
	}
	.about-figure__img {
		width: auto;
		max-width: unset;
		margin: 30px -10px 0;
        text-align: center;
	}
	.about-figure__img img {
		margin: auto;
		width: 100%;
		max-width: 540px;
	}
	.about-flow__content {
		position: relative;
		width: 100%;
		max-width: 1160px;
		padding: 0 20px;
		margin: 60px auto 0;
		overflow: hidden;
	}
	.about-flow__inner {
		position: relative;
		width: 100%;
	}
	.about-flow__inner::before {
		content: '';
		position: absolute;
		top: 0;
		left: 13px;
		width: 1px;
		height: 100%;
		background-color: #BD0E0E;
	}
	.about-flow__item {
		display: flex;
		align-items: flex-start;
	}
	.about-flow__item + .about-flow__item {
		border-top: 1px solid #ccc;
		margin-top: 50px;
		padding-top: 40px;
	}
	.about-flow__num {
		position: relative;
		width: 35px;
		height: 50px;
        margin-top: -4px;
        margin-left: -5px;
	}
	.about-flow__num::before,
	.about-flow__num::after {
		content: '';
		width: 20px;
		height: 20px;
		border-radius: calc(infinity * 1px);
		position: absolute;
		top: 50%;
		right: -10px;
		transform: translateY(-50%);
		background-color: #BD0E0E;
		display: none;
	}
	.about-flow__num::after {
		right: -6px;
		width: 12px;
		height: 12px;
		background-color: #fff;
	}
	.about-flow__num .num {
		display: block;
		font-size: 2.9rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		line-height: 1;
		color: #BD0E0E;
		background-color: #fff;
		padding: 10px 0;
		text-align: center;
	}
	.about-flow__detail {
		position: relative;
		width: calc(100% - 30px);
	}
	.about-flow__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		padding-left: 15px;
	}
	.about-flow__text {
		width: 100%;
	}
	.about-flow__text .ttl {
		display: block;
		font-family: "Zen Old Mincho", serif;
		font-size: 2.4rem;
		font-weight: 600;
		line-height: 1.5;
	}
	.about-flow__text p {
		margin-top: 10px;
		line-height: 1.8;
	}
	.about-flow__text strong {
		color: #BD0E0E;
		display: block;
		font-family: "Zen Old Mincho", serif;
		font-size: 2rem;
		font-weight: 600;
		line-height: 1.5;
		margin-top: 30px;
	}
	.about-flow__text .list-01 {
		margin-top: 15px;
	}
	.about-flow__img {
		width: 100%;
		max-width: unset;
	}
	.about-flow__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 65%;
		height: auto;
	}
	.about-flow__img figure img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.about-flow__item.about-flow-sub__back {
		border-top: none;
		position: relative;
		padding: 50px 0;
	}
	.about-flow__item.about-flow-sub__back::before {
		content: '';
		width: 100vw;
		height: 100%;
		background-color: #F5F1F1;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
	}
	.about-flow__item.about-flow-sub__back + .about-flow__item {
		border-top: none;
		margin-top: 0;
		padding-top: 50px;
	}
	.about-flow-sub__back .en {
		position: absolute;
		right: unset;
		top: -10px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 7rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		line-height: 1;
		white-space: nowrap;
		color: #fff;
		z-index: -1;
	}
	.about-flow-sub__item {
		width: calc(100% - 30px);
		padding-left: 15px;
	}
	.about-flow-sub__ttl {
		display: block;
		font-family: "Zen Old Mincho", serif;
		font-size: 2.4rem;
		font-weight: 600;
		line-height: 1.5;
		color: #BD0E0E
	}
	.about-flow-sub__ttl span {
		display: block;
	}
	.about-flow-sub__ttl small {
		font-size: 2rem;
		color: #333;
	}
	.about-flow-sub__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 30px;
	}
	.about-flow-sub__box {
		width: 100%;
	}
	.about-flow-sub__img {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 60%;
		height: auto;
	}
	.about-flow-sub__img img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.about-flow-sub__text {
		position: relative;
		background-color: #fff;
		padding: 30px 20px 25px;
	}
	.about-flow-sub__text .line {
		background-color: #BD0E0E;
		color: #fff;
		display: inline-block;
		font-family: "Zen Old Mincho", serif;
		font-size: 1.6rem;
		font-weight: 600;
		line-height: 1;
		padding: 10px 10px 10px 20px;
		position: absolute;
		left: 0;
		top: -17px;
	}
	.about-flow-sub__text .line::before {
		content: '';
		clip-path: polygon(0 0, 0% 100%, 40% 100%);
		background-color: #BD0E0E;
		position: absolute;
		top: 0;
		left: calc(100% - .5px);
		width: 30px;
		height: 100%;
	}
	.about-flow-sub__text .ttl {
		display: block;
		font-family: "Zen Old Mincho", serif;
		font-size: 2.2rem;
		font-weight: 600;
		line-height: 1.5;
		color: #BD0E0E;
	}
	.about-flow-sub__text p {
		margin-top: 10px;
	}
}

.about-illustration {
	padding: 120px 0;
}
.about-illustration__content {
	position: relative;
	width: 100%;
	max-width: 1160px;
	padding: 0 20px;
	margin: 0 auto;
}
.about-illustration__grid {
	display: flex;
	align-items: center;
	gap: 60px;
}
.about-illustration__item {
	width: calc(50% - 30px);
}
.about-illustration__item h3 {
    display: block;
    font-family: "Zen Old Mincho", serif;
    font-size: 3.6rem;
    line-height: 1.5;
    font-weight: 600;
	padding-bottom: 25px;
    border-bottom: 1px solid #BD0E0E;
}
.about-illustration__item h3 span {
	color: #BD0E0E;
}
.about-illustration__item h3 + p {
	margin-top: 30px;
	line-height: 2;
}




.lineup {
	position: relative;
	margin-top: 100px;
	padding: 100px 0;
	background-color: #F5F1F1;
}
.lineup__content {
	position: relative;
	width: 100%;
	max-width: 1160px;
	padding: 0 20px;
	margin: 0 auto;
}
.lineup__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.lineup__item {
	width: calc(50% - 20px);
	background-color: #fff;
}
.lineup__img {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 60%;
}
.lineup__img img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
	padding: 10px 10px 0 10px;
}
.lineup__text {
	padding: 15px 30px 30px;
}
.lineup__text h3 {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.5;
	border-bottom: 1px solid #BD0E0E;
	padding-bottom: 5px;
}
.lineup__text p {
	margin-top: 15px;
}
@media only screen and (max-width: 768px) {
	.lineup {
		position: relative;
		margin-top: 60px;
		padding: 60px 0;
		background-color: #F5F1F1;
	}
	.lineup__content {
		position: relative;
		width: 100%;
		max-width: 1160px;
		padding: 0 20px;
		margin: 0 auto;
	}
	.lineup__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
	}
	.lineup__item {
		width: 100%;
		background-color: #fff;
	}
	.lineup__img {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 65%;
	}
	.lineup__img img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
		padding: 10px 10px 0 10px;
	}
	.lineup__text {
		padding: 15px 20px 20px;
	}
	.lineup__text h3 {
		display: block;
		font-family: "Zen Old Mincho", serif;
		font-size: 2.2rem;
		font-weight: 600;
		line-height: 1.5;
		border-bottom: 1px solid #BD0E0E;
		padding-bottom: 5px;
	}
	.lineup__text p {
		margin-top: 15px;
	}
}


.online-store {
	padding: 100px 0;
}
.online-store__content {
	position: relative;
	width: 100%;
	max-width: 1160px;
	padding: 0 20px;
	margin: 0 auto;
}
.online-store__banner {
	position: relative;
	padding: 60px 0 50px;
}
.online-store__banner::before {
	content: '';
    position: absolute;
    top: 0;
    left: -53px;
    width: 1111px;
    height: 102px;
    background: url(./img/ONLINE-STORE.svg) no-repeat center / cover;
	z-index: 1;
}
.online-store__img {
	width: 100%;
	max-width: 800px;
}
.online-store__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	height: 380px;
}
.online-store__img figure img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.online-store__text {
	width: 100%;
	max-width: 450px;
	background-color: #BD0E0E;
	padding: 50px 20px 55px;
	position: absolute;
	right: 0;
	bottom: 0;
}
.online-store__text h2 {
	font-size: 3rem;
	text-align: center;
	color: #fff;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	line-height: 1.5;
}
.online-store__text .btn-02 {
	margin: 30px auto 0;
}
@media only screen and (max-width: 768px) {
	.online-store {
		padding: 60px 0;
	}
	.online-store__content {
		position: relative;
		width: 100%;
		max-width: 1160px;
		padding: 0 20px;
		margin: 0 auto;
	}
	.online-store__banner {
		position: relative;
		padding: 0;
	}
	.online-store__banner::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 102px;
		background: url(./img/ONLINE-STORE.svg) no-repeat center / cover;
		z-index: 1;
		display: none;
	}
	.online-store__img {
		width: 100%;
		max-width: 800px;
	}
	.online-store__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		height: auto;
		padding-top: 65%;
	}
	.online-store__img figure img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.online-store__text {
		width: 100%;
		max-width: 100%;
		background-color: #BD0E0E;
		padding: 30px 30px 40px;
		position: static;
		right: unset;
		bottom: unset;
	}
	.online-store__text h2 {
		font-size: 2.4rem;
		text-align: center;
		color: #fff;
		font-family: "Zen Old Mincho", serif;
		font-weight: 600;
		line-height: 1.5;
	}
	.online-store__text .btn-02 {
		max-width: 100%;
		margin: 20px auto 0;
	}
}








.company__table {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.company__table dt {
  width: 200px;
  font-weight: 600;
  padding: 25px;
  border-bottom: 1px solid #BD0E0E;
  color: #333;
}
.company__table dd {
  width: calc(100% - 200px);
  padding: 25px;
  border-bottom: 1px solid #ccc;
}
.history {
	position: relative;
	margin-top: 30px;
}
.history::before {
	content: '';
	width: 1px;
	height: 100%;
	position: absolute;
	left: 180px;
	top: 0;
	background-color: #BD0E0E;
}
.history li {
	position: relative;
	border-bottom: 1px solid #ccc;
	display: flex;
	padding: 25px 0;
}
.history li:first-child::before,
.history li:last-child::after {
	content: '';
	width: 4px;
	position: absolute;
	left: calc(180px - 2px);
	background-color: #F5F1F1;
}
.history li:first-child::before {
	height: 40px;
	top: 0;
}
.history li:last-child::after {
	height: calc(100% - 40px);
	bottom: 0;
}
.history li .year {
	position: relative;
	width: 180px;
	text-align: center;
	font-size: 2.8rem;
	font-weight: 500;
	color: #BD0E0E;
	line-height: 1;
	font-family: "Montserrat", sans-serif;
}
.history li .year::before {
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 50%;
	position: absolute;
	right: -5px;
	top: 8px;
	background-color: #BD0E0E;
	z-index: 1;
}
.history li .history__text {
	width: calc(100% - 180px);
	padding-left: 60px;
}
.history li .history__grid {
	display: flex;
	margin-top: 3px;
}
.history li .history__grid + .history__grid {
	margin-top: 25px;
}
.history li .history__grid p {
	width: calc(100% - 90px);
	margin-top: -3px;
}
.history__back {
	position: relative;
	padding: 80px 0 100px;
	margin-top: 100px;
}
.history__back::before {
	content: '';
	background-color: #F5F1F1;
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.history__back h3 {
	margin-top: 0;
}
@media only screen and (max-width: 768px) {
	.company__table {
		display: flex;
		flex-wrap: wrap;
		margin-top: 20px;
	}
	.company__table dt {
		width: 100%;
		font-weight: 600;
		padding: 20px 0 0;
		border-bottom: unset;
		color: #BD0E0E;
	}
	.company__table dd {
		width: 100%;
		padding: 0 0 20px;
		border-bottom: 1px solid #ccc;
	}
	.history {
		position: relative;
		margin-top: 20px;
	}
	.history::before {
		content: '';
		width: 1px;
		height: 100%;
		position: absolute;
		left: 75px;
		top: 0;
		background-color: #BD0E0E;
	}
	.history li {
		position: relative;
		border-bottom: 1px solid #ccc;
		display: flex;
		padding: 20px 0;
	}
	.history li:first-child::before,
	.history li:last-child::after {
		content: '';
		width: 3px;
		position: absolute;
		left: calc(75px - 1px);
		background-color: #F5F1F1;
	}
	.history li:first-child::before {
		height: 32.5px;
		top: 0;
	}
	.history li:last-child::after {
		height: calc(100% - 32.5px);
		bottom: 0;
	}
	.history li .year {
		position: relative;
		text-align: left;
		width: 75px;
		padding-left: 0;
		font-size: 2.4rem;
		font-weight: 500;
		color: #BD0E0E;
		line-height: 1;
	}
	.history li .year::before {
		content: '';
		width: 9px;
		height: 9px;
		border-radius: 50%;
		position: absolute;
		right: -5px;
		top: 8px;
		background-color: #BD0E0E;
		z-index: 1;
	}
	.history li .history__text {
		width: calc(100% - 75px);
		padding-left: 20px;
	}
	.history li .history__grid {
		display: block;
		margin-top: 0;
	}
	.history li .history__grid + .history__grid {
		margin-top: 15px;
	}
	.history li .history__grid .month {
		display: block;
		width: 90px;
		height: 20px;
		line-height: 20px;
		color: #fff;
		background-color: #BD0E0E;
		margin-right: 15px;
		text-align: center;
	}
	.history li .history__grid p {
		width: 100%;
		margin-top: 0;
	}
	.history__back {
		position: relative;
		padding: 60px 0 80px;
		margin-top: 80px;
	}
	.history__back::before {
		content: '';
		background-color: #F5F1F1;
		width: 100vw;
		height: 100%;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
	}
	.history__back h3 {
		margin-top: 0;
	}
}


.privacy-policy {
	padding: 100px 0 120px;
}
@media only screen and (max-width: 768px) {
	.privacy-policy {
		padding: 60px 0 80px;
	}
}




.trademark {
	padding: 100px 0;
}
.trademark__catch {
	text-align: center;
	margin-top: 0;
	font-size: 2.8rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
}
.trademark__catch span {
	color: #BD0E0E;
}
.trademark__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-top: 80px;
}
.trademark__grid h4 {
	margin-top: 0;
	font-size: 2rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	line-height: 1.5;
}
.trademark__grid h4 + p {
	margin-top: 15px;
	font-size: 1.5rem;
}
.trademark__item3 {
	width: calc(33.333% - 16.666px);
	background-color: #F5F1F1;
	padding: 35px;
}
.trademark__item2 {
	width: calc(50% - 12.5px);
	background-color: #F5F1F1;
	padding: 35px;
}
@media only screen and (max-width: 768px) {
	.trademark {
		padding: 60px 0 80px;
	}
	.trademark__catch {
		text-align: center;
		margin-top: 0;
		font-size: 2.4rem;
		font-family: "Zen Old Mincho", serif;
		font-weight: 600;
	}
	.trademark__catch span {
		color: #BD0E0E;
	}
	.trademark__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 60px;
	}
	.trademark__grid h4 {
		margin-top: 0;
		font-size: 2rem;
		font-family: "Zen Old Mincho", serif;
		font-weight: 600;
		line-height: 1.5;
	}
	.trademark__grid h4 + p {
		margin-top: 15px;
		font-size: 1.5rem;
	}
	.trademark__item3 {
		width: 100%;
		background-color: #F5F1F1;
		padding: 20px;
	}
	.trademark__item2 {
		width: 100%;
		background-color: #F5F1F1;
		padding: 20px;
	}
}


.news-archive {
	margin-top: 100px;
	padding-bottom: 120px;
}
.news-archive__content {
	position: relative;
	width: 100%;
	max-width: 1000px;
	padding: 0 20px;
	margin: 0 auto;
}
.news-archive__list li + li {
	margin-top: 15px;
}
.news-archive__link {
	position: relative;
	display: block;
	background-color: #F5F1F1;
	padding: 5px;
}
/* .news-archive__link:hover {
	transform: translateY(-5px);
} */
.news-archive__link::before {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #BD0E0E;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: .2s;
	opacity: 0;
}
.news-archive__link:hover::before {
	opacity: 1;
}
.news-archive__grid {
	display: flex;
	align-items: center;
	gap: 40px;
}
.news-archive__img {
	width: 100%;
	max-width: 200px;
}
.news-archive__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	height: auto;
	padding-top: 70%;
}
.news-archive__img figure img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.news-archive__link:hover img {
	transform: scale(1.1);
	transition: .3s;
}
.news-archive__text {
	width: calc(100% - 200px);
}
.news-archive__text .ttl {
	display: block;
	font-size: 1.8rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	line-height: 1.5;
	transition: .3s;
}
.news-archive__link:hover .ttl {
	color: #BD0E0E;
	transition: .3s;
}
.news-archive .info {
	display: flex;
	align-items: center;
	margin-top: 15px;
}
.news-archive .info .date {
	font-size: 2rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 1px;
	color: #aaa;
	margin-right: 20px;
}
.news-archive .info .cate {
	display: block;
	text-align: center;
	background-color: #fff;
	width: 100px;
	height: 25px;
	line-height: 23px;
	color: #BD0E0E;
	font-size: 1.3rem;
	font-weight: 500;
}

.news-single {
	margin-top: 100px;
	padding-bottom: 120px;
}
.news-single__content {
	position: relative;
	width: 100%;
	max-width: 840px;
	padding: 0 20px;
	margin: 0 auto;
}
.news-single h2 {	
	display: block;
	font-size: 2.8rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	line-height: 1.5;
	border-bottom: 1px solid #BD0E0E;
	padding-bottom: 15px;
}
.news-single .info {
	display: flex;
	align-items: center;
	margin-top: 30px;
}
.news-single .info .date {
	font-size: 2rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 1px;
	color: #aaa;
	margin-right: 20px;
}
.news-single .info .cate {
	display: block;
	text-align: center;
	background-color: #F5F1F1;
	width: 100px;
	height: 25px;
	line-height: 23px;
	color: #BD0E0E;
	font-size: 1.3rem;
	font-weight: 500;
}
.news-single__edit {
	margin-top: 60px;
}
.news-single__edit p {
	margin-top: 20px;
}
.news-single__edit img {
	display: block;
	width: auto;
	margin: 40px auto 0;
}
.news-single__edit p a {
	color: #BD0E0E;
	text-decoration: underline;
}

.post__grid {
	display: flex;
	justify-content: center;
	gap: 2px;
	margin-top: 80px;
}
.post__item {
	width: calc(33.333% - 1px);
}
.post__item a {
	position: relative;
	display: block;
	background-color: #F5F1F1;
	width: 100%;
	height: 70px;
	line-height: 68px;
	text-align: center;
	color: #333;
	font-weight: 500;
}
.post__item a:hover {
	background-color: #BD0E0E;
	color: #fff;
}
.post__item.prev a::before,
.post__item.next a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid #BD0E0E;
    border-right: 2px solid #BD0E0E;
	transition: .3s;
}
.post__item.prev a::before {	
	transform: translateY(-50%) rotate(-135deg);
	left: 25px;
	right: unset;
}
.post__item a:hover::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
	transition: .3s;
}
@media only screen and (max-width: 768px) {
	.news-archive {
		margin-top: 60px;
		padding-bottom: 80px;
	}
	.news-archive__content {
		position: relative;
		width: 100%;
		max-width: 1000px;
		padding: 0 20px;
		margin: 0 auto;
	}
	.news-archive__list li + li {
		margin-top: 25px;
	}
	.news-archive__link {
		position: relative;
		display: block;
		background-color: #F5F1F1;
		padding: 7.5px;
	}
	/* .news-archive__link:hover {
		transform: translateY(-5px);
	} */
	.news-archive__link::before {
		content: '';
		width: 100%;
		height: 1px;
		background-color: #BD0E0E;
		position: absolute;
		left: 0;
		bottom: 0;
		transition: .2s;
		opacity: 0;
	}
	.news-archive__link:hover::before {
		opacity: 1;
	}
	.news-archive__grid {
		display: block;
		align-items: unset;
		gap: unset;
	}
	.news-archive__img {
		width: 100%;
		max-width: unset;
	}
	.news-archive__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		height: auto;
		padding-top: 60%;
	}
	.news-archive__img figure img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.news-archive__link:hover img {
		transform: scale(1.1);
		transition: .3s;
	}
	.news-archive__text {
		width: 100%;
		padding: 15px;
	}
	.news-archive__text .ttl {
		display: block;
		font-size: 1.8rem;
		font-family: "Zen Old Mincho", serif;
		font-weight: 600;
		line-height: 1.5;
		transition: .3s;
	}
	.news-archive__link:hover .ttl {
		color: #BD0E0E;
		transition: .3s;
	}
	.news-archive .info {
		display: flex;
		align-items: center;
		margin-top: 15px;
	}
	.news-archive .info .date {
		font-size: 2rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 1px;
		color: #aaa;
		margin-right: 20px;
	}
	.news-archive .info .cate {
		display: block;
		text-align: center;
		background-color: #fff;
		width: 100px;
		height: 25px;
		line-height: 23px;
		color: #BD0E0E;
		font-size: 1.3rem;
		font-weight: 500;
	}

	.news-single {
		margin-top: 60px;
		padding-bottom: 80px;
	}
	.news-single__content {
		position: relative;
		width: 100%;
		max-width: 840px;
		padding: 0 20px;
		margin: 0 auto;
	}
	.news-single h2 {	
		display: block;
		font-size: 2.4rem;
		font-family: "Zen Old Mincho", serif;
		font-weight: 600;
		line-height: 1.5;
		border-bottom: 1px solid #BD0E0E;
		padding-bottom: 15px;
	}
	.news-single .info {
		display: flex;
		align-items: center;
		margin-top: 20px;
	}
	.news-single .info .date {
		font-size: 2rem;
		font-family: "Montserrat", sans-serif;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 1px;
		color: #aaa;
		margin-right: 20px;
	}
	.news-single .info .cate {
		display: block;
		text-align: center;
		background-color: #F5F1F1;
		width: 100px;
		height: 25px;
		line-height: 23px;
		color: #BD0E0E;
		font-size: 1.3rem;
		font-weight: 500;
	}
	.news-single__edit {
		margin-top: 40px;
	}
	.news-single__edit p {
		margin-top: 20px;
	}
	.news-single__edit img {
		display: block;
		width: auto;
		margin: 40px auto 0;
	}

	.post__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 2px;
		margin-top: 80px;
	}
	.post__item {
		width: calc(33.333% - 1px);
	}
	.post__item a {
		position: relative;
		display: block;
		background-color: #F5F1F1;
		width: 100%;
		height: 70px;
		line-height: 68px;
		text-align: center;
		color: #333;
		font-weight: 500;
	}
	.post__item a:hover {
		background-color: #BD0E0E;
		color: #fff;
	}
	.post__item.prev a::before,
	.post__item.next a::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 25px;
		transform: translateY(-50%) rotate(45deg);
		width: 10px;
		height: 10px;
		border-top: 2px solid #BD0E0E;
		border-right: 2px solid #BD0E0E;
		transition: .3s;
	}
	.post__item.prev a::before {	
		transform: translateY(-50%) rotate(-135deg);
		left: 25px;
		right: unset;
	}
	.post__item a:hover::before {
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transition: .3s;
	}
	.post__item {
		order: 3;
		width: 100%;
	}
	.post__item.prev {
		order: 1;
		width: calc(50% - 1px);
	}
	.post__item.next {
		order: 2;
		width: calc(50% - 1px);
	}
}

















.pagenavi .wp-pagenavi .pages {
	display: none;
}
.pagenavi .wp-pagenavi {
	font-family: "Montserrat", sans-serif;
	margin: 80px auto 0;
	display: block;
	text-align: center;
	width: 100%;
}
.pagenavi .wp-pagenavi a,
.pagenavi .wp-pagenavi span {
	display: inline-block;
	text-decoration: none;
	border: none;
	padding: 0px;
	margin: 0 2px;
	font-size: 1.6rem;
	font-weight: 500;
	color: #BD0E0E;
	background-color: #F5F1F1;
	border: none;
	width: 40px;
	height: 40px;
	line-height: 38px;
}
.pagenavi .wp-pagenavi span.current {
	font-weight: 500;
	color: #fff;
	background-color: #BD0E0E;
	border: none;
}
@media only screen and (max-width: 960px) {
	.pagenavi .wp-pagenavi .pages {
		display: none;
	}
	.pagenavi .wp-pagenavi {
		font-family: "Montserrat", sans-serif;
		margin: 60px auto 0;
		display: block;
		text-align: center;
		width: 100%;
	}
	.pagenavi .wp-pagenavi a,
	.pagenavi .wp-pagenavi span {
		display: inline-block;
		text-decoration: none;
		border: none;
		padding: 0px;
		margin: 0 2px;
		font-size: 1.5rem;
		color: #BD0E0E;
		background-color: #fff;
		border: none;
		width: 30px;
		height: 35px;
		line-height: 33px;
		font-weight: 500;
	}
	.pagenavi .wp-pagenavi span.current {
		font-weight: 500;
		color: #fff;
		background-color: #930003;
		border: none;
	}
}
















/* お問い合わせフォーム */
.contact {
	padding: 100px 0 20px;
}
.contact .catch {
	text-align: center;
}
.form .form__table {
	display: flex;
	flex-wrap: wrap;
	margin: 40px auto 0;
}
.form .form__table dt {
	width: 240px;
	padding: 45px 0 0;
	line-height: 1.5;
}
.form .form__table dd {
	width: calc(100% - 240px);
	padding: 30px 0 0;
}
.form .form__table dt:last-of-type,
.form .form__table dd:last-of-type {
	border-bottom: none;
}
.form .form__table dt p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-right: 30px;
}
.form .form__table dt p.req::after {
	content: '必須';
	display: inline-block;
	color: #fff;
	background-color: #BD0E0E;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
	padding: 3px 10px 4px;
}
.form .form__table .input__grid {
	display: flex;
	flex-wrap: wrap;
	margin: -10px -5px 0;
}
.form .form__table .input__grid .input__item {
	width: 50%;
	padding: 0 5px;
	margin-top: 10px;
}
.form .form__table .input__number {
	position: relative;
	padding-left: 25px;
}
.form .form__table .input__number::before {
	content: '〒';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.form .input__btn {
	display: block;
	position: relative;
	width: 100%;
	max-width: 300px;
	height: 70px;
	line-height: 70px;
	background-color: #BD0E0E;
	color: #fff;
	margin : 40px auto 0;
	font-size: 1.6rem;
	transition: .3s;
}
.form .input__btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	background-color: #fff;
	border-radius: calc(infinity * 1px);
}
.form .input__btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    width: 19px;
    height: 7px;
    background: url(./img/allow.svg) no-repeat center / cover;
	transition: .3s;
}
.form .input__btn:hover {
	background-color: #930003;
	transition: .3s;
}
.form .input__btn:hover::before {
	right: 14px;
	width: 48px;
	height: 48px;
	transition: .3s;
}
.form .input__btn input[type="submit"] {
	display: block;
	width: 100%;
	max-width: 300px;
	height: 70px;
	line-height: 70px;
	color: #fff;
	font-size: 1.6rem;
	text-align: left;
	padding: 0 25px;
}
.form-choice {
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
}
.form-choice .form-choice__item {
	width: calc(50% - 10px);
}
.form-choice label {
	transition: .3s;
}
.form-choice label:hover {
	color: #BD0E0E;
	transition: .3s;
}
/* プライバシーポリシー */
.form-policy {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}
.form-policy a {
	text-decoration: underline;
}
/* contactform7　ラジオボタン */
.wpcf7-form-control-wrap .form-radio {
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	margin-top: 12px;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item {
	margin: 0;
	width: calc(50% - 10px);
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"] {
	display: none;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item .wpcf7-list-item-label {
	position: relative;
	padding-left: 42px;
	cursor: pointer;
	display: inline-block;
	line-height: 1.5;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label {
	color: #BD0E0E;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label::before {
	background-color: #BD0E0E;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item .wpcf7-list-item-label::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: #F5F1F1;
	border-radius: 50%;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: all .5s ease;
	border: 1px solid #ccc;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label::after {
	transform: translateY(-50%);
	opacity: 1;
	transition: .3s;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item .wpcf7-list-item-label::after {
	content: '';
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0;
	transition: .3s;
}
.form-policy {
	text-align: center;
	margin-top: 30px;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item {
	margin: 0;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"] {
	display: none;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label {
	position: relative;
	cursor: pointer;
	display: block;
	padding-left: 42px;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: #F5F1F1;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: all .5s ease;
	border: 1px solid #ccc;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::before {
	background-color: #BD0E0E;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label::after {
	content: '';
	position: absolute;
	top: calc(50% - 4px);
	left: 15px;
	width: 16px;
	height: 8px;
	border-bottom: 2.5px solid #fff;
	border-left: 2.5px solid #fff;
	transform: rotate(0) scale(0);
	transition: .3s;
	opacity: 0;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
	transform: rotate(-45deg) scale(1) translateY(-50%);
	opacity: 1;
}
.form-policy a {
	color: #BD0E0E;
	text-decoration: underline;
}
@media only screen and (max-width: 768px) {
	.contact {
		padding: 60px 0 20px;
	}
	.contact .catch {
		text-align: left;
	}
	.form .form__table {
		display: flex;
		flex-wrap: wrap;
		margin: 30px auto 0;
	}
	.form .form__table dt {
		width: 100%;
		padding: 30px 0 0;
		line-height: 1.5;
	}
	.form .form__table dd {
		width: 100%;
		padding: 10px 0 0;
	}
	.form .form__table dt:last-of-type,
	.form .form__table dd:last-of-type {
		border-bottom: none;
	}
	.form .form__table dt p {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-right: 0;
	}
	.form .form__table dt p.req::after {
		content: '必須';
		display: inline-block;
		color: #fff;
		background-color: #BD0E0E;
		font-size: 1.2rem;
		font-weight: 500;
		line-height: 1;
		padding: 3px 10px 4px;
	}
	.form .form__table .input__grid {
		display: flex;
		flex-wrap: wrap;
		margin: -10px -5px 0;
	}
	.form .form__table .input__grid .input__item {
		width: 50%;
		padding: 0 5px;
		margin-top: 10px;
	}
	.form .form__table .input__number {
		position: relative;
		padding-left: 25px;
	}
	.form .form__table .input__number::before {
		content: '〒';
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

	.form-choice {
		font-weight: 500;
		display: flex;
		flex-wrap: wrap;
		gap: 15px 20px;
	}
	.form-choice .form-choice__item {
		width: calc(50% - 10px);
	}
	.form-choice label {
		transition: .3s;
	}
	.form-choice label:hover {
		color: #BD0E0E;
		transition: .3s;
	}
	/* プライバシーポリシー */
	.form-policy {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 20px;
	}
	.form-policy a {
		text-decoration: underline;
	}
	/* contactform7　ラジオボタン */
	.wpcf7-form-control-wrap .form-radio {
		font-weight: 500;
		display: flex;
		flex-wrap: wrap;
		gap: 15px 20px;
		margin-top: 12px;
	}
	.wpcf7-form-control-wrap .form-radio .wpcf7-list-item {
		margin: 0;
		width: 100%;
	}
	.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"] {
		display: none;
	}
	.wpcf7-form-control-wrap .form-radio .wpcf7-list-item .wpcf7-list-item-label {
		position: relative;
		padding-left: 37px;
		cursor: pointer;
		display: inline-block;
		line-height: 1.5;
	}
	.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label {
		color: #BD0E0E;
	}
	.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label::before {
		background-color: #BD0E0E;
	}
	.wpcf7-form-control-wrap .form-radio .wpcf7-list-item .wpcf7-list-item-label::before {
		content: '';
		position: absolute;
		width: 30px;
		height: 30px;
		background-color: #F5F1F1;
		border-radius: 50%;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		transition: all .5s ease;
		border: 1px solid #ccc;
	}
	.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label::after {
		transform: translateY(-50%);
		opacity: 1;
		transition: .3s;
	}
	.wpcf7-form-control-wrap .form-radio .wpcf7-list-item .wpcf7-list-item-label::after {
		content: '';
		position: absolute;
		left: 9px;
		top: 50%;
		transform: translateY(-50%);
		width: 12px;
		height: 12px;
		border-radius: 50%;
		background-color: #fff;
		opacity: 0;
		transition: .3s;
	}
	.form-policy {
		text-align: center;
		margin-top: 30px;
	}
	.form-policy .wpcf7-form-control-wrap .wpcf7-list-item {
		margin: 0;
	}
	.form-policy .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"] {
		display: none;
	}
	.form-policy .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label {
		position: relative;
		cursor: pointer;
		display: block;
		padding-left: 42px;
	}
	.form-policy .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label::before {
		content: '';
		position: absolute;
		width: 30px;
		height: 30px;
		background-color: #F5F1F1;
		left: 5px;
		top: 50%;
		transform: translateY(-50%);
		transition: all .5s ease;
		border: 1px solid #ccc;
	}
	.form-policy .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::before {
		background-color: #BD0E0E;
	}
	.form-policy .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label::after {
		content: '';
		position: absolute;
		top: calc(50% - 4px);
		left: 15px;
		width: 16px;
		height: 8px;
		border-bottom: 2.5px solid #fff;
		border-left: 2.5px solid #fff;
		transform: rotate(0) scale(0);
		transition: .3s;
		opacity: 0;
	}
	.form-policy .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
		transform: rotate(-45deg) scale(1) translateY(-50%);
		opacity: 1;
	}
	.form-policy a {
		color: #BD0E0E;
		text-decoration: underline;
	}

	.form .input__btn {
		max-width: 280px;
		height: 64px;
		line-height: 64px;
	}
	.form .input__btn input[type="submit"] {
		max-width: 280px;
		height: 64px;
		line-height: 64px;
	}
}









.concept-thoughts {
	margin-top: 120px;
	position: relative;
}
.concept-thoughts::before {
	content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 600px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(245, 241, 241, 1));
    z-index: -1;
}
.concept-thoughts__content {
	position: relative;
    width: 100%;
    max-width: 1160px;
    padding: 0 20px;
    margin: 0 auto;
}
.concept-thoughts__grid {
	display: flex;
    flex-wrap: wrap;
	align-items: center;
    gap: 60px;
}
.concept-thoughts__item {
    width: calc(50% - 30px);
}
.concept-thoughts__img {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}
.concept-thoughts__img img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.concept-thoughts__item .ttl {
	position: relative;
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-size: 3.3rem;
	line-height: 1.5;
	font-weight: bolder;
	padding-bottom: 15px;
	letter-spacing: 1px;
}
.concept-thoughts__item .ttl::before {
	content: '';
	width: calc(100% + 60px);
	height: 1px;
	background-color: #BD0E0E;
	position: absolute;
	left: -60px;
	bottom: 0;
}
.concept-thoughts__item .ttl span {
	color: #BD0E0E;
}
.concept-thoughts__item .ttl + p {
	margin-top: 30px;
	line-height: 2.1;
}
.concept-promise {
	padding: 120px 0;
	background-color: #F5F1F1;
}
.concept-promise h3 {
	margin-top: 60px;
}
.concept-promise__content {
	position: relative;
    width: 100%;
    max-width: 1160px;
    padding: 0 20px;
    margin: 0 auto;
}
.concept-promise__back {
	background-color: #fff;
	border-top: 2px solid #BD0E0E;
	padding: 60px 0;
}
.concept-promise__inner {
	width: 100%;
	max-width: 990px;
	padding: 0 20px;
	margin: auto;
}
.concept-promise__inner h2 {
	text-align: center;
	font-size: 4rem;
	font-family: "Zen Old Mincho", serif;
	line-height: 1.5;
}
.concept-promise__inner h2 span {
	color: #BD0E0E;
}
.concept-promise__grid {
	display: flex;
	margin-top: 30px;
}
.concept-promise__text {
	width: calc(100% - 360px);
}
.concept-promise__img {
	width: 100%;
	max-width: 320px;
	margin-right: 40px;
}
.concept-promise__img figure {
	position: relative;
	display: block;
	overflow: hidden;
	padding-top: 75%;
}
.concept-promise__img img {
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.concept-message {
	background-color: #fff;
}
.concept-message__grid {
	display: flex;
}
.concept-message__img {
	width: 29%;
}
.concept-message__img figure {
    display: block;
    position: relative;
    overflow: hidden;
	height: 500px;
}
.concept-message__img figure img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.concept-message__text {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42%;
}
.concept-message__text .text {
	text-align: center;
}
.concept-message__text .ttl {
	font-size: 3.6rem;
	font-family: "Zen Old Mincho", serif;
    font-weight: 600;
    line-height: 1.5;
}
.concept-message__text .ttl span {
	color: #BD0E0E;
}
.concept-message__text p {
	margin-top: 30px;
}
.concept-brand {
	padding: 120px 0;
	background-color: #F5F1F1;
}
.concept-brand h2 {
	text-align: center;
	font-size: 4rem;
	font-family: "Zen Old Mincho", serif;
	line-height: 1.5;
}
.concept-brand h2 span {
	color: #BD0E0E;
}
.concept-brand__content {
	position: relative;
    width: 100%;
    max-width: 1160px;
    padding: 0 20px;
    margin: 0 auto;
}
.concept-brand__content h3 {
	font-size: 2.8rem;
	font-family: "Zen Old Mincho", serif;
	line-height: 1.5;
	padding-bottom: 10px;
	color: #BD0E0E;
	border-bottom: 1px solid #BD0E0E;
}
.concept-brand__frame {
	background-color: #fff;
	border-top: 2px solid #BD0E0E;
	padding: 60px;
	margin-top: 60px;
}
.concept-brand__grid {
	display: flex;
}
.concept-brand__img {
	width: 100%;
	max-width: 400px;
	margin-right: 50px;
}
.concept-brand__img figure {
    display: block;
    position: relative;
    overflow: hidden;
	padding-top: 70%;
}
.concept-brand__img figure img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.concept-brand__text {
	width: calc(100% - 450px);
}
.concept-brand__text h3 + p {
	margin-top: 20px;
}
.concept-brand-cook {
	background-color: #F5F1F1;
	margin-top: 30px;
	padding: 25px;
}
.concept-brand-cook .ttl {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	font-family: "Zen Old Mincho", serif;
	line-height: 1.5;
	color: #BD0E0E;
}
.concept-brand-cook p {
	margin-top: 10px;
}
.concept-brand h4 {
	border-bottom: 1px solid #BD0E0E;
	margin-top: 50px;
}
.concept-brand h4 span {
	position: relative;
	display: inline-block;
	background-color: #BD0E0E;
	line-height: 1;
	color: #fff;
	padding: 10px 15px 10px 20px;
	font-size: 2rem;
	font-weight: 400;
	font-family: "Zen Old Mincho", serif;
}
.concept-brand h4 span::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 100%;
	clip-path: polygon(0 0, 0% 100%, 50% 100%);
	top: 0;
	left: calc(100% - .5px);
	background-color: #BD0E0E;
}
.concept-brand__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
}
.concept-brand__list li {
	width: calc(50% - 10px);
	background-color: #F5F1F1;
	padding: 25px;
}
.concept-brand__list li .ttl {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	font-family: "Zen Old Mincho", serif;
	line-height: 1.5;
	color: #BD0E0E;
}
.concept-brand__list li p {
	margin-top: 10px;
	font-size: 1.5rem;
}
.concept-brand-shinshutaropork__grid {
	display: flex;
	gap: 60px;
	margin-top: 30px;
}
.concept-brand-shinshutaropork__item {
	width: calc(50% - 30px);
}
.concept-brand-shinshutaropork .ttl {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	font-family: "Zen Old Mincho", serif;
	line-height: 1.5;
	color: #BD0E0E;
}
.concept-brand-shinshutaropork__list {
	counter-reset: custom-counter;
    margin-top: 15px;
}
.concept-brand-shinshutaropork__list li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 25px;
    margin-top: 5px;
}
.concept-brand-shinshutaropork__list li::before {
    content: counter(custom-counter) ".";
    position: absolute;
    left: 0;
    top: -0;
    font-weight: 600;
	color: #BD0E0E;
}
.concept-brand-shinshutaropork .point {
	position: relative;
	background-color: #BD0E0E;
	display: block;
	font-size: 2rem;
	font-weight: 600;
	font-family: "Zen Old Mincho", serif;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	padding: 25px 10px;
	margin-top: 25px;
}
.concept-brand-shinshutaropork .point::before {
	content: '';
	position: absolute;
	width: 17px;
	height: 24px;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	top: 50%;
	transform: translateY(-50%);
	right: 100%;
	background-color: #BD0E0E;
}
.concept-brand-fineness p {
	margin-top: 30px;
}
.concept-brand-fineness__grid {
	display: flex;
	gap: 20px;
	margin-top: 30px;
}
.concept-brand-fineness__item {
	width: calc(50% - 10px);
	background-color: #F5F1F1;
	padding: 25px;
}
.concept-brand-fineness__item.frame {
	border: 2px solid #BD0E0E;
}
.concept-brand-fineness__item .grid {
	display: flex;
	align-items: center;
}
.concept-brand-fineness__img {
	width: 100%;
	max-width: 170px;
	margin-right: 25px;
}
.concept-brand-fineness__img figure {
    display: block;
    position: relative;
    overflow: hidden;
	padding-top: 100%;
	border-radius: 50%;
}
.concept-brand-fineness__img figure img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.concept-brand-fineness__text {
	width: calc(100% - 195px);
}
.concept-brand-fineness__text .ttl {
	display: block;
	font-size: 2.2rem;
	font-weight: 600;
	font-family: "Zen Old Mincho", serif;
	line-height: 1.5;
	border-bottom: 1px solid #333;
	padding-bottom: 10px;
}
.concept-brand-fineness__text .ttl.red {
	border-bottom: 1px solid #BD0E0E;
}
.concept-brand-fineness__text .ttl span {
	color: #BD0E0E;
}
.concept-brand-fineness__text p {
	margin-top: 10px;
}
.concept-brand-fineness__text p strong {
	font-size: 2.2rem;
	font-weight: 500;
}
.concept-brand-fineness__text p strong span {
	color: #BD0E0E;
}
@media only screen and (max-width: 768px) {
	.concept-thoughts {
		margin-top: 60px;
		position: relative;
	}
	.concept-thoughts::before {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 600px;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(245, 241, 241, 1));
		z-index: -1;
	}
	.concept-thoughts__content {
		position: relative;
		width: 100%;
		max-width: 1160px;
		padding: 0 20px;
		margin: 0 auto;
	}
	.concept-thoughts__grid {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 30px;
	}
	.concept-thoughts__item {
		width: 100%;
	}
	.concept-thoughts__img {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 75%;
		width: auto;
		margin: 0 -20px;
	}
	.concept-thoughts__img img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.concept-thoughts__item .ttl {
		position: relative;
		display: block;
		font-family: "Zen Old Mincho", serif;
		font-size: 2.4rem;
		line-height: 1.5;
		font-weight: bolder;
		padding-bottom: 15px;
		letter-spacing: 1px;
		text-align: center;
	}
	.concept-thoughts__item .ttl::before {
		content: '';
		width: 100%;
		height: 1px;
		background-color: #BD0E0E;
		position: absolute;
		left: 0;
		bottom: 0;
	}
	.concept-thoughts__item .ttl span {
		color: #BD0E0E;
	}
	.concept-thoughts__item .ttl + p {
		margin-top: 30px;
		line-height: 2.1;
	}
	.concept-promise {
		padding: 60px 0;
		background-color: #F5F1F1;
	}
	.concept-promise h3 {
		margin-top: 40px;
	}
	.concept-promise__content {
		position: relative;
		width: 100%;
		max-width: 1160px;
		padding: 0 10px;
		margin: 0 auto;
	}
	.concept-promise__back {
		background-color: #fff;
		border-top: 2px solid #BD0E0E;
		padding: 60px 0;
	}
	.concept-promise__inner {
		width: 100%;
		max-width: 990px;
		padding: 0 20px;
		margin: auto;
	}
	.concept-promise__inner h2 {
		text-align: center;
		font-size: 3rem;
		font-family: "Zen Old Mincho", serif;
		line-height: 1.5;
	}
	.concept-promise__inner h2 span {
		color: #BD0E0E;
	}
	.concept-promise__grid {
		display: flex;
		flex-wrap: wrap;
		margin-top: 20px;
	}
	.concept-promise__text {
		width: 100%;
	}
	.concept-promise__img {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
	}
	.concept-promise__img figure {
		position: relative;
		display: block;
		overflow: hidden;
		padding-top: 70%;
	}
	.concept-promise__img img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.concept-promise__text {
		margin-top: 20px;
	}
	.concept-message {
		background-color: #F5F1F1;
	}
	.concept-message__grid {
		display: flex;
		flex-wrap: wrap;
	}
	.concept-message__img {
		width: 50%;
	}
	.concept-message__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		height: unset;
		padding-top: 125%;
	}
	.concept-message__img figure img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.concept-message__text {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding: 0 15px;
		margin-top: 40px;
	}
	.concept-message__text .text {
		text-align: center;
	}
	.concept-message__text .ttl {
		font-size: 2.6rem;
		font-family: "Zen Old Mincho", serif;
		font-weight: 600;
		line-height: 1.5;
	}
	.concept-message__text .ttl span {
		color: #BD0E0E;
	}
	.concept-message__text p {
		margin-top: 20px;
	}
	.order01 {
		order: 1;
	}
	.order02 {
		order: 2;
	}
	.order03 {
		order: 3;
	}
	.concept-brand {
		padding: 80px 0;
		background-color: #F5F1F1;
	}
	.concept-brand h2 {
		text-align: center;
		font-size: 3rem;
		font-family: "Zen Old Mincho", serif;
		line-height: 1.5;
	}
	.concept-brand h2 span {
		color: #BD0E0E;
	}
	.concept-brand__content {
		position: relative;
		width: 100%;
		max-width: 1160px;
		padding: 0 10px;
		margin: 0 auto;
	}
	.concept-brand__content h3 {
		text-align: center;
		font-size: 2.4rem;
		font-family: "Zen Old Mincho", serif;
		line-height: 1.5;
		padding-bottom: 0;
		color: #BD0E0E;
		border-bottom: none;
	}
	.concept-brand__frame {
		background-color: #fff;
		border-top: 2px solid #BD0E0E;
		padding: 40px 15px;
		margin-top: 40px;
	}
	.concept-brand__grid {
		display: flex;
		flex-wrap: wrap;
		margin-top: 30px;
	}
	.concept-brand__img {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
	}
	.concept-brand__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 65%;
	}
	.concept-brand__img figure img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.concept-brand__text {
		width: 100%;
	}
	.concept-brand__text h3 + p {
		margin-top: 20px;
	}
	.concept-brand-cook {
		background-color: #F5F1F1;
		margin-top: 15px;
		padding: 20px;
	}
	.concept-brand-cook .ttl {
		display: block;
		font-size: 1.8rem;
		font-weight: 600;
		font-family: "Zen Old Mincho", serif;
		line-height: 1.5;
		color: #BD0E0E;
	}
	.concept-brand-cook p {
		margin-top: 0;
	}
	.concept-brand h4 {
		border-bottom: 1px solid #BD0E0E;
		margin-top: 50px;
	}
	.concept-brand h4 span {
		position: relative;
		display: inline-block;
		background-color: #BD0E0E;
		line-height: 1.4;
		color: #fff;
		padding: 5px 10px;
		font-size: 1.8rem;
		font-weight: 400;
		font-family: "Zen Old Mincho", serif;
	}
	.concept-brand h4 span::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 100%;
		clip-path: polygon(0 0, 0% 100%, 50% 100%);
		top: 0;
		left: calc(100% - .5px);
		background-color: #BD0E0E;
	}
	.concept-brand__list {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		margin-top: 15px;
	}
	.concept-brand__list li {
		width: 100%;
		background-color: #F5F1F1;
		padding: 20px;
	}
	.concept-brand__list li .ttl {
		display: block;
		font-size: 1.8rem;
		font-weight: 600;
		font-family: "Zen Old Mincho", serif;
		line-height: 1.5;
		color: #BD0E0E;
	}
	.concept-brand__list li p {
		margin-top: 10px;
		font-size: 1.5rem;
	}
	.concept-brand-shinshutaropork__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 30px;
	}
	.concept-brand-shinshutaropork__item {
		width: 100%;
	}
	.concept-brand-shinshutaropork .ttl {
		display: block;
		font-size: 1.8rem;
		font-weight: 600;
		font-family: "Zen Old Mincho", serif;
		line-height: 1.5;
		color: #BD0E0E;
	}
	.concept-brand-shinshutaropork__list {
		counter-reset: custom-counter;
		margin-top: 15px;
	}
	.concept-brand-shinshutaropork__list li {
		counter-increment: custom-counter;
		position: relative;
		padding-left: 25px;
		margin-top: 5px;
	}
	.concept-brand-shinshutaropork__list li::before {
		content: counter(custom-counter) ".";
		position: absolute;
		left: 0;
		top: -0;
		font-weight: 600;
		color: #BD0E0E;
	}
	.concept-brand-shinshutaropork .point {
		position: relative;
		background-color: #BD0E0E;
		display: block;
		font-size: 2rem;
		font-weight: 600;
		font-family: "Zen Old Mincho", serif;
		line-height: 1.7;
		color: #fff;
		text-align: center;
		padding: 20px 10px;
		margin-top: 30px;
	}
	.concept-brand-shinshutaropork .point::before {
		content: '';
		position: absolute;
		width: 30px;
		height: 15px;
		clip-path: polygon(50% 0, 0% 100%, 100% 100%);
		top: unset;
		bottom: calc(100% - 1px);
		transform: translateX(-50%);
		right: unset;
		left: 50%;
		background-color: #BD0E0E;
	}
	.concept-brand-fineness p {
		margin-top: 30px;
	}
	.concept-brand-fineness__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 30px;
	}
	.concept-brand-fineness__item {
		width: 100%;
		background-color: #F5F1F1;
		padding: 25px;
	}
	.concept-brand-fineness__item.frame {
		border: 2px solid #BD0E0E;
	}
	.concept-brand-fineness__item .grid {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.concept-brand-fineness__img {
		width: 100%;
		max-width: 150px;
		margin: 0;
		margin: auto;
	}
	.concept-brand-fineness__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 100%;
		border-radius: 50%;
	}
	.concept-brand-fineness__img figure img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.concept-brand-fineness__text {
		width: 100%;
		margin-top: 20px;
		text-align: center;
	}
	.concept-brand-fineness__text .ttl {
		display: block;
		font-size: 2.2rem;
		font-weight: 600;
		font-family: "Zen Old Mincho", serif;
		line-height: 1.5;
		border-bottom: 1px solid #333;
		padding-bottom: 10px;
	}
	.concept-brand-fineness__text .ttl.red {
		border-bottom: 1px solid #BD0E0E;
	}
	.concept-brand-fineness__text .ttl span {
		color: #BD0E0E;
	}
	.concept-brand-fineness__text p {
		margin-top: 5px;
	}
	.concept-brand-fineness__text p strong {
		font-size: 2.2rem;
		font-weight: 500;
	}
	.concept-brand-fineness__text p strong span {
		color: #BD0E0E;
	}
}



.pork-logo {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding-top: 20px;
}
.pork-logo__grid {
	display: flex;
	justify-content: center;
	gap: 60px;
}
.pork-logo + p {
	margin-top: 60px;
}
@media only screen and (max-width: 768px) {
	.pork-logo {
		width: 100%;
		max-width: 75%;
		margin: 0 auto;
		padding-top: 20px;
	}
	.pork-logo__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: unset;
		gap: 30px;
	}
	.pork-logo figure {
		margin: auto;
	}
	.pork-logo figure.premium {
		width: 75%;
	}
	.pork-logo + p {
		margin-top: 40px;
	}
}



.btn-01,
.btn-02 {
	display: block;
	position: relative;
	width: 100%;
	max-width: 300px;
	height: 70px;
	line-height: 70px;
	background-color: #BD0E0E;
	color: #fff;
	padding: 0 25px;
	margin-top : 40px;
	font-size: 1.6rem;
}
.btn-02 {
	background-color: #fff;
	color: #333;
	border: 1px solid #fff;
	line-height: 68px;
	padding: 0 24px;
}
.btn-01::before,
.btn-02::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	background-color: #fff;
	border-radius: calc(infinity * 1px);
}
.btn-02::before {
	background-color: #BD0E0E;
}
.btn-01::after,
.btn-02::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    width: 19px;
    height: 7px;
    background: url(./img/allow.svg) no-repeat center / cover;
	transition: .3s;
}
.btn-02::after {
	background: url(./img/allow-w.svg) no-repeat center / cover;
}
.btn-01:hover {
	background-color: #930003;
}
.btn-02:hover {
	color: #fff;
	background-color: #BD0E0E;
}
.btn-01:hover::before,
.btn-02:hover::before {
	right: 14px;
	width: 48px;
	height: 48px;
	transition: .3s;
}
.btn-02:hover::before {
	background-color: #fff;
}
.btn-02:hover::after {
	background: url(./img/allow.svg) no-repeat center / cover;
	transition: .3s;
}
.btn-01.center,
.btn-02.center {
	margin: 40px auto 0;
}
@media only screen and (max-width: 768px) {
	.btn-01,
	.btn-02 {
		max-width: 280px;
		height: 64px;
		line-height: 64px;
	}
}





.list-01 {
	margin-top: 20px;
}
.list-01 li {
	position: relative;
	padding-left: 15px;
	margin-top: 5px;
}
.list-01 li::before {
	content: '';
	width: 7px;
	height: 7px;
	background-color: #BD0E0E;
	border-radius: calc(infinity * 1px);
	position: absolute;
	top: 11px;
	left: 0;
}


.ttl-03 {
	display: block;
    font-size: 2.8rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 600;
    line-height: 1.5;
    border-bottom: 1px solid #BD0E0E;
    padding-bottom: 10px;
	margin-top: 80px;
}
.ttl-03 span {
	color: #BD0E0E;
}
.ttl-03 + p {
	margin-top: 20px;
}
.ttl-04 {
	margin-top: 30px;
	color: #BD0E0E;
	font-size: 2rem;
	font-weight: 600;
}
.ttl-04 + p {
	margin-top: 10px;
}
@media only screen and (max-width: 960px) {
	.ttl-03 {
		display: block;
        font-size: 2.4rem;
        font-family: "Zen Old Mincho", serif;
        font-weight: 600;
        line-height: 1.5;
        border-bottom: 1px solid #BD0E0E;
        padding-bottom: 15px;
		margin-top: 60px;
	}
}






.wp-block {
	margin-top: 20px;
	border: 1px solid #eee;
}
.wp-block a {
	color: #BD0E0E;
	text-decoration: underline;
}
h1.wp-block {
    font-size: 4rem;
	margin-bottom: 30px;
}





h2.wp-block-heading {
	display: block;
    font-size: 2.8rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 600;
    line-height: 1.5;
    border-bottom: 1px solid #BD0E0E;
    padding-bottom: 10px;
	margin-top: 60px;
}
h3.wp-block-heading {
	display: block;
    font-size: 2.2rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 600;
    line-height: 1.5;
	margin-top: 30px;
	color: #BD0E0E;
}

