@charset "UTF-8";

* {
    font-family: cursive,serif;
}
/*----------------タイトル・背景画-------------------*/
.title-image {
    position: relative;
    width: 1380px;
    height:400px;
    object-fit: cover;
    margin-bottom: 100px;
    margin-left: -40px;
    filter: blur(5px);
}
.title-text6 {
    font-size: 80px;
    color: white;
    position: absolute;
    text-align: center;
    top: 100px;
}
/*--------予約・問い合わせ------------*/
.right-box2 {
    position: fixed;
    top: 0;
    left: 1210px;
    width: 150px;
    height: 1200px;
    background-color: gray;
    z-index: 99;
    
}
.right-box2 p {
    writing-mode: vertical-rl; /* 縦書き（右→左） */
    text-orientation: upright; /* 文字の向きを正立に */
    color: white;
    font-size: 50px;
    left: -20px;
    top: 30px;
    position: absolute;
    
}
/*Instagramロゴ*/
.instagram {
    top: 500px;
    left: 1250px;
    height: 60px;
    width: 60px;
    background: transparent;
    position: fixed;
}
/*Instagramロゴ*/
.LINE {
    top: 600px;
    left: 1250px;
    height: 60px;
    width: 60px;
    background: transparent;
    position: fixed;
    color: white;
}
.LINE-box a {
  top: 80px;
  left: 900px;
  height: 60px;
  width: 150px;
  background: transparent;
  position: absolute;
}
.Instagram-box a {
  top: 80px;
    left: 1130px;
    height: 60px;
    width: 300px;
    background: transparent;
    position: absolute;
}
/*---------------背景画像--------------------------------*/
.haikei7 {
    position: absolute;
    top: 410px;
    left: 0px;
    background-color: #008080;
    width: 1350px;
    height: 2000px;
}

/*--------------説明文---------------------------------------*/
.setumei p {
    position: absolute;
    top: 460px;
    left: 360px;
    color: white;
    font-size: 20px;
    text-align: center;
}

/*--------------スクロール➀---------------------------*/
/*-----タイトル➀----------*/
.line3 {
  border: none;              /* デフォルトのボーダーを消す */
  border-top: 3px solid white;  /* 新しいスタイルを指定 */
  width: 1200px;               /* 幅を50%に */
  height: auto;
  margin: 20px auto;        /* 上下20px、左右中央寄せ */
  position: absolute;
  top: 650px;
  left: 20px;
}
.line3 p2 {
    left: 380px;
    top: -40px;
    font-size: 50px;
    position: absolute;
    color: white;
    background-color:  #008080;
    padding-left: 30px;
    padding-right: 30px;
}
.line3 h2 {
    left: 530px;
    top: 0px;
    position: absolute;
    color: white;
}
/*--------画像➀-----------*/
.interactive-slider-container {
  top: 730px;
  left: 150px;
  width: 900px;
  height: 600px;
  margin: 40px auto;
  overflow: hidden;
  position: absolute;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.slider-radio {
  display: none; /* ラジオボタンを非表示 */
}

.slider-content-wrapper {
  overflow: hidden;  /*スクロール画像xのはみ出た部分をカット*/
}

.slider-content {
  display: flex;
  width: 2700px; /* パネル数 x 900px */
  height: 600px;
  transition: transform 0.5s ease-in-out; /* スライドのアニメーション */
}

.slider-panel {
  flex: 0 0 calc(100% / 4); /* パネル数に応じて幅を調整 */
  height: 600px;
  background-color: #f0f8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: #333;
  width: 900px;
}

.slider-panel p1 {
    position: absolute;
    top: 0px;
    left: 0px;
    color: white;
    background-color: rgba(255,255,255,0.5);
}
.slider-panel p2 {
    position: absolute;
    top: 0px;
    left: 900px;
    color: white;
    background-color: rgba(255,255,255,0.5);
}
.slider-panel p3 {
    position: absolute;
    top: 0px;
    left: 1800px;
    color: white;
    background-color: rgba(255,255,255,0.5);
}
.slider-panel p4 {
    position: absolute;
    top: 0px;
    left: 2700px;
    width: 100px;
    color: white;
    background-color: rgba(255,255,255,0.5);
}

.slider-panel img {
    width: 900px;
    height: 100%;
    object-fit: contain;
}
/* ラジオボタンがチェックされた時にコンテンツをスライド */
#slide1:checked ~ .slider-content-wrapper .slider-content {
  transform: translateX(0%);
}
#slide2:checked ~ .slider-content-wrapper .slider-content {
  transform: translateX(-33.333%); /* 100% / パネル数 */
}
#slide3:checked ~ .slider-content-wrapper .slider-content {
  transform: translateX(-66.666%); /* 200% / パネル数 */
}
#slide4:checked ~ .slider-content-wrapper .slider-content {
  transform: translateX(-99.999%); /* 200% / パネル数 */
}

.slider-controls {
  margin-top: 15px;
  top: 550px;
  left: 400px;
  text-align: center;
  position: absolute;
  z-index: 99;
}

.slider-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* 選択されたドットのスタイル */
#slide1:checked ~ .slider-controls .slider-dot:nth-child(1),
#slide2:checked ~ .slider-controls .slider-dot:nth-child(2),
#slide3:checked ~ .slider-controls .slider-dot:nth-child(3),
#slide4:checked ~ .slider-controls .slider-dot:nth-child(4),{
  background-color: dodgerblue;
}

