@charset "UTF-8";

/* 初期設定 */
:root {
	--color-orange: #ed6d2b;
	--color-blue: #0070b8;
	--color-text: #1f1f1f;
	--color-muted: #767676;
	--color-cream: #fff8d9;
	--font-mincho: "Shippori Mincho B1", serif;
	--font-gothic: "Noto Sans JP", sans-serif;
	--font-en: "Barlow", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	overflow-x: hidden;
	color: var(--color-text);
	font-family: var(--font-gothic);
	font-size: 14px;
	line-height: 1.9;
	background: #fff;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4 {
	margin: 0;
}

p {
	margin: 0;
	font-family: var(--font-mincho);
}

:where([id]) {
	scroll-margin-top: 40px;
}

/* 共通パーツ */
.section {
	position: relative;
	padding: 54px 0;
	overflow: hidden;
}

.section__inner {
	width: min(100% - 40px, 1040px);
	margin: 0 auto;
}

.section-label {
	margin-bottom: 0;
	color: #9a9a9a;
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 200;
	letter-spacing: 0.08em;
	text-align: center;
}

.section-label--light {
	color: rgba(255, 255, 255, 0.74);
}

.pc-only {
	display: none;
}

.sp-only {
	display: inline;
}

.section-title {
	margin-bottom: 28px;
	color: var(--color-orange);
	font-family: var(--font-mincho);
	font-size: 23px;
	font-weight: 700;
	line-height: 1.65;
	text-align: center;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	min-height: 34px;
	padding: 7px 22px 8px;
	border-radius: 999px;
	color: #fff;
	font-family: var(--font-mincho);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	background: var(--color-orange);
}

.scroll-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.9s ease,
		transform 0.9s ease;
}

.scroll-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.scroll-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ヘッダー */
.site-header {
	position: fixed;
	z-index: 20;
	top: 0;
	left: 0;
	width: 100%;
	color: #fff;
	background: var(--color-orange);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 38px;
	padding: 0 10px;
}

.site-header__logo {
	width: 150px;
	line-height: 1;
}

.site-header__logo img {
	width: 100%;
}

.site-nav__list {
	display: none;
	font-family: var(--font-en);
}

.site-nav__menu {
	position: relative;
}

.site-nav__toggle {
	width: 22px;
	padding: 4px;
	cursor: pointer;
	list-style: none;
}

.site-nav__toggle::-webkit-details-marker {
	display: none;
}

.site-nav__toggle-icon {
	position: relative;
	display: block;
	width: 14px;
	height: 9px;
	overflow: hidden;
	color: transparent;
	background: linear-gradient(#fff, #fff) center / 14px 1px no-repeat;
}

.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 14px;
	height: 1px;
	background: #fff;
}

.site-nav__toggle-icon::before {
	top: 0;
}

.site-nav__toggle-icon::after {
	bottom: 0;
}

.site-nav__menu[open] .site-nav__list {
	position: fixed;
	z-index: 30;
	top: 38px;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: 42px 24px 64px;
	font-size: 15px;
	font-weight: 400;
	text-align: center;
	background: #ed6d2b;
}

.site-nav__menu.is-animating[open] .site-nav__list {
	animation: menuOverlayIn 0.42s ease both;
}

.site-nav__list a {
	display: block;
	min-width: 210px;
	padding: 10px 20px;
	letter-spacing: 0.08em;
}

.site-nav__menu[open] .site-nav__list a[href="#contact"] {
	min-width: 150px;
	margin-top: 25px;
	padding: 3px 5px;
	border-radius: 999px;
	color: #ed6d2b;
	background: #fff;
}

.site-nav__menu.is-animating[open] .site-nav__list li {
	opacity: 0;
	transform: translateY(12px);
	animation: menuItemIn 0.48s ease both;
}

.site-nav__menu.is-animating[open] .site-nav__list li:nth-child(1) {
	animation-delay: 0.08s;
}

.site-nav__menu.is-animating[open] .site-nav__list li:nth-child(2) {
	animation-delay: 0.14s;
}

.site-nav__menu.is-animating[open] .site-nav__list li:nth-child(3) {
	animation-delay: 0.2s;
}

.site-nav__menu.is-animating[open] .site-nav__list li:nth-child(4) {
	animation-delay: 0.26s;
}

@keyframes menuOverlayIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes menuItemIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* トップページ: ファーストビュー */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	padding-top: 38px;
	overflow: visible;
	color: #fff;
	background: #006ca7;
}

.hero__slide,
.hero__image {
	position: absolute;
	inset: 0;
}

.hero__slide {
	top: 38px;
	overflow: hidden;
}

.hero__image {
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: opacity 1s ease;
}

.hero__image--01 {
	background-image: url("../../images/01fv_a._sp.webp");
}

.hero__image--02 {
	background-image: url("../../images/01fv_b_sp.webp");
}

.hero__image--03 {
	background-image: url("../../images/01fv_c_sp.webp");
}

.hero__image.is-active {
	opacity: 1;
}

.hero__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: transparent;
}

.hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 38px);
	min-height: calc(100svh - 38px);
	padding: 75px 0 95px;
	text-align: center;
}

.hero__title {
	width: min(85vw, 350px);
	margin-bottom: 70px;
	filter: drop-shadow(2px 2px 20px rgba(35, 24, 21, 0.85));
	margin-top: 0;
}

.hero__sub {
	margin-bottom: 82px;
}

.hero__sub--sp {
	width: min(58vw, 232px);
}

.hero__sub--pc {
	display: none;
}

.hero__button {
	min-width: 172px;
	min-height: 48px;
	font-size: 17px;
}

.hero__dots {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.hero__dot {
	width: 8px;
	aspect-ratio: 1;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}

.hero__dot.is-active {
	background: var(--color-orange);
}

.hero__wave {
	position: absolute;
	z-index: 3;
	bottom: -120px;
	left: 50%;
	width: auto;
	height: 220px;
	max-width: none;
	transform: translateX(-50%);
}

/* トップページ: コンセプト */
.concept {
	padding-top: 48px;
}

.concept__text {
	font-size: 14px;
	line-height: 2.15;
	text-align: left;
}

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

.concept__visual {
	position: relative;
	margin: 44px -20px 0;
}

.concept__image,
.taste__image {
	width: 100%;
	max-width: none;
}

.concept__images--pc {
	display: none;
}

.aquaculture {
	margin-top: 42px;
	padding-top: 0;
	border-top: 0;
	font-family: var(--font-gothic);
	font-size: 14px;
	line-height: 2.05;
}

.aquaculture__visual {
	display: none;
}

.aquaculture__title {
	margin-bottom: 18px;
	font-family: var(--font-mincho);
	font-size: 20px;
	font-weight: 700;
}

.aquaculture p {
	font-family: var(--font-gothic);
	font-weight: 100;
}

.aquaculture p+p {
	margin-top: 14px;
}

/* トップページ: 強み */
.strengths {
	padding: 54px 0 62px;
	color: #fff;
	background: url("../../images/03strengths_a.jpg") center / cover no-repeat;
}

.strengths::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 70, 110, 0.34);
}

.strengths .section__inner {
	position: relative;
	z-index: 1;
}

.strengths__lead {
	margin-bottom: 28px;
	font-size: 14px;
	line-height: 2;
	text-align: left;
}

.strengths__list {
	display: grid;
	gap: 24px;
	justify-items: center;
}

.strength-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 310px;
	height: 310px;
	padding: 26px 32px 48px;
	border-radius: 50%;
	color: var(--color-text);
	font-family: var(--font-mincho);
	text-align: center;
	background: rgba(255, 255, 255, 0.9);
}

.strength-card__num {
	color: var(--color-orange);
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
}

.strength-card h3 {
	margin: 6px 0 8px;
	color: var(--color-orange);
	font-family: var(--font-mincho);
	font-size: 29px;
	line-height: 1.2;
}

