@charset "UTF-8";

/* ===============================
	変数定義
=============================== */
:root {
	--bg-color: #f4f2f0;
	--pink: #FDE6E6;
	--em-pink: #FFD3D3;
	--em-text: #C83C2D;
	--margin-large: 6rem;
	--margin-medium: 4rem;
	--margin-small: 2rem;

	/* フォント */
	--arial: "arial", sans-serif;
	--gothic: "Zen Kaku Gothic New", sans-serif;
	--helvetica: "helvetica-neue-lt-pro", sans-serif;
}

/* ===============================
	共通スタイル
=============================== */
/* 共通 */
article {
	font-family: var(--gothic);
}

.contents-title-sp {
	display: none;
}

.white-border {
	border: 2px solid #fff;
}

.fw-b {
	font-weight: bold;
}

/* マージン */
.mts {
	margin-top: var(--margin-small);
}

.mtm {
	margin-top: var(--margin-medium)
}

.mtl {
	margin-top: var(--margin-large);
}

.mt1em {
	margin-top: 1em;
}

.ml-a {
	margin-left: auto;
}

.mi-a {
	margin-inline: auto;
}

/* フレックスコンテナ */
.flex-container {
	display: flex;
	flex-wrap: wrap;
}

.flex-item {
	inline-size: 100%;
}

.flex-reverse {
	flex-direction: row-reverse;
}

/* アニメーション初期化 */
.fade-in,
.fade {
	opacity: 0;
}


.fade-first,
.fade-second,
.fade-third,
.fade-four,
.fade-five {
	opacity: 0;
	transform: translateY(20px);
}



/* コンポーネント */

.box-shadow {
	box-shadow: 10px 10px 0px 0px var(--em-pink);
}

.important-text {
	color: var(--em-text);
	font-weight: 400;
}

/* グローバル */

.header-sticky {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 10;
}

.nav-sticky {
	position: sticky;
	top: var(--header-height);
	z-index: 10;
}

#globalHeader {
	background-color: #FFF;
}

/* 共通 */

.pc-only {
	display: block;
}

