@charset "UTF-8";
/*------------------------------------
	共通設定用
--------------------------------------*/
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');

html {
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
	font-feature-settings : "palt";

}

body {
	margin: 0;
	font-size: 1.4rem;
	font-family: 'Noto Sans Japanese','游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic',sans-serif;
	color: #1c1c1c;
	line-height: 1.6;
}

header {
	position: relative;
	overflow: hidden;
}

main {
	width: 100%;
	display: block;
}

h1,h2,h3,h4,figure,dl,dd {
	margin: 0;
}

p {
	letter-spacing: 0.25em;
	line-height: 1.75em;
	margin: 2em 0;
}

section,article,div,dl,ul,ol,dt,dd {
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: none;
}

strong {
	color: #e5b855;
	position: relative;
}

img {
	vertical-align: bottom;
}

li {
	line-height: 1.75em;
}

address {
	font-style: normal;
}

table {
	width: 100%;
	border: 1px solid;
	border-collapse: collapse;
}

th,td {
	padding: 1em;
	text-align: center;
}


.list-none {
	list-style: none;
	margin: 0;
	padding: 0;
}

.clearFix::after {
	line-height: 0;
	visibility: hidden;
	font-size: 0;
	content: '';
	display: block;
	clear: both;
}
.sp-break {
	display: none;
}

/*------------------------------------
	SVG
--------------------------------------*/
.icon {
	display: block;
}

.bullet-icon {
	display: inline-block;
	vertical-align: middle;
}

.top-logo {
	width: 170px;
	fill: #fff;
	transition: fill 0.5s ease;
}

.top-logo:hover {
	fill: #e5b855;
}

.foot-logo {
	width: 170px;
	fill: #2f2f2f;
}

.sns-logo {
	width: 40px;
	max-height: 40px;
	fill: #2f2f2f;
	transition: fill 0.5s ease;
}

.foot-external-link,
.carsensor-color,
.goo-color {
	width: 100%;
	max-height: 80px;
	fill: #2f2f2f;
	transition: fill 0.5s ease;
}

.carsensor-color{
	fill: #ff5100;
}

.goo-color{
	fill: #fe0000;
}

.sns-logo:hover,
.foot-external-link:hover,
.carsensor-color:hover,
.goo-color:hover{
	fill: #e5b855;
}

.cs-icon {
	fill: #ff5100;
}

.goo-icon {
	fill: #fe0000;
}

.access-map-log {
	height: 100px;
	fill: #fff;
}

.page-top {
	width: 65px;
	margin: 0 auto;
	height: 50px;
	fill: #fff;
	transition: fill 0.5s ease;
}

.page-top:hover {
	fill: #e5b855;
}

.mail-icon {
	width: 2em;
	height: 1.5em;
	margin-right: 2em;
	fill: #fff;
}

.link-icon {
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
	fill: #1c1c1c;
}

.fill-wht {
	fill: #fff;
}

/*------------------------------------
	EffectMotion
--------------------------------------*/
.em-a::before {
	width: 100%;
	height: 100%;
	background: #1c1c1c;
	content: '';
	display: block;
	position: absolute;
	transform: rotate(180deg);
	top: 0;
	left: 100%;
	z-index: 2;
	animation: turn-blind 1s ease forwards;
}

@keyframes turn-blind {
	0% {
		left: 0;
	}
	100% {
		left: 100%;
	}
}

.em-b {
	display: inline-block;
	position: relative;
	overflow: hidden;
	transition: opacity 0.3s cubic-bezier(.17,.66,.83,.67);
}

.em-b .slide-effect__inner {
	opacity: 0;
	transition: opacity 0.1s cubic-bezier(.17,.66,.83,.67) 0.75s;
}

.slide-effect {
	opacity: 1 !important;
}
.slide-effect::before {
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	position: absolute;
	left: -100%;
	top: 0;
	z-index: 10;
	animation: slide-motion 0.75s cubic-bezier(.16,.63,.85,.36) 0.25s forwards;
}

.slide-effect .slide-effect__inner {
	opacity: 1;
}

.slide-effect--blk::before {
	background: #1c1c1c;
}

.slide-effect--wht::before {
	background: #fff;
}

.slide-effect--gold::before {
	background: #e5b855;
}

