@charset "UTF-8";

html,body{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.7;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  background: #f4f4e5;
  color: #333;
}


.header,
.nav,
.footer,
.sidebar,
.main-contents{
  background-color: #f4f4e5;
}


/* ヘッダー */
#header {
  width: 100%;
  background-color: #f4f4e5;
}
.header-inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#header-left .logo {
  height: 45px;
}
#header-right {
  text-align: right;
}


/* ヘッダー　お問い合わせ */
.contact-btn {
  background-color: #66c5d7;
  color: #fff;
  padding: 4px 44px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 3px;
}
.contact-btn a:visited {
  color: #ffffff;
} /* 済みリンク */
.contact-btn:hover {
  text-decoration: underline;
} /* リンク上 */
.contact-btn a:hover {
  color: #ffffff;
} /* リンク上 */
.contact-btn a:active {
  color: #ffffff;
} /* onclick */



/* ヘッダー　電話 */
.tel-box {
  display: flex;
  align-items: center;
}
.tel-icon {
  width: 25px;
  margin-right: 5px;
}
.tel {
  font-size: 30px;
  color: #4c7d88;
}



/* ナビゲーション */
.nav{
  width: 1000px;
  margin: 0 auto 15px;
}

.nav ul{
  display: flex;
  justify-content: space-around;
  padding: 0;
}

.nav a{
  padding-top: 3px;
  font-size: 15px;
  font-family: "signpainter", "dancing-script", Georgia, "Times New Roman", Times, "ほのかアンティーク", "serif";
}

