@charset "UTF-8";
/* CSS Document */


/*********************/
/** Google Web Font **/
/*********************/
.wf-roundedmplus1c {
	font-family: "Rounded Mplus 1c";
}

.area {
	width: 95%;
	max-width: 1020px;
	margin: 0 auto;
}


/*********************************/
/**  文字折り返し位置指定 <wbr> **/
/*********************************/
/* 日本語の場合class="wsnw"を指定する */
.wsnw span {
	white-space: nowrap;
	/* chrome・safari */
	display: inline-block;
}

/******************************/
/** MobileMenuContents非表示 **/
/******************************/
.MobileMenuContents {
	display: none;
	overflow: hidden;
}

/******************************/
/** ヘッダーの動き設定 **/
/******************************/

/*　上に上がる動き　*/

#header.UpMove {
	top: -140px;
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-100px);
	}
}

/*　下に下がる動き　*/

#header.DownMove {
	top: 0;
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
	from {
		opacity: 0;
		transform: translateY(-100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}





/*================================
		PCsize MainMenu
	=================================*/
.Pc-logo {
	width: 400px;
	height: auto;
}

header {
	margin: 0;
	padding: 0;
}

#header {
	box-shadow: 0px 5px 5px -3px rgba(21, 40, 54, 0.28);
	-moz-box-shadow: 0px 5px 5px -3px rgba(21, 40, 54, 0.28);
	-webkit-box-shadow: 0px 5px 5px -3px rgba(21, 40, 54, 0.28);

	position: fixed;
	top: -140px;
	width: 100%;
	background-color: #fff;
	z-index: 999;
	transition: top 0.6s;
	/* トランジションを0.6秒に設定 */
}

.Header_item {
	padding: 1rem 0.5rem 0 1.5rem;
	display: flex;
	justify-content: space-between;
}

.link_btn {
	display: grid;
	gap: 5px;
	grid-template-columns: repeat(3, 235px);
	line-height: 1.5;
}

.link_btn-smallPc {
	display: none;
}

.link_btn a {
	position: relative;
	display: inline-block;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding: 0.7rem 2rem 0 4rem;
}

.link_btn a span {
	font-size: 16px;
	font-weight: 900;
	color: #fff;
}

.btn_shop {
	color: #fff;
	background-color: #334E5D;
	border-radius: 50px;
}

.btn_mail {
	color: #fff;
	background-color: #0099DB;
	border-radius: 50px;
	letter-spacing: -0.5px;
}

.btn_tel {
	color: #fff;
	background-color: #6DAD19;
	border-radius: 50px;
}

a[href^="tel:"] {
	pointer-events: none;
}

.fa-r::before,
.fa-envelope::before,
.fa-position-left::before {
	position: absolute;
	top: calc(50% - .5em);
	left: 1.5rem;
	color: #fff;
	font-size: 2rem;
}

/*****************/
/**  MAIN MENU  **/
/*****************/

#menu {
	position: relative;
	max-width: 1020px;
	margin: 0 auto;
	padding: 0.5rem 0;
}

#menu ul {
	width: 100%;
}

#menu li {
	text-align: center;
}


#menu li a {
	color: #555;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
}

#menu .current a {
	color: #0099DB;
}

#menu li .dropmenu-item {
	width: 100%;
}

.dropmenu {
	*zoom: 1;
	list-style-type: none;
	padding: 0;
	position: relative;
}

.dropmenu:before,
.dropmenu:after {
	content: "";
	display: table;
}

.dropmenu:after {
	clear: both;
}

.dropmenu>li {
	width: calc(20% - 1.5px);
	border-left: 1px solid #717071;
}

.dropmenu>li:last-child {
	border-right: 1px solid #717071;
}

.dropmenu>li a {
	display: block;
	width: 100%;
	padding: 0.5rem 0;
	font-size: 14px;
	line-height: 2;
	text-decoration: none;
}

#menu .dropmenu>li a:hover {
	color: #0099DB;
	transition: .3s;
}


#menu .dropmenu li {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
}

.current a {
	color: #0099DB;
}

#menu .dropmenu li .dropmenu-item {
	list-style: none;
	position: absolute;
	z-index: 9999;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
}

#menu .dropmenu li .dropmenu-item li {
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .2s;
}