@keyframes slide-motion {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.display-news {
	animation: ticker-in 1s ease 0.5s forwards;
}

@keyframes ticker-in {
	0% {
		left: 100%;
		opacity: 0;
	}

	80% {
		opacity: 0.8;
	}

	100% {
		left: 5%;
		opacity: 1;
	}
}

.hidden-news {
	animation: ticker-out 1s ease forwards;
}

@keyframes ticker-out {
	0% {
		left: 5%;
		opacity: 1;
	}

	80% {
		opacity: 0.2;
	}

	100% {
		left: -100%;
		opacity: 0;
	}
}

.scrolled {
	animation: scrollBg 1s ease forwards;
}

@keyframes scrollBg {
	0% {
		background: transparent;
		color: #fff;
	}
	30% {
		padding: 2% 4%;
	}
	100% {
		background: #131313;
		padding: 1% 2%;
	}
}

.scrolled-top {
	animation: scrolledTopBg 1s ease forwards;
}

@keyframes scrolledTopBg {
	0% {
		background: #131313;
		padding: 1% 2%;
	}
	100% {
		background: transparent;
		padding: 2% 4%;
	}
}

.loading-anime {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 300;
	top: 0;
	left: 0;
	display: block;
	text-align: center;
	font-style: normal;
	letter-spacing: .5em;
	color: #fff;
}

.loading-anime::before,
.loading-anime::after {
	width: 100%;
	height: 50%;
	content: '';
	display: block;
	position: fixed;
	z-index: 299;
	left: 0;
	transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
	transition-delay: .3s;
	background-color: #1c1c1c;
}

.loading-anime::before {
	top: 0;
}

.loading-anime::after {
	bottom: 0;
}

.loated .loading-anime::before {
	height: 0;
	transform: translateY(-1%);
}

.loated .loading-anime::after {
	height: 0;
	transform: translateY(-1%);
}

.loading-anime__line {
	width: 150px;
	height: 1.25em;
	margin: auto;
	position: fixed;
	z-index: 310;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: block;
	transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
	transition-delay: .6s;
	text-align: center;
	overflow: hidden;
}

.loading-anime__line::after {
	width: 0;
	height: 100%;
	position: absolute;
	z-index: 310;
	top: 0;
	left: 0;
	content: '';
	display: block;
	content: '';
	-webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
	animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
	background-color: #fff;
	will-change: transform, width;
}

.loading-anime__line::before {
	content: 'NEXT ONE INC.';
	display: block;
	animation: loadingAnim_text 1s ease .1s infinite alternate both;
	will-change: opacity;
}

.loated .loading-anime__line {
	overflow: hidden;
	height: 0;
}

.loated .loading-anime__line::after,
.loated .loading-anime__line::before {
	animation: none;
}

.loated .loading-anime__line::before {
	content: 'LOATED';
}

@-webkit-keyframes loadingAnim{
	0%{
		width: 0;
	}
	100%{
		width: 100%;
		transform: translate(100%);
	}
}

@keyframes loadingAnim{
	0%{
		width: 0;
	}
	100%{
		width: 100%;
		transform: translate(100%);
	}
}

@-webkit-keyframes loadingAnim_text{
	0%{
		opacity: 1;
		color: #e5b855;
	}
	50%{
		color: #333;
	}
	100%{
		opacity: .5;
		color: #fff;
	}
}
@keyframes loadingAnim_text{
	0%{
		opacity: 1;
		color: #e5b855;
	}
	50%{
		color: #333;
	}
	100%{
		opacity: .5;
		color: #fff;
	}
}


/*------------------------------------
	Button
--------------------------------------*/
.button {
	text-align: center;
	font-weight: bold;
	display: block;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

nav.bg-blk .button,
nav.bg-gold .button {
	transition: color .5s ease;
}

nav.bg-blk svg.bullet-icon,
nav.bg-gold svg.bullet-icon {
	transition: fill .5s ease;
}

nav .button::before {
	width: 0%;
	height: 100%;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: width 0.5s ease
}

nav.bg-blk .button::before {
	background: #e5b855;
}

nav.bg-gold .button::before {
	background: #131313;
}

nav.bg-blk .button:hover::before,
nav.bg-gold .button:hover::before {
	width: 100%;
}

nav.bg-blk .button:hover{
	color: #131313;
}
nav.bg-gold .button:hover {
	color: #fff;
}

nav.bg-blk .button:hover svg.bullet-icon{
	fill: #131313;
}
nav.bg-gold .button:hover svg.bullet-icon{
	fill: #fff;
}


.view-button {
	padding: 2em;
	font-size: 1.8rem;
}

.web-button {
	padding: 2em 0;
	margin-bottom: 1em;
	font-size: 1.8rem;
}

.tel-button {
	padding: 2em;
	border: 1px solid;
	font-style: normal;
}

.tel-num {
	font-size: 3.2rem;
	padding-bottom: 0.25em;
	display: block;
}

.tel-text {
	display: block;
}

.mb-tel-link {
	display: none;
}


/*------------------------------------
	SVG
--------------------------------------*/
.sns-icon {
	width: 2em;
}

.portal-icon {
	padding: 0.5em;
	border: 1px solid #4f4f4f;
}

/*------------------------------------
	Link
--------------------------------------*/
.text-link-a {
	position: relative;
	transition: color .3s ease;
}

.text-link-a::after {
	width: 0;
	border-bottom: 2px solid;
	content: '';
	display: block;
	position: absolute;
	bottom: -0.2em;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s ease;
}
.text-link-a:hover {
	color: #e5b855;
}

.text-link-a:hover::after {
	width: 100%;
	border-bottom-color: #e5b855;
	bottom: -0.4em;
}

.text-link-b:hover,
.text-link-c {
	color: #e5b855;
	text-decoration: underline;
}

/*------------------------------------
	Image
--------------------------------------*/
.block-img {
	width: 100%;
	display: block;
}


.cover-parent {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}

.top-page-cover.cover-parent {
	height: 100vh;
}

.cover {
	display: block;
	position: absolute;
}

/*------------------------------------
	Box
--------------------------------------*/
.outer-wrap {
	max-width: 90%;
	min-width: 1280px;
	margin: 0 auto;
	padding: 5% 3% 5%;
	box-sizing: border-box;
}

.inner-wrap {
	width: 1140px;
	margin: 0 auto;
}

.content-box {
	margin-top: 15%;
	margin-bottom: 15%;
}

.distorted-shape {
	overflow: hidden;
	position: relative;
}

.distorted-shape-before::before {
	width: 100%;
	height: 500px;
	background: #1c1c1c;
	content: '';
	display: block;
	position: absolute;
	top: -240px;
	left: 0;
	z-index: -1;
	transform: skew(-5deg) rotate(-5deg);
}

.distorted-shape-after::after {
	width: 100%;
	height: 300px;
	background: #1c1c1c;
	content: '';
	display: block;
	position: absolute;
	bottom: -180px;
	left: 0;
	z-index: -2;
	transform: skew(5deg) rotate(5deg);
}

.drop-color {
	box-shadow: 20px 20px 0 0 #e5b855;
}

.drop-color-s {
	box-shadow: 10px 10px 0 0 #e5b855;
}

.replace-container {
	position: relative;
}

.replace-image {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.sub-content-box {
	width: 33%;
	margin: 0 10px;
	padding: 2em;
	background: #1c1c1c;
	color: #fff;
}

.border-box {
	border: 1px solid #e5b855;
	padding: 5%;
	display: block;
}

.article-box {
	padding: 5% 3%;
	margin: 0 1.5%;
	background: #f9f9f9;
	border-bottom: 8px solid;
	box-sizing: border-box;
	position: relative;
}

.flow-box {
	margin-bottom: 10%;
	padding-left: 30%;
	position: relative;
}

.flow-box::after {
	width: 5em;
	border-bottom: 1px solid #e5b855;
	content: '';
	display: block;
	position: absolute;
	bottom: -20%;
}

.flow-box:nth-of-type(even) {
	float: right;
}

.flow-box:nth-of-type(odd) {
	clear: both;
}

.flow-box:nth-of-type(odd)::after {
	right: 10%;
	transform: rotate(45deg);
}

.flow-box:nth-of-type(even)::after {
	left: 10%;
	transform: rotate(-45deg);
}

.flow-box:last-of-type::after {
	display: none;
}

.set-bg-img {
	background: no-repeat 0 50%;
	background-size: 60;
}

.border-container {
	padding: 2em 3em;
	border: 1px solid;
}

/*------------------------------------
	Title
--------------------------------------*/
.main-title,
.sub-title {
	display: block;
}

.main-title {
	font-size: 4.8rem;
	letter-spacing: 0em;
	font-weight: 400;
}

.sub-title {
	font-size: 1.4rem;
}

.vertical-title {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 6rem;
	word-break: keep-all;
	font-weight: 900;
	transform: translateY(-2em);
}

.read-title {
	font-size: 3.8rem;
	font-weight: 900;
	position: relative;
}

.read-title::after {
	width: 60%;
	margin: 0.5em 0;
	border-bottom: 3px solid #e5b855;
	content: '';
	display: block;
}

.sub-content-title {
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 0.25em;
}

.article-title {
	padding-bottom: 0.5em;
	border-bottom: 1px solid #e5b855;
	font-size: 2.8rem;
}

.article-title::before {
	height: 1em;
	margin-right: 1em;
	border-left: 0.3em solid;
	content: '';
}

.article-title__sub {
	margin-left: 1em;
	color: #e5b855;
	font-size: 1.4rem;
}

.grandchild-title {
	width: 40%;
	margin: 0 auto 3em;
	padding: 0.5em;
	background: #e5b855;
	font-size: 1.8rem;
	text-align: center;
	box-sizing: border-box;
}

.border-title {
	padding: 0.5em;
	border-left: 0.5em solid;
	font-size: 1.8rem;
}

/*------------------------------------
	List
--------------------------------------*/
.listmark-arrow::before {
	width: 0;
	height: 0;
	padding-right: 0.5em;
	border: 0.25em solid transparent;
	border-left: 0.25em solid;
	content: '';
	display: inline-block;
	vertical-align: middle;
}

.attr-lists {
	margin-bottom: 0.5em;
	padding: 0.5em 2em;
	background: #1c1c1c;
	border-radius: 2em;
	color: #e5b855;
	display: inline-block;
	font-size: 1.2rem;
	letter-spacing: 0.15em;
}

/*------------------------------------
	Slider
--------------------------------------*/
#slider {
	margin-bottom: 40px;
	position: relative;
}

#slider figure {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.thumb-list {
	width: 170px;
	background: #000;
	margin: 0 10px 20px;
	float: left;
	box-sizing: border-box;
}

.thumb-list img {
	opacity: 0.4;
	transition: transform 0.3s ease;
}

.thumbnail-current {
	background: #e5b855;
}

.thumbnail-current img {
	opacity: 1;
	transform: scale(.95);
}

/*------------------------------------
	TableStyle
--------------------------------------*/
.table__row {
	width: 100%;
	border-bottom: 1px solid #dedede;
	display: table;
}

.table__row:first-of-type {
	border-top: 1px solid #dedede;
}

.table__head {
	width: 30%;
	padding: 2.5em;
	font-weight: bold;
	letter-spacing: 0.5em;
	display: table-cell;
	vertical-align: middle;
}

.table__data {
	width: 70%;
	padding: 2.5em;
	border-left: 1px dotted #dedede;
	display: table-cell;
	vertical-align: middle;
}

/*------------------------------------
	HeaderParts
--------------------------------------*/
.topnav {
	width: 100%;
	padding: 2% 4%;
	position: fixed;
	z-index: 100;
	color: #fff;
}

.topnav__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.topnav__logo--hidden {
	display: none;
}

.topnav__nav {
	padding-top: 1em;
	float: left;
	font-size: 1.8rem;
}

.topnav__nav-list {
	float: left;
	margin-right: 1.5em;
}

.mb-menu-list-sub {
	display: none;
}

.inquiry {
	padding: 1em;
	border: 1px solid;
	border-radius: 2em;
	float: right;
	font-size: 1.4rem;
	font-weight: bold;
	transition: color .5s ease;
}

.inquiry .bullet-icon {
	transition: fill .5s ease;
}

.inquiry:hover {
	color: #e5b855;
}

.inquiry:hover .bullet-icon {
	fill: #e5b855;
}

.top-catch {
	height: 100vh;
	position: relative;
	z-index: 1;
}

.child-catch {
	height: 70vh;
	position: relative;
	z-index: 1;
}

.catch-title {
	background: #1c1c1c;
	padding: 5em 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	text-align: center;
	z-index: 100;
}

.infomaiton {
	width: 100%;
	min-height: 1em;
	padding: 2em 10%;
	background: #000;
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
}

.news-ticker,
.news-view-more {
	padding: 1em 2em;
	border-radius: 4em;
	box-sizing: border-box;
}

.news-ticker {
	min-height: 4em;
	width: 80%;
	background: #1c1c1c;
	position: relative;
	overflow: hidden;
}

.news-view-more {
	width: 15%;
	background: #e5b855;
	color: #1c1c1c;
	text-align: center;
	transition: background-color .3s ease;
}

.news-view-more:hover {
	background-color: rgba(229, 184, 85, .8);
}

.news-article {
	width: 100%;
	position: absolute;
	left: 100%;
	opacity: 0;
}

.news-article__day,
.news-article__title {
	display: inline-block;
}

.news-article__day {
	margin-right: 2em;
}

.sub-menu {
	display: none;
}


/*------------------------------------
	FooterParts
--------------------------------------*/
footer {
	background: #131313;
	padding-bottom: 80px;
}

.top-nav {
	display: block;
	padding: 3em;
}

.access-info {
	padding: 3em;
	color: #fff;
	font-style: normal;
}

.foot-address {
	margin: 2em 0;
	letter-spacing: 0.15em;
}

.footer-logo {
	padding-bottom: 3em;
}

.foot-media-icon {
	margin-right: 1em;
	margin-bottom: 1em;
	float: left;
}

.foot-media-icon:nth-of-type(odd) {
	clear: both;
}

.footer-col-box {
	padding-left: 3%;
	border-right: 1px solid #000;
}

.footer-col-box:last-child {
	border: none;
}

.footer-list {
	margin-bottom: 0.5em;
}

.footer-title {
	margin: 1em 0;
	font-size: 2.4rem;
}

.copy-right {
	text-align: center;
	color: #fff;
	font-size: 1.8rem;
}

/*------------------------------------
	Top Page
--------------------------------------*/
.read-container {
	margin-top: 10%;
	margin-bottom: 15%;
}

.read-box {
	padding: 2em 4em;
	box-sizing: border-box;
}

.read-box-top {
	background: url('../image/read_bg_top.svg') no-repeat;
	background-size: contain;
}

.read-box-bottom {
	background: url('../image/read_bg_bottom.svg') no-repeat bottom;
	background-size: contain;
}

.top-service {
	padding-left: 40%;
	margin-bottom: 5%;
}

/*------------------------------------
	About
--------------------------------------*/
.message-photo {
	width: 50%;
	position: absolute;
	right: 3%;
	bottom: 15%;
	z-index: -1;
}

/*------------------------------------
	Staff
--------------------------------------*/
.staff-name {
	margin-bottom: 1em;
}
.staff-name__eng,
.staff-name__jp {
	padding: 0.25em 0;
	display: block;
}

.staff-name__eng {
	font-size: 1.8rem;
}

/*------------------------------------
	Shop
--------------------------------------*/
#shop-map {
	width: 100%;
	height: 760px;
}

