@charset "UTF-8";
/* CSS Document */
/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
.br,.br-900 {
  display: none;
}
.br-1100{
	display: none;
}
@media screen and (max-width: 850px) {
  .br {
    display: block;
  }
}
@media screen and (max-width: 1150px) {
  .br-900 {
    display: block;
  }
}
@media screen and (min-width: 1100px){
	.br-1100{
		display: block;
	}
}




/* 本文基本設定 */
body {
  color: #603813;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}


/* ✅ PC時の追尾リンク共通設定 */
.tuibi-container {
  position: fixed;
  z-index: 100;
  right: -10px; 
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: visible;
  opacity: 0;
  transition: right 0.5s ease, opacity 0.5s ease;
	 
	
}

/* ✅ スクロール表示時 */
.tuibi-container.show {
  right: 0; /* ← スライドしてくる位置 */
  opacity: 1;
}

/* ✅ ボタン共通 */
.tuibi-container {
  position: fixed;
  z-index: 100;
  display: flex;
  gap: 10px;
  flex-direction: column;
  right: -10px; /* ← 初期位置を画面外へ */
  bottom: 150px;
  opacity: 0;
  transition: right 0.5s ease, opacity 0.5s ease;
  overflow: visible;
}

.tuibi-container.show {
  right: 0;
  opacity: 1;
}

.tuibi {
  color: #fff;
  text-decoration: none;
  border-radius: 20px 0 0 20px;
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  padding: 20px 10px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: transparent; /* ← 背景色は個別指定 */
}

.tuibi-enji {
  background-color: rgba(255, 105, 97, 0.9);
}
.tuibi-enji:hover {
  background-color: rgba(255, 105, 97, 1);
  transform: translateX(-10px);
}

.tuibi-staff {
  background-color: rgba(52, 152, 219, 0.9);
}
.tuibi-staff:hover {
  background-color: rgba(52, 152, 219, 1);
  transform: translateX(-10px);
}

.tuibi-inner p {
  margin: 0;
}

/* ✅ スマホ（800px以下） */
@media screen and (max-width: 800px) {
  .tuibi-container {
    flex-direction: row;
    justify-content: space-between;
    left: 0;
    right: 0;
    bottom: -100px;
    width: 100%;
    opacity: 0;
    transition: bottom 0.6s ease, opacity 0.6s ease;
    gap: 0;
  }

  .tuibi-container.show {
    bottom: 0;
    opacity: 1;
  }

  .tuibi {
    writing-mode: horizontal-tb;
    border-radius: 0;
    flex: 1;
    padding: 15px 0;
    font-size: 1.1rem;
    margin: 0;
    border: none;
    box-sizing: border-box;
    background-color: transparent;
    transform: none !important;
  }

  .tuibi-enji {
    background-color: rgba(255, 105, 97, 0.7);
  }
  .tuibi-enji:hover {
    background-color: rgba(255, 105, 97, 1);
  }

  .tuibi-staff {
    background-color: rgba(52, 152, 219, 0.7);
  }
  .tuibi-staff:hover {
    background-color: rgba(52, 152, 219, 1);
  }

  .tuibi-inner p {
    font-size: 1.1rem;
    margin: 0;
	 text-align: center;
  }
}



/* モバイルロゴ（スマホ用）：初期は非表示 */
.mobile-logo {
  display: none;
}
/* ナビゲーション共通 */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  transition: all 0.3s ease;
  box-sizing: border-box;
  display: block;
}
.nav{
	  background-color: #fffbf3;
  padding: 20px 20px 0 20px;
}


.nav a {
  text-decoration: none;
  color: inherit;
}
.nav ul {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
}
.nav li {
  width: 13%;
}
/* ▼ アイコン画像の切り替え（2枚重ね方式） */
.nav-icon-wrap {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 50px;
}
.nav-icon-wrap img.icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: auto;
  transition: opacity 0.3s ease;
}
.nav-icon-wrap img.default {
  opacity: 1;
}
.nav-icon-wrap img.hover {
  opacity: 0;
}
.nav a:hover .nav-icon-wrap img.default {
  opacity: 0;
}
.nav a:hover .nav-icon-wrap img.hover {
  opacity: 1;
}
/* ▼ ロゴアイコンのみサイズを大きく */
.logo-large .nav-icon-wrap {
  width: 120px;
  height: 120px;
}
/* テキスト（共通） */
.nav p {
  font-size: 1.2rem;
  color: #603813;
  text-decoration: none;
  border-bottom: none;
  margin-top: 5px;
  white-space: nowrap;
  font-weight: 600;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
/* 装飾画像：初期位置は nav に合わせる */
.nav-decoration {
  position: absolute;
  top: 100px; /* navの高さと合わせる */
  left: 0;
  width: 100%;
  z-index: 99998;
  pointer-events: none;
}

.nav-decoration img {
  width: 100%;
  display: block;
}




/* ハンバーガーボタン（スマホ用） */
.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100000;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 40px;
  height: 30px;
}
.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #603813;
  display: block;
  transition: 0.3s ease;
}
/* ハンバーガー active（×印） */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
/* スマホ表示用 */
@media screen and (max-width: 1100px) {
  .mobile-logo {
    display: block;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 100001;
  }

  .mobile-logo img {
    height: 40px !important;
    width: auto;
  }

  .logo-large {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
    padding: 10px 0;
  }

  nav.active ul {
    max-height: 1000px;
  }

  .nav li {
    width: auto;
    margin: 0 auto;
    padding: 12px 0;
  }

  .nav a {
    display: flex;
    flex-direction: row;         /* 横並びを維持 */
    align-items: center;
    justify-content: flex-start; /* ← 左寄せ */
    gap: 12px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    background-color: transparent;
    width: 240px; /* 適切な中央配置のための固定幅 */
  }

  .nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .nav-icon-wrap {
    width: 60px;
    height: 60px;
    position: relative;
    flex-shrink: 0;
  }

  .nav-icon-wrap img.icon {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
  }

  .nav p {
    font-size: 1.2rem;
    color: #5C290A;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    text-align: left; /* ← テキストは左寄せ */
  }
}