#menu .dropmenu li:hover .dropmenu-item li {
	overflow: visible;
	height: 2.7rem;
	width: 100%;
}

#menu .dropmenu li .dropmenu-item li a {
	display: block;
	font-size: 14px;
	text-align: center;
	background: rgba(187, 232, 250, 0.8);
}



/****************************************/
/**  Drop Down Menu **/
/****************************************/



/*==================================================================================
		Main Image　[index以外]
	===================================================================================*/
.main_image {
	width: 100%;
	text-align: center;
	background-color: #334E5D;
}

/*==================================================================================
		Main Image　[index]
	===================================================================================*/
.hero {
	position: sticky;
	top: 0;
	z-index: -1;
}

.main_imgBox {
	height: 100vh;
	overflow: hidden;
	position: relative;
}

.main_img {
	z-index: 10;
	opacity: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: anime 18s linear infinite;
	animation: anime 18s linear infinite;
}


.main_img:nth-of-type(2) {
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
}

.main_img:nth-of-type(3) {
	-webkit-animation-delay: 12s;
	animation-delay: 12s;
}

@keyframes anime {
	0% {
		opacity: 0;
	}

	11% {
		opacity: 1;
		/* フェードインを完了し完全表示する */
	}

	28% {
		opacity: 1;
		/* ここまで完全表示を維持したらフェードアウトを開始する */
	}

	44% {
		opacity: 0;
		/* フェードアウトを完了し非表示にする */
		transform: scale(1.05);
		z-index: 100;
	}

	100% {
		opacity: 0;
	}
}

/* // テキストアニメーション */

.hero_title {
	position: absolute;
	top: 40%;
	left: 0;
	z-index: 1;
	display: inline-block;
	width: 520px;
	color: #fff;
	font-weight: bold;
	background-color: rgba(51, 78, 93,0.8);
}