.strength-card h4 {
	width: calc(100% + 24px);
	margin-bottom: 9px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.45;
}

.strength-card p:last-child {
	font-family: var(--font-gothic);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.7;
}

/* トップページ: ケーススタディ */
.case-study {
	padding-top: 52px;
}

.case-study .section-label {
	margin-bottom: 20px;
	text-align: left;
}

.case-study .section-label::after {
	content: "";
	display: block;
	width: 220px;
	height: 1px;
	margin-top: 4px;
	background: #8a8a8a;
}

.case-study__visual {
	position: relative;
	min-height: 360px;
	margin: -30px -20px -30px;
}

.case-study__water {
	position: absolute;
	top: 70px;
	left: -20px;
	width: 320px;
}

.case-study__package {
	position: absolute;
	top: 0;
	right: 20px;
	width: 176px;
}

.case-study__title {
	margin-bottom: 0;
	color: var(--color-orange);
	font-family: var(--font-mincho);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.65;
}

.case-study__title span {
	font-size: 33px;
	margin-left: -20px;
}

.case-study__text {
	position: relative;
	z-index: 2;
	font-size: 14px;
	line-height: 2.05;
}

.case-study__text::after {
	content: "";
	display: block;
	clear: both;
}

.case-study__text p+p {
	margin-top: 25px;
}

.case-study__map {
	float: right;
	width: 300px;
	margin: -35px -73px 14px 18px;
}

/* トップページ: 味 */
.taste {
	padding-top: 28px;
}

.taste__title {
	margin-bottom: 22px;
	font-family: var(--font-mincho);
	font-size: 16px;
	text-align: center;
}

.taste__visual {
	position: relative;
	margin: 0 -20px;
}

.taste__copies {
	position: absolute;
	top: 120px;
	right: 70px;
	display: flex;
	gap: 8px;
	align-items: flex-start;
	pointer-events: none;
}

.taste__copy {
	width: 42px;
	padding: 11px 8px;
	font-family: var(--font-mincho);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	writing-mode: vertical-rl;
	background: #fff;
}

@media (max-width: 767px) {
	.taste__copies {
		top: 50px;
		right: 30px;
		gap: 18px;
	}
}

/* トップページ: 料理人・店舗 */
.chefs {
	padding-top: 22px;
}

.chefs p {
	font-family: var(--font-gothic);
}

.chefs__visual {
	position: relative;
	margin: 0 -20px;
	padding-top: 86px;
}

.chefs__visual>img,
.chefs__visual picture>img {
	width: 100%;
}

.chefs__panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 72%;
	padding: 28px 28px 30px;
	color: #fff;
	background: #333331;
}

.chefs__panel h2 {
	margin-bottom: 12px;
	color: var(--color-orange);
	font-family: var(--font-mincho);
	font-size: 16px;
	line-height: 1.5;
}

.chefs__panel p {
	font-size: 12px;
	line-height: 1.8;
}

.shops {
	margin-top: 34px;
	text-align: center;
}

.shops h3,
.movie h3 {
	margin-bottom: 14px;
	font-family: var(--font-mincho);
	font-size: 16px;
}

.movie__title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
}

.movie__title span {
	display: inline-block;
}

.movie__title-mark {
	width: 10px;
	height: auto;
	flex: 0 0 auto;
}

.shops__note {
	margin: 4px 0 28px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.7;
}

.shops__list {
	display: grid;
	gap: 20px;
	width: min(100%, 340px);
	margin: 0 auto;
}

.shop-card picture {
	display: block;
}

.shop-card img {
	width: 290px;
	margin: 0 auto;
	border-radius: 13px;
}

.shop-card p {
	display: block;
	width: 100%;
	margin-top: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	white-space: nowrap;
}

.movie {
	margin-top: 60px;
	padding-bottom: 30px;
	text-align: center;
}

.movie p {
	margin-bottom: 16px;
	font-family: var(--font-mincho);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.7;
}

.movie>a img {
	width: 92%;
	margin: 0 auto;
}

/* トップページ: お問い合わせ */
.contact {
	padding: 56px 0 70px;
	text-align: center;
	background: var(--color-cream);
	margin-bottom: 100px;
}

.contact__inner {
	width: min(100% - 40px, 720px);
	margin: 0 auto;
}

.contact .section-label {
	color: var(--color-text);
	font-family: var(--font-gothic);
}

.contact__title {
	margin-bottom: 24px;
	color: var(--color-orange);
	font-family: var(--font-mincho);
	font-size: 22px;
	line-height: 1.45;
}

.contact__content {
	text-align: left;
}

.contact p.contact__lead {
	margin-bottom: 28px;
	font-family: var(--font-mincho);
	font-weight: 700;
	text-align: center;
}

.contact p {
	font-family: var(--font-mincho);
	font-size: 11px;
	font-weight: 200;
	line-height: 1.6;
}

.contact p+p {
	margin-top: 20px;
}

.contact p.contact__person {
	margin-top: 60px;
	font-family: var(--font-mincho);
	font-weight: 700;
	text-align: center;
}

.contact__message span {
	display: block;
	color: var(--color-orange);
	font-family: var(--font-gothic);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 20px;
}

.contact__button {
	display: flex;
	width: fit-content;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	min-width: 300px;
	min-height: 36px;
	font-size: 24px;
	padding: 8px 40px;
}

/* フッター */
.site-footer {
	position: relative;
	min-height: 190px;
	padding: 52px 0 30px;
	color: #fff;
	background: var(--color-blue);
}

.site-footer::before {
	content: "";
	position: absolute;
	top: -90px;
	left: 50%;
	width: 2280px;
	height: 270px;
	background: url("../../images/footer-bg.svg") center top / 2280px auto no-repeat;
	transform: translateX(-50%);
}

.site-footer__inner {
	position: relative;
	z-index: 1;
	width: min(100% - 40px, 1040px);
	margin: 0 auto;
	text-align: center;
}

.site-footer__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-family: var(--font-en);
	font-weight: 400;
	line-height: 1;
}

.site-footer__jr {
	width: 50px;
}

.site-footer__logo .site-footer__company {
	font-family: var(--font-gothic);
	font-size: 18px;
	line-height: 1.4;
}

.site-footer__links {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-top: 26px;
	font-family: var(--font-mincho);
	font-size: 12px;
	font-weight: 400;
}

.site-footer small {
	display: block;
	margin-top: 28px;
	font-size: 11px;
	text-align: center;
}

.page-top {
	--page-top-stop-offset: 70px;
	position: fixed;
	z-index: 25;
	right: 14px;
	bottom: 18px;
	width: 44px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(calc(14px + var(--page-top-stop, 0px)));
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

.page-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(var(--page-top-stop, 0px));
}

