@charset "utf-8";
/* 
This is css for Otsukai.
Author: Otsukai inc.
*/

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
	- Base
	- Layout
	- Grid
	- Component
		-- Title
		-- Background
		-- Buttons
		-- Utilities
		-- Spacing
	- Catchcopy Area
	- Feature Area
	- About Area
	- Flow Area
	- Footer Area
*/

/* Break Point
––––––––––––––––––––––––––––––––––––––––––––––––––
- 〜600px
- 〜960px
*/

/* Base
–––––––––––––––––––––––––––––––––––––––––––––––––– */
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-wrap: break-word;
	word-wrap: break-word;
}
html {
	font-size: 62.5%;
}
body {
	color: #fff;
	font-size: 1.6rem;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.4;
}
h1,h2,h3,h4,dl,dt,dd { margin: 0; }
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
button { cursor: pointer; }
a {
	color: #007bff;
}

/* Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.l-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	background: rgb(222,75,109);
	background: linear-gradient(210deg, rgba(222,75,109,1) 0%, rgba(243,175,32,1) 100%);
}

.l-contents {
	padding: 3rem;
}

.l-main {
	max-width: 1200px;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.l-main-box {
	width: 45%;
}

@media screen and (max-width: 600px) {
	.l-container {
		display: block;
		height: 100%;
	}
	.l-contents {
		padding: 2rem;
	}
	.l-main-box {
		width: 100%;
		margin-bottom: 3rem;
	}
}

/* Contents
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.l-logo {
	width: 28rem;
	margin: 0 auto 8rem;
}

@media screen and (max-width: 600px) {
	.l-logo {
		width: 60%;
		min-width: 8rem;
	}
}
h2, h3 {
	margin-bottom: 1em;
}

.l-main-content {
	margin-bottom: 2.6rem;
}
.is-right {
	text-align: right;
}
.l-main-button {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.8rem 6rem;
	background: #fff;
	color: #DE4B6D;
	font-weight: bold;
	text-decoration: none;
	border-radius: 3rem;
}
.l-main-button:hover {
	opacity: .8;
}
