@charset "utf-8";

@import url(destyle.css);

/* font */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.4;
}
p,
li {
	font-weight: 500;
	line-height: 1.6;
	color: #fff;
}
/* margin */
.mb00 {
	margin-bottom: 0 !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}
.mb50 {
	margin-bottom: 50px !important;
}

.mb75 {
	margin-bottom: 75px !important;
}

.mb100 {
	margin-bottom: 100px !important;
}

.mb150 {
	margin-bottom: 150px !important;
}
.pc-mb30 {
	margin-bottom: 30px !important;
}
.pc-mb50 {
	margin-bottom: 50px !important;
}

/*--------
 common
----------*/

:root {
	--cl-black: #101010;
	--cl-red: #cf0b1e;
	--cl-gray: #969696;
	--cl-gold: #eec036;
	--tr-05: all 0.5s ease-in-out;
	--tr-10: all 1s ease-in-out;
	--fontsize14px: 0.9rem;
	--fontsize16px: 1rem;
	--fontsize18px: 1.15rem;
	--fontsize21px: 1.4rem;
	--fontsize24px: 1.7rem;
	--fontsize33px: 2.1rem;
	--fontsize33px: 2.1rem;
	--siteWidth: 1200px;
}
.center {
	text-align: center;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}

input,
option,
select,
textarea {
	padding: 0;
	margin: 0;
}

button,
input,
option,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	outline: 0;
	border-radius: 0;
}

button {
	padding: 0;
	margin: 0;
	background: 0 0;
	border: 0;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}
p.small {
	font-size: 0.9rem;
}
p.asterisk,
li.asterisk {
	margin-left: 1em;
	text-indent: -1em;
}
p.asterisk::before,
li.asterisk::before {
	content: "※";
}

.pc-true {
	display: none;
}
p.text-read {
	font-size: var(--fontsize16px);
	line-height: 2.4;
	margin-bottom: 2rem;
}
p strong.text-red {
	color: var(--cl-red);
}
.flex-center {
	display: flex;
	align-items: center;
}

/* header */
html {
	min-width: 320px;
	overflow-y: scroll;
}

body {
	min-width: 320px;
	font-family: "Noto Serif JP", "Yu Gothic", "Hiragino Mincho ProN",
		sans-serif;
	font-feature-settings: "palt";
	font-kerning: normal;
	font-size: 1rem;
	font-weight: 500;
	color: #000;
	word-break: normal;
	word-wrap: break-word;
	stroke-opacity: 0.5;
	stroke-width: 0.5px;
	stroke-dasharray: 3, 3;
	shape-rendering: crispEdges;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: var(--cl-black);
}

header {
	position: fixed;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 90px;
	background-color: var(--cl-black);
}

#header-inner {
	display: flex;
	justify-content: space-between;
	min-width: 320px;
	margin: 0 auto;
	padding: 0 10px 0 20px;
}
#header-inner div#logo {
	margin-top: 10px;
	display: flex;
	align-items: center;
}
#header-inner div#logo img {
	width: 110px;
}
#header-inner div#logo p {
	color: #fff;
	margin-left: 20px;
	font-size: var(--fontsize14px);
}
#header-inner-nav {
	display: flex;
}
#header-inner-text {
	margin-top: 10px;
}

/* navi */
.openbtn {
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	width: 60px;
	height: 60px;
	cursor: pointer;
	background-color: #fff;
}

/* ボタン内側 */
.openbtn span {
	position: absolute;
	left: 16px;
	display: inline-block;
	width: 28px;
	height: 3px;
	background: var(--cl-red);
	border-radius: 2px;
	transition: all 0.4s; /*アニメーションの設定*/
}

.openbtn span:nth-of-type(1) {
	top: 20px;
}
.openbtn span:nth-of-type(2) {
	top: 30px;
}
.openbtn span:nth-of-type(3) {
	top: 40px;
}

/*activeクラス付与 回転して×に*/
.openbtn.active span:nth-of-type(1) {
	top: 23px;
	width: 50%;
	transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0; /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
	top: 35px;
	width: 50%;
	transform: translateY(-6px) rotate(45deg);
}
#globalmenu {
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9;
	width: 100%;
	height: 100vh;
	padding-top: 100px;
	background-color: #fff;
	transition: var(--tr-05);
}