@media (min-width: 768px) {
	body {
		font-size: 15px;
	}

	.site-header__inner {
		padding: 0 56px;
	}

	.site-header__logo {
		width: 168px;
	}

	.site-nav__list {
		display: flex;
		align-items: center;
		gap: 28px;
		font-size: 11px;
		font-weight: 400;
	}

	.site-nav__toggle {
		display: none;
	}

	.site-nav__list a {
		min-width: 120px;
		padding: 0;
		text-align: center;
	}

	.site-nav__menu[open] .site-nav__list {
		position: static;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		gap: 28px;
		padding: 0;
		font-size: 11px;
		font-weight: 400;
		text-align: left;
		background: transparent;
	}

	.site-nav__menu[open] .site-nav__list a[href="#contact"] {
		min-width: 0;
		margin-top: 0;
		padding: 4px 12px 5px;
		border: 1px solid #fff;
		border-radius: 999px;
		color: #ed6d2b;
		background: #fff;
	}

	.hero {
		min-height: auto;
	}

	.hero__slide {
		bottom: auto;
		height: calc(100vw * 1466 / 3000);
	}

	.hero__image {
		background-position: center top;
		background-size: 100% auto;
		background-repeat: no-repeat;
	}

	.hero__image--01 {
		background-image: url("../../images/01fv_a.webp");
	}

	.hero__image--02 {
		background-image: url("../../images/01fv_b.webp");
	}

	.hero__image--03 {
		background-image: url("../../images/01fv_c.webp");
	}

	.hero__content {
		box-sizing: border-box;
		height: calc(100vw * 1466 / 3000);
		min-height: auto;
		aspect-ratio: auto;
	}

	.hero__title {
		width: 430px;
	}

	.hero__sub--sp {
		display: none;
	}

	.hero__sub--pc {
		position: absolute;
		top: 178px;
		right: 12%;
		display: block;
		width: 56px;
	}

	.hero__wave {
		bottom: -92px;
		width: auto;
		height: 150px;
	}

	.section {
		padding: 94px 0;
	}

	.section__inner {
		width: min(100% - 120px, 1160px);
	}

	.concept__body {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 60px;
		align-items: center;
	}

	.concept__visual {
		min-height: 420px;
		margin: 0;
	}

	.concept__image--sp {
		display: none;
	}

	.concept__images--pc {
		position: absolute;
		inset: 0;
		display: block;
	}

	.concept__fish {
		position: absolute;
		z-index: 2;
		top: 0;
		right: -110px;
		width: 380px;
	}

	.concept__farm {
		position: absolute;
		top: 180px;
		left: 0;
		width: 420px;
	}

	.concept__feed {
		position: absolute;
		z-index: 3;
		right: 22px;
		bottom: 0;
		width: 120px;
		aspect-ratio: 1;
		border-radius: 50%;
		object-fit: cover;
	}

	.strengths__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 34px;
	}

	.case-study__inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 60px;
	}

	.case-study .section-label {
		grid-column: 1 / -1;
	}

	.case-study__title {
		grid-column: 1;
	}

	.case-study__visual {
		min-height: 420px;
	}

	.case-study__water {
		width: 360px;
	}

	.case-study__package {
		width: 190px;
	}

	.case-study__map {
		width: 260px;
		margin-right: 0;
	}

	.taste__visual {
		width: 760px;
		margin: 0 auto;
	}

	.chefs__visual {
		margin: 0;
	}

	.shops__list {
		grid-template-columns: repeat(5, 1fr);
		width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	body {
		font-size: 16px;
	}

	.section {
		padding: clamp(88px, 10vw, 118px) 0;
	}

	.section__inner {
		width: min(100% - 80px, 860px);
	}

	.section-label {
		font-size: 13px;
	}

	.section-title {
		font-size: 30px;
		line-height: 1.55;
	}

	.site-header__inner {
		height: 56px;
		padding: 0 32px;
	}

	.site-header__logo {
		width: 190px;
	}

	.site-nav__list,
	.site-nav__menu[open] .site-nav__list {
		gap: 18px;
		font-size: 12px;
	}

	.site-nav__list a {
		min-width: 88px;
	}

	.hero {
		padding-top: 56px;
	}

	.hero__slide {
		top: 56px;
	}

	.hero__content {
		padding: clamp(32px, 5vw, 64px) 40px clamp(46px, 7vw, 76px);
	}

	.hero__title {
		width: clamp(240px, 32vw, 320px);
		margin-top: 0;
		margin-bottom: clamp(18px, 3vw, 32px);
	}

	.hero__sub--sp {
		display: block;
		width: clamp(200px, 30vw, 300px);
	}

	.hero__sub--pc {
		display: none;
	}

	.hero__sub {
		margin-bottom: clamp(20px, 3vw, 34px);
	}

	.hero__button {
		min-width: 210px;
		min-height: 56px;
		font-size: 22px;
	}

	.hero__wave {
		bottom: -90px;
		height: 185px;
	}

	.concept {
		padding-top: 72px;
	}

	.concept__body,
	.case-study__inner {
		display: block;
	}

	.concept__text,
	.aquaculture,
	.case-study__text {
		font-size: 16px;
		line-height: 2.05;
	}

	.concept__visual {
		width: 100vw;
		min-height: 0;
		margin: 52px calc(50% - 50vw) 0;
	}

	.concept__image--sp {
		display: block;
	}

	.concept__images--pc {
		display: none;
	}

	.aquaculture {
		max-width: 720px;
		margin: 56px auto 0;
	}

	.aquaculture__title {
		font-size: 24px;
	}

	.strengths {
		padding: 82px 0 96px;
	}

	.strengths__lead {
		width: min(100%, 720px);
		margin: 0 auto 42px;
		font-size: 16px;
		text-align: center;
	}

	.strengths__list {
		grid-template-columns: repeat(2, 310px);
		justify-content: center;
		gap: 34px;
	}

	.strength-card:last-child {
		grid-column: 1 / -1;
	}

	.case-study .section-label,
	.case-study__title {
		text-align: left;
	}

	.case-study__title {
		font-size: 28px;
	}

	.case-study__title span {
		font-size: 40px;
	}

	.case-study__visual {
		width: min(100%, 720px);
		min-height: 520px;
		margin: 40px auto 0;
	}

	.case-study__water {
		width: 520px;
	}

	.case-study__package {
		width: 280px;
	}

	.case-study__text {
		width: min(100%, 720px);
		margin: 48px auto 0;
	}

	.case-study__map {
		width: 450px;
		margin: -35px -120px 14px 18px;
	}

	.taste__title,
	.shops h3,
	.movie h3 {
		font-size: 24px;
	}

	.movie__title {
		gap: 16px;
	}

	.movie__title-mark {
		width: 14px;
	}

	.taste__visual {
		width: min(100%, 760px);
	}

	.taste__copy {
		font-size: 18px;
	}

	.chefs__visual {
		width: min(100%, 860px);
		margin: 0 auto;
	}

	.chefs__panel {
		width: min(72%, 520px);
		padding: 34px 40px 38px;
	}

	.chefs__panel h2 {
		font-size: 22px;
	}

	.chefs__panel p {
		font-size: 14px;
	}

	.shops__note {
		font-size: 14px;
	}

	.shops__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 28px;
		width: min(100%, 680px);
	}

	.shop-card img {
		width: 100%;
		max-width: 290px;
	}

	.movie p {
		font-size: 16px;
	}

	.movie>a img {
		width: min(100%, 720px);
	}

	.contact {
		padding: 82px 0 112px;
	}

	.contact__title {
		font-size: 30px;
	}

	.contact p.contact__lead {
		font-size: 20px;
	}

	.contact p {
		font-size: 16px;
	}

	.contact__message span {
		font-size: 30px;
	}

	.contact__button {
		min-width: 360px;
		min-height: 60px;
		font-size: 30px;
	}

	.site-footer__inner {
		width: min(100% - 80px, 860px);
	}
}

