@charset "utf-8";
/* CSS Document */

*,
*::after,
*::before {
	box-sizing: border-box;
	padding: 0;
 	margin: 0;
}
body, html {
	width: 100%;
	height: 100%;
	min-width: 750px;
	margin: 0 auto;
	padding: 0;
}
html {
	height: fill-available;
    height: -webkit-fill-available;
}
body {
	color: #4d4d4d;
	font-family: Arial, Helvetica, "sans-serif", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media screen and (max-device-width: 800px){
	body{
    	-webkit-text-size-adjust: 100%;
	}
}
@font-face {
	font-family: 'Acumin Variable Concept';
	src: url("../font/AcuminVariableConcept.otf") format('opentype');
}
@font-face {
	font-family: 'DIN Condensed Bold';
	src: url("../font/D-DIN Condensed Bold.ttf") format('truetype');
}
@font-face {
	font-family: 'DIN Alternate Bold';
	src: url("../font/DIN Alternate Bold.ttf") format('truetype');
}
@font-face {
	font-family: 'Futura Bold';
	src: url("../font/Futura Bold.otf") format('opentype');
}
h1, h2, h3, h4, h5, p {
	margin: 0;
	padding: 0;
}
a {
	transition: 0.2s ease-in-out;
	text-decoration: none;
	color: inherit;
	margin: 0;
	padding: 0;
}
.flex {
	display: flex;
}
.flex-between {
	justify-content: space-between;
}
.flex-align {
	align-items: center;
}
.blue_bg {
	background: #7d9bda;
	padding: 100px 0;
	margin: 0;
}
.white_bg {
	background: #FFF;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 20px;
	padding: 100px 0 60px 0;
}

/* ---------- ヘッダー ---------- */
.sticky {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	min-width: 750px;
	z-index: 100;
	background: #FFF;
	box-shadow: rgba(0,0,0,0.3) 0 0 8px;
}
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 120px;
	max-width: 1300px;
	padding-right: 120px;
	width: 95%;
	margin: auto;
}

/* ---------- ロゴ ---------- */
header .logo {
	width: 250px;
}
header .logo .img:hover {
	opacity: 60%;
}
header .logo h2 {
	font-size: 1.25rem;
	letter-spacing: 2px;
}

/* ---------- 電話番号 ---------- */
header .tel {
	width: 410px;
	margin-left: 10px;
}
header .tel h1 {
	font-size: 1.05rem;
	text-align: center;
	border-top: #000 1px solid;
	border-bottom: #000 1px solid;
	padding: 2px 0;
	margin: 15px 0 3px 0;
}
.tel .phone {
	font-family: 'Acumin Variable Concept';
	font-weight: bold;
	font-size: 3.4rem;
	color: #d83e38;
	display: flex;
	align-items: center;;
}
.tel .phone:hover {
	opacity: 60%;
}
.tel .phone img {
	margin-bottom: 10px;
}

/* ---------- お問合せ ---------- */
header .contact {
	width: 375px;
}
header .contact h1 {
	font-size: 1rem;
	text-align: center;
	margin-bottom: 5px;
}
.button {
	background: #7d9bda;
	color: #FFF;
	border-radius: 10px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.1rem;
	font-weight: bold;
}
.button:hover {
	background: #4d4d4d;
}
.button img {
	margin-right: 5px;
	filter: brightness(0) invert(1);
}
@media only screen and (max-width: 1250px) {
	header {
		max-width: 1050px;
	}
	header .contact {
		width: 120px;
	}
	header .contact .button {
		height: 90px;
		flex-direction: column;
	}
	header .contact .button img {
		margin: 0 0 5px 0;
	}
	header .contact span {
		display: none;
	}
	header .contact h1 {
		display: none;
	}
}
@media only screen and (max-width: 1000px) {
	header {
		max-width: 800px;
	}
	header .contact {
		display: none;
	}
}
@media only screen and (max-width: 900px) {
	header {
		max-width: 750px;
	}
	header .tel {
		width: 330px;
	}
	header .tel h1 {
		font-size: 0.9rem;
		margin: 10px 0 8px 0;
	}
	.tel .phone img {
		width: 40px;
		height: 25px;
	}
	.tel .phone {
		font-size: 2.5rem;
	}
}