#globalmenu.active {
	right: 0;
}
ul#globalmenu-main {
	padding-left: 40px;
}
ul#globalmenu-main li {
	box-sizing: border-box;
	max-width: 350px;
	padding: 0.7rem 0;
	margin: 0 auto;
	font-size: var(--fontsize16px);
	color: #000;
}
ul#globalmenu-main li a {
	display: block;
}
ul#globalmenu-main li a span::before {
	content: url(../img/icon_cur_red.svg);
	margin-right: 10px;
	display: inline-block;
	padding: 10px 0;
}

ul#globalmenu-sub {
	padding-left: 60px;
}
ul#globalmenu-sub li {
	box-sizing: border-box;
	max-width: 350px;
	padding: 0.5rem 0;
	margin: 0 auto;
	font-size: var(--fontsize16px);
	color: #000;
	list-style-type: disc;
}
ul#globalmenu-sub li::marker {
	color: #969696;
}
ul#globalmenu-sub li a {
	display: block;
}

/* common */
section {
	margin-bottom: 150px;
}
section .section-inner {
	max-width: var(--siteWidth);
	padding-inline: 20px;
	margin: 0 auto;
}
section .section-inner.flex-half,
section .section-inner .flex-half {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
}
section .section-inner.flex-half > div,
section .section-inner .flex-half > div {
	width: 100%;
}
section .section-inner.flex-half > div:first-child,
section .section-inner .flex-half > div:first-child {
	margin-bottom: 50px;
}

/* main */
main {
	width: 100%;
	padding: 0;
	margin: 90px auto 0;
}

/* ------------------
 Common Etc page
 ------------------ */
section.page-header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}
.page-header h1 {
	font-size: 30px;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
	color: #fff;
}

/* ------------------
 index
 ------------------ */

/* Key movie */
#top-key-visual {
	height: 320px;
	position: relative;
	width: 100%;
	margin-bottom: 0;
}
#top-key-visual video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
#top-key-visual > div {
	display: flex;
	align-items: center;
	position: absolute;
	flex-direction: column;
	width: 100%;
	height: 100%;
	justify-content: center;
}
#top-key-visual > div img {
	width: 160px;
}
#top-key-visual h1 {
	font-size: 30px;
	color: #fff;
	text-align: center;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
#top-key-visual h1 span {
	font-size: 20px;
}

/* Information */
#top-information {
	background-color: #fff;
}
#top-information .section-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#top-information .top-information-title,
#top-information ul,
#top-information .top-information-x {
	padding: 20px 0;
}
#top-information .top-information-title {
	border-left: 3px solid var(--cl-red);
	width: 100%;
	padding-left: 20px;
}
#top-information .top-information-title h2 {
	font-size: var(--fontsize20px);
	margin-bottom: 10px;
	color: #000;
}
#top-information .top-information-title p {
	font-size: var(--fontsize16px);
	color: var(--cl-gray);
}
#top-information ul {
	width: 100%;
	height: 120px;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	padding: 0 30px 0 0;
	margin-top: 20px;
}
#top-information ul li,
#top-information ul li p {
	color: #000;
}
#top-information ul li.entry-date {
	margin-bottom: 10px;
}

#top-information ul li.entry-title {
	margin-bottom: 30px;
}
#top-information ul li.entry-title:last-child {
	margin-bottom: 0;
}

#top-information .top-information-x {
	width: 100%;
	background-image: url(../img/icon_logo_x.png);
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: center left;
	padding-left: 50px;
}
#top-information .top-information-x p {
	color: #000;
}

