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

html {
  overflow-x: hidden;
}
body {
  font-family:"Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #333;
  margin: 0 auto;
	max-width: 1920px;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
}
.flex {
	display: flex;
}
.row {
	flex-direction: row-reverse;
}
.wrap {
	flex-wrap: wrap;
}
.fftm {
	font-family:"ten-mincho", serif;
}
.ffmm {
	font-family: "マメロン 3 Hi Regular";
}
.ffyg {
	font-family: "游ゴシック";
}
.fwb {
	font-weight: 600;
}
.white {
	color: #fff;
}
.page-link {
	width: 300px;
	margin: auto;
	background: #ECC440;
	padding: 2rem 0;
}
.page-link a {
	display: block;
	text-align: center;
	font-size: 2rem;
	width: 70%;
	margin: auto;
}
.page-link:hover a{
	border-bottom: 1px solid #fff;
}



.sp-only {
	display: none;
}

/*------- ヘッダー -------*/
#header {
	width: 95%;
	justify-content: space-between;
	align-items: flex-start;
	position: absolute;
	top:0;
	left: 50%;
	transform: translate(-50%);
	z-index: 2;
}
.head-logo a {
	display: block;
}
.head-bnrs {
	gap: 2rem;
}
.head-bnrs .tel-bnr {
	width: 19rem;
	background: url("../img/bg05.jpg");
	padding: 0.6rem 0;
	height: 68px;
}
.tel-bnr a {
	display: block;
	text-align: center;
	font-size: 2rem;
}
.head-bnrs .web-bnr {
	width: 19rem;
	background: url("../img/bg08.jpg");
	padding: 0.6rem 0;
	height: 68px;
}
.web-bnr a {
	display: block;
	text-align: center;
	font-size: 2rem;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.tel-bnr a i,
.web-bnr a i {
	margin-right: 1rem;
	font-size: 2rem;
}

/*グローバルメニュー*/
.g-nav {
	background: #F5999C url("../img/ptn01.png")repeat left top/auto;
	width: 100%;
	padding:2rem 0;
}
.g-nav.fixed{
	position: fixed;/*fixedを設定して固定*/
  z-index: 999;/*最前面へ*/
  top:0;/*位置指定*/
  left:0;/*位置指定*/
	padding: 1.5rem 0;
}
/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
	width: 70%;
	margin: auto;
}
/*ナビゲーションを横並びに*/
nav ul{
	justify-content: space-between;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}
/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	color: #fff;
	transition:all .3s;
	text-align: center;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

nav ul li a:hover{
	color:#fff;
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:50%;
	top:5rem;
	transform: translate(-50%);
	z-index: 4;
    /*形状を指定*/
	background:#F6D2D3;
	width:20rem;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}
.has-child li a{
	padding: 1rem;
	/*font-size: 1.8rem;*/
}
/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #333;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#F5999C;
}


/*-------- フッター --------*/
.foot-top {
	background: url("../img/bg11.png");
	background-size: cover;
	padding: 10rem 0 15rem 0;
}
.foot-logo {
	width: 600px;
	margin: auto;
}
.foot-icon {
	width: 100px;
	margin: auto;
}
.foot-top .inner {
	width: 70%;
	margin: 5rem auto;
	justify-content: space-between;
	align-items: center;
}
.foot-top .inner .left,
.foot-top .inner .right {
	width: 48%;
}
.foot-top .inner .left .adress {
	text-align: center;
	font-size: 1.5rem;
}
.foot-top .inner .left .foot-bnr {
	justify-content: space-between;
	margin-top: 5rem;
}
.foot-top .inner .left .foot-bnr .tel-bnr {
	width: 45%;
	background: url("../img/bg05.jpg");
	padding: 1rem 0;
}
.foot-top .inner .left .foot-bnr .web-bnr {
	width: 45%;
	background: url("../img/bg08.jpg");
	padding: 1rem 0;
}
.foot-map iframe {
	width: 100%;
}
#footer .copy {
	font-size: 14px;
	text-align: center;
	margin: 6px auto;
}

@media screen and (max-width:1280px){
	.foot-top .inner {
		width: 85%;
	}
	.foot-top .inner .left .foot-bnr .tel-bnr a,
	.foot-top .inner .left .foot-bnr .web-bnr a {
		font-size: 2.2rem;
	}
}

.mtc {
	margin-top: 120px;
}