.underline {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.interview-title {
	position: relative;
	inline-size: fit-content;
	font-size: 2.8rem;
	font-weight: bold;
	font-family: var(--gothic);
	z-index: 2;
}

.interview-title::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	display: block;
	inline-size: 100%;
	block-size: 3px;
	background-image: repeating-linear-gradient(90deg, #ff7979, #ff7979 6px, transparent 6px, transparent 10px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 2px;
}

.interview-subtitle {
	padding-block: .3em;
	margin-top: 14rem;
	font-size: 1.8rem;
	text-align: center;
	background-color: var(--em-pink);
	font-family: var(--gothic);
	font-weight: bold;
}

/* MV */

.mv {
	padding-block: 3rem 12rem;
	overflow: hidden;
	position: relative;
	block-size: 790px;
}

.mv-container {
	position: fixed;
	inline-size: 100%;
	max-inline-size: 1200px;
	left: 50%;
	transform: translateX(-50%);
	padding-inline: 1.5%;
	overflow: hidden;
}

.interview-page-title {
	position: absolute;
	left: 7%;
	bottom: 10%;
}

.interview-page-title span {
	display: block;
	/* transform・clip-pathを効かせる */
	clip-path: inset(0 100% 0 0);
	/* 最初は右側を隠す */
	transform: translateX(-20px);
	/* 左にずらしてスタート */
	opacity: 0;
	animation: slideIn 1s forwards;
	/* アニメーションを適用 */
}

.interview-page-title span:nth-child(1) {
	animation-delay: 0s;
}

.interview-page-title span:nth-child(2) {
	animation-delay: 0.2s;
}

.interview-page-title span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes slideIn {
	to {
		clip-path: inset(0 0 0 0);
		transform: translateX(0);
		opacity: 1;
	}
}



.interview-page-title span:first-of-type {
	font-size: 3.8rem;
	font-weight: bold;
	text-shadow: 4px 1px 6px #FFF;
}

.interview-page-title span:nth-of-type(2) {
	font-size: 6.6rem;
	font-weight: bold;
	text-shadow: 3px 2px 8px #FFF;
}

.interview-page-title span:nth-of-type(3) {
	font-size: 6.6rem;
	font-weight: bold;
	text-shadow: 5px 4px 5px #FFF;
}

.mv-img-box {
	position: relative;
	z-index: -1;
}

.mv-img img {
	border-radius: 50px;
	block-size: 700px;
	object-fit: cover;
}

.mv-logo-box {
	position: absolute;
	top: 1rem;
	right: 5rem;
	inline-size: 200px;
}


/* maru.png: ふわっとフェードイン */
.mv-logo-box .maru {
	opacity: 0;
	transform: scale(0.8);
	transform-origin: center center;
	animation: maruFadeIn 0.6s forwards;
	animation-delay: 1.5s;
}

@keyframes maruFadeIn {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* logo.png: 拡大して出てくる */
.mv-logo-box .logo {
	position: absolute;
	top: 22%;
	left: 19%;
	inline-size: 130px;
	z-index: 2;
	opacity: 0;
	transform: scale(0.5);
	transform-origin: center center;
	animation: logoScaleIn 0.8s forwards;
	animation-delay: 1.8s;
	/* maruのアニメーション後に開始 */
}

@keyframes logoScaleIn {
	to {
		opacity: 1;
		transform: scale(1);
	}
}




/* イントロ */

.intro {
	position: relative;
	background-color: var(--pink);
	padding-bottom: 20rem;
	padding-top: 5rem;
}

.intro::before {
	content: "";
	position: absolute;
	top: -9rem;
	left: 0;
	width: 100%;
	block-size: 10rem;
	background: url(images/pink-bg.png) no-repeat top left / cover;
}

.intro::after {
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translate(50%, -25%);
	z-index: 2;
}

.intro-area {
	position: relative;
}

.intro-text-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 100px;
	row-gap: 3rem;
}

.intro-left-text {
	position: relative;
	inline-size: 45%;
	flex-grow: 1;
}

.section-logo-tips {
	position: absolute;
	left: 0;
	bottom: -17rem;
	inline-size: 460px;
	z-index: 2;
}

.intro-right-text {
	inline-size: 45%;
	flex-grow: 1;
	min-inline-size: 450px;
}

.intro-left-text .intro-text {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 2;
}

.intro-right-text .intro-text {
	font-weight: 500;
	line-height: 2.2;
}

.profile {
	margin-top: 6rem;
	column-gap: 1rem;
	display: grid;
	grid-template-columns: 12rem 1fr;
	grid-template-rows: auto;
}

.profile-title {
	font-weight: bold;
}

.profile-title-sp {
	display: none;
}

.profile-text {
	margin-top: 1rem;
	font-weight: 400;
	font-size: 1.4rem;
}

.profile-img img {
	inline-size: 12rem;
	block-size: 12rem;
	border-radius: 50%;
	object-fit: cover;
	object-position: left;
}

.profile-link-list {
	margin-top: 1rem;
}

.profile-link-item {
	inline-size: fit-content;
	font-size: 1.4rem;
}

.profile-link-item a {
	display: grid;
	grid-template-columns: auto 1fr;
	place-content: center;
	align-items: center;
	grid-column-gap: .4em;
	inline-size: 16rem;
	padding: .5em .6em;
	font-size: 1.4rem;
	color: #FFF;
	border-radius: 5px;
	line-height: 1;
	font-weight: 500;
	transition: .3s;
	background-color: rgba(0, 0, 0, .5);
}

.profile-link-item a>img {
	inline-size: 1.2rem;
}

.profile-link-item:nth-of-type(n+2) {
	margin-top: 0.5em;
}


/* インタビュー */

.interview {
	position: relative;
	background-color: var(--bg-color);
	padding-top: 5rem;
	padding-bottom: 25rem;
}

.interview::after {
	content: "";
	position: absolute;
	top: -10rem;
	left: 0;
	width: 100%;
	block-size: 10rem;
	background: url(images/gray-bg.png) no-repeat top left / cover;
}

.interview-block {
	position: relative;

}

.interview-block:nth-of-type(n+2) {
	margin-top: 14rem;
}

.interview-container {
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 6rem;
	margin-top: 10rem;
	padding-inline: 5rem;
	z-index: 1;
}

/* インタビューのナンバー */

.interview-number {
	position: absolute;
	top: -20%;
	left: 0;
	font-family: var(--helvetica);
	font-size: 20rem;
	font-weight: bold;
	color: var(--em-pink);
	z-index: -1;
}

.interview-number.right {
	left: auto;
	right: 9%;
	top: -1%;
	z-index: 1;
}

.interview-number.right.second {
	top: 10%;
	right: 0;
}

.interview-number.right.five {
	top: -10rem;
	right: 5%;
	z-index: -1;
	line-height: 1;
}

.interview-number.right.seven {
	right: 0%;
}



.interview-number.right.eight {
	top: 0%;
}

.interview-text-container {
	position: relative;
	inline-size: 47%;
	font-family: var(--gothic);
}

.interview-text-container p {
	line-height: 1.7;
}

.interview-text-container p:nth-of-type(n+2) {
	margin-top: 3rem;
}

.interview-img-container {
	inline-size: 47%;
}

.interview-sub-img-container {
	margin-top: 4rem;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 2rem;
}

.interview-img img {
	border-radius: 40px;
}

.interview-img.middle {
	margin-top: 4rem;
	inline-size: 50%;
}

.interview-img.size470 {
	max-inline-size: 47rem;
}

.interview-img.size240 {
	max-inline-size: 24rem;
}


.interview-img.small {
	margin-bottom: -2rem;
	display: inline-block;
	max-inline-size: 20rem;
}

.section-logo-message-sp {
	display: none;
}

/* レシピ */

.recipe-img {
	margin-top: 2rem;
}

/* インタビューブロックの１カラム */
.interview-contents-column1 {
	position: relative;
	max-inline-size: 90rem;
	margin-inline: auto;
	margin-top: 10rem;
	z-index: 1;
}

.column1-text {
	font-family: var(--gothic);
}

.column1-text:nth-of-type(n+2) {
	margin-top: 3rem;
}

/* インタビューブロックの3カラム */

.interview-contents-column3 {
	margin-top: 6rem;
	display: flex;
	justify-content: space-around;
}

.interview-subtitle+.interview-contents-column3 {
	margin-top: 3rem;
}


.interview-contents-item {
	inline-size: calc((100% - 18rem) / 3);
	text-align: center;
}


.miho-link {
	margin-top: 1rem;
	font-size: 1.2rem;
	font-weight: 400;
}

/* テキストコンテナにタイトルが入ったスタイル */
.interview-text-container .interview-title {
	margin-bottom: 10rem;
	inline-size: 100%;
}

.interview-text-container .interview-number.right {
	/* transform: translate(0, -40%); */
	top: -35%;
	right: 0;
	z-index: -1;
}

/* ８番の目の質問 */
.message-img-container {
	max-inline-size: 90rem;
	position: relative;
	margin-top: 6rem;
	margin-inline: auto;
	padding-inline: 1.5%;
}

.message-img {
	max-inline-size: 70rem;
	inline-size: 55vw;
	margin-left: auto;
	margin-top: 6rem;
}

.message-text-img {
	position: absolute;
	top: 33%;
	left: 0%;
	transform: translateX(-15%);
	max-inline-size: 38rem;
	inline-size: 50vw;
	z-index: 2;
}


/* その他のコンテンツ */
.contents {
	position: absolute;
	top: 0;
	left: 0;
	inline-size: 100%;
	background-color: var(--pink);
	padding-block: 10rem;
	z-index: 3;
}

.contents::after {
	content: "";
	position: absolute;
	top: -5rem;
	left: 0;
	width: 100%;
	block-size: 5rem;
	background: url(images/pink-bg.png) no-repeat top left / cover;
}

.section-logo-message {
	position: absolute;
	top: -200%;
	left: 0;
	inline-size: 33%;
	z-index: 10;
}

.contents-logo-img {
	inline-size: 12rem;
}

.contents-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 4rem;

}