/*--------------スクロール②---------------------------*/
/*-----タイトル②----------*/
.line4 {
  border: none;              /* デフォルトのボーダーを消す */
  border-top: 3px solid white;  /* 新しいスタイルを指定 */
  width: 1200px;               /* 幅を50%に */
  height: auto;
  margin: 20px auto;        /* 上下20px、左右中央寄せ */
  position: absolute;
  top: 1400px;
  left: 20px;
}
.line4 p1 {
    left: 380px;
    top: -40px;
    font-size: 50px;
    position: absolute;
    color: white;
    background-color:  #008080;
    padding-left: 30px;
    padding-right: 30px;
}
.line4 h2 {
    left: 470px;
    top: 10px;
    position: absolute;
    color: white;
}
/*--------画像②-----------*/
.interactive-slider2-container {
  top: 1490px;
  left: 150px;
  width: 900px;
  height: 600px;
  margin: 40px auto;
  overflow: hidden;
  position: absolute;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.slider2-radio {
  display: none; /* ラジオボタンを非表示 */
}

.slider2-content-wrapper {
  overflow: hidden;  /*スクロール画像xのはみ出た部分をカット*/
}

.slider2-content {
  display: flex;
  width: 2700px; /* パネル数 x 900px */
  height: 600px;
  transition: transform 0.5s ease-in-out; /* スライドのアニメーション */
}

.slider2-panel {
  flex: 0 0 calc(100% / 4); /* パネル数に応じて幅を調整 */
  height: 600px;
  background-color: #f0f8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: #333;
  width: 900px;
}

.slider2-panel p1 {
    position: absolute;
    top: 0px;
    left: 0px;
    color: white;
    background-color: rgba(255,255,255,0.5);
}
.slider2-panel p2 {
    position: absolute;
    top: 0px;
    left: 900px;
    color: white;
    background-color: rgba(255,255,255,0.5);
}
.slider2-panel p3 {
    position: absolute;
    top: 0px;
    left: 1800px;
    color: white;
    background-color: rgba(255,255,255,0.5);
}
.slider2-panel p4 {
    position: absolute;
    top: 0px;
    left: 2700px;
    width: 130px;
    color: white;
    background-color: rgba(255,255,255,0.5);
}

.slider2-panel img {
    width: 900px;
    height: 100%;
    object-fit: contain;
}
/* ラジオボタンがチェックされた時にコンテンツをスライド */
#slide5:checked ~ .slider2-content-wrapper .slider2-content {
  transform: translateX(0%);
}
#slide6:checked ~ .slider2-content-wrapper .slider2-content {
  transform: translateX(-33.333%); /* 100% / パネル数 */
}
#slide7:checked ~ .slider2-content-wrapper .slider2-content {
  transform: translateX(-66.666%); /* 200% / パネル数 */
}
#slide8:checked ~ .slider2-content-wrapper .slider2-content {
  transform: translateX(-99.999%); /* 200% / パネル数 */
}

.slider2-controls {
  margin-top: 15px;
  top: 550px;
  left: 400px;
  text-align: center;
  position: absolute;
  z-index: 99;
}

.slider2-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* 選択されたドットのスタイル */
#slide5:checked ~ .slider2-controls .slider2-dot:nth-child(1),
#slide6:checked ~ .slider2-controls .slider2-dot:nth-child(2),
#slide7:checked ~ .slider2-controls .slider2-dot:nth-child(3),
#slide8:checked ~ .slider2-controls .slider2-dot:nth-child(4),{
  background-color: dodgerblue;
}
/*----------------------------ページ下--------------------------*/
.under-box7 {
    top: 2140px;
    left: 0;
    background-color: #008080;
    height: 600px;
    width: 1350px;
    position: absolute;
}
/*TOP*/
.under-box7 p9 {
    position: absolute;
    top: 40px;
    left: 135px;
    color: white;
    font-size: 40px;
    padding: 30px;
}

.top-box a {
  top: 40px;
  left: 140px;
  height: 60px;
  width: 180px;
  background: transparent;
  position: absolute;
}
/*宿泊*/
.under-box7 p10 {
    position: absolute;
    top: 120px;
    left: 60px;
    color: white;
    font-size: 40px;
    padding: 30px;
}

.shukuhaku-box a {
  top: 120px;
  left: 150px;
  height: 60px;
  width: 140px;
  background: transparent;
  position: absolute;
}

/*ドッグラン*/
.under-box7 p11 {
    position: absolute;
    top: 200px;
    left: 130px;
    color: white;
    font-size: 40px;
    padding: 30px;
}

.dogrun-box a {
  top: 200px;
  left: 140px;
  height: 60px;
  width: 230px;
  background: transparent;
  position: absolute;
}

/*設備・サービス*/
.under-box7 p12 {
    position: absolute;
    top: 280px;
    left: 60px;
    color: white;
    font-size: 40px;
    padding: 30px;
}

.service-box a {
  top: 280px;
  left: 140px;
  height: 60px;
  width: 320px;
  background: transparent;
  position: absolute;
}

/*営業日*/
.under-box7 p13 {
    position: absolute;
    width: 600px;
    top: 360px;
    left: 95px;
    color: white;
    font-size: 40px;
    padding: 30px;
}

.information-box a {
  top: 360px;
  left: 140px;
  height: 60px;
  width: 160px;
  background: transparent;
  position: absolute;
}





/*住所・会社名*/
.footer p {
    top: 60px;
    left: 580px;
    font-size: 30px;
    line-height: 50px;
    color: white;
    height: 100px;
    width: 760px;
    position: absolute;
}
.footer-right {
    top: 480px;
    left: 150px;
    font-size: 40px;
    color: white;
    position: absolute;
    margin-bottom: -90px;
}


.map_image7 {
    top: 2370px;
    left: 600px;
    height: 150px;
    width: 150px;
    position: absolute;
}

.access-box a {
    top: 0px;
    left: 0px;
    height: 300px;
    width: 450px;
    background: transparent;
    position: absolute;
}