@charset "UTF-8";


/*----------------------------------------------------
　↓ 共通
-----------------------------------------------------*/
html {
	font-size: 62.5%;
	/*←全体の文字サイズの基準を10pxにセット*/
	line-height: 1em;
	/*←全体の行間を1emにセット*/
	letter-spacing: 0.03em;
}

html p {
	line-height: 2em;
}

::selection {
	background: #ee86a1;
	/* Safari */
	color: #fff;
}

::-moz-selection {
	background: #ee86a1;
	/* Firefox */
	color: #fff;
}

.pink {
	color: #ee86a1;
}

.brown {
	color: #a79069;
}
.textCenter{
    text-align: center !important;
}

/* clearfix */
#header:after,
#container:after,
#contents:after,
.clearfix:after {
	content: " ";
	display: block;
	height: 0;
	line-height: 0;
	clear: both;
	visibility: hidden;
}

#header,
#container,
#contents,
.clearfix {
	display: inline-block;
	min-height: 1%;
}


/* Hides from IE-mac */
* html #header,
* html #container,
* html #contents,
* html .clearfix {
	height: 1%;
}

#header,
#container,
#contents,
.clearfix {
	display: block;
}

/* リンクテキスト */
a:link,
a:visited {
	text-decoration: underline;
}

a.over,
.over {
	cursor: pointer !important;
}

/* 余白/フロート */
.clear {
	clear: both;
}




/*----------------------------------------------------
　↓ 各デバイスでの表示切り替え
-----------------------------------------------------*/
.sp,
.tab {
	display: none;
}

.pc {
	display: block;
}

@media screen and (max-width: 768px) {

	.sp,
	.pc {
		display: none;
	}

	.tab {
		display: block;
	}
}

@media screen and (max-width: 640px) {

	.pc,
	.tab {
		display: none;
	}

	.sp {
		display: block;
	}
}



/*----------------------------------------------------
　↓ レイアウト＿全体
-----------------------------------------------------*/
html {
	width: 100%;
	height: 100%;
}

body {
	font-size: 16px;
	/*←サイト全体の文字サイズの基準*/
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
		"Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: 500;
	color: #fff;
	background-color: #000;
	width: 100%;
	height: 100%;
	margin: auto;
	-webkit-text-size-adjust: 100%;
	/*←iOS、Safari向け。*/
	position: relative;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 1.45em;
	}
}

@media screen and (max-width: 640px) {
	body {
		font-size: 1.3em;
	}
}

@media screen and (max-width: 480px) {
	body {}
}