/* ❎問い合わせ*/

.contact{
	
	width: 100%;
	background-image: url("../img/contact-bg.png");
	background-color: #9ae6f7;
	background-size: cover;
	background-position: top center;
	padding: 100px 0;
	
}

.contact-no {
  border: solid #F89233 5px;
	background-color: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  margin: 150px auto 0;
  width: 70%;

}

.contact-no h1 {
  font-size: 2rem;
  color: #311D00;
  margin-bottom: 20px;
	font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", "Arial Rounded MT Bold", "游ゴシック", sans-serif;
	
}

.contact-no a{
	font-size: 3rem;
	text-decoration: none;
	color: #f15a24;
	
}

.contact a:hover{
  color: #FB8D31;
}


.contact-no a.form {
  border-top: dotted #f15a24 5px;
  background-color: #f15a24;
  border-radius: 15px;
  padding: 10px 15px;
  color: #fff !important; /* ← これで上書き防止 */
  display: inline-block;
  margin-top: 20px;
  font-size: 1.8rem;
  text-decoration: none;
}
/* ホバー時の色変更 */
.contact-no a.form:hover {
  background-color: #FB8D31;
  color: #f15a24;
  border: solid 2px #f15a24;
}

/* レスポンシブ対応 */
@media screen and (max-width: 900px) {
  .contact {
    width: 100%;
    padding: 60px 5% 80px;
  }

  .contact-no {
    width: 100%;
    padding: 20px;
  }

  .contact a {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}










footer {
  position: relative; /* ← 必須 */
  text-align: left;
  font-size: 0;
  background-image: url("../img/DSC04139.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  padding-bottom: 100px;
  z-index: 0; /* 他の要素より後ろに */
  overflow: hidden; /* フィルターがはみ出ないように */
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* フィルターの色・濃さ */
  z-index: 1;
  pointer-events: none;
}

footer > * {
  position: relative;
  z-index: 2; /* フィルターの上に表示 */
}


iframe {
	padding: 30px;
	width: 70%;
	height: 40vh;
	margin: 20px auto;
	display: block;
}

.address{
	width: 100%;
	margin: 0 auto;
	text-align: left;

	
}
.address-text{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
		background-color:rgba(249,249,249,5);
	padding: 20px 30px;
}
.address-name{
	display: flex;
}
.footer-rogo{
	max-width: 200px;
}
.footer-rogo-sp{
	display: none;
}
.address h1 {
  text-align: left;
	font-size: 1.2rem;
	margin: 0;
	color: #603818;
}
.address span{
	font-size: 1.8rem;
}
.address p{
	font-size: 1.2rem;
	line-height: 2rem;
}

.footer-kids {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  line-height: 0;
  margin-bottom: -5px; /* ←ここを追加 */
}

.address .copy {
  font-size: 0.8rem;
	text-align: center;
}
@media screen and (max-width: 900px){
	
	.address{
		width: 90%;
	}
	.address-text{
	width: 100%;
	max-width: 1200px;
		padding:10px;
	
}
	.address h1 {
  text-align: left;
	font-size: 1rem;
	margin: 0;
}
.address span{
	font-size: 1.4rem;
}
.address p{
	font-size: 1.2rem;
}
	iframe {

	width: 100%;
	
}
	.address-name{

		display: block;
	}
	.footer-rogo{
	display: none;
}
.footer-rogo-sp{
	display: block;
	height: 200px;
	margin: 0 auto;
	
}
	.address p{
	margin-left: 20px;
}
	
}

.privacy{
	text-decoration: none;
	color: #333;
	border: solid #333333 1px;
	padding:5px;
	font-size: 1rem;
	
}
.privacy:hover{
	color: #EA9E3A;
	border: solid #EA9E3A 1px;
}