/*!
Theme Name: infinitylife.app
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: infinitylife-app
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

infinitylife.app is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
- Normalize
- Box sizing
# Base
- Typography
- Elements
- Links
- Forms
## Layouts
# Components
- Navigation
- Posts and pages
- Comments
- Widgets
- Media
- Captions
- Galleries
# plugins
- Jetpack infinite scroll
# Utilities
- Accessibility
- Alignments

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	color: #fff;
	font-size: 16px;
	line-height: 2;
	padding: 0px;
	margin: 0px;
}

.bgVideo {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: 0;
}

.outerblock:before {
	content: '';
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #090a58;
	z-index: 1;
	top: 0;
	left: 0;
	opacity: 0.8;
}

.container {
	max-width: 1200px;
	margin: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.outerblock .container {
	position: relative;
	z-index: 10;
}

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

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0px;
}

.btn {
	background-color: #008bfc;
	color: #fff;
	text-decoration: none;
	margin: 0px;
	padding: 15px 30px;
	white-space: pre;
	line-height: 1;
	border-radius: 30px;
	text-transform: uppercase;
}

.btn:hover {
	background-color: #fff;
	color: #000;
}

.custom-logo-link {
	display: block;
	max-width: 400px;
}

h1 {
	font-size: 45px;
	text-transform: uppercase;
	font-weight: 100;
	margin: 0px;
	line-height: 1.2;
}

h2 {
	font-size: 45px;
	text-transform: uppercase;
	font-weight: 100;
	margin: 0px;
	line-height: 1.2;
}

h1 span {
	display: block;
	font-weight: 700;
}

.content-padding {
	padding-bottom: 50px;
	padding-top: 50px;
}

.d-flex {
	display: flex;
	align-items: center;
}

.max-width {
	/*     max-width: 920px; */
	margin: auto;
}

.halfcall {
	display: flex;
	flex-direction: column;
	width: 50%;
}

.halfcall img {
	max-width: 50%;
	height: auto;
}

.videoInto {
	width: 100%;
	max-width: 300px;
	margin: auto;
}

.videoInto video {
	border-radius: 30px;
	height: auto;
	width: 100%;
	border: 5px solid #fff;
}

.halfcall.d-col {
	flex-direction: row;
}

.appInfo {
	/*     max-width: 1000px; */
	margin: 50px auto;
	background-color: #008bfc;
	padding: 60px;
	border-radius: 20px;
}

.appInfo .halfcall {
	padding-left: 10%;
}

.appInfo .halfcall p {
	font-size: 26px;
	font-weight: 200;
	line-height: 1.5;
	margin: 10px 0px;
}

.appInfo .halfcall.d-col {
	padding: 0px;
	column-gap: 20px;
}

.inlineForm {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	column-gap: 15px;
}

.inlineForm .inf-input {
	width: 40%;
}

.inlineForm .inf-input input {
	width: 100%;
	padding: 12px 30px;
	border: 0px;
	font-size: 16px;
	color: #000;
	border-radius: 30px;
	text-transform: uppercase;
	font-weight: 600;
	font-family: inherit;
}

.inlineForm input[type="submit"] {
	background-color: #008bfc;
	color: #fff;
	text-decoration: none;
	margin: 0px;
	padding: 15px 30px;
	white-space: pre;
	line-height: 1;
	border-radius: 30px;
	text-transform: uppercase;
	border: 0px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	font-size: 16px;
}

.inlineForm input[type="submit"]:hover {
	background-color: #fff;
	color: #000;
}

.footer {
	padding: 20px;
	text-align: center;
}

.footer a {
	color: #fff;
}

.highlight {
	margin: 0px;
	text-align: center;
	font-size: 30px;
}

.highlight img {
	width: 30px;
	vertical-align: -4px;
}

.altcha-label {
	color: #000;
}


@media (max-width: 480px) {
	h1 {
		font-size: 35px;
	}

	header .btn {
		display: none;
	}

	.d-flex {
		flex-direction: column;
	}

	.halfcall {
		width: 100%;
	}

	.videoInto {
		margin: auto;
	}

	.max-width {
		text-align: center;
	}

	.content-padding {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.appInfo {
		padding: 20px;
	}

	.halfcall img {
		max-width: 46%;
		height: auto;
	}

	.appInfo .halfcall {
		padding: 0px;
		text-align: center;
	}

	.inlineForm {
		flex-direction: column;
	}

	.inlineForm .inf-input {
		width: 100%;
		margin: 10px 0px;
	}

	.inlineForm input[type="submit"] {
		width: 100%;
		margin-top: 10px;
	}

	.footer {
		padding: 20px 0px;
		font-size: 14px;
	}

	.appInfo .halfcall p {
		font-size: 20px;
	}
}