/*------------------------------------
	Archive
--------------------------------------*/
.news-article-box__title {
	margin-bottom: 1em;
	padding: 1em;
	font-size: 1.8rem;
	background: #e2e2e2;
}

.news-article-box {
	margin-bottom: 3%;
	border-left: 8px solid #1c1c1c;
	background: #f2f2f2;
}

.blog-box {
	width: calc((100% - 90px) / 3);
	margin-bottom: 3%;
	padding-bottom: 1em;
	border-bottom: 4px solid #1c1c1c;
	background: #f2f2f2;
	box-sizing: border-box;
}

.news-article-box__link {
	padding: 3%;
	display: block;
}

.blog-box__link {
	padding: 5%;
	display: block;
}

.blog-box__icon,
.news-article-box__icon,
.single-article-box__icon {
	margin-right: 1em;
	padding: 0.25em 1em;
	background: #1c1c1c;
	border-radius: 3em;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
	font-weight: 400 !important;
}

.news-article-box__date,
.single-article-box__date {
	padding-right: 1em;
	margin-right: 1em;
	border-right: 1px solid #e2e2e2;
	font-size: 1.8rem;
}

.blog-box__date {
	margin-bottom: 0.75em;
	font-size: 1.8rem;
}

.news-article-box__list {
	padding-top: 1em;
	border-top: 1px solid #e5b855
}

