@charset "UTF-8";

html {
	scroll-padding-top: 50px;
	scroll-behavior: smooth;
	min-height: 100%;
	position: relative;
}
body {
	margin: 0 0 200px;
	padding: 0;
	line-height: 1.8;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #000;
	background-color: #fff;
}
@media screen and (max-width: 750px) {
	body {
		margin: 0 0 15.5vw;
	}
}
@media screen and (max-width: 599px) {
	body {
		margin: 0;
	}
}
@media screen and (max-width: 500px) {
	html {
		font-size: 3.4vw;
	}
}
@media print {
	body {
		width: 1024px;
		transform: scale(0.95);
		transform-origin: 0 0;
	}
}


/* レイアウト
------------------------------------- */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}
main {
	padding: 75px 0 40px;
}
.content {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 40px 40px;
}
@media screen and (max-width: 960px) {
	.content {
		padding: 0 4.1vw 4.1vw;
	}
}
@media screen and (max-width: 500px) {
	.content {
		padding: 0 5vw 4.1vw;
	}
}


/* 共通
------------------------------------- */
.bg-c01 {background-color: #000 !important;}

.border-c01 {border-color: #000 !important;}

.text-c01 {color: #000 !important;}

.text-lg {font-size: 1.2em;}
.text-xl {font-size: 1.4em;}

.indent1 {
	padding-left: 1em;
	text-indent: -1em;
}
.indent2 {
	padding-left: 2em;
	text-indent: -2em;
}
.text-left {
	text-align: left !important;
}
.text-right {
	text-align: right !important;
}
.text-center {
	text-align: center !important;
}
.text-nowrap {
	white-space: nowrap !important;
}

.filter-grad li {
	position: relative;
}
.filter-grad li img,
.filter-grad li video {
	opacity: 1;
}
.filter-grad li::before {
	mix-blend-mode: multiply;
	pointer-events: none;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(160deg, transparent 30%, rgba(60, 60, 60, 1) 100%);
}

/* ------------------------- */

a.btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 3px;
	padding: 0;
	border: none;
	border-radius: 0;
	font-weight: bold;
	line-height: 1.3;
	transition: all 0.1s;
	text-decoration: none;
	background-color: #eee;
}

/* ------------------------- */

a.btn-1 {
	padding: 0.5em 1.5em;
	font-size: 16px;
	color: #fff;
	background-color: #666;
	border-radius: 100vh;
}
a.btn-1:hover {
	opacity: 0.8;
}
@media screen and (max-width: 600px) {
	a.btn-1 {
		font-size: 3.4vw;
	}
}

/* ------------------------- */

.breadcrumb {
	display: flex;
	margin: 0 0 3rem;
	padding: 0 0 0 1.5rem;
	font-size: 0.85rem;
	line-height: 1.3;
	background-color: transparent;
	border-radius: 0;
}
.breadcrumb a {
	color: #000;
	text-decoration: none;
}
.breadcrumb a:hover {
	opacity: 0.7;
}
.breadcrumb li::after {
	content: "\F285";
	font-family: bootstrap-icons;
	margin: 0 0.5em;
	vertical-align: -0.15em;
}
.breadcrumb li:last-child::after {
	content: normal;
}

/* ------------------------- */

#pagetop {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
#pagetop a {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 20px;
	right: 12px;
	background-image: url(../images/pagetop.svg);
	background-repeat: no-repeat;
	text-indent: 110%;
	white-space: nowrap;
	overflow: hidden;
	z-index: 999;
}
#pagetop a:hover {
	filter: brightness(110%);
}
@media screen and (max-width: 750px) {
	#pagetop a {
		bottom: 5vw;
	}
}

/* ------------------------- */