/*----------------------------------------------------
　↓　余白設定
-----------------------------------------------------*/
.inner-wrap {
	/*可変幅*/
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.ajs-mg {
	/*可変マージン*/
	margin-bottom: 3em;
	overflow: hidden;
}

@media screen and (max-width: 1200px) {
	.inner-wrap {
		padding-left: 3.5em;
		padding-right: 3.5em;
	}
}

@media screen and (max-width: 768px) {
	.inner-wrap {
		padding-left: 2.2em;
		padding-right: 2.2em;
	}
}

@media screen and (max-width: 640px) {
	.inner-wrap {
		padding-left: 1.8em;
		padding-right: 1.8em;
	}
}


/*----------------------------------------------------
　↓　header
-----------------------------------------------------*/
header {
	position: fixed;
	height: 100px;
	width: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
	z-index: 100;
	background-color: #000;
}

header h1 a {
	font-size: 1.2em;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 30px;
	margin: auto;
	height: fit-content;
	line-height: 1.2em;
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

header h1 a img {
	max-height: 90%;
	width: auto;
    height: auto;
    max-width: 350px;
	min-width: 100px;
	min-height: 30px;
	display: block;
	object-fit: contain;
}

header nav.wide {
	position: absolute;
	height: 30px;
	right: 30px;
	top: 0;
	bottom: 0;
	display: inline;
	margin: auto;
}

header nav.wide ul li {
	display: inline;
	margin-left: 20px;
}

header nav a {
	/*共通*/
	color: #fff;
	text-decoration: none !important;
	/*font-family: "游明朝", "YuMincho", serif;*/
	letter-spacing: 0.1em;
}

/********** TOP用アイコン **********/
header nav.wide a svg.fa-sort-down {
	padding: 0 2px 3px 4px;
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	-ms-transition: 0.25s;
	transition: 0.25s;
}

header nav.wide a:hover svg.fa-sort-down {
	padding: 0 2px 0 4px;
}

/********** CONTACT用アイコン **********/
header nav.wide a svg.fa-caret-right {
	padding: 0 3px 0 3px;
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	-ms-transition: 0.25s;
	transition: 0.25s;
}

header nav.wide a:hover svg.fa-caret-right {
	padding: 0 0 0 6px;
}

/********** お問い合わせボタン **********/
header nav.wide ul li:last-child a {
	padding: 12px 20px;
	box-sizing: border-box;
	border: 1px solid #fff;
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	-ms-transition: 0.25s;
	transition: 0.25s;
}

header nav.wide ul li:last-child a:hover {
	border: 1px solid #eb92a9;
	color: #eb92a9;
}

header .hamburger {
	display: none;
}

@media screen and (max-width: 1250px) {
	header {
		height: 70px;
	}

	header h1 a {
		font-size: 1em;
		left: 20px;
	}
	
	header h1 a img {
		height: auto;
        width: auto;
        max-height: 68px;
        max-width: calc(100% - 65px);
		min-width: 80px;
		min-height: 30px;
		display: block;
		object-fit: contain;
	}

	header nav.wide {
		display: none
	}

	header .hamburger {
		/*ボタンの詳細CSSは下部 ↓ */
		position: absolute;
		top: 15px;
		right: 20px;
		display: inline-block;
		cursor: pointer;
		transition-property: opacity, filter;
		transition-duration: 0.2s;
		transition-timing-function: linear;
		background-color: transparent;
		z-index: 10;
	}

	header nav.short {
		width: 100%;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.9);
		position: absolute;
	}

	header nav.short ul {
		text-align: center;
		width: 300px;
		height: 250px;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}

	header nav.short ul li a {
		display: inline-block;
		margin-bottom: 35px;
		font-size: 1.3em;
	}
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 640px) {
	header {
		border-bottom: 1px solid #222;
	}
}


/*----------------------------------------------------
　↓　section
-----------------------------------------------------*/
section {
	padding-top: 50px;
	margin-bottom: 20px
}

@media screen and (max-width: 768px) {
	section {
		padding-top: 40px;
		margin-bottom: 10px
	}
}

@media screen and (max-width: 640px) {
	section {
		/*padding-top: 75px;*/
		margin-bottom: 0;
	}
}

.btn-outline{
    text-align: center !important;
    padding: 2em 0 0;
}
.btn-outline a{
    display: inline-block;
    padding: .5em 2em;
    text-decoration: none !important;
    color: #FFF;
    border: 1px solid #FFF;
    border-radius: 40px;
}

/*----------------------------------------------------
　↓　h1.title
-----------------------------------------------------*/
.title{
    text-align: center;
}
.title h1 {
	font-size: 2.6em;
    display: inline-block;
	letter-spacing: 0.08em;
	text-align: center;
	padding-bottom: 10px;
    background: url("../../img/title_up.svg") no-repeat left top, url("../../img/title_btm.svg") no-repeat right bottom;
    padding: 50px 60px 30px 60px;
    margin: auto;
    color: #E9CC34;
}

.title p {
	text-align: center;
	font-size: 1.4em;
	letter-spacing: 0.1em;
	color: #FFF;
}

@media screen and (max-width: 768px) {
	.title p {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 640px) {
	.title h1 {
		font-size: 2.2em;
	}

	.title p {
		text-align: center;
		font-size: 1.2em;
		margin-bottom: 20px;
	}
}




/*----------------------------------------------------
　↓　footer
-----------------------------------------------------*/
footer {
	padding: 50px 0 15px;
	border-top: 1px solid #333;
	text-align: center;
}

footer img {
	width: 225px;
	height: auto;
	margin-bottom: 30px;
}

footer table {
	margin: auto auto 50px;
}

footer table td {
	padding: 0 20px;
	vertical-align: top;
}

footer table td p {
	font-size: 0.9em;
	line-height: 1.6em;
	color: #bbb;
	text-align: left;
}

footer table td a {
	padding: 20px 0;
	width: 200px;
	display: inline-block;
	border: 1px solid #bbb;
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	-ms-transition: 0.25s;
	transition: 0.25s;
	cursor: pointer;
	font-family: 'Crimson Text', serif;
	letter-spacing: 0.1em;
	line-height: 1.2em;
	color: #bbb;
	text-decoration: none !important;
	font-size: 1.2em;
}

footer table td a:hover {
	border: 1px solid #00b9e7;
	color: #00b9e7;
}

footer .copy-right {
	color: #bbb;
	font-size: 0.8em;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 40px 0;
	}

	footer img {
		width: 180px;
	}
}

@media screen and (max-width: 640px) {
	footer {
		padding: 40px 0 10px;
	}

	footer img {
		width: 150px;
		margin-bottom: 20px;
	}

	footer table {
		margin: auto auto 30px;
	}

	footer table tr,
	footer table th,
	footer table td {
		display: block;
		width: 100%;
		padding: 0;
	}

	footer table td p {
		text-align: center;
		margin-bottom: 15px;
	}

	footer table td a {
		padding: 10px 0;
		width: 220px;
		display: inline-block;
		border: 1px solid #00b9e7;
		color: #00b9e7;
	}
}


/*----------------------------------------------------
　↓　pagetop
-----------------------------------------------------*/
.pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 54px;
	height: 54px;
	z-index: 100;
	cursor: pointer;
	border-radius: 3px;
	border: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 1.5em;
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	-ms-transition: 0.25s;
	transition: 0.25s;
}