/* ---------- ナビゲーション ---------- */
#nav-container {
	position: fixed;
	top: 0;
	bottom: 0;
	height: 100%;
    min-height: fill-available;
    min-height: -webkit-fill-available;
	width: 100%;
	pointer-events: none;
	z-index: 200;
}
#nav-container .bg {
	position: fixed;
	top: 120px;
	width: 100%;
	height: 100%;
    min-height: fill-available;
    min-height: -webkit-fill-available;
	visibility: hidden;
	opacity: 0;
	transition: .3s;
 	background: #000;
}
#nav-container:focus-within .bg {
	visibility: visible;
	opacity: .6;
}
.hamburger {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	-webkit-appearance: none;
	border: 0;
	background: #4d4d4d;
	border-radius: 0;
	height: 120px;
	width: 130px;
	padding: 0 25px;
	cursor: pointer;
	pointer-events: auto;
	margin-left: auto;
	touch-action: manipulation;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.hamburger p {
	color: #FFF;
	font-family: 'DIN Condensed Bold';
	text-align: center;
	height: 50px;
}
.hamburger .open {
	font-size: 2.6rem;
}
.hamburger .close {
	font-size: 2.4rem;
	display: none;
}
.line {
  display: block;
  width: 100%;
  height: 4px;
  margin: 5px 0;
  background: #FFF;
  transition: .3s;
}
#nav-container:focus-within .hamburger .open {
   	display: none;
}
#nav-container:focus-within .hamburger .close {
   	display: block;
}
#nav-container:focus-within .hamburger {
  pointer-events: none;
}
#nav-container:focus-within .line {
  transform: scaleX(50%);
}
#nav-content {
	margin-top: 120px;
	width: 25%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
    min-height: fill-available;
    min-height: -webkit-fill-available;
	background: #ececec;
	pointer-events: auto;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	transform: translateX(100%);
	transition: transform .3s;
	will-change: transform;
	contain: paint;
	display: flex;
	align-items: center;
}
#nav-content nav {
	height: 90%;
	width: 70%;
	display: flex;
	flex-direction: column;
	margin-left: 10%;
}
#nav-content a {
	font-size: 1.4rem;
	padding: 10px 5px;
	text-transform: uppercase;
	transition: color .1s;
	border-bottom: #ececec 6px solid;
}
#nav-content a:hover {
	border-bottom: #333 6px solid;
}
#nav-content .SNS a {
	border-bottom: none;
}
#nav-container:focus-within #nav-content {
	transform: none;
}
@media only screen and (max-width: 1250px) {
	#nav-content {
		width: 30%;
	}
}
@media only screen and (max-width: 1000px) {
		#nav-content {
		width: 40%;
	}
}
@media only screen and (max-width: 900px) {
	#nav-content {
		width: 60%;
	}
	#nav-content .link {
		font-size: 2rem;
	}
}

/* ---------- SNS ---------- */
.SNS {
	width: 120px;
	align-items: flex-end;
	height: 80px;
	margin-top: 20%;
}
.SNS a {
	width: 45px;
}
.SNS a:hover {
	opacity: 60%;
}
.SNS h1 {
	font-size: 0.74rem;
	font-weight: 200;
	text-align: center;
}
.SNS .icon {
	width: 55px;
	height: 55px;
	border-radius: 4px;
}
.SNS .twitter h1 {
	color: #23b9ed;
}
.SNS .twitter .icon {
	background: #23b9ed;
}
.SNS .youtube h1 {
	color: #d83e38;
}
.SNS .youtube .icon {
	background: #d83e38;
}
@media only screen and (max-width: 900px) {
	.SNS {
		margin-top: 5%;
	}
}

/*........../ PARALLAX /..........*/
/* 固定する背景 */
.parallax {
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
}
@media only screen and (max-width: 800px) {
	.parallax {
		background-attachment: scroll;
		overflow: hidden;
	}
}
/*........../ トップ動画 /..........*/
#video {
	height: 0;
	padding-bottom: 56.25%;
	margin-top: 120px;
}
#video video {
	position: fixed;
	width: 100%;
	min-width: 750px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -999;
}