.single-article-box {
	padding: 5%;
	background: #f9f9f9;
}

.single-article-box  {
	font-size: 1.6rem;
}

.single-article-box__list {
	padding: 1em 0;
	border-bottom: 1px solid #e5b855;
}

.single-article-box__title {
	padding-left: 1em;
	border-left: 0.3em solid;
}

.blog-box__title {
	padding-bottom: 1em;
	border-bottom: 1px dotted;
}

.wp-post-image {
	width: 100%;
	height: auto;
	display: block;
}

.blog-container {
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
}

.page-nav {
	border-top: 2px solid #e2e2e2;
	border-bottom: 2px solid #e2e2e2;
}

.page-nav__list {
	width: 33.333%;
	border-right: 1px solid #e2e2e2;
	box-sizing: border-box;
	float: left;
	text-align: center;
}

.page-nav__list:first-of-type {
	border-left: 1px solid #e2e2e2;
}

.page-nav__list > a {
	padding: 1em;
	box-sizing: border-box;
	display: block;
	font-size: 1.8rem;
	transition: background .3s ease;
}

.page-nav__list > a:hover {
	background: #e5b855;
}

.single-article-box img  {
	width: 100%;
	height: auto;
	margin-bottom: 2em;
	display: block;
}


/*------------------------------------
	Sub Page
--------------------------------------*/
#sitemap_list,
#sitemap_list .children {
	list-style: none;
}