/* gensen */
h2.h2ti-glagold {
	font-size: 26px;
	background: linear-gradient(315deg, #a95c36, #f3d475);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	margin-bottom: 30px;
}

/* common */
h2.h2ti-white {
	font-size: 32px;
	color: #fff;
	letter-spacing: 0.1em;
}
h2.h2ti-white + p {
	font-size: var(--fontsize16px);
	letter-spacing: 0.2em;
	margin-bottom: 50px;
	letter-spacing: 0;
}

/* Message */
.top-message-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
}
.top-message-box .top-message-photo {
	width: 30%;
}
.top-message-box .top-message-title {
	width: 60%;
}
.top-message-box .top-message-title h3 {
	color: #fff;
	font-size: 28px;
}
.top-message-box .top-message-title h3 {
	color: #fff;
	font-size: 24px;
	letter-spacing: 0.2em;
}
.top-message-box .top-message-title h3 span {
	font-size: 14px;
	letter-spacing: 0;
}
.message-open-toggle {
	padding: 15px 0;
	color: #fff;
	background-image: url(../img/icon_plus_gold.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	padding-left: 40px;
	margin-top: 20px;
	cursor: pointer;
}
.message-open-toggle.close {
	background-image: url(../img/icon_minus_gold.svg);
}
.top-message-message {
	width: 100%;
	display: none;
	margin-top: 30px;
	padding-inline: 10px;
}
.top-message-message p {
	line-height: 2.2;
}

/* About */
#top-about .about-logo-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

/* Brand History */
#top-brandhistory {
	background-color: #262626;
	padding: 40px 0;
}
#top-brandhistory h2 {
	font-size: var(--fontsize21px);
	color: #fff;
	margin-bottom: 30px;
}
#top-brandhistory h2 + p {
	margin-bottom: 30px;
}
.brandhistory-over {
	height: 500px;
	overflow-y: scroll;
}
#top-brandhistory table th,
#top-brandhistory table td {
	color: #fff;
	line-height: 1.8;
	padding: 0.8em 0;
}
#top-brandhistory table th {
	font-weight: normal;
	width: 7em;
}
#top-brandhistory table th::after {
	content: "：";
	float: right;
}

/* Hinshitsu */
#top-hinshitsu {
	background-color: #fff;
	padding: 50px 0;
	margin-bottom: 0;
}
#top-hinshitsu h3 {
	font-size: 26px;
	text-align: center;
	padding-top: 45px;
	background-image: url(../img/icon_kamon.svg);
	background-size: 40px;
	background-repeat: no-repeat;
	background-position: top center;
	margin-bottom: 30px;
}
.top-hinshitsu-tokyu {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: column;
}
.top-hinshitsu-tokyu .img img {
	width: 80%;
	margin: 0 auto 30px auto;
}
.top-hinshitsu-tokyu .text {
	padding: 0 20px;
}
.top-hinshitsu-tokyu .text p {
	color: #000;
}

#top-hinshitsu ul {
	display: inline-block;
	margin: 0 auto;
}
#top-hinshitsu li {
	font-size: var(--fontsize18px);
	color: #000;
	margin-bottom: 10px;
}
#top-hinshitsu li strong {
	color: var(--cl-red);
	letter-spacing: 0.1em;
}
/* この箇所のみ */
@media print, screen and (min-width: 431px) {
	.top-hinshitsu-tokyu {
		flex-direction: row;
	}
	.top-hinshitsu-tokyu {
		flex-direction: row;
	}
	.top-hinshitsu-tokyu .img {
		width: 45%;
		margin: 0;
	}
	.top-hinshitsu-tokyu .img img {
		width: 100%;
	}

	.top-hinshitsu-tokyu .text {
		width: 50%;
		padding: 0;
	}
}

/* オレイン酸 */
#top-oleic {
	background-image: url(../img/bg_photo_niku.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 70px 0;
	margin-bottom: 0;
}
#top-oleic h3 {
	font-size: var(--fontsize21px);
	color: #fff;
	margin-bottom: 20px;
}
#top-oleic h4 {
	font-size: var(--fontsize18px);
	color: var(--cl-gold);
	margin-bottom: 10px;
}
#top-oleic .oleic-seal {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#top-oleic .oleic-seal .text {
	width: 100%;
	margin-bottom: 30px;
}
#top-oleic .oleic-seal .oleic-seal-thumb {
	width: 100%;
	display: flex;
	gap: 20px;
}
#top-oleic .oleic-seal .oleic-seal-thumb > div {
	width: calc(50% - 10px);
}
#top-oleic .oleic-seal .oleic-seal-thumb p {
	text-align: center;
	margin-top: 10px;
}
#top-oleic .oleic-seal .oleic-seal-thumb > div img {
	width: 90%;
	margin: 0 auto;
}
/* この箇所のみ */
@media print, screen and (min-width: 431px) {
	#top-oleic .oleic-seal .text {
		width: 50%;
		margin-bottom: 0;
	}
	#top-oleic .oleic-seal .oleic-seal-thumb {
		width: 45%;
	}
	#top-oleic .oleic-seal .oleic-seal-thumb > div img {
		width: 100%;
	}
}

/* 推進協議会 */
#top-suishin {
	background-color: #fff;
	padding: 80px 0;
}
#top-suishin .flex-half:first-child {
	margin-bottom: 80px;
}
#top-suishin h2 {
	color: var(--cl-red);
	font-size: var(--fontsize21px);
	margin-bottom: 20px;
}
#top-suishin p {
	color: #000;
}