#dnav {
	position: relative;
	background-color: #aaa;
}
#dnav_open {
	display: block;
	position: fixed;
	top: 8px;
	right: 15px;
	width: 45px;
	height: 45px;
	padding-top: 21px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
}
#dnav_open span {
	display: block;
	position: relative;
	width: 25px;
	height: 2px;
	margin: 0 auto;
	background-color: #000;
}
#dnav_open span:before {
	content: "";
	position: absolute;
	top: -8px;
	width: 100%;
	height: 2px;
	background-color: #000;
	transition: all 0.2s;
}
#dnav_open span:after {
	content: "";
	position: absolute;
	top: 8px;
	width: 100%;
	height: 2px;
	background-color: #000;
	transition: all 0.2s;
}
#dnav_open.open span {
	height: 0;
}
#dnav_open.open span:before {
	top: 0px;
	transform: rotate(135deg);
}
#dnav_open.open span:after {
	top: 0px;
	transform: rotate(-135deg);
}

/* ------------------------- */

#dnav_cover {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	transition: .3s ease-in-out;
	visibility: hidden;
}
#dnav_cover.open {
	opacity: .3;
	z-index: 8;
	visibility: visible;
}

/* ------------------------- */

#dnav_contents {
	overflow: auto;
	position: fixed;
	top: 0;
	right: 0;
	margin: 0;
	padding: 47px 15px 0;
	width: 90%;
	max-width: 270px;
	height: 100%;
	background: #FFF;
	opacity: 0.95;
	transition: .3s ease-in-out;
	transform: translateX(105%);
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
	z-index: 9;
}
#dnav_contents.open {
	transform: translate(0); 
}
#dnav_contents li {
	display: block;
	font-size: 15px;
	line-height: 1.3;
	border-bottom: 1px solid #ddd;
	text-decoration: none;
	position: relative;
}
#dnav_contents li a {
	display: block;
	text-indent: -15px;
	padding: 15px 5px 15px 20px;
	color: #222;
	text-decoration: none;
}
#dnav_contents li a::before {
	font-size: 0.8em;
	font-family: bootstrap-icons;
	content: "\F285";
	margin-right: 0.2em;
	vertical-align: -0.1em;
}
#dnav_contents li a:hover {
	color: #888;
}
#dnav_contents li.child {
	padding-left: 1em;
}
#dnav_contents li.nolink a {
	cursor: default;
}
#dnav_contents li.nolink a::before {
	content: "";
	text-indent: 0;
	padding-left: 12px;
}

#dnav_contents li.nolink a:hover {
	color: #222;
}


/* 見出し
------------------------------------- */
.heading-1 {
	font-size: 70px;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1;
	margin: 0 0 0.5em;
}
@media screen and (max-width: 600px) {
	.heading-1 {
		font-size: 11.6vw;
	}
}

/* ------------------------- */

.heading-2 {
	font-size: 70px;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1;
	margin: 0 0 0.1em;
}
.heading-2 span {
	display: flex;
	align-items: center;
	column-gap: 0.5em;
}
.heading-2 span::after {
	content: '';
	flex-grow: 1;
	margin-top: 0.1em;
	height: 2px;
	background: #000;
}
.heading-2_sub {
	margin-bottom: 1.5em;
	font-size: 20px;
	font-weight: bold;
}
@media screen and (max-width: 500px) {
	.heading-2 {
		font-size: 14vw;
	}
	.heading-2_sub {
		font-size: 4vw;
	}
}

/* ------------------------- */

.heading-3 {
	display: flex;
	margin-bottom: 20px;
}
.heading-3 h1 {
	margin: 0 0.3em 0 0 !important;
	font-size: 70px !important;
	color: #898989;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1.1 !important;
}
.heading-3 .h1_sub {
	margin: 0;
	padding-top: 0.1em;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.3;
	color: #fff;
}
.heading-3 .h1_sub span {
	display: block;
	font-size: 0.65em;
	font-weight: normal;
	color: #B5B6B6;
	line-height: 1.3;
}
@media(max-width:650px) {
	.heading-3 {
		margin-bottom: 3vw;
	}
	.heading-3 h1 {
		font-size: 10.7vw !important;
	}
	.heading-3 .h1_sub {
		font-size: 4.6vw;
	}
}

/* ------------------------- */

.heading-4 {
	font-size: 30px;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1.3;
	margin: 0 0 0.5em;
}