/*........../ 全体内容 /..........*/
.content {
	background: #FFF;
	margin: 0;
	padding: 0;
}
.title {
	font-family: 'Futura Bold';
	text-align: center;
	color: #7d9bda;
	font-size: clamp(5rem, -1.2821rem + 13.4017vw, 14.8rem);
}
.content h2 {
	font-size: clamp(3.5rem, 3.179rem + 0.68vw, 4rem);
	line-height: 2.5ex;
	text-align: center;
}
.content h3 {
	color: #999999;
	font-size: 1.5rem;
	margin-bottom: 20px;
}
.content h4 {
	font-size: 1.813rem;
}
.ENG {
	font-family: 'DIN Alternate Bold';
}
.content .button:hover {
	color: #FFF;
	background: #4d4d4d;
}
.content .button {
	border: #000 1px solid;
	border-radius: 0;
	background: none;
	color: #4d4d4d;
	font-weight: normal;
	font-size: 1.5rem;
	width: 450px;
	height: 60px;
	margin: 50px auto 0 auto;
}
.headline {
	align-items: center;
	margin-bottom: 10px;
}
.headline hr {
	width: 100%;
	border-top: #7d9bda 14px solid;
	border-bottom: #7d9bda 5px solid;
	border-left: none;
	border-right: none;
	padding-top: 10px;
}
.headline h5 {
	color: #7d9bda;
	font-size: clamp(1.85rem, 1.497rem + 0.75vw, 2.4rem);
	text-align: center;
}
.sub_page .top_img {
}
.sub_page .top_img .black {
	height: 100%;
	max-height: 450px;
	padding: 10% 0;
	margin-top: 120px;
	background: rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.sub_page .top_img .title {
	color: rgba(255,255,255,0.8);
	line-height: 2ex;
	text-shadow: rgba(0,0,0,0.5) 0 0 20px;
}
.sub_page .top_img .page_title {
	color: rgba(255,255,255,1);
	font-size: 3rem;text-shadow: rgba(0,0,0,0.5) 0 0 20px;
}
.wrap {
	width: 90%;
	max-width: 1000px;
	margin: 150px auto;
}
@media only screen and (max-width: 900px) {
	.content h2 {
		display: flex;
		flex-direction: column;
	}
	.content h4 {
		display: flex;
		flex-direction: column;
	}
	.content .button {
		height: 60px;
	}
}

/*........../ 会社概要 /..........*/
#company {
	padding: 80px 0 100px 0;
	text-align: center;
}
#company h2 {
	padding-left: 40px;
}
@media only screen and (max-width: 900px) {
	#company h2 {
		padding-top: 40px;
	}
}

/*........../ 経営理念 /..........*/
#profile .headline h5 {
	width: 720px;
}
#profile #img1 {
	background-image: url("../images/Cut (5).png");
	height: 500px;
	margin-bottom: 130px;
}
#profile #img2 {
	background-image: url("../images/Cut (7).png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 390px;
	max-width: 805px;
	width: 40%;
	box-shadow: rgba(125,155,218,0.5) 30px 30px 0;
}
#profile #img3 {
	background-image: url("../images/Cut (2).png");
	background-position: right;
	background-size: cover;
	background-repeat: no-repeat;
	height: 390px;
	max-width: 805px;
	width: 40%;
	box-shadow: rgba(125,155,218,0.5) -30px 30px 0;
}
#profile #img4 {
	background-image: url("../images/Cut (3).png");
	background-position: center left;
	background-size: cover;
	background-repeat: no-repeat;
	height: 390px;
	max-width: 805px;
	width: 40%;
	box-shadow: rgba(125,155,218,0.5) 30px 30px 0;
}
.philosophy {
	padding-bottom: 100px;
}
.philosophy .align {
	width: 60%;
	margin-left: 5%;
	position: relative;
}
.philosophy hr {
	max-width: 765px;
	width: 90%;
	margin-right: 10%;
	border: none;
	height: 1px;
	background: #000;
}
.philosophy p {
	width: 150px;
	font-size: 1.625rem;
}
.philosophy h2 {
	color: #7d9bda;
	margin: 20px 0;
	text-align: left;
}
.philosophy h3 {
	font-size: 1.813rem;
	font-weight: normal;
	line-height: 3ex;
}
.philosophy .number {
	color: #ced5d8;
	opacity: 50%;
	font-family: 'Futura Bold';
	font-size: 15rem;
}
.philosophy .button {
	margin: auto 0;
}
#philosophy_one .button {
	width: 500px;
	position: relative;
	z-index: 5;
}
#philosophy_one .button .hide {
	display: none;
}
#philosophy_one .number {
	position: absolute;
	bottom: -10%;
	right: 3%;
}
@media only screen and (max-width: 1200px) {
	.philosophy h2 {
		display: flex;
		flex-direction: column;
	}
	.philosophy .align {
		width: 50%;
		margin-left: 5%;
	}
	#profile #img2 {
		width: 50%;
	}
	#profile #img3 {
		width: 50%;
	}
	#profile #img4 {
		width: 50%;
	}
	#philosophy_one .button {
		height: 100px;
		width: 350px;
	}
	#philosophy_one .button .hide {
		display: block;
	}
}
@media only screen and (max-width: 900px) {
	.philosophy .align {
		width: 55%;
	}
	#profile #img2 {
		width: 45%;
		height: 260px;
		margin-right: 3%;
	}
	#profile #img3 {
		width: 45%;
		height: 260px;
		margin-left: 3%;
	}
	#profile #img4 {
		width: 45%;
		height: 260px;
		margin-right: 3%;
	}
	.philosophy .number {
		font-size: 12rem;
		display: inline;
	}
	#philosophy_one .number {
		left: -66%;
		z-index: 0;
	}
	#philosophy_three .number {
		position: absolute;
		right: 5%;
		bottom: 150%;
	}
}