.top-suishin-shuka .suishin-thumb p {
	text-align: center;
	margin-top: 10px;
}
/* この箇所のみ */
@media print, screen and (min-width: 431px) {
	#top-oleic .oleic-seal .text {
		width: 50%;
		margin-bottom: 0;
	}
	.top-suishin-shuka .suishin-thumb {
		width: 100%;
	}
}

/* 生産から食卓まで */
.top-shokutaku-message h3 {
	font-size: var(--fontsize21px);
	margin-bottom: 20px;
	color: var(--cl-gold);
	line-height: 2;
}
.top-shokutaku-message h3 span {
	font-size: var(--fontsize18px);
	color: #fff;
}
.top-shokutaku-flow {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 30px;
}
.top-shokutaku-flow li {
	width: 160px;
	flex-direction: column;
	margin-bottom: 30px;
}

.top-shokutaku-flow li h4 {
	font-size: 18px;
	text-align: center;
	font-weight: normal;
	margin-bottom: 10px;
}
.top-shokutaku-flow li h4 span {
	font-size: 20px;
	margin-right: 10px;
	display: inline-block;
}
.top-shokutaku-flow li h4 a {
	display: block;
	background-image: url(../img/ico_link_blank_white.svg);
	background-position: right bottom 4px;
	background-repeat: no-repeat;
	padding-inline: 20px;
}
/* footer */
footer {
	width: 100%;
	background-color: #1e1e1e;
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
footer .foot-information-x {
	background-image: url(../img/x_logo.svg);
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: center left;
	padding-left: 50px;
	margin-bottom: 30px;
	display: inline-block;
}
footer .foot-information-x a {
	display: block;
}
footer .foot-information-x p {
	display: inline-block;
}

/*-------------------------------------------
 Tablet
-------------------------------------------*/
@media print, screen and (min-width: 744px) {
}

/*-------------------------------------------
 PC
-------------------------------------------*/
@media print, screen and (min-width: 1024px) {
	/* common */
	p.text-read {
		font-size: var(--fontsize18px);
	}
	.pc-true {
		display: block;
	}
	.sp-true {
		display: none;
	}

	/* header */
	header {
		height: 140px;
	}
	#header-inner {
		max-width: var(--siteWidth);
		margin: 0 auto;
		height: 100%;
	}
	#header-inner div#logo img {
		width: 156px;
	}
	#header-inner div#logo p {
		margin-left: 30px;
		font-size: var(--fontsize16px);
	}
	/* navi */
	.openbtn {
		width: 80px;
		height: 80px;
	}
	#header-inner-text {
		display: flex;
		align-items: center;
		height: 100%;
		margin-top: 0;
	}
	#header-inner-text p {
		color: #fff;
		font-size: var(--fontsize18px);
	}
	#header-inner-text #head-shop {
		margin-right: 80px;
	}
	#header-inner-text div.openbtn-text {
		padding-right: 30px;
	}
	/*ボタン内側*/
	.openbtn span {
		position: absolute;
		left: 22px;
		display: inline-block;
		width: 36px;
		height: 3px;
		background: var(--cl-red);
		transition: all 0.4s; /*アニメーションの設定*/
	}
	.openbtn span:nth-of-type(1) {
		top: 34%;
	}
	.openbtn span:nth-of-type(2) {
		top: 49%;
	}
	.openbtn span:nth-of-type(3) {
		top: 64%;
	}

	.openbtn.active span:nth-of-type(1) {
		top: 40%;
		left: 22px;
	}
	.openbtn.active span:nth-of-type(3) {
		top: 55%;
		left: 22px;
	}
	#globalmenu {
		right: -30%;
		width: 30%;
		padding-top: 160px;
	}
	/* common */
	section .section-inner.flex-half,
	section .section-inner .flex-half {
		flex-direction: row;
	}
	section .section-inner.flex-half > div,
	section .section-inner .flex-half > div {
		width: calc(50% - 40px);
	}
	section .section-inner.flex-half > div:first-child,
	section .section-inner .flex-half > div:first-child {
		margin-bottom: 0;
	}

	/* main */
	main {
		margin-top: 140px;
	}
	/* Key movie */
	#top-key-visual {
		height: 600px;
	}
	#top-key-visual > div img {
		width: 220px;
	}

	#top-key-visual h1 {
		font-size: 67px;
	}
	#top-key-visual h1 span {
		font-size: 26px;
	}
	/* Information */
	#top-information .top-information-title {
		width: 20%;
	}
	#top-information ul {
		width: 45%;
		height: 90px;
		overflow-y: scroll;
		margin: 20px 0;
		padding: 0 20px 0 0;
	}
	#top-information .top-information-title {
		border-left: 3px solid var(--cl-red);
		padding-left: 20px;
	}
	#top-information .top-information-title h2 {
		font-size: var(--fontsize21px);
		margin-bottom: 0;
	}

	#top-information .top-information-x {
		width: 30%;
		background-size: 40px;
		padding-left: 55px;
		background-position: top 25px left;
	}

	/* gensen */
	h2.h2ti-glagold {
		font-size: 40px;
	}

	/* Message */
	#top-message {
		margin-bottom: 200px;
	}
	.top-message-box .top-message-title h3 {
		font-size: 28px;
	}
	/* About */
	#top-about .about-logo-flex {
		flex-direction: row;
	}

	/* common */
	h2.h2ti-white {
		font-size: 50px;
	}
	h2.h2ti-white + p {
		font-size: 14px;
	}

	/* Hinshitsu */
	#top-hinshitsu {
		padding: 80px 0;
	}
	#top-hinshitsu h3 {
		font-size: 30px;
	}
	#top-hinshitsu li {
		font-size: var(--fontsize21px);
	}
	/* オレイン酸 */
	#top-oleic h3 {
		font-size: var(--fontsize24px);
		color: #fff;
	}
	#top-oleic .oleic-seal .text {
		width: 50%;
	}
	#top-oleic .oleic-seal .seal-thumb {
		width: 45%;
	}

	/* Brand History */
	.brandhistory-over {
		height: 400px;
	}

	/* 推進協議会 */
	#top-suishin .flex-half:first-child {
		margin-bottom: 120px;
	}

	#top-suishin h2 {
		font-size: 28px;
	}

	/* 生産から食卓まで */
	.top-shokutaku-message h3 {
		font-size: var(--fontsize24px);
	}
	.top-shokutaku-message h3 span {
		font-size: var(--fontsize21px);
	}

	.top-shokutaku-flow li {
		width: 24%;
	}
	.top-shokutaku-flow li h4 {
		font-size: 22px;
	}
	.top-shokutaku-flow li h4 span {
		font-size: 24px;
	}
	.top-shokutaku-flow li h4 a {
		background-position: right bottom 8px;
	}
}