/* テーブル
------------------------------------- */
.tbl-1 {
	max-width: 500px;
	font-size: 13px;
	line-height: 1.4;
}
.tbl-1 th {
	width: 22%;
	padding: 0.3em 0.1em;
	font-weight: normal;
	vertical-align: top;
}
.tbl-1 td {
	padding: 0.3em 0.1em;
	vertical-align: top;
}


/* opening
------------------------------------- */
.opening_anime {
	display: flex !important;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	margin: 0;
	background-color: #fff;
}
.we_are_op {
	padding-bottom: 0.5em;
	position: absolute;
	font-size: 4.5vw;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1;
	opacity: 0;
}
.plus_op {
	padding-bottom: 0.2em;
	position: absolute;
	font-size: 40vw;
	font-family: "Noto Sans JP", serif;
	font-weight: bold;
	line-height: 1;
	opacity: 0;
}
#plus1_op {
	transform: translateX(0);
}
#plus2_op {
	transform: translateX(0);
}
#plus3_op {
	transform: translateX(0.55em);
}
@media(max-width:600px) {
	.we_are_op {
		font-size: 6vw;
	}
	.plus_op {
		font-size: 52vw;
	}
}


/* ヘッダー
------------------------------------- */
header {
	position: fixed;
	width: 100%;
	background-color: #fff;
	z-index: 1;
}
header .container {
	display: flex;
	align-items: center;
	height: 60px;
}
header .header_logo {
	margin: 0 auto;
	width: 114px;
	height: 34px;
}
header .header_logo a {
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(../images/logo_3plus.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	text-indent: 110%;
	white-space: nowrap;
	overflow: hidden;
}
@media (max-width: 500px) {
	header .header_logo {
		height: 26px;
	}
}


/* フッター
------------------------------------- */
footer {
	padding: 30px;
	color: #ACACAC;
	background-color: #000;
	border-top: 1px solid #aaa;
}
footer .container {
	display: flex;
	gap: 2em;
	justify-content: space-between;
	margin-bottom: 2rem;
}
footer .logo_3plus {
	width: 114px;
}
footer nav ul {
	display: flex;
	column-gap: 3em;
	font-size: 13px;
	line-height: 1.3;
}
footer nav ul a {
	display: block;
	color: #ACACAC;
	text-decoration: none;
}
footer nav ul a:hover {
	color: #ddd;
}
footer nav ul .nolink a {
	margin: 0.2em 0 0.3em;
	font-size: 0.9em;
}
footer .copyright {
	font-size: 0.8em;
	text-align: center;
}
@media screen and (max-width: 750px) {
	footer {
		padding: 4vw 0;
	}
	footer .container {
		justify-content: center;
		gap: 0;
		margin-bottom: 0;
	}
	footer nav ul {
		display: none;
	}
	footer .copyright {
		margin-top: 1em;
	}
}
@media screen and (max-width: 600px) {
	footer .logo_3plus {
		width: 17vw;
	}
}
@media screen and (min-width: 600px) {
	footer {
		width: 100%;
		position: absolute;
		bottom: 0;
	}
}


/* トップページ
------------------------------------- */
#home main {
	padding-bottom: 0;
}
#home h2 {
	font-size: 86.5px;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1;
	margin: 0 0 0.5em;
}

/* ------------------------- */

#home .btn01 a {
	position: relative;
	padding-right: 2em;
	font-size: 21px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	transition: all 0.1s;
	text-decoration: none;
	border-bottom: 0.15em solid #fff;
}
#home .btn01 a::after {
	position: absolute;
	bottom: -0.1em;
	right: -2.5em;
	content: '';
	width: 1.4em;
	height: 1.5em;
	background-image: url(../images/arrow01_w.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
#home .btn01 a:hover::after {
	transform: translate(0.3em, 0);
}
@media(max-width:800px) {
	#home .btn01 a {
		font-size: 3vw;
	}
}

/* ------------------------- */