/*........../ 作品・料金 /..........*/
#work .headline hr {
	border-color: #333333;
}
#work .headline h5 {
	color: #333333;
	width: 230px;
}
#work .title {
	color: #FFF;
}
#work h2 {
	color: #d83e38;
	padding: 0 0 40px 40px;
}
#work .flex-between {
	width: 95%;
	max-width: 1300px;
	margin: auto;
}
#work .img {
	padding: 0 10px;
}
#work img {
	width: 100%;
	height: auto;
	display: block;
}
#work .button {
	color: #FFF;
	border-color: #FFF;
}
#work .button:hover {
	color: #333333;
	background: #FFF;
}

/*........../ サービス /..........*/
#service {
	padding: 100px 0 80px 0;
}
#service .headline h5 {
	width: 150px;
}
#service h2 {
	color: #7d9bda;
}
#service .flex-between {
	max-width: 1380px;
	width: 95%;
	margin: 40px auto 0 auto;
}
#service .img {
	padding: 0 5px;
}
#service img {
	width: 100%;
	height: auto;
	display: block;
}

/*........../ 制作までの流れ /..........*/
#flow .headline h5 {
	width: 100px;
}
#flow h2 {
	color: #7d9bda;
}
#flow .button {
	margin: 20px auto 70px auto;
}
#flow .adjust:nth-of-type(3) {
	flex-direction: row-reverse;
	align-items: flex-end;
}
#flow #img4 {
	height: 0;
	padding-bottom: 20%;
	width: 60%;
	max-width: 1000px;
	min-width: 650px;
	background-image: url("../images/Cut (4).png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#flow #img5 {
	margin-top: 50px;
	height: 0;
	padding-bottom: 20%;
	width: 60%;
	max-width: 1000px;
	min-width: 650px;
	background-image: url("../images/Cut (6).png");
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
}
#flow .align {
	padding: 0 3%;
}
#flow .align h3 {
	font-weight: normal;
}
#flow .align .img img {
	max-width: 538px;
	width: 100%;
	height: auto;
	display: block;
	opacity: 50%;
}
@media only screen and (max-width: 1250px) {
	#flow .adjust {
		flex-direction: column;
	}
	#flow .adjust:nth-of-type(3) {
		flex-direction: column;
	}
	#flow .align {
		padding: 5%;
	}
	#flow #img4 {
		padding-bottom: 30%;
	}
	#flow #img5 {
		padding-bottom: 30%;
	}
}

/*........../ よくある質問 /..........*/
#QandA {
	padding: 80px 0;
}
#QandA .headline hr {
	border-color: #333333;
}
#QandA .headline h5 {
	color: #333333;
	width: 90px;
}
#QandA .title {
	color: #FFF;
}
#QandA .button {
	color: #FFF;
	border-color: #FFF;
	margin: 5% auto 0 auto;
}
#QandA .button:hover {
	color: #333333;
	background: #FFF;
}
#QandA #img6 {
	height: 0;
	padding-bottom: 35%;
	background-image: url("../images/Cut (10).jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	filter: brightness(30%);
}
#QandA .position {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
}

/*........../ よくある質問 /..........*/
#info .headline h5 {
	width: 220px;
}
#info .title {
	font-size: clamp(5.7rem, 3.264rem + 5.2vw, 9.5rem);
	margin-top: 3%;
}
#info .align {
	padding: 80px 0 100px 0;
}
#info a:hover {
	color: #d83e38;
}

/*........../ スタッフ募集 /..........*/
#recruit .blue {
	background: rgba(125,155,218,0.3);
	position: relative;
}
#recruit #img7 {
	height: 0;
	padding-bottom: 40%;
	background-image: url("../images/Cut (5).png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	mix-blend-mode: multiply;
}
#recruit .align {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
#recruit h1 {
	text-align: center;
	color: #FFF;
	font-size: clamp(3.5rem, 1.737rem + 3.76vw, 6.25rem);
	line-height: 2.5ex;
	text-shadow: rgba(0,0,0,0.7) 7px 7px 5px;
}
#recruit .button {
	background: #FFF;
	border-color: #FFF;
	margin: 3% auto 0 auto;
	box-shadow: rgba(0,0,0,0.7) 7px 7px 5px;
}
#recruit .button:hover {
	background: #000;
	border-color: #000;
	color: #FFF;
}
@media only screen and (max-width: 900px) {
	#recruit #img7 {
		padding-bottom: 50%;
	}
}

/*........../ フッター /..........*/
footer {
	background: #7d9bda;
	padding: 1.5% 0 2% 0;
}
footer .SNS {
	padding-bottom: 15px;
	margin: auto;
}
footer .SNS h1 {
	color: #FFF;
}
footer .copyright {
	color: #FFF;
	text-align: center;
	font-size: 1.8rem;
}