@media (min-width: 1200px) {
	.pc-only {
		display: inline;
	}

	.sp-only {
		display: none;
	}

	.section-label {
		font-size: 16px;
	}

	.site-header__inner {
		height: 95px;
		padding: 20px 5vw 0 5vw;
	}

	.site-header__logo {
		width: 290px;
	}

	.site-nav__list,
	.site-nav__menu[open] .site-nav__list {
		gap: 24px;
		font-size: 15px;
		line-height: 1.2;
	}

	.site-nav__menu[open] .site-nav__list a[href="#contact"] {
		min-width: 140px;
		margin-top: 0;
		padding: 5px 18px 6px;
		text-align: center;
	}

	.hero {
		padding-top: 95px;
	}

	.hero__slide {
		top: 95px;
	}

	.hero__content {
		padding: 150px 28px 30px;
	}

	.hero__title {
		margin-top: -60px;
		width: 400px;
		margin-bottom: 120px;
	}

	.hero__sub--pc {
		top: 90px;
		right: 12%;
		width: 90px;
	}

	.hero__button {
		min-width: 260px;
		min-height: 68px;
		font-size: 24px;
	}

	.hero__dots {
		display: flex;
		gap: 14px;
		margin-top: 42px;
		margin-bottom: 40px;
	}

	.hero__dot {
		width: 10px;
		aspect-ratio: 1;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #fff;
		cursor: pointer;
	}

	.hero__dot.is-active {
		background: var(--color-orange);
	}

	.hero__wave {
		bottom: -175px;
		height: 300px;
	}

	.concept .section-title {
		margin-bottom: 0;
		font-size: 30px;
		line-height: 1.35;
	}

	.concept__body {
		position: relative;
		display: block;
		min-height: 760px;
	}

	.concept__text {
		position: relative;
		z-index: 2;
		width: 800px;
		margin: 96px auto 0;
		font-size: 16px;
		font-weight: 200;
		line-height: 2.05;
		text-align: center;
	}

	.concept__text p+p {
		margin-top: 48px;
	}

	.concept__visual {
		position: absolute;
		inset: 0;
		min-height: 0;
	}

	.concept__image--sp {
		display: none;
	}

	.concept__fish {
		top: 50px;
		right: calc((100vw - 100%) / -2 - 220px);
		width: 600px;
	}

	.aquaculture {
		position: relative;
		width: 100vw;
		min-height: 760px;
		margin: -100px 0 0 calc((100vw - 1160px) / -2);
		padding: 50px 180px 80px 50vw;
		font-size: 16px;
		font-weight: 200;
		line-height: 2;
	}

	.aquaculture::before,
	.aquaculture::after {
		content: "";
		position: absolute;
		height: 1px;
		background: #707070;
	}

	.aquaculture::before {
		top: 92px;
		left: 50vw;
		width: 530px;
		display: none;
	}

	.aquaculture::after {
		bottom: 95px;
		left: 50vw;
		width: 530px;
	}

	.aquaculture__visual {
		position: absolute;
		inset: 0;
		display: block;
		pointer-events: none;
	}

	.aquaculture__farm {
		position: absolute;
		top: 100px;
		left: -20px;
		height: 500px;
	}

	.aquaculture__feed {
		position: absolute;
		right: calc((100vw - 1060px) / 2 - 320px);
		bottom: -25px;
		width: 200px;
		aspect-ratio: 1;
		border-radius: 50%;
		object-fit: cover;
	}

	.aquaculture__title {
		position: relative;
		z-index: 2;
		display: inline-flex;
		align-items: center;
		gap: 28px;
		margin-bottom: 68px;
		padding-right: 34px;
		font-size: 30px;
		line-height: 1.35;
		background: #fff;
		white-space: nowrap;
	}

	.aquaculture__title::after {
		content: "";
		display: block;
		width: 360px;
		height: 1px;
		background: #707070;
	}

	.aquaculture p {
		position: relative;
		z-index: 1;
		width: 530px;
	}

	.aquaculture p+p {
		margin-top: 32px;
	}

	.strengths {
		min-height: 800px;
		margin-top: 70px;
		padding: 92px 0 120px;
	}

	.strengths .section__inner {
		width: min(100% - 90px, 1110px);
	}

	.section-title {
		font-size: 30px;
	}

	.strengths__lead {
		max-width: 920px;
		margin: 42px auto 58px;
		font-size: 16px;
		font-weight: 400;
		line-height: 2;
		text-align: center;
	}

	.strengths__list {
		grid-template-columns: repeat(3, 340px);
		justify-content: space-between;
		gap: 35px;
	}

	.strength-card {
		width: 340px;
		height: 340px;
		padding: 44px 30px 54px;
	}

	.strength-card__num {
		font-size: 30px;
	}

	.strength-card h3 {
		margin: 8px 0 13px;
		font-size: 34px;
	}

	.strength-card h4 {
		width: 100%;
		margin-bottom: 13px;
		font-size: 20px;
		line-height: 1.35;
		white-space: nowrap;
	}

	.strength-card p:last-child {
		font-size: 13px;
		line-height: 1.75;
	}

	.case-study {
		min-height: 1120px;
		padding: 0 0 90px;
		overflow: hidden;
	}

	.case-study__inner {
		position: relative;
		display: block;
		width: min(100% - 80px, 1120px);
		min-height: 940px;
	}

	.case-study .section-label {
		position: absolute;
		top: 130px;
		right: 70px;
		z-index: 3;
		margin: 0;
		font-size: 16px;
		line-height: 1;
		text-align: left;
		writing-mode: vertical-rl;
	}

	.case-study .section-label::after {
		position: absolute;
		top: -150px;
		right: 22px;
		width: 1px;
		bottom: 0;
		height: auto;
		margin: 0;
	}

	.case-study__title {
		position: absolute;
		z-index: 2;
		top: 130px;
		right: 140px;
		margin: 0;
		font-size: 24px;
		line-height: 1.55;
		letter-spacing: 0.08em;
		writing-mode: vertical-rl;
	}

	.case-study__title br:nth-of-type(2) {
		display: none;
	}

	.case-study__title span {
		font-size: 36px;
	}

	.case-study__visual {
		position: absolute;
		top: 180px;
		left: 0;
		width: 560px;
		min-height: 620px;
		margin: 0;
	}

	.case-study__water {
		top: 380px;
		left: -90px;
		width: 620px;
	}

	.case-study__package {
		top: 0;
		left: 70px;
		right: auto;
		width: 280px;
	}

	.case-study__text {
		position: absolute;
		top: 130px;
		right: 245px;
		z-index: 2;
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-start;
		gap: 22px;
		max-width: none;
		margin: 0;
		font-size: 16px;
		font-weight: 400;
		line-height: 2;
		writing-mode: horizontal-tb;
	}

	.case-study__text p {
		font-size: 16px;
		font-weight: 400;
		line-height: 1.8;
		white-space: nowrap;
		writing-mode: vertical-rl;
		text-orientation: mixed;
		margin-left: 10px;
	}

	.case-study__text p+p {
		margin-top: 0;
	}

	.case-study__map {
		position: absolute;
		z-index: 1;
		top: 480px;
		right: calc((100vw - 100%) / -2 - 20px);
		float: none;
		width: 560px;
		margin: 0;
		writing-mode: horizontal-tb;
		max-width: none;
	}

	.taste__title {
		font-size: 35px;
	}

	.taste__visual {
		width: 800px;
		margin: 0 auto;
	}

	.taste__visual picture {
		display: block;
	}

	.taste__image {
		width: 100%;
	}

	.taste__copy {
		width: auto;
		min-width: 62px;
		padding: 18px 12px;
		font-size: 26px;
		font-weight: 400;
		margin-left: 10px;
	}

	.chefs {
		padding-top: 150px;
	}

	.chefs .section__inner {
		width: 100%;
	}

	.chefs__visual {
		position: relative;
		width: calc(100vw - ((100vw - 950px) / 2));
		margin: 0 0 0 auto;
		padding-top: 0;
	}

	.chefs__visual picture {
		display: block;
	}

	.chefs__visual picture>img {
		width: 100%;
	}

	.chefs__panel {
		top: 30px;
		left: calc((100vw - 750px) / -2 + 110px);
		width: 480px;
		padding: 20px 30px 30px;
		background: rgba(37, 37, 37, 0.9);
	}

	.chefs__panel h2 {
		margin-bottom: 36px;
		font-size: 29px;
		line-height: 1.5;
	}

	.chefs__panel p {
		font-size: 16px;
		line-height: 2;
	}

	.shops {
		display: grid;
		grid-template-columns: 220px 1fr;
		column-gap: 10px;
		row-gap: 0;
		align-items: start;
		width: min(100% - 0px, 1150px);
		margin: 90px auto 0;
		text-align: left;
	}

	.shops h3 {
		grid-column: 1;
		grid-row: 1;
		margin: 20px 0 24px;
		font-size: 23px;
		line-height: 1.5;
	}

	.shops__note {
		grid-column: 1;
		grid-row: 2;
		margin: 0;
		font-size: 16px;
		line-height: 1.7;
	}

	.shops__list {
		grid-column: 2;
		grid-row: 1 / span 2;
		display: grid;
		grid-template-columns: repeat(5, 170px);
		gap: 20px;
		width: auto;
		margin: 0;
	}

	.shop-card img {
		width: 170px;
		margin: 0;
		border-radius: 15px;
	}

	.shop-card p {
		margin-top: 10px;
		font-size: 12px;
		line-height: 1.45;
	}

	.movie {
		margin-top: 150px;
	}

	.movie h3 {
		margin-bottom: 28px;
		font-size: 30px;
		line-height: 1.5;
	}

	.movie__title {
		gap: 34px;
	}

	.movie__title-mark {
		width: 20px;
		margin-top: 20px;
	}

	.movie p {
		margin-bottom: 36px;
		font-size: 16px;
		line-height: 1.7;
	}

	.movie>a img {
		width: 800px;
	}

	.contact__inner {
		width: 100%;
	}

	.contact__content {
		text-align: center;
	}

	.contact__title {
		font-size: 30px;
	}

	.contact p.contact__lead {
		font-size: 20px;
		margin-bottom: 100px;
	}

	.contact p {
		font-family: var(--font-mincho);
		font-size: 16px;
		font-weight: 400;
	}

	.contact p.contact__message {
		font-size: 16px;
		font-weight: 400;
		margin-bottom: 80px;
	}

	.contact__message span {
		display: block;
		font-size: 30px;
		font-weight: 700;
	}

	.contact p.contact__person {
		font-size: 20px;
		margin-bottom: -10px;
	}

	.contact__button {
		font-size: 30px;
	}

	.contact {
		padding: 156px 0 190px;
		margin-bottom: 300px;
	}

	.site-footer {
		min-height: 310px;
		padding: 58px 0 36px;
	}

	.site-footer::before {
		top: -130px;
		width: 100%;
		height: 180px;
		background-size: 170% auto;
	}

	.site-footer__inner {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: start;
		width: min(100% - 100px, 1200px);
		min-height: 220px;
		text-align: left;
		margin-top: -20px;
	}

	.site-footer__logo {
		justify-content: flex-start;
		gap: 24px;
	}

	.site-footer__jr {
		width: 70px;
	}

	.site-footer__logo .site-footer__company {
		font-size: 30px;
		margin-top: -30px;
	}

	.site-footer__links {
		display: block;
		justify-content: flex-start;
		grid-column: 1;
		gap: 40px;
		margin-top: -70px;
		padding-left: 90px;
		font-size: 15px;
		line-height: 1.7;
	}

	.site-footer small {
		align-self: end;
		grid-column: 2;
		margin-top: 0;
		font-size: 16px;
		text-align: right;
	}

	.page-top {
		--page-top-stop-offset: 0px;
		width: 100px;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.aquaculture {
		margin-left: calc((100vw - 1160px) / -2 - 35px);
		padding-right: 140px;
		padding-left: calc(50vw - 60px);
	}

	.aquaculture__farm {
		left: -55px;
	}

	.aquaculture__feed {
		right: 24px;
		bottom: -18px;
		width: 170px;
		z-index: 2;
	}

	.aquaculture::after {
		left: calc(50vw - 60px);
		width: 560px;
	}

	.aquaculture p {
		width: 560px;
	}
}

@media (min-width: 1400px) {
	.strengths {
		min-height: 880px;
		padding: 108px 0 135px;
	}

	.strengths .section__inner {
		width: min(100% - 120px, 1320px);
	}

	.strengths__lead {
		max-width: 1040px;
		margin: 56px auto 66px;
		font-size: 16px;
	}

	.strengths__list {
		grid-template-columns: repeat(3, 390px);
		gap: 55px;
	}

	.strength-card {
		width: 390px;
		height: 390px;
		padding: 58px 40px 68px;
	}

	.strength-card__num {
		font-size: 34px;
	}

	.strength-card h3 {
		margin: 10px 0 15px;
		font-size: 39px;
	}

	.strength-card h4 {
		margin-bottom: 15px;
		font-size: 24px;
	}

	.strength-card p:last-child {
		font-size: 13px;
		line-height: 1.75;
	}

	.case-study {
		min-height: 1280px;
		padding-bottom: 110px;
	}

	.case-study__inner {
		width: min(100% - 80px, 1320px);
		min-height: 1060px;
	}

	.case-study .section-label {
		top: 160px;
		right: 110px;
		font-size: 16px;
	}

	.case-study .section-label::after {
		top: -190px;
		right: 26px;
	}

	.case-study__title {
		top: 160px;
		right: 200px;
		font-size: 28px;
	}

	.case-study__title span {
		font-size: 42px;
	}

	.case-study__visual {
		top: 190px;
		width: 680px;
		min-height: 720px;
	}

	.case-study__water {
		top: 430px;
		left: -150px;
		width: 760px;
	}

	.case-study__package {
		left: 90px;
		width: 340px;
	}

	.case-study__text {
		top: 160px;
		right: 360px;
		gap: 28px;
		font-size: 16px;
	}

	.case-study__text p {
		font-size: 16px;
		margin-left: 12px;
	}

	.case-study__map {
		top: 570px;
		right: calc((100vw - 100%) / -2 - 50px);
		width: 680px;
	}

	.concept__fish {
		top: 170px;
		right: calc((100vw - 100%) / -2 - 220px);
		width: 600px;
	}

	.aquaculture__farm {
		height: 600px;
		top: 60px;
	}

	.aquaculture__feed {
		right: calc((100vw - 800px) / 2 - 320px);
	}

	.site-footer__inner {
		width: min(100% - 100px, 1400px);
	}

	.taste__visual {
		width: 1100px;
	}

	.shops {
		grid-template-columns: 220px 1fr;
		column-gap: 30px;
		width: min(100% - 120px, 1320px);
	}

	.shops__list {
		grid-template-columns: repeat(5, 200px);
		gap: 22px;
	}

	.shop-card img {
		width: 200px;
	}

	.shop-card p {
		font-size: 14px;
	}

	.hero__title {
		width: 450px;
		margin-bottom: 120px;
	}
}

@media (min-width: 1850px) {
	.site-header__logo {
		width: 300px;
	}

	.hero__content {
		padding: 180px 28px 30px;
	}

	.hero__title {
		width: 500px;
		margin-bottom: 180px;
	}

	.hero__sub--pc {
		top: 180px;
		right: 20%;
		width: 100px;
	}

	.concept .section-title {
		margin-bottom: 0;
		font-size: 30px;
		line-height: 1.35;
	}

	.concept__body {
		position: relative;
		display: block;
		min-height: 760px;
	}

	.concept__text {
		position: relative;
		z-index: 2;
		width: 800px;
		margin: 96px auto 0;
		font-size: 18px;
		font-weight: 200;
		line-height: 2.05;
		text-align: center;
	}

	.concept__text p+p {
		margin-top: 48px;
	}

	.concept__visual {
		position: absolute;
		inset: 0;
		min-height: 0;
	}

	.concept__image--sp {
		display: none;
	}

	.concept__fish {
		top: -100px;
		right: calc((100vw - 100%) / -2 - 420px);
		width: 1000px;
	}

	.aquaculture {
		position: relative;
		width: 100vw;
		min-height: 760px;
		margin: -100px 0 0 calc((100vw - 1160px) / -2);
		padding: 50px 180px 80px 50vw;
		font-size: 16px;
		font-weight: 200;
		line-height: 2;
	}

	.aquaculture::before,
	.aquaculture::after {
		content: "";
		position: absolute;
		height: 1px;
		background: #707070;
	}

	.aquaculture::before {
		top: 92px;
		left: 50vw;
		width: 820px;
	}

	.aquaculture::after {
		bottom: 95px;
		left: 50vw;
		width: 640px;
	}

	.aquaculture__visual {
		position: absolute;
		inset: 0;
		display: block;
		pointer-events: none;
	}

	.aquaculture__farm {
		position: absolute;
		top: 0;
		left: 0;
		height: 700px;
	}

	.aquaculture__feed {
		position: absolute;
		right: calc((100vw - 1060px) / 2 - 320px);
		bottom: -25px;
		width: 200px;
		aspect-ratio: 1;
		border-radius: 50%;
		object-fit: cover;
	}

	.aquaculture__title {
		position: relative;
		z-index: 2;
		display: inline-flex;
		align-items: center;
		gap: 28px;
		margin-bottom: 68px;
		padding-right: 34px;
		font-size: 30px;
		line-height: 1.35;
		background: #fff;
	}

	.aquaculture__title::after {
		width: 450px;
	}

	.aquaculture p {
		position: relative;
		z-index: 1;
		width: 780px;

	}

	.aquaculture p+p {
		margin-top: 32px;
	}

	.strengths {
		min-height: 960px;
		margin-top: 100px;
		padding: 118px 0 150px;
	}

	.strengths .section__inner {
		width: min(100% - 180px, 1600px);
	}

	.section-title {
		font-size: 30px;
	}

	.strengths__lead {
		max-width: 1120px;
		margin: 64px auto 72px;
		font-size: 19px;
		font-weight: 400;
		line-height: 2;
		text-align: center;
	}

	.strengths__list {
		grid-template-columns: repeat(3, 470px);
		justify-content: space-between;
		gap: 70px;
	}

	.strength-card {
		width: 470px;
		height: 470px;
		padding: 72px 58px 86px;
	}

	.strength-card__num {
		font-size: 40px;
	}

	.strength-card h3 {
		margin: 12px 0 18px;
		font-size: 46px;
	}

	.strength-card h4 {
		width: 100%;
		margin-bottom: 18px;
		font-size: 30px;
		line-height: 1.35;
		white-space: nowrap;
	}

	.strength-card p:last-child {
		font-size: 15px;
		line-height: 1.8;
	}

	.case-study {
		min-height: 1760px;
		padding: 0 0 120px;
		overflow: hidden;
	}

	.case-study__inner {
		position: relative;
		display: block;
		width: min(100% - 120px, 1700px);
		min-height: 1240px;
	}

	.case-study .section-label {
		position: absolute;
		top: 210px;
		right: 210px;
		z-index: 3;
		margin: 0;
		font-size: 16px;
		line-height: 1;
		text-align: left;
		writing-mode: vertical-rl;
	}

	.case-study .section-label::after {
		position: absolute;
		top: -250px;
		right: 30px;
		width: 1px;
		bottom: 0;
		height: auto;
		margin: 0;
	}

	.case-study__title {
		position: absolute;
		z-index: 2;
		top: 210px;
		right: 300px;
		margin: 0;
		font-size: 30px;
		line-height: 1.55;
		letter-spacing: 0.08em;
		writing-mode: vertical-rl;
	}

	.case-study__title br:nth-of-type(2) {
		display: none;
	}

	.case-study__title span {
		font-size: 48px;
	}

	.case-study__visual {
		position: absolute;
		top: 210px;
		left: 0;
		width: 880px;
		min-height: 860px;
		margin: 0;
	}

	.case-study__water {
		top: 570px;
		left: -190px;
		width: 920px;
	}

	.case-study__package {
		top: 0;
		left: 120px;
		width: 420px;
	}

	.case-study__text {
		position: absolute;
		top: 210px;
		right: 465px;
		z-index: 2;
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-start;
		gap: 34px;
		font-size: 21px;
		font-weight: 400;
		line-height: 2;
		writing-mode: horizontal-tb;
		margin-right: 30px;
	}

	.case-study__text p {
		font-size: 18px;
		font-weight: 400;
		line-height: 1.8;
		white-space: nowrap;
		writing-mode: vertical-rl;
		text-orientation: mixed;
		margin-left: 15px;
	}

	.case-study__text p+p {
		margin-top: 0;
	}

	.case-study__map {
		position: absolute;
		z-index: 1;
		top: 760px;
		right: calc((100vw - 100%) / -2 - 80px);
		float: none;
		width: 920px;
		margin: 0;
		writing-mode: horizontal-tb;
		max-width: none;
	}

	.taste__title {
		font-size: 35px;
	}

	.taste__visual {
		width: 1200px;
		margin: 0 auto;
	}

	.taste__visual picture {
		display: block;
	}

	.taste__image {
		width: 100%;
	}

	.taste__copy {
		width: auto;
		min-width: 62px;
		padding: 18px 12px;
		font-size: 26px;
		font-weight: 400;
	}

	.chefs {
		padding-top: 150px;
	}

	.chefs .section__inner {
		width: 100%;
	}

	.chefs__visual {
		position: relative;
		width: calc(100vw - ((100vw - 950px) / 2));
		margin: 0 0 0 auto;
		padding-top: 0;
	}

	.chefs__visual picture {
		display: block;
	}

	.chefs__visual picture>img {
		width: 100%;
	}

	.chefs__panel {
		top: 80px;
		left: calc((100vw - 1060px) / -2 + 110px);
		width: 700px;
		padding: 48px 100px 56px;
		background: rgba(37, 37, 37, 0.9);
	}

	.chefs__panel h2 {
		margin-bottom: 36px;
		font-size: 29px;
		line-height: 1.5;
	}

	.chefs__panel p {
		font-size: 18px;
		line-height: 2;
	}

	.shops {
		display: grid;
		grid-template-columns: 220px 1fr;
		column-gap: 48px;
		row-gap: 0;
		align-items: start;
		width: min(100% - 220px, 1500px);
		margin: 90px auto 0;
		text-align: left;
	}

	.shops h3 {
		grid-column: 1;
		grid-row: 1;
		margin: 52px 0 24px;
		font-size: 23px;
		line-height: 1.5;
	}

	.shops__note {
		grid-column: 1;
		grid-row: 2;
		margin: 0;
		font-size: 16px;
		line-height: 1.7;
	}

	.shops__list {
		grid-column: 2;
		grid-row: 1 / span 2;
		display: grid;
		grid-template-columns: repeat(5, 230px);
		gap: 24px;
		width: auto;
		margin: 0;
	}

	.shop-card img {
		width: 230px;
		margin: 0;
		border-radius: 15px;
	}

	.shop-card p {
		margin-top: 10px;
		font-size: 16px;
		line-height: 1.45;
	}

	.movie {
		margin-top: 150px;
	}

	.movie h3 {
		margin-bottom: 28px;
		font-size: 30px;
		line-height: 1.5;
	}

	.movie__title {
		gap: 44px;
	}

	.movie__title-mark {
		width: 20px;
		margin-top: 20px;
	}

	.movie p {
		margin-bottom: 36px;
		font-size: 20px;
		line-height: 1.7;
	}

	.movie>a img {
		width: 800px;
	}

	.contact__inner {
		width: 100%;
	}

	.contact__content {
		text-align: center;
	}

	.contact__title {
		font-size: 30px;
	}

	.contact p.contact__lead {
		font-size: 20px;
		margin-bottom: 100px;
	}

	.contact p {
		font-family: var(--font-mincho);
		font-size: 16px;
		font-weight: 400;
	}

	.contact p.contact__message {
		font-size: 21px;
		font-weight: 400;
		margin-bottom: 80px;
	}

	.contact__message span {
		display: block;
		font-size: 30px;
		font-weight: 700;
	}

	.contact p.contact__person {
		font-size: 20px;
		margin-bottom: -10px;
	}

	.contact__button {
		font-size: 30px;
	}

	.contact {
		padding: 156px 0 190px;
		margin-bottom: 300px;
	}

	.site-footer {
		min-height: 310px;
		padding: 58px 0 36px;
	}

	.site-footer::before {
		top: -130px;
		width: 100%;
		height: 180px;
		background-size: 170% auto;
	}

	.site-footer__inner {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: start;
		width: min(100% - 100px, 1800px);
		min-height: 220px;
		text-align: left;
		margin-top: -20px;
	}

	.site-footer__logo {
		justify-content: flex-start;
		gap: 24px;
	}

	.site-footer__jr {
		width: 70px;
	}

	.site-footer__logo .site-footer__company {
		font-size: 32px;
		margin-top: -30px;
	}

	.site-footer__links {
		display: block;
		justify-content: flex-start;
		grid-column: 1;
		gap: 40px;
		margin-top: -70px;
		padding-left: 90px;
		font-size: 16px;
		line-height: 1.7;
	}

	.site-footer small {
		align-self: end;
		grid-column: 2;
		margin-top: 0;
		font-size: 16px;
		text-align: right;
	}

	.page-top {
		width: 100px;
	}
}
@media (min-width: 2000px) {
	.section-label {
		font-size: clamp(18px, 0.973vw, 22px);
	}

	.site-header__inner {
		height: clamp(95px, 5.135vw, 116px);
		padding-top: clamp(20px, 1.081vw, 24px);
	}

	.site-header__logo {
		width: clamp(300px, 16.216vw, 366px);
	}

	.site-nav__list,
	.site-nav__menu[open] .site-nav__list {
		gap: clamp(24px, 1.297vw, 29px);
		font-size: clamp(15px, 0.811vw, 18px);
	}

	.site-nav__menu[open] .site-nav__list a[href="#contact"] {
		min-width: clamp(140px, 7.568vw, 171px);
		padding: clamp(5px, 0.27vw, 6px) clamp(18px, 0.973vw, 22px) clamp(6px, 0.324vw, 7px);
	}

	.hero {
		padding-top: clamp(95px, 5.135vw, 116px);
	}

	.hero__slide {
		top: clamp(95px, 5.135vw, 116px);
	}

	.hero__content {
		padding-top: clamp(250px, 13.514vw, 305px);
		padding-bottom: clamp(30px, 1.622vw, 37px);
	}

	.hero__title {
		width: clamp(500px, 27.027vw, 610px);
		margin-bottom: clamp(220px, 11.892vw, 268px);
	}

	.hero__sub--pc {
		top: clamp(150px, 8.108vw, 183px);
		width: clamp(100px, 5.405vw, 122px);
	}

	.hero__button {
		min-width: clamp(260px, 14.054vw, 317px);
		min-height: clamp(68px, 3.676vw, 83px);
		font-size: clamp(24px, 1.297vw, 29px);
	}

	.hero__dots {
		gap: clamp(14px, 0.757vw, 17px);
		margin-top: clamp(42px, 2.27vw, 51px);
		margin-bottom: clamp(40px, 2.162vw, 49px);
	}

	.hero__dot {
		width: clamp(10px, 0.541vw, 12px);
	}

	.hero__wave {
		bottom: clamp(-226px, -10vw, -185px);
		height: clamp(300px, 16.216vw, 366px);
	}

	.concept .section-title,
	.section-title {
		font-size: clamp(30px, 1.622vw, 37px);
	}

	.concept__body {
		min-height: clamp(760px, 41.081vw, 927px);
	}

	.concept__text {
		width: clamp(800px, 43.243vw, 976px);
		margin-top: clamp(96px, 5.189vw, 117px);
		font-size: clamp(18px, 0.973vw, 22px);
		font-weight: 200;
	}

	.concept__text p+p {
		margin-top: clamp(48px, 2.595vw, 59px);
	}

	.concept__fish {
		top: clamp(-122px, -5.405vw, -100px);
		right: calc((100vw - 100%) / -2 - clamp(420px, 22.703vw, 512px));
		width: clamp(1000px, 54.054vw, 1220px);
	}

	.aquaculture {
		min-height: clamp(760px, 41.081vw, 927px);
		margin-top: clamp(-122px, -5.405vw, -100px);
		padding-top: clamp(50px, 2.703vw, 61px);
		padding-right: clamp(180px, 9.73vw, 220px);
		padding-bottom: clamp(80px, 4.324vw, 98px);
		font-size: clamp(16px, 0.865vw, 20px);
		font-weight: 200;
	}

	.aquaculture::before {
		top: clamp(92px, 4.973vw, 112px);
		width: clamp(820px, 44.324vw, 1000px);
	}

	.aquaculture::after {
		bottom: clamp(95px, 5.135vw, 116px);
		width: clamp(640px, 34.595vw, 781px);
	}

	.aquaculture__farm {
		height: clamp(700px, 37.838vw, 854px);
	}

	.aquaculture__feed {
		right: calc((100vw - 1060px) / 2 - clamp(455px, 24.595vw, 555px));
		bottom: clamp(-31px, -1.351vw, -25px);
		width: clamp(200px, 10.811vw, 244px);
	}

	.aquaculture__title {
		gap: clamp(28px, 1.514vw, 34px);
		margin-bottom: clamp(68px, 3.676vw, 83px);
		padding-right: clamp(34px, 1.838vw, 41px);
		font-size: clamp(30px, 1.622vw, 37px);
	}

	.aquaculture__title::after {
		width: clamp(450px, 24.324vw, 549px);
	}

	.aquaculture p {
		width: clamp(780px, 42.162vw, 952px);
	}

	.aquaculture p+p {
		margin-top: clamp(32px, 1.73vw, 39px);
	}

	.strengths {
		min-height: clamp(960px, 51.892vw, 1171px);
		margin-top: clamp(100px, 5.405vw, 122px);
		padding-top: clamp(118px, 6.378vw, 144px);
		padding-bottom: clamp(150px, 8.108vw, 183px);
	}

	.strengths .section__inner {
		width: min(100% - clamp(180px, 9.73vw, 220px), clamp(1600px, 86.486vw, 1952px));
	}

	.strengths__lead {
		max-width: clamp(1120px, 60.541vw, 1366px);
		margin-top: clamp(64px, 3.459vw, 78px);
		margin-bottom: clamp(72px, 3.892vw, 88px);
		font-size: clamp(19px, 1.027vw, 23px);
		font-weight: 400;
	}

	.strengths__list {
		grid-template-columns: repeat(3, clamp(470px, 25.405vw, 573px));
		gap: clamp(70px, 3.784vw, 85px);
	}

	.strength-card {
		width: clamp(470px, 25.405vw, 573px);
		height: clamp(470px, 25.405vw, 573px);
		padding: clamp(72px, 3.892vw, 88px) clamp(58px, 3.135vw, 71px) clamp(86px, 4.649vw, 105px);
	}

	.strength-card__num {
		font-size: clamp(40px, 2.162vw, 49px);
	}

	.strength-card h3 {
		margin-top: clamp(12px, 0.649vw, 15px);
		margin-bottom: clamp(18px, 0.973vw, 22px);
		font-size: clamp(46px, 2.486vw, 56px);
	}

	.strength-card h4 {
		margin-bottom: clamp(18px, 0.973vw, 22px);
		font-size: clamp(30px, 1.622vw, 37px);
	}

	.strength-card p:last-child {
		font-size: clamp(15px, 0.811vw, 18px);
	}

	.case-study {
		min-height: clamp(1760px, 95.135vw, 2147px);
		padding-bottom: clamp(120px, 6.486vw, 146px);
	}

	.case-study__inner {
		width: min(100% - clamp(120px, 6.486vw, 146px), clamp(1700px, 91.892vw, 2074px));
		min-height: clamp(1240px, 67.027vw, 1513px);
	}

	.case-study .section-label {
		top: clamp(210px, 11.351vw, 256px);
		right: clamp(210px, 11.351vw, 256px);
		font-size: clamp(18px, 0.973vw, 22px);
	}

	.case-study .section-label::after {
		top: clamp(-305px, -13.514vw, -250px);
		right: clamp(30px, 1.622vw, 37px);
	}

	.case-study__title {
		top: clamp(210px, 11.351vw, 256px);
		right: clamp(300px, 16.216vw, 366px);
		font-size: clamp(32px, 1.73vw, 39px);
	}

	.case-study__title span {
		font-size: clamp(48px, 2.595vw, 59px);
	}

	.case-study__visual {
		top: clamp(210px, 11.351vw, 256px);
		width: clamp(880px, 47.568vw, 1074px);
		min-height: clamp(860px, 46.486vw, 1049px);
	}

	.case-study__water {
		top: clamp(570px, 30.811vw, 695px);
		left: clamp(-232px, -10.27vw, -190px);
		width: clamp(920px, 49.73vw, 1122px);
	}

	.case-study__package {
		left: clamp(120px, 6.486vw, 146px);
		width: clamp(420px, 22.703vw, 512px);
	}

	.case-study__text {
		top: clamp(210px, 11.351vw, 256px);
		right: clamp(465px, 25.135vw, 567px);
		gap: clamp(34px, 1.838vw, 41px);
		margin-right: clamp(30px, 1.622vw, 37px);
		font-size: clamp(18px, 0.973vw, 22px);
		font-weight: 400;
	}

	.case-study__text p {
		margin-left: clamp(15px, 0.811vw, 18px);
		font-size: clamp(18px, 0.973vw, 22px);
		font-weight: 400;
	}

	.case-study__map {
		top: clamp(760px, 41.081vw, 927px);
		right: calc((100vw - 100%) / -2 - clamp(80px, 4.324vw, 98px));
		width: clamp(920px, 49.73vw, 1122px);
	}

	.taste__title {
		font-size: clamp(35px, 1.892vw, 43px);
	}

	.taste__visual {
		width: clamp(1200px, 64.865vw, 1464px);
	}

	.taste__copy {
		min-width: clamp(62px, 3.351vw, 76px);
		padding: clamp(18px, 0.973vw, 22px) clamp(12px, 0.649vw, 15px);
		font-size: clamp(28px, 1.514vw, 34px);
	}

	.chefs {
		padding-top: clamp(150px, 8.108vw, 183px);
	}

	.chefs__visual {
		width: calc(100vw - ((100vw - clamp(950px, 51.351vw, 1159px)) / 2));
	}

	.chefs__panel {
		top: 80px;
		left: calc((100vw - clamp(1060px, 57.297vw, 1293px)) / -2 + clamp(110px, 5.946vw, 134px));
		width: clamp(700px, 37.838vw, 854px);
		padding: clamp(48px, 2.595vw, 59px) clamp(100px, 5.405vw, 122px) clamp(56px, 3.027vw, 68px);
	}

	.chefs__panel h2 {
		margin-bottom: clamp(36px, 1.946vw, 44px);
		font-size: clamp(29px, 1.568vw, 35px);
	}

	.chefs__panel p {
		font-size: clamp(18px, 0.973vw, 22px);
	}

	.shops {
		grid-template-columns: clamp(220px, 11.892vw, 268px) 1fr;
		column-gap: clamp(48px, 2.595vw, 59px);
		width: min(100% - clamp(220px, 11.892vw, 268px), clamp(1500px, 81.081vw, 1830px));
		margin-top: clamp(90px, 4.865vw, 110px);
	}

	.shops h3 {
		margin-top: clamp(52px, 2.811vw, 63px);
		margin-bottom: clamp(24px, 1.297vw, 29px);
		font-size: clamp(23px, 1.243vw, 28px);
	}

	.shops__note,
	.shop-card p {
		font-size: clamp(16px, 0.865vw, 20px);
	}

	.shops__list {
		grid-template-columns: repeat(5, clamp(230px, 12.432vw, 281px));
		gap: clamp(24px, 1.297vw, 29px);
	}

	.shop-card img {
		width: clamp(230px, 12.432vw, 281px);
		border-radius: clamp(15px, 0.811vw, 18px);
	}

	.movie {
		margin-top: clamp(150px, 8.108vw, 183px);
	}

	.movie h3 {
		margin-bottom: clamp(28px, 1.514vw, 34px);
		font-size: clamp(30px, 1.622vw, 37px);
	}

	.movie__title {
		gap: clamp(44px, 2.378vw, 54px);
	}

	.movie__title-mark {
		width: clamp(20px, 1.081vw, 24px);
		margin-top: clamp(20px, 1.081vw, 24px);
	}

	.movie p {
		margin-bottom: clamp(36px, 1.946vw, 44px);
		font-size: clamp(20px, 1.081vw, 24px);
	}

	.movie>a img {
		width: clamp(800px, 43.243vw, 976px);
	}

	.contact {
		padding-top: clamp(156px, 8.432vw, 190px);
		padding-bottom: clamp(190px, 10.27vw, 232px);
		margin-bottom: clamp(300px, 16.216vw, 366px);
	}

	.contact__title {
		font-size: clamp(30px, 1.622vw, 37px);
	}

	.contact p.contact__lead {
		margin-bottom: clamp(100px, 5.405vw, 122px);
		font-size: clamp(20px, 1.081vw, 24px);
	}

	.contact p {
		font-size: clamp(18px, 0.973vw, 22px);
	}

	.contact p.contact__message {
		margin-bottom: clamp(80px, 4.324vw, 98px);
	}

	.contact__message span {
		font-size: clamp(30px, 1.622vw, 37px);
	}

	.contact p.contact__person {
		margin-bottom: clamp(-12px, -0.541vw, -10px);
		font-size: clamp(20px, 1.081vw, 24px);
	}

	.contact__button {
		font-size: clamp(30px, 1.622vw, 37px);
	}

	.site-footer {
		min-height: clamp(310px, 16.757vw, 378px);
		padding-top: clamp(58px, 3.135vw, 71px);
		padding-bottom: clamp(36px, 1.946vw, 44px);
	}

	.site-footer::before {
		top: clamp(-159px, -7.027vw, -130px);
		height: clamp(180px, 9.73vw, 220px);
	}

	.site-footer__inner {
		width: min(100% - clamp(100px, 16.216vw, 366px), clamp(1800px, 97.297vw, 2196px));
		min-height: clamp(220px, 11.892vw, 268px);
		margin-top: clamp(-24px, -1.081vw, -20px);
	}

	.site-footer__logo {
		gap: clamp(24px, 1.297vw, 29px);
	}

	.site-footer__jr {
		width: clamp(90px, 4.865vw, 110px);
	}

	.site-footer__logo .site-footer__company {
		margin-top: clamp(-37px, -1.622vw, -30px);
		font-size: clamp(36px, 1.946vw, 44px);
	}

	.site-footer__links {
		margin-top: clamp(-85px, -3.784vw, -70px);
		padding-left: clamp(90px, 6.054vw, 137px);
		font-size: clamp(16px, 0.865vw, 20px);
	}

	.site-footer small {
		font-size: clamp(18px, 0.973vw, 22px);
	}

	.page-top {
		width: clamp(100px, 5.405vw, 122px);
	}
}