#home .btn02 a {
	display: block;
	width: 18.5em;
	position: relative;
	font-size: 18px;
	line-height: 1.2;
	transition: all 0.1s;
	text-decoration: none;
	color: #000;
}
#home .btn02 a::after {
	position: absolute;
	bottom: -0.1em;
	right: -2em;
	content: '';
	width: 1.8em;
	height: 2em;
	background-image: url(../images/arrow01.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
#home .btn02 a:hover::after {
	transform: translate(0.3em, 0);
}
@media(max-width:500px) {
	#home .btn02 a {
		font-size: 3.8vw;
	}
}

/* ------------------------- */

#home .lead {
	padding: 60px 0 40px;
	color: #fff;
	font-weight: bold;
	line-height: 1.6;
	font-feature-settings: "palt";
}
#home .lead p {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 1em;
}
#home .lead h2 {
	font-size: 130px;
	font-family: Helvetica, sans-serif;
	line-height: 1;
	margin: 0 0 0.5em;
}
#home .lead h3 {
	margin: 3.5em 0;
}
#home .lead h3 p {
	margin: 0 0 0.8em;
	font-size: 48px;
	line-height: 1;
	font-weight: bold;
}
#home .lead h4 {
	font-size: 30px;
	margin: 1.5em 0;
}
#home .lead .btn01 {
	margin-top: 6em;
}
@media(max-width:960px) {
	#home .lead h2 {
		font-size: 12.5vw;
	}
}
@media(max-width:880px) {
	#home .lead {
		padding: 8vw 0 4vw;
	}
}
@media(max-width:600px) {
	#home .lead h2 {
		font-size: 12vw;
	}
	#home .lead p {
		font-size: 3.6vw;
	}
	#home .lead h3 {
		margin: 2em 0 1em;
	}
	#home .lead h3 p {
		font-size: 8vw;
	}
	#home .lead h4 {
		font-size: 5.4vw;
	}
	#home .lead .btn01 {
		margin-top: 3em;
	}
}

/* ------------------------- */

#home .our_contents_bg {
	background-image: url(../images/home_dotplus1.png);
	background-repeat: no-repeat;
	background-position: calc(50vw - 700px) 280px;
	background-size: 450px auto;
}
#home .our_contents {
	padding: 60px 0 40px;
	font-feature-settings: "palt";
}
#home .our_contents .cont_column {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
#home .our_contents .item1 {
	border-left: 0.3em solid #717171;
}
#home .our_contents .item1 .branding {
	margin: 0 0 3em;
	padding: 0;
	list-style: none;
}
#home .our_contents .item1 .branding li {
	position: relative;
	margin: 0 0 0.5em;
	padding: 0 0 0 56px;
	font-size: 34px;
	line-height: 1.4;
	font-weight: bold;
}
#home .our_contents .item1 .branding li::after {
	position: absolute;
	top: 1.1em;
	left: 0.25em;
	content: '';
	width: 1.2em;
	height: 0.4em;
	background-image: url(../images/arrow02.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
#home .our_contents .item1 .branding li a {
	display: block;
	color: #000;
	text-decoration: none;
}
#home .our_contents .item1 .branding li a:hover {
	color: #777;
}
#home .our_contents .item1 .branding li a span {
	display: block;
	font-size: 0.62em;
	color: #575757;
	font-weight: normal;
}
#home .our_contents .item1 .category {
	padding: 0;
	list-style: none;
}
#home .our_contents .item1 .category li {
	padding: 0 0 0 56px;
	font-size: 21px;
	line-height: 1.3;
	font-weight: bold;
}
#home .our_contents .item1 .category li:not(:last-child) {
	margin: 0 0 0.8em;
}
#home .our_contents .item1 .category li span {
	display: block;
	font-size: 0.9em;
	color: #575757;
	font-weight: normal;
}
#home .our_contents .item2 {
	grid-row: 1;
	grid-column: 1;
	display: flex;
	align-self: end;
}
#home .our_contents .item2 h3 {
	display: block;
	width: 7em;
	margin-bottom: 1em;
	font-size: 23px;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	border-bottom: 0.15em solid #000;
}
#home .our_contents .item2 ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#home .our_contents .item2 li:not(:last-child) {
	margin: 0 0 1.5em 0;
}
@media(max-width:1200px) {
	#home .our_contents h2 {
		font-size: 86.5px;
	}
}
@media(max-width:880px) {
	#home .our_contents {
		padding: 8vw 0 4vw;
	}
	#home .our_contents .cont_column {
		grid-template-columns: 1fr;
		row-gap: 3em;
	}
	#home .our_contents .item1 {
		border-left: 0.25em solid #717171;
	}
	#home .our_contents .item2 {
		grid-row: 2;
		grid-column: 1;
	}
}
@media(max-width:750px) {
	#home .our_contents h2 {
		font-size: 11.5vw;
	}
}
@media(max-width:500px) {
	#home .our_contents .item1 .branding li {
		padding: 0 0 0 11.2vw;
		font-size: 6.4vw;
	}
	#home .our_contents .item1 .category li {
		padding: 0 0 0 11.2vw;
		font-size: 4.2vw;
	}
	#home .our_contents .item2 h3 {
		font-size: 4.6vw;
	}
}