.pagetop:hover {
	bottom: 30px;
	background-color: rgba(235, 146, 169, 0.8);
	border-color: #eb92a9;
}

@media screen and (max-width: 640px) {
	.pagetop {
		width: 40px;
		height: 40px;
		bottom: 10px;
		right: 10px;
		font-size: 1.2em;
	}
}

/*----------------------------------------------------
　↓　hamburger
-----------------------------------------------------*/
/* ___ ↓ここからハンバーガーボタン ___________*/
.hamburger-box {
	width: 44px;
	height: 38px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 44px;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.2s;
	transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -17px;
}

.hamburger-inner::after {
	bottom: -17px;
}

.hamburger .hamburger-inner {
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger .hamburger-inner::before {
	transition: top 0.2s 0.2s ease, opacity 0.2s ease;
}

.hamburger .hamburger-inner::after {
	transition: bottom 0.2s 0.2s ease, transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is-active .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: 0.2s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.2s ease, opacity 0.2s 0.2s ease;
}

.hamburger.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.2s ease, transform 0.2s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ___ ↑ここまでメニューボタン ___________*/





/*----------------------------------------------------
　↓　ローダー
-----------------------------------------------------*/
.loader-wrap {
	width: 100%;
	height: 100%;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.loader-inner {
	position: absolute;
	text-align: center;
	width: 100%;
	height: 30px;
	top: 0;
	bottom: 0;
	margin: auto
}

@-webkit-keyframes scale {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	45% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: 0.7;
	}

	80% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes scale {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	45% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: 0.7;
	}

	80% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

.ball-pulse>div:nth-child(1) {
	-webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
	animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse>div:nth-child(2) {
	-webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
	animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse>div:nth-child(3) {
	-webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
	animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse>div {
	background-color: #fff;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	margin: 2px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	display: inline-block;
}





/*----------------------------------------------------
　↓　ふわっと表示
-----------------------------------------------------*/
.animation {
	visibility: hidden;
}

.fadeInDown {
	-webkit-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-ms-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}