.nav-item{
  width: 200px;
  height: 40px;
  background-size: cover;
  text-align: center;
  line-height:  17px;
  background-image: url("images/gnavi_off.png"); /* デフォルト画像 */
  list-style: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.nav-item:hover{
  background-image: url("images/gnavi_on.png"); /* マウスオーバー画像 */
}

.nav-item a{
  display: block;
  color: white;
  text-decoration: none;
}

.nav-item:hover a{
  color: #4c7d88;
}


/* メイン */
.img-main{
  width: 1000px;
  display: block; margin: auto;
}

/* サイドバー */
.sidebar{
  float: left;
  width: 200px;
  height: auto;
}

.side_bnr{
  margin-bottom: 10px;
}

.side_bnr:hover {
  opacity: 0.6;
}

/* SNS */
.sns{
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

/* メニュー */
.menu{
  width: 200px;
  height: auto;
  margin-top: 30px;
}

.menu-list{
  list-style: none;
  height: 35px;
  border-bottom: #000000 1px dotted;
}

.menu-square{
  margin: 0 5px 0 15px;
}

.menu ul{
  padding: 0;
  margin: 0;
}

.menu-p1{
  background-image: url("./images/title_side.png");
  background-repeat: no-repeat;
  background-size: contain;
  color: #4c7d88;
  padding-left: 30px;
  font-size: 16px;
}

.menu-list a{
  font-size: 13px;
  line-height: 2.5;
  text-decoration: none;
  color: 000;
}

.menu ul a {
  text-decoration: none;
}
.menu ul a:link {
  color: #000000;
} /* リンクの色 */
.menu ul a:visited {
  color: #000000;
} /* 済みリンク */
.menu ul a:hover {
  color: #acacac;
} /* リンクにマウスオンした色 */



/* 店舗情報 */
.outer-rectangle {
  width: 200px;
  height: auto;
  margin-top: 30px;
  padding-top: 50px;
  padding-bottom: 10px;
  background-color: #fff;
  position: relative; /* 親要素を基準に子要素を配置 */
  border: #4c7d88 1px solid;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}

.inner-rectangle {
  width: 180px;
  height: 35px;
  background-color: #9cd2d9;
  position: absolute; /* 親要素からの相対位置 */
  top: 32px; 
  left: 50%; /* 親要素の中央に配置 */
  transform: translate(-50%, -50%); /* 自身のサイズで中央に */
  border: #4c7d88 1px solid;
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
  font-size: 14px;
}

/* メインコンテンツ */
.main-contents{
  float: right;
  width: 760px;
}

.container{
  /* overflowでfloatを回避 */
  overflow: hidden;
  width: 1000px;
  margin: 20px auto 50px;
}

.main-contents-box{
  width: 100%;
  height: 430px;
  margin-bottom: 40px;
}

/* メインコンテンツ1 */
.img-contents1{
  background-image: url(./images/bg_contents_1.jpg);
  width: 100%; 
  height: 100%; 
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.img-contents1 p{
  position: absolute;
  top: 120px;
  left: 410px;
  width: 315px; 
  text-align: justify;
  font-size: 16px;
}

.main-contents-btn1{
  position: absolute;
  top: 325px;
  left: 570px;
}

.main-contents-btn1 img{
  width: 140px;
  height: 35px;
}

/* メインコンテンツ2 */
.img-contents2{
  background-image: url(./images/bg_contents_2.jpg);
  width: 100%; 
  height: 100%; 
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.img-contents2 p{
  position: absolute;
  top: 120px;
  left: 30px;
  width: 285px; 
  text-align: justify;
  font-size: 16px;
}


.main-contents-btn2{
  position: absolute;
  top: 345px;
  left: 170px;
}

.main-contents-btn2 img{
  width: 140px;
  height: 35px;
}

/* メインコンテンツ3 */
.img-contents3{
  background-image: url(./images/bg_contents_3.jpg);
  width: 100%; 
  height: 100%; 
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.img-contents3 p{
  position: absolute;
  top: 120px;
  left: 410px;
  width: 315px; 
  text-align: justify;
  font-size: 16px;
}


.main-contents-btn3{
  position: absolute;
  top: 322px;
  left: 570px;
}

.main-contents-btn3 img{
  width: 140px;
  height: 35px;
}



/* インフォメーション */
.inf{
  background-image: url("./images/title_info.png");
  width: 800px;
  height: auto;
  background-repeat: no-repeat;
}

.inf-item{
  list-style: none;
  border-bottom: #000000 1px dotted;
}

.inf-square{
  padding: 0 5px 2px 10px;
}

.inf ul{
  padding: 0;
  margin: 0;
}

.inf-h2{
  font-size: 20px;
  padding:  5px 0 10px 50px;
  margin-bottom: 16px;
  color: #4c7d88;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.inf-p{
  line-height: 38px;
}


/* フッター */
footer{
  margin: 150px 0 0;
  padding: 0;
  width: 100%;
  background-color: #646464;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 100px;
  width: 1000px;
  margin: auto;
  align-items: center;
  color: #fff;
  font-size: 12px;
}

#footer-left {
  height: 40px;
  margin-left: 80px;
}

#footer-right {
  text-align: right;
  margin-right: 80px;
}



/* 下層ページ */
/* タイトル */
.page-title{
  margin: 0 auto;
  background: url(./images/bg_title.jpg) no-repeat;
  overflow: hidden;
  width: 1000px;
  height: 97px;
  display: flex;
  align-items: center;
}
.page-title p{
  padding-left: 40px;
  font-size: 60px;
  line-height:  97px;
  font-family: "signpainter", "dancing-script", Georgia, "Times New Roman", Times, "ほのかアンティーク", "serif";
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
}

#main{
  width: 760px;
  float: right;
}


/* コンセプト */
.concept-txt {
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
.concept_img {
  margin-bottom: 30px ;
}


/* メニュー */
.menu_txt {
  margin-bottom: 30px;
}
.menu_img {
  margin-bottom: 30px;
}
.menu_box_txt {
  position: absolute;
  width: 700px;
  top: 30px;
  left: 30px;
}


/* よくあるご質問ページ */
#qa{
  padding: 0;
}
#qa dt {
  border-bottom: 1px dotted #cccccc;
  font-weight: bold;
}
#qa dd {
  margin: 0 0 40px;
}
.q-txt {
  font-weight: bold;
  color: #4c7d88;
  padding-right: 5px;
}
.a-txt {
  font-weight: bold;
  color: #646464;
  padding-right: 5px;
}



/* アクセスページ */
.access_txt {
  margin-bottom: 30px;
}
.access_map {
  margin-bottom: 40px;
}
.access_img {
  text-align: center;
  margin-bottom: 40px;
}


/* お問い合わせページ */
.inquiry_form {
  margin: 5px 0 30px;
  padding: 0;
}
.inquiry_form table {
  width: 100%;
}
.inquiry_form td {
  padding: 5px;
}
.inquiry_txt {
  margin-bottom: 30px;
}
.inquiry_img {
  text-align: center;
  margin-bottom: 40px;
}