/* ------------------------- */

#home .about_bg {
	background-image: url(../images/home_dotplus2.png);
	background-repeat: no-repeat;
	background-position: calc(50vw + 240px) 70px;
	background-size: 450px auto;
}
#home .about {
	padding: 60px 0 40px;
	color: #fff;
	font-size: 35px;
	font-weight: 300;
	line-height: 1.3;
	font-feature-settings: "palt";
}
#home .about p {
	margin-bottom: 0.3em;
}
#home .about p.plus {
	margin: 1em 0;
	font-weight: bold;
}
#home .about p.small {
	font-size: 0.6em;
}
#home .about h2 {
	margin-bottom: 0.5em;
}
#home .about h3 {
	margin: 2em 0 0.5em;
	font-size: 33px;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
}
#home .about .fig {
	max-width: 770px;
	margin: -1.3em auto 0;
}
@media(max-width:880px) {
	#home .about {
		padding: 8vw 0 4vw;
	}
}
@media(max-width:750px) {
	#home .about h2 {
		font-size: 11.5vw;
	}
}
@media(max-width:500px) {
	#home .about {
		font-size: 7vw;
	}
	#home .about h3 {
		font-size: 6.6vw;
	}
}

/* ------------------------- */

#home .scroll_anime {
	margin: 0;
	padding-top: 200px;
}
#home .scroll_anime .we_are {
	margin: 0 0 50px;
	padding: 50px 0 0;
	font-size: 50px;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}
#home .scroll_anime .plus_wrap {
	display: flex;
	justify-content: center;
}
#home .scroll_anime .plus_wrap .plus {
	font-size: 450px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: -0.02em;
}
#home .scroll_arrow {
	position: relative;
	margin: -40px auto 15px;
	padding-left: 5px;
	width: 90px;
	height: 30px;
	background-image: url(../images/arrow04.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
}
#home .scroll_arrow::after {
	position: absolute;
	content: 'scroll';
	top: 28px;
	left: 30px;
	font-size: 16px;
	color: #333;
}
@media screen and (max-width: 960px) {
	#home .scroll_anime {
		padding-top: 20vw;
	}
	#home .scroll_anime .we_are {
		margin: 0 0 5vw;
		padding: 5vw 0 0;
		font-size: 5vw;
	}
	#home .scroll_anime .plus_wrap .plus {
		font-size: 47vw;
	}
	#home .scroll_arrow {
		margin: -4.1vw auto 1.6vw;
		padding-left: 0.5vw;
		width: 9.4vw;
		height: 3.1vw;
	}
	#home .scroll_arrow::after {
		top: 2.9vw;
		left: 3.1vw;
		font-size: 1.7vw;
	}
}