/*--------
 Modal
----------*/
/* モーダルのスタイル */
#movie-thumbnail {
	padding: 10px;
	cursor: pointer;
}
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
}
.modal-content {
	position: relative;
	width: 90%;
	max-width: 854px;
}
.modal-close {
	position: absolute;
	top: -50px;
	right: 0;
	color: white;
	font-size: 40px;
	cursor: pointer;
}

/*--------
 A
----------*/
a.link-cur-red span {
	display: flex;
	align-items: center;
}
a.link-cur-red span::before {
	content: url(../img/icon_cur_red.svg);
	vertical-align: text-top;
	margin-right: 10px;
	display: inline-block;
	padding: 10px 0;
}
a.link-cur-red:hover {
	text-decoration: underline;
}

a.link-pdf {
	border: 1px solid var(--cl-black);
	padding: 25px 25px 25px 40px;
	display: inline-block;
	background-image: url(../img/icon_cur_red.svg);
	background-position: left 20px center;
	background-repeat: no-repeat;
	background-color: #fff;
	font-size: var(--fontsize14px);
	line-height: 1;
}
a.link-pdf span {
	display: flex;
	align-items: center;
}
a.link-pdf span::after {
	content: "";
	display: inline-block;
	width: 53px;
	height: 18px;
	background-image: url(../img/icon_pdf_dl.svg);
	background-repeat: no-repeat;
	margin-left: 10px;
	vertical-align: bottom;
}

a.link-seisan {
	width: 100%;
	border: 1px solid var(--cl-black);
	padding: 0 0 0 40px;
	display: inline-block;
	background-image: url(../img/icon_cur_red.svg);
	background-position: left 20px center;
	background-repeat: no-repeat;
	line-height: 1;
}
a.link-seisan span {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
a.link-seisan span::after {
	content: "";
	display: inline-block;
	width: 200px;
	height: 100px;
	background-image: url(../img/bg_linkimg_shuka.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	margin-left: 50px;
	vertical-align: bottom;
}
