@charset "UTF-8";

html,html * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans JP", sans-serif;
}

body {
	color: #000;
	background: #fff;
	font-size: 18px;
}

a {
	color: #000;
	text-decoration: none;
}

ul,ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin-bottom: 1em;
	line-height: 1.7em;
}

p:last-child {
	margin-bottom: 0px;
}

h2 {
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 1em;
}

h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 18px;
}

div.container {
	/* max-width: 840px; */
	max-width: 1280px;
	margin: 0 auto;
}

/* --- フェードイン --- */
.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  /* フェードイン時に入るクラス */
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ヘッダー */
h1.logo {
	padding: 20px 20px 5px;
	background: #fff;
}

h1.logo img {
	width: 100%;
	height: auto;
	max-width: 425px;
	max-height: 60px;
}

section#title {
	max-width: 1400px;
	margin: 0 auto;
}

section#menu {
	background: #f2f2f2;
	box-shadow: inset 0 2px 3px rgba(103,103,103,0.50);
}

.globalMenu li a {
	display: block;
	text-align: center;
	font-size: 18px;
	line-height: 1em;
	padding: 15px 0px;
}

.globalMenu li a span {
	font-size: 15px;
}

/* トグルボタン */
#nav_toggle {
	display: block;
	position: relative;
	right: 0px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
}
#nav_toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: 3px solid #000;
	transition: 0.35s ease-in-out;
}
#nav_toggle span:nth-child(1) {
	top: 9px;
}
#nav_toggle span:nth-child(2) {
	top: 18px;
}
#nav_toggle span:nth-child(3) {
	top: 27px;
}
.open #nav_toggle span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}
.open #nav_toggle span:nth-child(2),
.open #nav_toggle span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

/* お問い合わせはこちら */
div.btn {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

div.btn a {
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	padding: 10px;
	border-left: 2px solid #999;
	border-bottom: 2px solid #999;
}

div.btn a img {
	display: inline-block;
	width: 17px;
	height: 19px;
}

/* コンテンツ */
main {
	background: url(../img/bg_bluedot.png) repeat;
	box-shadow: inset 0 2px 3px rgba(103,103,103,0.50);
	padding-top: 20px;
	padding-bottom: 60px;
	overflow: hidden;
}

div.btn-area {
	padding: 0 20px;
}

img.btn-entry {
	display: block;
	width: 100%;
	height: auto;
	max-width: 420px;
	max-height: 102px;
	margin: 0 auto;
}

img.btn-app {
	display: block;
	width: 100%;
	height: auto;
	max-width: 420px;
	max-height: 102px;
	margin: 0 auto;
}

img.btn-contact {
	display: block;
	width: 100%;
	height: auto;
	max-width: 477px;
	max-height: 102px;
	margin: 0 auto;
}

/* パンくずリスト */
.breadcrumb {
	padding: 0px 20px;
	margin-bottom: 20px;
}

.breadcrumb li {
	display: inline;
	font-size: 15px;
}

.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	color: #000;
}

.breadcrumb li:last-child:after {
	content: '';
}

/* フッター */
footer {
	background: #00a0d2;
	box-shadow: 0 -2px 3px rgba(103,103,103,0.50);
}

footer div.container {
	padding-top: 40px;
}

.footerMenu li a {
	display: block;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	line-height: 1em;
	padding: 15px 0px;
}

.first {
	border-bottom: 2px solid #fff;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.second {
	margin-bottom: 20px;
}

.ftrLink {
	margin-bottom: 40px;
}

.ftrCts {
	padding: 0 20px;
}

.ftrCts img.ftr-logo {
	display: block;
	width: 100%;
	height: auto;
	max-width: 200px;
	max-height: 48px;
	margin: 0 auto;
}

.ftrCts img.ftr-ban1 {
	display: block;
	width: 100%;
	height: auto;
	max-width: 340px;
	max-height: 57px;
	margin: 0 auto 10px;
}

.ftrCts img.ftr-ban2 {
	display: block;
	width: 100%;
	height: auto;
	max-width: 294px;
	max-height: 57px;
	margin: 0 auto;
}

small.copy {
	display: block;
	padding: 30px 0px;
	color: #FFF;
	font-size: 15px;
	text-align: center
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	/* ヘッダー */
	h1.logo {
	padding: 20px 65px 5px;
	}
	section#title {
	display: flex;
	justify-content: space-between;
	}
	.globalMenu {
	display: block !important ;
	padding-top: 15px;
	padding-bottom: 15px;
	}
	.globalMenu ul {
	display: flex;
	justify-content: center;
	}
	.globalMenu li {
	transform: skewX(150deg);
	border-right: 1px solid #999;
	}
	.globalMenu li a {
	transform: skewX(-150deg);
	padding: 0px 40px;
	}
	/*トグルボタン*/
	#nav_toggle {
	display: none;
	}
	/* コンテンツ */
	div.btn-area {
	display: flex;
	justify-content: center;
	padding: 0;
	}
	/* パンくずリスト */
	.breadcrumb {
		padding: 0;
	}
	/* フッター */
	footer div.container {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	}
	.footerMenu ul {
	display: flex;
	}
	.footerMenu li a {
	padding: 0 10px;
	}
	.ftrCts img.ftr-logo {
	margin: 0;
	}
	.ftrBan {
	display: flex;
	}
	.ftrBan img.ftr-ban1 {
	margin-right: 10px;
	}
}

/* 小さい画面用の設定 */
@media (max-width: 767px) {
	header .container-small {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	}
	.globalMenu {
	display: none;
	}
}