/* OUR FLOW
------------------------------------- */
ul.our_flow {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.our_flow li {
	position: relative;
	margin: 0 0 2.2em 0;
	padding: 1em 3em;
	font-size: 19px;
	font-weight: bold;
	font-feature-settings: "palt";
	background-color: #F5F5F5;
}
ul.our_flow li:not(:last-child):after {
	position: absolute;
	content: '';
	bottom: -1.7em;
	left: 8em;
	width: 1em;
	height: 1.1em;
	background-image: url(../images/arrow03.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
ul.our_flow li.arrow_w::after {
	background-image: url(../images/arrow03_w.svg);
}
ul.our_flow li span {
	position: absolute;
	content: '';
	bottom: -1.9em;
	left: 11em;
	font-size: 0.9em;
}
@media screen and (max-width: 500px) {
	ul.our_flow li {
		padding: 1em 2em;
		font-size: 3.8vw;
	}
}


/* OUR CONTENTS
------------------------------------- */
#our-contents p {
	font-size: 21px;
	font-weight: 300;
	margin-bottom: 0.5em;
}
#our-contents figure {
	max-width: 800px;
	margin: 1.5em auto 0;
}
#our-contents section {
	padding: 60px 0 15px;
}
.dot_bg {
	background-color: transparent;
	background-image: url(../images/dot_bg.svg);
}
@media screen and (max-width: 750px) {
	#our-contents section {
		padding: 8vw 0 2vw;
	}
	.dot_bg {
		background-size: 5.4vw;
	}
}
@media screen and (max-width: 500px) {
	#our-contents p {
		font-size: 4.2vw;
	}
}


/* WORKS
------------------------------------- */
#works {
	color: #fff;
	background-color: #000;
}
#works header {
	background-color: #000;
}
#works header .header_logo a {
	background-image: url(../images/logo_3plus_w.png);
}
#works #dnav_open span {
	background-color: #fff;
}
#works #dnav_open span:before {
	background-color: #fff;
}
#works #dnav_open span:after {
	background: #fff;
}
#works #dnav_open.open span:before {
	background-color: #000;
}
#works #dnav_open.open span:after {
	background-color: #000;
}
#works .breadcrumb {
	color: #aaa;
}
#works .breadcrumb a {
	color: #aaa;
	text-decoration: none;
}

/* ------------------------- */

#works .works_btn {
	display: flex;
	justify-content: end;
	flex-wrap: wrap;
	gap: 0.5em;
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}
#works .works_btn li {
	margin: 0;
	padding: 0;
}

/* ------------------------- */

.video-container {
	margin: 0 auto 1.5rem;
	display: flex;
	flex-wrap: wrap;
	row-gap: 16px;
	justify-content: space-between;
}
.video-container li {
	flex: 0 1 calc(50% - 10px);
	width: 100%;
	aspect-ratio: 16 / 9;
}
.video-container li iframe {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 960px) {
	.video-container {
		row-gap: 1.6vw;
	}
	.video-container li {
		flex: 0 1 calc(50% - 1vw);
	}
}
@media screen and (max-width: 600px) {
	.video-container {
		row-gap: 3vw;
	}
	.video-container li {
		flex: 0 1 100%;
	}
}

/* ------------------------- */

#works .mainvisual {
	margin: 0 auto 2rem;
	max-width: 1030px;
}
#works .lead {
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.works-gallery {
	margin: 0 auto 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: space-between;
}
.works-gallery li {
	flex: 0 1 calc(50% - 9px);
	width: 100%;
}
.works-gallery li img {
	aspect-ratio: 1.6 / 1;
	object-fit: cover;
	width: 100%;
	height: auto;
}

/* ------------------------- */

