:root {
	/* カスタムプロパティ > 色 */
	--color-base: #010000;
	--color-black: #010000;
	--color-black-transparent: rgba(1,0,0,0.5);
	--color-white: #ffffff;

	/* カスタムプロパティ > Primary */
	--color-primary: #1EAC4B;
	--color-secondary: #FFF67F;

	/* カスタムプロパティ > タイポグラフィ */
	/* カスタムプロパティ > タイポグラフィ */
	--font-family-base: "Noto Sans JP", sans-serif;
	--font-family-number: "Roboto Condensed", sans-serif;
	--font-family-en: "Zen Kaku Gothic New", sans-serif;

	/* カスタムプロパティ > 文字サイズ */
	--font-size-minimum: 1rem;/* 16px */
	--font-size-small: 1.25rem;/* 20px */
	--font-size-medium: 1.5rem;/* 24px */
	--font-size-large: 2rem;/* 32px */

	/* カスタムプロパティ > 文字太さ */
	--font-weight-light: 300;
	--font-weight-normal: 400;
	--font-weight-medium: 500;
	--font-weight-bold: 600;
	--font-weight-extra-bold: 800;
	--font-weight-black: 900;

	/* カスタムプロパティ > 行間 */
	--line-hight-1line: 1;
	--line-hight-extra-small: 1.5;
	--line-hight-small: 1.75;
	--line-hight-medium: 2;
	--line-hight-large: 2.2;
	--line-hight-extra-large: 2.5;

	/* カスタムプロパティ > トランジション */
	--transition-normal: all 0.3s;

	/* カスタムプロパティ > z-index */
	--zindex-normal: 100;
}

html{
	scroll-behavior: smooth;
}

body {
	color: var(--color-base);
	font-family: var(--font-family-base);
}

main {
	display: block;
}

a {
	color: var(--color-base);
	transition: var(--transition-normal);
}

a:before,
a:after {
	transition: var(--transition-normal);
}

button {
	color: var(--color-base);
	transition: var(--transition-normal);
}

button:before,
button:after {
	transition: var(--transition-normal);
}

img {
	height: auto;
	max-width: 100%;
}


/* ------------------------------------------------------------------------------------------------------
	Header
------------------------------------------------------------------------------------------------------ */
.l-header{
  border: none;
  background: none;
  left: inherit;
  position: inherit;
  top: inherit;
  transition-duration: inherit;
  width: auto;
  z-index: inherit
}

.l-header__inner{}

.l-header__logo{
  width: 100%;
  max-width: 120px;
}

/* ------------------------------
	Tablet-Mode
------------------------------ */
@media screen and (min-width: 600px) {
  .l-header{}

  .l-header__inner{}

  .l-header__logo{
    max-width: 200px;
  }
  
} /* min-width: 600px */

/* ------------------------------
	PC-Mode
------------------------------ */
@media screen and (min-width: 1025px) {
  .l-header{}

  .l-header__inner{}

  .l-header__logo{}
  
} /* min-width: 1025px */

/* ------------------------------
	PC-Mode > Irregular
------------------------------ */
@media screen and (min-width: 1065px) {
  .l-header{}

  .l-header__inner{}

  .l-header__logo{
    max-width: 265px;
  }
  
} /* min-width: 1065px */



