/* =========================
  ベース
========================= */
*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:"Helvetica Neue", Arial, sans-serif;
  background:#f6f1e8;
  color:#333;
  padding-bottom:70px;
}

img{
  max-width:100%;
  display:block;
}

section{
/*padding:20px;*/
/*padding:60px 15px;  どっちがいいか確認*/
/*padding:80px 20px 40px;*/
}

/* ヘッダー */

.header{
  position:fixed;
  top:0;
  width:100%;
  height:60px;
  background:white;
  z-index:1000;
  box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items: stretch; padding-right: 0;
  /*align-items:center;*/
  padding:10px 20px;
}

.logo img{
  height:40px;
}

.hamburger{
  position: absolute;
  top: 0%;
  left: 83%;
  width: 70px;
  height: 60px;
  cursor:pointer;
  background:#6b3f1f;
  align-items:center;
  padding:15px 15px 15px 24px;
}

.hamburger span{
  display:block;
  width:25px;
  height:3px;
  background:white;
  margin:4px 0;
  transition:0.3s;
}

.hamburger.active span:nth-child(1){
  transform:translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:translateY(-9px) rotate(-45deg);
}


/* スライドメニュー */

.menu{
  position:fixed;
  right:-100%;
  top:0;
  width:80%;
  height:100%;
  background:#6b3f1f;
  color:white;
  transition:0.4s;
  z-index:2000;
  padding:30px;
  overflow-y:auto;
}

.menu.open{
  right:0;
}

.menu-close{
  font-size:30px;
  text-align:right;
  margin-bottom:30px;
  cursor:pointer;
}

.menu ul{
  list-style:none;
  padding:0;
}

.menu li{
  margin:20px 0;
  font-size:18px;
  border-bottom:1px solid rgba(255,255,255,0.2);
  padding-bottom:10px;
}

.menu a{
  color:white;
  text-decoration:none;
  display:block;
  padding:5px 0;
}

.menu-info{
  border-top:2px dotted white;
  margin-top:20px;
  padding-top:20px;
  text-align:center;
}

.menu-info p{
  margin:10px 0;
  font-size:22px;
}


/* =========================
  FV（1ページ目）
========================= */
.top{
position:relative;
  /*height:100vh;*/
  /* ①修正: heightはvhからpxベースに変更し、アイコンのはみ出し分を確保 */
  height:calc(100vh - 60px);
  overflow:visible;
  padding:0;
  margin-top:60px; /* ヘッダー分 */
}

/* 背景 */
.top-bg{
  position:absolute;
  width:100%;
  height:650px;
  background:url("/images/top_image.png") no-repeat center/cover;
  z-index:1;
}

/* テキスト */
.top-text{
  position:absolute;
  top:3%;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  width:90%;
}

.top-text img{
  width:100%;
}

/* アイコン（犬に被せる） */
.top-icons{
  position:absolute;
  bottom:-80px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  width:90%;
}

.top-icons img{
  width:100%;
}


/* ===== 固定CTA ===== */
.cta-fixed{
  position:fixed;
  bottom:0;
  width:100%;
  height:110px;
  display:flex;
  z-index:999;
  text-align: center;
/*  transform:translateZ(0);*/
}

.cta-tel,
.cta-line{
  flex:1;
/*  display:flex;*/
  align-items:center;
  justify-content:center;
  font-weight:bold;
  text-decoration:none;
  font-size: 25px;
  padding-top: 5px;
}

.cta-tel{
  background:#ffd000;
  color:#6b3f1f;
}

.cta-line{
  background:#6b3f1f;
  color:white;
}

/* エキゾチック */
.exotic{
  text-align:center;
  margin-top: 130px;
}

.animal-images img{
  width:100%;
  height:auto;
}

/* エリア */

.area{
  padding: 20px 20px 10px 20px; /* 上・右・下・左 */
  margin-top: 30px;
  text-align:center;
  color:#6b3f1f;
}

.area-title{
  background:#ffd000;
  padding:5px;
  font-size: 25px;
  font-weight:bold;
  border-radius:8px;
  margin-bottom:10px;
}