.works_weblink {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	margin-bottom: 1rem;
}
.works_weblink .website li {
	margin-bottom: 1.5rem;
}
.works_weblink .sns_video {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.works_weblink .sns_video li {
	max-width: calc(50% - 7px);
	width: 100%;
}
.works_weblink .sns_video video {
	width: 100%;
}
@media screen and (max-width: 960px) {
	.works_weblink {
		gap: 2vw;
	}
}
@media screen and (max-width: 600px) {
	.works_weblink {
		grid-template-columns: 1fr 1fr 22%;
	}
	.works_weblink .sns_video li {
		max-width: 100%;
	}
}

/* ------------------------- */

@media screen and (max-width: 460px) {
	.lum-lightbox-inner img {
		max-width: 100% !important;
	}
}


/* CONTACT
------------------------------------- */
#contact .content {
	max-width: 780px;
}
.page-about .section-contact {
	margin-bottom: 4rem;
}
.page-about .section-contact .global-errors {
	padding-bottom: .5rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #999
}
.page-about .section-contact .global-errors p {
	font-size: 1rem;
	margin: 0;
	color: #dc3939
}
.page-about .section-contact dl>div {
	margin-bottom: 1rem
}
.page-about .section-contact dl dt {
	white-space: nowrap;
	font-size: 1.125rem;
	line-height: 1.2;
	min-width: 10em;
	font-weight: normal;
	margin-bottom: .1rem;
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
}
.page-about .section-contact dl dt span,
.page-about .section-contact dl dt label {
	display: inline-block;
}
.page-about .section-contact dl dt .required {
	margin-right: 0.5em;
	padding: 0.3em 0.5em;
	font-size: 0.7em;
	color: #fff;
	background-color: #dc3939;
	border-radius: 0.3em;
}
.page-about .section-contact dl dd {
	font-size: 1.125rem;
	margin-left: 0;
}
.page-about .section-contact dl dd input,
.page-about .section-contact dl dd textarea {
	max-width: 23em;
	width: 100%;
	border: 1px solid #aaa
}
.page-about .section-contact dl dd input.error,
.page-about .section-contact dl dd textarea.error {
	background-color: #fbe6e6;
	border: 1px solid #aaa
}
.page-about .section-contact dl dd p.error {
	font-size: 1rem;
	color: #dc3939
}
.page-about .section-confirm h3,
.page-about .section-finish h3,
.page-about .section-error h3 {
	font-size: 1.5rem;
	margin: 0 0 2rem;
	font-weight: normal
}
.page-about .section-confirm table,
.page-about .section-finish table,
.page-about .section-error table {
	margin-bottom: 2rem;
	border-collapse: collapse;
	width: 100%
}
.page-about .section-confirm table th,
.page-about .section-confirm table td,
.page-about .section-finish table th,
.page-about .section-finish table td,
.page-about .section-error table th,
.page-about .section-error table td {
	text-align: left;
	border: 1px solid #aaa;
	padding: .5rem
}
.page-about .section-confirm table th,
.page-about .section-finish table th,
.page-about .section-error table th {
	width: 9em;
	font-weight: normal;
	background-color: #eee
}
.page-about .section-confirm .btn-wrap,
.page-about .section-finish .btn-wrap,
.page-about .section-error .btn-wrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center
}
.page-about .section-confirm .btn-wrap .contact-btn,
.page-about .section-finish .btn-wrap .contact-btn,
.page-about .section-error .btn-wrap .contact-btn {
	margin: 0 .5rem
}
.page-about .contact-btn {
	max-width: 5em;
	margin: 0 0 0.5em 0;
	padding: 0.1em 1.2em;
	background-color: #000;
	color: #fff;
	border-radius: 0.3em;
}
.page-about .contact-btn:hover {
	opacity: 0.7;
}
.confirm table {
	margin-top: 1em;
}
#contact .content .gohome {
	margin-top: 1.5em;
	text-align: center;
}
#contact .content .gohome a {
	text-decoration: none;
	color: #333;
}


/* PRIVACY POLICY
------------------------------------- */
.privacy {
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2em;
	font-size: 18px;
	font-weight: 300;
}
.privacy h2 {
	margin-bottom: 1em;
	font-size: 24px;
	font-weight: bold;
}
.privacy .lead {
	margin-bottom: 1.5em;
}
.privacy .update {
	margin-bottom: 2em;
	text-align: right;
}
.privacy ol {
	margin-bottom: 1.5em;
	padding-left: 1.5em;
}
.privacy ol li {
	line-height: 1.8;
}
.privacy ul {
	margin: 0.8em 0;
}
@media screen and (max-width: 500px) {
	.privacy {
		padding: 0;
		font-size: 3.8vw;
	}
	.privacy h2 {
		font-size: 5vw;
	}
	.privacy ol li {
		line-height: 1.6;
	}
}