@keyframes flowing-anim {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

.flowing .pc {
	padding: 2rem 4.5rem 2rem 7rem;
}

.flowing .pc p {
	width: 0;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	animation-name: flowing-anim;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	color: #fff;
	text-shadow: 3px 3px 5px rgba(12, 47, 93, 0.7);
	/* animation-name: flowing-anim 2s forwards ; */
}

/* 各段落の表示タイミングを設定 */
.line1 {
	animation-delay: 1s;
	/* すぐに表示 */
}

.line2 {
	animation-delay: 2.5s;
	/* 1秒遅れて表示 */
}

.flowing .pc {
	font-size: 2rem;
}

.flowing .sp,
.flowing .sp2 {
	display: none;
}

/*************************/
/** ページダウンanimation **/
/*************************/
.scroll_down {
	display: block;
	left: 0;
	right: 0;
	text-align: center;
	bottom: 0;
	position: absolute;
}

.scroll_down p {
	letter-spacing: .1vw;
	color: #fff;
}

.scroll_down a {
	display: inline-block;
	line-height: 18px;
	font-size: 12px;
	font-weight: normal;
	color: #fff;
	letter-spacing: 2px;
	text-decoration: none;
}

.scroll_down .mouse {
	position: relative;
	display: block;
	width: 35px;
	height: 55px;
	margin: 0 auto 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 2px solid #fff;
	border-radius: 23px;
}

.scroll_down .mouse>* {
	position: absolute;
	display: block;
	top: 29%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: #fff;
	border-radius: 50%;
	animation: ani-mouse 2.5s linear infinite;
}

@keyframes ani-mouse {
	0% {
		opacity: 0;
		top: 70%;
	}

	40% {
		opacity: 0;
		top: 30%;
	}

	70% {
		opacity: 1;
		top: 30%;
	}

	100% {
		opacity: 1;
		top: 70%;
	}
}



/******************/
/** Contents Top **/
/******************/
.MainContent {
	position: relative;
	/* top: -150px; */
	width: 80%;
	color: #333;
	background-color: #fff;
	margin: 0 auto;
	padding: 70px 0 50px;
	margin-bottom: 70px;
}

/*************************/
/** 下層ページの共通設定 **/
/*************************/

.IconTitle {
	width: 80%;
	max-width: 1020px;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 1%;
	margin-top: 160px;
}

.IconTitle div {
	float: left;
	padding-right: 0.5rem;

}

.IconTitle p {
	font-size: 12px;
	margin: 0px;
}

.IconTitle h2 {
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	margin-top: -3px;
}

.IconTitle h2::before {
	display: none;
}


/****************************/
/** 	topへ戻る
/****************************/

.pagetop {
	height: 50px;
	width: 50px;
	position: fixed;
	right: 30px;
	bottom: -80px;
	background: #0099DB;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.pagetop__arrow {
	height: 10px;
	width: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: translateY(20%) rotate(-45deg);
}

/******************/
/** Footer **/
/******************/
footer {
	background-color: #334E5D;
	text-align: center;
	padding: 50px 0 30px;
}

.footer_wrapper img {
	display: block;
	width: 70px;
	height: auto;
	margin: 0 auto;
	padding-bottom: 30px;
}

small {
	font-size: 12px;
	color: #fff;
}



/*========================================================
	画面の横幅が1199px～992px
========================================================*/

@media screen and (max-width: 1199px) {
	.header_wrapper .HeaderInner {
		justify-content: space-between;
	}

	.Header_item {
		height: 61px;
	}

	.Pc-logo {
		width: 38%;
		height: auto;
	}

	.link_btn {
		display: none;
	}

	.link_btn-smallPc {
		display: block;
	}

	.link_btn-smallPc {
		display: grid;
		gap: 5px;
		grid-template-columns: repeat(3, 180px);
		line-height: 1.5;
	}


	.link_btn-smallPc a {
		position: relative;
		display: inline-block;
		color: #fff;
		text-decoration: none;
		text-align: center;
	}

	.link_btn-smallPc a span {
		display: flex;
		justify-content: center;
		font-size: 16px;
		font-weight: 900;
		line-height: 1.6;
		color: #fff;
		padding-top: 0.5rem;
	}

	.btn_shop {
		color: #fff;
		background-color: #334E5D;
		border-radius: 50px;
	}

	.btn_mail {
		color: #fff;
		background-color: #0099DB;
		border-radius: 50px;
	}

	.btn_tel {
		color: #fff;
		background-color: #6DAD19;
		border-radius: 50px;
	}

	.fa-r::before,
	.fa-envelope::before,
	.fa-position-left::before {
		position: absolute;
		top: 0.5rem;
		left: 45%;
		right: 50%;
		color: #fff;
		font-size: 1.2rem;
	}
}




/*========================================================
	●tablet.css 画面の横幅が991pxまで
========================================================*/
@media screen and (max-width: 991px) {


	#wrapper .header_wrapper {
		display: none;
		overflow: hidden;
	}

	/**************************/
	/**  MobileMenuContents  **/
	/**************************/
	.MobileMenuContents {
		position: fixed;
		display: block;
		overflow: visible;
		width: 100%;
		background-color: #FFF;
		z-index: 7;
		top: 0;
	}

	.pull-down-inner {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 15px;
		box-sizing: border-box;

		/* box-shadow */
		box-shadow: 0px 5px 5px -3px rgba(21, 40, 54, 0.28);
		-moz-box-shadow: 0px 5px 5px -3px rgba(21, 40, 54, 0.28);
		-webkit-box-shadow: 0px 5px 5px -3px rgba(21, 40, 54, 0.28);
	}

	.Mobile-logo {
		width: 400px;
		/* float: left; */
	}

	.pull-down-inner li {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}

	.MobileMenuContents .pull-down-inner button {
		display: block;
	}

	/**********************/
	/* Toggle MENU Button */
	/**********************/
	.toggle {
		-webkit-appearance: none;
		appearance: none;
		position: relative;
		width: 32px;
		height: 28px;
		background-color: transparent;
		border: none;
		cursor: pointer;
		display: inline-block;
		/* float: right; */
	}

	.bar {
		position: absolute;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #757575;
		-webkit-transition: -webkit-transform 0.4s;
		transition: transform 0.4s;
	}

	.bar-01 {
		top: 0;
	}

	.bar-02 {
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		background-color: #0099DB;
	}

	.bar-03 {
		bottom: 0;
	}

	.toggle.is--active .bar {
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.toggle.is--active .bar-02 {
		display: none;
	}

	.toggle.is--active .bar-03 {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.toggle.is--active .bar-01 {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}


	/***********/
	/** >icon **/
	/***********/
	.code.icon {
		float: right;
		color: #000;
		position: relative;
		margin-left: -3px;
		margin-top: 6px;
	}

	.code.icon:after {
		content: '';
		position: absolute;
		left: -6px;
		width: 8px;
		height: 8px;
		border-bottom: solid 1px currentColor;
		border-right: solid 1px currentColor;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}


	/********************/
	/** Pull-down-list **/
	/********************/
	.pull-down-list li a {
		display: block;
		width: 100%;
		position: relative;
		padding: 15px;
		box-sizing: border-box;
		text-decoration: none;
		color: #555;
		font-weight: bold;
	}

	.pull-down-list li a:after {
		font-family: 'FontAwesome';
		content: "\f054";
		color: #555;
		position: absolute;
		top: 50%;
		right: 15px;
		margin-top: -0.5em;
	}

	.pull-down-list li:nth-child(odd) {
		background: #eceff1;
	}

	.pull-down-list li:nth-child(even) {
		background: #cfd8dc;
	}

	.theme-headline {
		font-size: 32px;
		line-height: 1.5;
		margin: 15px;
	}



	/**************/
	/* Drill-down */
	/**************/
	.drill-down {
		overflow: hidden;
		position: relative;
	}

	.menu {
		width: 100%;
	}

	.menu-child {
		position: absolute;
		z-index: 100;
		top: 0;
		left: 100%;
		width: 100%;
		background-color: #fafafa;
		-webkit-transition: left 0.3s;
		transition: left 0.3s;
	}

	.menu-child.is-active {
		left: 0;
	}

	/* theme */
	.theme-drill,
	.theme-drill .menu-child {
		background-color: #212121;
	}

	.theme-drill a {
		display: block;
		padding: 20px 15px;
		border-bottom: 1px solid #333;
		color: #fafafa;
		cursor: pointer;
	}

	.pull-down-list .menu-child li:nth-child(odd) {
		background: #d9edba;
	}

	.pull-down-list .menu-child li:nth-child(even) {
		background: #f4fbe8;
	}

	.theme-drill a:after {
		font-family: FontAwesome;
		content: "\f138";
		float: right;
		color: #e0e0e0;
	}

	.theme-drill a[href]:after {
		content: '';
	}

	.theme-drill a:active,
	.theme-drill a:active:after {
		color: #ffb74d;
	}

	.theme-drill .js-item-back a {
		color: #fff;
		background-color: #757575;
	}

	.theme-drill .js-item-back a:after {
		content: "\f137";
	}


	.flowing .pc {
		padding: 2rem 2rem 2rem 4rem;
	}


	/*=================================================================
		PageTitle [index以外 ]
	==================================================================*/

	.IconTitle {
		width: 90%;
	}


	div.IconTitle {
		margin-top: 110px;
	}



	/***************/
	/** AnchreLink **/
	/***************/

	.AnchreLink {
		width: 80%;
		margin-top: 3% auto;
		;
		text-align: right;
	}

	.AnchreLink a {
		margin: 0;
		color: #fff;
		font-weight: bold;
	}



	/************/
	/** Footer **/
	/************/
	footer {
		padding: 30px 0 30px;
	}

	.footer_wrapper img {
		display: block;
		width: 50px;
		height: auto;
		margin: 0 auto;
		padding-bottom: 10px;
	}
}


/*===============================================
●smart.css  画面の横幅が576pxまで
===============================================*/
@media screen and (max-width: 576px) {

	.Mobile-logo {
		width: 300px;
	}

	.hero_title {
		width: 100%;
		top: 60%;
		bottom: 0;
		background-color: #334E5D;
		z-index: 0;
	}

	.flowing .pc {
		font-size: 32px;
		padding: 2rem 2rem 2rem  3rem;
	}

	.main_img {
		background-position: top center;
		top: -50px;
	}

	.scroll_down {
		display: none;
	}

	div.IconTitle {
		margin-top: 90px;
	}

}

/*===============================================
	●最小サイズ  画面の横幅が400pxまで
===============================================*/
@media screen and (max-width: 500px) {

	.Mobile-logo {
		width: 260px;
	}

	.toggle {
		width: 29px;
		height: 24px;
	}

	.flowing .pc {
		font-size: 24px;
		padding: 2rem 1rem 2rem 1.5rem;
	}

	.IconTitle h2 {
		font-size: 22px;
	}
}