.contents-box {
	inline-size: calc((100% - 100px) / 3);
}

.contents-title {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 2rem;
	font-size: 2.6rem;
	font-weight: bold;
}

.contents-title span {
	display: block;
	inline-size: fit-content;
	font-family: var(--gothic);
}

.contents-text {
	margin-top: .5em;
	font-size: 1.8rem;
	font-weight: bold;
	font-family: var(--gothic);
}

.contents-btn {
	margin-top: .5em;
	inline-size: fit-content;
}

.contents-btn a {
	display: grid;
	grid-template-columns: 1fr auto;
	place-content: center;
	align-items: center;
	grid-column-gap: .4em;
	inline-size: 100%;
	font-size: 1.4rem;
	line-height: 1;
	font-weight: 500;
	transition: .3s;
}

/* 製品紹介のパララックス */

.product {
	z-index: 1;
	padding-block: 10rem;
	flex-wrap: nowrap;
	position: sticky;
	top: calc(var(--top-height) + 5rem);
}

.product-item {
	min-inline-size: 0;
}

.fixed {
	position: relative;
	height: var(--section-height);
}


/* ====================================
	スマートフォン専用スタイル（～768px）
===================================== */
@media screen and (width <768px) {

	/* 共通 */
	.pc-only {
		display: none;
	}

	/* MV */


	.mv {
		block-size: 40rem;
	}

	.mv-container {
		top: calc(var(--top-height) + 3rem);
		left: 50%;
		padding-inline: 5%;
		overflow: visible;
	}


	.interview-page-title {
		position: static;
		margin-bottom: 1rem;
	}

	.mv-img img {
		border-radius: 15px;
		block-size: 23rem;
		object-position: top center;
	}

	.interview-page-title span:first-of-type {
		text-shadow: 0 3px 4px #FFF, 0 0 5px #FFF;
		font-size: 1.8rem;
		font-weight: 900;
		line-height: 1.3;

	}

	.interview-page-title span:nth-of-type(2) {
		text-shadow: 0 3px 4px #FFF, 0 0 10px #FFF;
		font-size: 3rem;
		font-weight: 900;
		line-height: 1.3;
	}

	.interview-page-title span:nth-of-type(3) {
		text-shadow: 0 3px 4px #FFF, 0 0 10px #FFF;
		font-size: 3rem;
		font-weight: 900;
		line-height: 1.3;
	}

	.mv-logo-box .logo {
		inline-size: 75px;
		left: 20%;
	}

	.sp-maru img {
		display: block;
		inline-size: 120px;
		block-size: auto;
		filter: drop-shadow(1px 1px 2px #222);
	}

	.mv-logo-box {
		inline-size: 110px;
		right: 0;
		top: -20px;
	}



	/* イントロ */

	.intro {
		padding-top: 3rem;
		padding-bottom: 11rem;
	}

	.intro::before {
		content: "";
		position: absolute;
		top: -3rem;
		left: 0;
		width: 100%;
		block-size: 4rem;
		background: url(images/pink-bg.png) no-repeat top left / cover;
	}

	.intro-text-container {
		flex-direction: column;
	}

	.intro-left-text {
		inline-size: 100%;
	}

	.intro-left-text .intro-text {
		font-size: 1.8rem;
		line-height: 1.5;
	}


	.intro-right-text {
		margin-top: 4rem;
		inline-size: 100%;
		min-inline-size: 0;
	}

	.intro-right-text .intro-text {
		font-size: 1.6rem;
		line-height: 1.8;
	}


	.profile {
		inline-size: auto;
		margin-left: 0;

		display: flex;
		flex-wrap: wrap;
		row-gap: 2rem;
	}

	.profile-img {
		inline-size: 13rem;
	}

	.profile-text-area {
		flex-grow: 1;
		inline-size: 58%;
	}

	.profile-img img {
		margin-top: 1rem;
	}

	.profile-title {
		display: none;
	}

	.profile-title-sp {
		display: block;
		font-weight: bold;
		text-align: center;
	}

	.profile-text {
		margin-top: 0;
	}

	.section-logo-tips {
		inline-size: 15rem;
		left: auto;
		right: 7%;
		bottom: -12rem;
	}

	/* インタビュー */

	.interview {
		padding-bottom: 7rem;
		padding-top: 3rem;
	}

	.interview::after {
		top: -5rem;
		block-size: 5rem;
	}

	.interview-block {
		padding-inline: 0;
	}

	.interview-block:nth-of-type(n+2) {
		margin-top: 9rem;
	}

	.interview-title {
		font-size: 1.9rem;
	}

	.interview-subtitle {
		margin-top: 5rem;
	}

	.interview-title.ml-a {
		margin-left: 0;
	}

	.interview-container {
		flex-direction: column;
		row-gap: 3rem;
		margin-top: 5rem;
		padding-inline: 0;
	}

	.interview-text-container {
		inline-size: 100%;
	}

	.interview-text-container p {
		font-size: 1.5rem;
		line-height: 1.5;
	}

	.interview-img-container {
		inline-size: fit-content;
		margin-inline: auto;
	}

	/* インタビューのナンバー */

	.interview-number {
		top: -9%;
		left: 0;
	}

	.interview-number.right {
		top: 0;
		right: 0;
	}

	.interview-number.right.reverse-left {
		left: 0;
		right: auto;
	}

	.interview-number.right.second {
		top: 4%;
	}

	.interview-number.third {
		top: -9%;
	}

	.interview-number.right.five {
		top: -4rem;
	}

	.interview-number.right.six {
		line-height: 1.3;
	}


	.interview-sub-img-container {
		margin-top: 3rem;
		justify-content: center;
	}

	.interview-img.size470 {
		max-inline-size: 100%;
		inline-size: 100%;
	}

	.interview-img.size240 {
		max-inline-size: 100%;
		inline-size: 45%;
	}

	.interview-img.size240 img {
		border-radius: 20px;
	}

	.interview-img.small {
		margin-bottom: 0;
		margin-left: 0;
		max-inline-size: 100%;
		inline-size: 45%;
	}

	.interview-img.small img,
	.interview-img.middle img,
	.interview-img.size240 img {
		border-radius: 10px;
	}

	/* １カラム */

	.interview-contents-column1 {
		margin-top: 5rem;
	}

	.column1-text {
		font-size: 1.5rem;
	}

	/* ３カラム */

	.interview-contents-column3 {
		margin-top: 4rem;
		flex-wrap: wrap;
		justify-content: center;
		gap: 2rem;
	}

	.interview-contents-column3::after {
		content: "";
		display: block;
		inline-size: 47%;
	}

	.interview-contents-item {
		inline-size: 47%;
		text-align: center;
	}

	.recipe-img {
		margin-top: 1rem;
	}

	/* テキストコンテナにタイトルが入ったスタイル */
	.interview-text-container .interview-number.right {
		transform: translate(0, 0%);
		top: 0rem;
	}

	.interview-text-container .interview-title {
		margin-bottom: 4rem;
	}

	/* ８番目の質問 */

	.message-img-container {
		margin-top: 0;
		padding-top: 11%;
	}


	.message-text-img {
		top: 5%;
		left: .5em;
		transform: translateX(0);
		max-inline-size: 100%;
		min-inline-size: 240px;
		inline-size: 70%;
	}

	.message-img {
		max-inline-size: 70rem;
		inline-size: 85%;
		min-inline-size: 300px;
		margin-left: auto;
		margin-top: 4rem;
	}

	/* その他のコンテンツ */
	.contents {
		padding-block: 7rem 10rem;
		position: absolute;
		top: 0;
		left: 0;
	}

	.contents::after {
		top: -3vw;
		block-size: 3rem;
	}

	.contents-text {
		font-size: 1.5rem;
		line-height: 1.6;
		font-weight: 500;
	}

	.contents-title {
		display: none;
	}

	.contents-logo-img {
		order: -1;
		margin-bottom: 2rem;
	}

	.contents-container {
		row-gap: 4rem;
	}

	.contents-box {
		inline-size: 47%;
	}

	.contents-title-sp {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 1rem;
		font-size: 1.8rem;
		font-weight: bold;
	}

	.contents-logo-img-sp {
		inline-size: 20%;
	}

	.section-logo-message-sp {
		display: block;
		position: absolute;
		bottom: -.5%;
		right: 5%;
		inline-size: 15rem;
		z-index: 5;
	}

	/* 製品紹介 */

	.fixed {
		height: var(--section-height);
	}

	.product {
		bottom: auto;
		padding-block: 5rem;
	}




}

/* ====================================
	TAB、PC、印刷専用スタイル（768px～）
===================================== */
@media print,
screen and (width >=768px) {
	:root {
		--margin-large: 8rem;
		--margin-medium: 6rem;
		--margin-small: 4rem;
	}
}

/* ====================================
	タブレット専用スタイル（768px～1079px）
===================================== */
@media screen and (768px <=width < 1080px) {


	/* MV */

	.interview-page-title span:first-of-type {
		font-size: 2.4rem;
	}

	.interview-page-title span:nth-of-type(2) {
		font-size: 5rem;
	}

	.interview-page-title span:nth-of-type(3) {
		font-size: 5rem;
	}


	/* イントロ */

	.intro-text-container {
		column-gap: 2rem;
	}

	.section-logo-tips {
		bottom: -20rem;
		inline-size: 330px;
	}

	.profile {
		margin-left: 0;
	}

	/* インタビュー */

	.interview-title {
		font-size: 2.2rem;
	}

	/* インタビューのナンバー */

	.interview-number {
		top: -16%;
	}

	.interview-number.right.second {
		top: 15%;
	}

	.interview-number.right.five {
		top: -10rem;
	}

	.interview-number.right {
		top: 5%;
	}

	.interview-number.right.seven {
		right: 6%;
	}

	.interview-number.right.eight {
		top: 10%;
	}

	.interview-text-container .interview-number.right {
		top: -29%;
	}


	/* 8番目の質問 */
	.message-text-img {
		left: 10%;
	}

	/* その他のコンテンツ */
	.contents-title {
		font-size: 2rem;
	}

	.contents-logo-img {
		inline-size: 10rem;
	}

	/* 製品紹介 */

	.product-btn a {
		grid-column-gap: .4em;
		font-size: 1.2rem;
	}

}

/* ====================================
	PC専用スタイル（1080px～）
===================================== */
@media print,
screen and (1080px <=width) {}



/* ====================================
	ホバーが有効な環境のみ
===================================== */
@media (hover:hover) and (pointer: fine) {
	.profile-link-item a:hover {
		text-decoration: none;
		color: #222;
		background-color: #fff;
	}
}