.area-box{
  background:white;
  padding:10px;
  border-radius:10px;
}

.area-box h2{
  font-weight: bold;
  font-size: 21px;
  margin:0;
}

.area-box p{
  font-weight: bold;
  margin:5px 0 0 0;
}

/* 料金 */

.price{
  padding: 20px 20px 10px 20px; /* 上・右・下・左 */
  text-align:center;
  color:#6b3f1f;
}

.price-title{
  background:#ffd000;
  padding:10px;
  border-radius:8px;
}

.price-box{
  background:white;
  border-radius:10px;
/*  overflow:hidden;*/
  color:#6b3f1f;
}

.price-row{
  padding:15px;padding: 0px 0px 2px 0px; /* 上・右・下・左 */
}

.price-row h2{
  background:#6b3f1f;
  color:white;
  padding:5px;
  margin:0 0 6px 0;
}

.range-num{
  font-size:20px;
  font-weight:bold;
  margin: 0 0 1px 0;
  padding-bottom: 10px;
  border-bottom:1px dashed #999;
}

.price-num{
  font-size:20px;
  font-weight:bold;
  margin: 0 0 10px 0;
}

.price-num_ex{
  font-size:20px;
  font-weight:bold;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom:2px solid #6b3f1f;
}

.price-note{
font-size:15px;
font-weight: bold;
margin-top:10px;
}



/* 利用の流れ */

.flow{
  background:#ff7aa2;
  text-align:center;
  color:white;
  padding:30px 15px;
}

.flow-box{
  background:white;
  color:#6b3f1f;
  padding:15px;
  border-radius:10px;
  margin:15px auto;
  width:90%;
}

.flow-box_h2{
  font-size: 25px;
}

.flow-box_pobj{
  font-weight: bold;
}

.flow-box P{
  margin: 0 0 1px 0;	
}

.flow-box h2{
  margin: 0 0 1px 0;	
}

.arrow{
font-size:20px;
}




/* 注意事項 */

.notice{
  background:#ffd000;
  padding:30px 20px;
}

.notice h2{
  text-align:center;
  margin-bottom:20px;
  font-size:22px;
}

.notice ul{
  background:white;
  border-radius:10px;
  max-width:700px;
  margin:0 auto;
}

.notice li{
  margin-bottom:15px;
  line-height:1.7;
  font-size:14px;
}


/* 会社情報 */

.company{
  padding:50px 20px;
  text-align:center;
  background:#f6f1e8;
  color:#6b3f1f;
}


.company h2{
  font-size:28px;
  font-weight:bold;
  margin:10px 0 25px 0;
}

.company p{
  font-size:15px;
  margin:5px 0;
  line-height:1.8;
}

/* フッター */
.logo_footer{
  padding-bottom: 10px;
  border-bottom:1px solid #6b3f1f;
}

.logo_footer img{
  height: 60px;
  padding-left: 80px;
}

/* LINEボタン */

.line-button{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#06C755;
  color:white;
  padding:15px 25px;
  border-radius:40px;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
  z-index:500;
}

.tel-btn{
  display:block;
  background:#ff7aa2;
  padding:12px;
  border-radius:30px;
  color:white;
  text-decoration:none;
  margin:15px auto;
  width:80%;
  font-weight:bold;
}

.line-btn{
  display:block;
  background:#ffd000;
  padding:12px;
  border-radius:30px;
  color:black;
  text-decoration:none;
  font-weight:bold;
  width:80%;
  margin:auto;
}


/* 背景 */

.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:0.3s;
  z-index:1500;
}

.overlay.show{
/*	pointer-events:auto;*/
  opacity:1;
  visibility:visible;
}


/* スクロール位置調整 */

html{
  scroll-behavior:smooth;
  scroll-padding-top:70px;
}

/* レスポンシブ */
@media (max-width:600px){
.menu{
  width:85%;
}

.notice ul{
  padding:20px 15px 20px 35px;
}

.notice ul::before{
  left:12px;
  width:3px;
}
}