/* ------------------------------------------------------------------------------------------------------
	Layout
------------------------------------------------------------------------------------------------------ */
.l-contents{
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ------------------------------
	Tablet-Mode
------------------------------ */
@media screen and (min-width: 600px) {
  .l-contents{}
} /* min-width: 600px */

/* ------------------------------
	PC-Mode
------------------------------ */
@media screen and (min-width: 1025px) {
  .l-contents{}
} /* min-width: 1025px */

/* ------------------------------
	PC-Mode > Irregular
------------------------------ */
@media screen and (min-width: 1065px) {
  .l-contents{
    padding: 0;
    max-width: 1025px;
  }
} /* min-width: 1065px */



/* ------------------------------------------------------------------------------------------------------
	Component
------------------------------------------------------------------------------------------------------ */
.c-button{
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 0;
	justify-content: center;
}

.c-button__link{
	align-items: center;
	background-color: var(--color-primary);
	border: 1px var(--color-primary) solid;
	border-radius: calc(60px / 2);
	box-sizing: border-box;
	color: var(--color-secondary);
	display: flex;
	height: 60px;
	justify-content: center;
	width: 100%;
}

.c-button__text{
	display: inline-block;
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: -0.1em;
	line-height: var(--line-hight-1line);
	padding: 0 0 0.1em;
}
.c-button__text--small{
	font-size: 1.125rem;
}

/* ------------------------------
	Tablet-Mode
------------------------------ */
@media screen and (min-width: 600px) {
	.c-button{
		gap: 0 1rem;
	}

	.c-button__link{
		width: calc((100% - calc(1rem * 2)) / 3);
		max-width: 280px;
	}

	.c-button__text{}
	.c-button__text--small{}

} /* min-width: 600px */

/* ------------------------------
	PC-Mode
------------------------------ */
@media screen and (min-width: 1025px) {
	.c-button{
		gap: 0 2.8rem;
	}

	.c-button__link{
		border-radius: calc(75px / 2);
		height: 75px;
		width: calc((100% - calc(2.8rem * 2)) / 3);
		max-width: 280px;
	}
	.c-button__link:hover{
		background-color: var(--color-white);
		color: var(--color-primary);
	}

	.c-button__text{
		font-size: 1.625rem;
	}
	.c-button__text--small{
		font-size: 1.375rem;
	}

} /* min-width: 1025px */

/* ------------------------------
	PC-Mode > Irregular
------------------------------ */
@media screen and (min-width: 1065px) {
	.c-button{
		gap: 0 3.4375rem;
	}

	.c-button__link{
		width: calc((100% - calc(3.4375rem * 2)) / 3);
		max-width: 300px;
	}

	.c-button__text{}
	.c-button__text--small{}

} /* min-width: 1065px */



/* ------------------------------------------------------------------------------------------------------
	Project
------------------------------------------------------------------------------------------------------ */
.p-campaign-netflix{
	padding: 0 0 calc(150px + 3rem);
	position: relative;
}
.p-campaign-netflix:after{
	background-image: url(/src/img/common/machinami.png);
	background-position: bottom center;
	background-repeat: repeat-x;
	content: "";
	bottom: -2px;
	left: 0;
	position: absolute;
	height: 150px;
	width: 100%;
}

.p-campaign-netflix__inner{
  background-image: url("../images/bg_large.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  padding: 1.25rem 0 4rem;
}


.p-hero{
  margin: 0 0 1.25rem;
}

.p-hero__inner{}

.p-hero__figure{}

/* ------------------------------
	Tablet-Mode
------------------------------ */
@media screen and (min-width: 600px) {
  .p-campaign-netflix{
		padding: 0 0 calc(150px + 3rem);
	}
	.p-campaign-netflix:after{}

	.p-campaign-netflix__inner{}
  
  
  .p-hero{}

  .p-hero__inner{}

  .p-hero__figure{}
  
} /* min-width: 600px */

/* ------------------------------
	PC-Mode
------------------------------ */
@media screen and (min-width: 1025px) {
  .p-campaign-netflix{
		padding: 0 0 calc(170px + 5rem);
	}
	.p-campaign-netflix:after{
		height: 170px;
	}
  
	.p-campaign-netflix__inner{}
  
  .p-hero{}

  .p-hero__inner{}

  .p-hero__figure{}
  
} /* min-width: 1025px */

/* ------------------------------
	PC-Mode > Irregular
------------------------------ */
@media screen and (min-width: 1065px) {
  .p-campaign-netflix{}
	.p-campaign-netflix:after{}
  
	.p-campaign-netflix__inner{
    padding: 2.5rem 0 7.0625rem;
  }
  
  .p-hero{
    margin: 0 0 1.625rem;
  }

  .p-hero__inner{}

  .p-hero__figure{}

} /* min-width: 1065px */


.p-info{}

.p-info__inner{}

.p-info__date{
	align-items: center;
	background: linear-gradient(90deg,rgba(228, 31, 27, 0) 0%, rgba(228, 31, 27, 1) 25%, rgba(228, 31, 27, 1) 50%, rgba(228, 31, 27, 1) 75%, rgba(228, 31, 27, 0) 100%);
	box-sizing: border-box;
	display: flex;
	height: 50px;
	justify-content: center;
	margin: 0 0 1.5rem;
}

.p-info__date-text{
	display: inline-block;
	font-size: 1.5rem;
	font-weight: var(--font-weight-black);
}

.p-info__date-emphasis{
	font-size: 1.6em;
	font-weight: var(--font-weight-extra-bold);
}

.p-info__catch{
	margin: 0 0 2rem;
}

.p-info__catch-text{
	font-size: 1.125rem;
	font-weight: var(--font-weight-medium);
	line-height: var(--line-hight-medium);
	margin: 0 0 0.5em;
}

.p-info__theme{
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 2rem;
	font-weight: var(--font-weight-black);
}

.p-info__theme-subject{
	color: #E41F1B;
	display: inline-block;
	font-size: 1.5em;
	line-height: var(--line-hight-1line);
	text-align: center;
	width: 100%;
}

.p-info__theme-content{
	background: linear-gradient(90deg,rgba(255, 245, 224, 1) 0%, rgba(232, 186, 65, 1) 100%);
	-webkit-background-clip: text;
  background-clip: text;
	-webkit-text-fill-color: transparent;
  color: transparent;
	display: inline-block;
	line-height: var(--line-hight-1line);
}

.p-info__theme-emphasis{
	display: inline-block;
	font-size: 1.25em;
	line-height: var(--line-hight-1line);
}

.p-info__button{}

/* ------------------------------
	Tablet-Mode
------------------------------ */
@media screen and (min-width: 600px) {
	.p-info{}

	.p-info__inner{}

	.p-info__date{}

	.p-info__date-text{
		font-size: 1.5rem;
	}

	.p-info__date-emphasis{}

	.p-info__catch{}

	.p-info__catch-text{
		margin: 0;
	}

	.p-info__theme{}

	.p-info__theme-subject{
		font-size: 1em;
		margin: 0 0.3em 0 0;
		width: auto;
	}

	.p-info__theme-content{}

	.p-info__theme-emphasis{}

	.p-info__button{}

} /* min-width: 600px */

/* ------------------------------
	PC-Mode
------------------------------ */
@media screen and (min-width: 1025px) {
	.p-info{}

	.p-info__inner{}

	.p-info__date{
		height: 80px;
		margin: 0 0 2rem;
	}

	.p-info__date-text{
		font-size: 2.5rem;
	}

	.p-info__date-emphasis{
		font-size: 1.6em;
	}

	.p-info__catch{}

	.p-info__catch-text{
		font-size: 1.5rem;
	}

	.p-info__theme{
		font-size: 4rem;
	}

	.p-info__theme-subject{}

	.p-info__theme-content{}

	.p-info__theme-emphasis{}

	.p-info__button{}

} /* min-width: 1025px */


.p-outline{
	margin: 2rem 0 0;
}

.p-outline__inner{}

.p-outline__list{}

.p-outline__item{}

.p-outline__theme{
	display: inline-block;
	font-size: 1.25rem;
	font-weight: var(--font-weight-medium);
	line-height: var(--line-hight-1line);
	margin: 0 0 0.5em;
}

.p-outline__child{}

.p-outline__unit{
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	line-height: var(--line-hight-medium);
}
.p-outline__unit--small{}

.p-outline__unit-link{
	color: var(--color-white);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/* ------------------------------
	Tablet-Mode
------------------------------ */
@media screen and (min-width: 600px) {
	.p-outline{}

	.p-outline__inner{}

	.p-outline__list{}

	.p-outline__item{}

	.p-outline__theme{}

	.p-outline__child{}

	.p-outline__unit{}
	.p-outline__unit--small{}

	.p-outline__unit-link{}

} /* min-width: 600px */

/* ------------------------------
	PC-Mode
------------------------------ */
@media screen and (min-width: 1025px) {
	.p-outline{
		margin: 2.5rem 0 0;
	}

	.p-outline__inner{}

	.p-outline__list{}

	.p-outline__item{}

	.p-outline__theme{
		font-size: 1.5rem;
	}

	.p-outline__child{}

	.p-outline__unit{
		font-size: 1.25rem;
		line-height: var(--line-hight-small);
	}
	.p-outline__unit--small{
		font-size: 1.125rem;
	}

	.p-outline__unit-link{}

} /* min-width: 1025px */


.p-note{
	background-color: var(--color-black-transparent);
	margin: 1.5rem 0 0;
	padding: 1.25rem 0;
}

.p-note__inner{}

.p-note__list{}

.p-note__item{}

.p-note__theme{
	display: inline-block;
	font-size: 1.25rem;
	font-weight: var(--font-weight-medium);
	line-height: var(--line-hight-1line);
	margin: 0 0 1em;
}

.p-note__child{}

.p-note__unit{
	font-size: 1rem;
	line-height: var(--line-hight-medium);
	margin: 0 0 0.5em;
}
.p-note__unit:last-of-type{
	margin: 0;
}

.p-note__link{
	color: var(--color-white);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.p-note__groundchild{}

.p-note__cel{}

/* ------------------------------
	Tablet-Mode
------------------------------ */
@media screen and (min-width: 600px) {
	.p-note{}

	.p-note__inner{}

	.p-note__list{}

	.p-note__item{}

	.p-note__theme{}

	.p-note__child{}

	.p-note__unit{
		margin: 0;
	}

	.p-note__link{}

	.p-note__groundchild{}

	.p-note__cel{}

} /* min-width: 600px */

/* ------------------------------
	PC-Mode
------------------------------ */
@media screen and (min-width: 1025px) {
	.p-note{
		margin: 2.5rem 0 0;
		padding: 1.5rem 0 3rem;
	}

	.p-note__inner{}

	.p-note__list{}

	.p-note__item{}

	.p-note__theme{
		font-size: 1.5rem;
	}

	.p-note__child{}

	.p-note__unit{
		font-size: 1.125rem;
		line-height: var(--line-hight-medium);
	}

	.p-note__link{}

	.p-note__groundchild{}

	.p-note__cel{}

} /* min-width: 1025px */


/* ------------------------------------------------------------------------------------------------------
	Utility
------------------------------------------------------------------------------------------------------ */
/* Font Family */
.u-font-number{
	font-family: var(--font-family-number);
}
.u-font-en{
	font-family: var(--font-family-en);
}

/* Display */
.u-display-small-only{
  display: inline-block;
}
.u-display-medium-only{
  display: none;
}
.u-display-large-only{
  display: none;
}
.u-display-small-medium-up{
  display: inline-block;
}
.u-display-medium-large-up{
  display: none;
}

/* ------------------------------
	Tablet-Mode
------------------------------ */
@media screen and (min-width: 600px) {
  .u-display-small-only{
		display: none;
	}
	.u-display-medium-only{
		display: inline-block;
	}
	.u-display-large-only{
		display: none;
	}
	.u-display-small-medium-up{
		display: inline-block;
	}
	.u-display-medium-large-up{
		display: inline-block;
	}
} /* min-width: 600px */

/* ------------------------------
	PC-Mode
------------------------------ */
@media screen and (min-width: 1025px) {
  .u-display-small-only{
		display: none;
	}
	.u-display-medium-only{
		display: none;
	}
	.u-display-large-only{
		display: inline-block;
	}
	.u-display-small-medium-up{
		display: none;
	}
	.u-display-medium-large-up{
		display: inline-block
	}
  
} /* min-width: 1025px */

/* Text > Color */
.u-text-color-white{
  color: var(--color-white);
}

/* Text > Position */
.u-text-center{
	text-align: center;
}
.u-text-left{
	text-align: left;
}
.u-text-right{
	text-align: right;
}


/* visually-hidden accesibility */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------------------------------------------------
	MediaQuery
--------------------------------------------------- */
/* ------------------------------
	Tablet-Mode
------------------------------ */
@media screen and (min-width: 600px) {
} /* min-width: 600px */

/* ------------------------------
	PC-Mode
------------------------------ */
@media screen and (min-width: 1025px) {
} /* min-width: 1025px */

/* ------------------------------
	PC-Mode > Irregular
------------------------------ */
@media screen and (min-width: 1065px) {
} /* min-width: 1065px */