#sitemap_list .children {
	padding-top: 1em;
	padding-bottom: 1em;
}

#sitemap_list li {
	padding: 1em 0;
	border-bottom: 1px solid #e1e1e1;
}

#sitemap_list li .children li {
	padding: 0.5em;
	background: #e1e1e1;
	border-bottom: 1px dotted #f2f2f2;
}

.number-title {
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid #e1e1e1;
	font-size: 1.8rem;
}

.number-title::before {
	margin-right: 1em;
	content: '';
	display: inline-block;
}

.number-title:nth-of-type(1)::before {
	content: '01';
}

.number-title:nth-of-type(2)::before {
	content: '02';
}

.number-title:nth-of-type(3)::before {
	content: '03';
}

.number-title:nth-of-type(4)::before {
	content: '04';
}

.number-title:nth-of-type(5)::before {
	content: '05';
}

.number-title:nth-of-type(6)::before {
	content: '06';
}

/*------------------------------------
	Form
--------------------------------------*/
input, button, textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: 'Noto Sans Japanese','游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic',sans-serif;
}

select,
input[type="text"],
input[type="email"],
textarea {
	width: 80%;
	padding: 1em;
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
	display: inline-block;
}

select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #e5b855;
	border: 1px solid #e5b855;
}

select,
input[type="text"],
input[type="email"],
input[type="submit"],
textarea {
	letter-spacing: 0.15em;
	border-radius: 0.5em;
}

textarea {
	min-height: 20em;
	resize: vertical;
}

select {
	background: url('../image/down_arrow.svg') no-repeat right 50%, -webkit-linear-gradient(top, #fff 0%,#eae6df 100%);
	background: url('../image/down_arrow.svg') no-repeat right 50%, linear-gradient(to bottom, #fff 0%,#eae6df 100%);
}

input[type="submit"] {
	width: 20%;
	padding: 1em 2em;
	background: -webkit-linear-gradient(top, #ffd683 0%,#e5b855 100%);
	background: linear-gradient(to bottom, #ffd683 0%,#e5b855 100%);
	display: inline-block;
	font-weight: bold;
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

:placeholder-shown {
	color: #aaa;
	letter-spacing: 0.15em;
	font-size: 14px;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
	color: #aaa;
	letter-spacing: 0.15em;
	font-size: 14px;
}

/* Firefox 18- */
:-moz-placeholder {
	color: #aaa;
	opacity: 1;
	letter-spacing: 0.15em;
	font-size: 14px;
}

/* Firefox 19+ */
::-moz-placeholder {
	color: #aaa;
	opacity: 1;
	letter-spacing: 0.15em;
	font-size: 14px;
}

/* IE 10+ */
:-ms-input-placeholder {
	color: #aaa;
	letter-spacing: 0.15em;
	font-size: 14px;
}

.required {
	color: #ea4646;
	font-size: 1.2rem;
	letter-spacing: 0.15em;
}
