@charset "utf-8";

html {
  scroll-behavior: smooth;
}




/*Topメインビジュアル
-----------------------------------------------------------*/
.main video {
  /*画面サイズに応じてサイズを可変するように設定*/
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  min-width: 100%;
  z-index: 1;
}

.dotted-back{/*網点リピート背景*/
	width: 100%;
	height: 100vh;
	background: url(../images/dotted-back.png) repeat 0 0;
    position: absolute;
	z-index: 2;
}

.centerBox {
  position: absolute;
  top: 32.5%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  margin: auto;
  width: 100%;
}

@media screen and (max-width:900px) {

  .main video {
    height: 115vh;
  }
}



/*Allow*/

.allow_top a {
  z-index: 11;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.allow_top a:hover {
  opacity: 0.5;
}

.allow_top a img {
  width: 100px;
  height: auto;
}

@media screen and (max-width:900px) {
  .allow_top a {
    bottom: 1%;
  }
  .allow_top a img {
    width: 75px;
  }
}

@media screen and (max-width:400px) {
  .allow_top a img {
    width: 50px;
  }
}




/* OPEN 告知
-----------------------------------------------------------*/
#target{
	position: relative;
}

.open-notice{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1% 2% 0.5% 2%;
	background: #099;
    background: linear-gradient(270deg, #009999, #FFC, #009999, #FFC);
    background-size: 800% 800%;
    -webkit-animation: AnimationName 15s ease infinite;
    -moz-animation: AnimationName 15s ease infinite;
    animation: AnimationName 15s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.open-notice .xxxl-text{
	text-align: center;
	line-height: 1.25;
	font-weight: bold;
	font-family: 'Averia Serif Libre', cursive;
	/*color: #036;*/
    color: #000;
}
.open-notice .xxxl-text .sp-text{
	text-align: center;
	line-height: 1.25;
	font-weight: bold;
	font-family: 'Averia Serif Libre', cursive;
	/*color: #036;*/
    color: #000;
}
.open-notice .xxxl-text .m-text{
	text-align: center;
	line-height: 1;
	font-weight: bold;
	/*color: #036;*/
    color: #000;
}





/*Marquee 横に流れる文字
-----------------------------------------------------------*/
h1.marquee01 {
  padding-left: 100%;
  display: inline-block;
  white-space: nowrap;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 25s;
  animation-iteration-count: infinite;
  font-size: 84px;
  color: #099;
  line-height: 1;
  font-family: 'Sawarabi Mincho', sans-serif;
  margin: 75px 0 4% 0;
}

@keyframes marquee {
  from {
    transform: translate(0%);
  }
  99%, to {
    transform: translate(-100%);
  }
}


@media screen and (max-width:900px) {

  h1.marquee01 {
    font-size: 72px;
  }
}

@media screen and (max-width:700px) {

  h1.marquee01 {
    font-size: 60px;
  }
}

@media screen and (max-width:500px) {

  h1.marquee01 {
    font-size: 48px;
  }
}

@media screen and (max-width:400px) {

  h1.marquee01 {
    font-size: 36px;
  }
}

/*marquee02*/

.marquee02 p {
  padding-left: 100%;
  display: inline-block;
  white-space: nowrap;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 25s;
  animation-iteration-count: infinite;
  font-size: 48px;
  color: #099;
  line-height: 1;
  font-family: 'Sawarabi Mincho', sans-serif;
}

@keyframes marquee {
  from {
    transform: translate(0%);
  }
  99%, to {
    transform: translate(-100%);
  }
}

@media screen and (max-width:900px) {
  .marquee02 p {
    font-size: 36px;
  }
}

@media screen and (max-width:700px) {
  .marquee02 p {
    font-size: 30px;
  }
}

@media screen and (max-width:500px) {
  .marquee02 p {
    font-size: 24px;
  }
}

@media screen and (max-width:400px) {
  .marquee02 p {
    font-size: 20px;
  }
}





/*志賀島半島位置案内イラストマップ
-----------------------------------------------------------*/
.introduction {
  width: 100%;
  height: 750px;
  /*※レスポンシブでの高さはここで調整！*/
  position: relative;
  background: url(../images/just-waves.png) repeat-x center center;
  padding: 10px 0;
}

.introduction img {
  width: 1245px;
  height: auto;
  position: absolute;
  right: 0;
}

@media screen and (max-width:1225px) {

  .introduction {
    height: 650px;
  }
  .introduction img {
    width: 98%;
  }
}

@media screen and (max-width:1000px) {

  .introduction {
    height: 600px;
  }
}

@media screen and (max-width:900px) {

  .introduction {
    background: url(../images/just-waves.png) repeat-x center top;
    height: 550px;
  }
}

@media screen and (max-width:800px) {

  .introduction {
    height: 450px;
  }
}

@media screen and (max-width:700px) {

  .introduction {
    height: 400px;
  }
}

@media screen and (max-width:600px) {

  .introduction {
    height: 350px;
  }
}

@media screen and (max-width:500px) {

  .introduction {
    height: 300px;
  }
}

/*Korona 利用のお客様へのお願い
-----------------------------------------------------------*/

.korona {
  border: 1px solid #ccc;
  padding: 1.5% 3% 2% 3%;
}

.h2-korona {
  text-align: center;
	font-size: clamp(18px, 2vw, 20px);
  font-weight: bold;
  line-height: 1.5 !important;
  margin-bottom: 15px;
}

.restriction {
  margin: 1rem 0;
}

.update-time {
  display: block;
}




/*Activity 遊ぶ
-----------------------------------------------------------*/
.activity {
  width: 100%;
  height: 300px;
  background: #20b2aa;
}

li.activity-ph {
  float: right;
  width: 50%;
  height: 300px;
  background-size: cover !important;
}

li.spaceArea01 {
  float: right;
  width: 30%;
  height: 300px;
  padding: 50px 4%;
}

li.spaceArea01 .h3-activity {
  text-align: center;
	font-size: clamp(20px, 3vw, 30px);
  font-weight: bold;
  line-height: 1 !important;
  color: #fff;
  margin-bottom: 25px;
}

.icon img {
  width: 50px;
  height: auto;
  margin: 0 auto 5px auto;
}

@media screen and (max-width:1200px) {

  li.activity-ph {
    width: 70%;
  }

  li.spaceArea01 {
    width: 30%;
  }
}

@media screen and (max-width:1000px) {

  .activity {
    height: auto;
  }

  li.activity-ph {
    float: none;
    width: 100%;
    height: 300px;
  }

  li.spaceArea01 {
    float: none;
    width: 100%;
    height: auto;
    padding: 25px 4% 35px 4%;
  }

  li.spaceArea01 p.s-text {
    text-align: center;
  }
}

@media screen and (max-width:700px) {

  li.activity-ph {
    height: 200px;
  }

}

@media screen and (max-width:500px) {

  li.spaceArea01 {
    padding: 15px 4% 25px 4%;
  }

}





/*Reserve ご利用予約はこちらTELリンク
-----------------------------------------------------------*/
.reserve {
  width: 600px;
  margin: 50px auto 0 auto;
}

.reserve a {
  display: block;
  width: 100%;
  padding: 30px 4%;
  background: #F90;
  text-align: center;
	font-size: clamp(24px, 2vw, 30px);
  font-weight: bold;
  line-height: 1 !important;
  color: #fff;
  border-radius: 10em;
  border: 5px solid #eee;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.5));
  /*画像上でも透過するbox-shadowに代わるもの*/
}

.reserve a:hover {
  background: #F60;
}

.reserve-information {
  display: block;
  margin-top:3%;
  margin-bottom:50px;
  text-align: center;
  color: #f60;
	font-size: clamp(30px, 3vw, 48px);
  font-weight:bold;
  line-height:1 !important;
}

@media screen and (max-width:600px) {

  .reserve {
    width: 100%;
  }
  .reserve a {
    border: 3px solid #eee;
  }

}






/*Price & Service 共通※ここでのclass名は「service」で統一
-----------------------------------------------------------*/
.service ul li.service-left-box {
  float: left;
  width: 50%;
}

.service ul li.service-right-box {
  float: right;
  width: 50%;
}

.service ul li.service-item-image {
  background-position: center center !important;
  background-size: cover !important;
  height: 594px;
}

.service ul li.service-item-text {
  width: 50%;
  padding:3% 4%;
  height: 594px;
  /*background: url(../images/wormz.png) repeat 0 0;*/
  background: linear-gradient(309deg, #ffffe0, #e0ffff, #ffffe0, #e0ffff);
  background-size: 800% 800%;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 10%}
    50%{background-position:100% 91%}
    100%{background-position:0% 10%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 10%}
    50%{background-position:100% 91%}
    100%{background-position:0% 10%}
}
@keyframes AnimationName {
    0%{background-position:0% 10%}
    50%{background-position:100% 91%}
    100%{background-position:0% 10%}
}


.service ul li.service-item-text .h3-service {
  border-bottom: 5px dotted #099;
  line-height: 1.5 !important;
  padding-bottom: 5px;
  margin-bottom: 20px;
	font-size: clamp(20px, 3vw, 30px);
  font-weight: bold;
  color: #099;
}

.service ul li.service-item-text dl dt.l-text {
  float: left;
}

.service ul li.service-item-text dl dd.price {
  text-align: right;
  float: right;
	font-size: clamp(24px, 3vw, 30px);
  font-family: 'Averia Serif Libre', cursive;
  line-height: 1.5 !important;
}

.service ul li.service-item-text dl dd.price span.l-text {
  font-weight: bold;
}

.fa-sun{
	color: #F90;
}

@media screen and (max-width:1200px) {

  .service ul li.service-left-box {
    float: none;
    width: 100%;
  }
  .service ul li.service-right-box {
    float: none;
    width: 100%;
  }
  .service ul li.service-item-text {
    height: auto;
    padding: 50px 4%;
  }
}

@media screen and (max-width:700px) {

  .service ul li.service-item-image {
    height: 400px;
  }

  .service ul li.service-item-text .h3-service {
    border-bottom: 3px dotted #099;
  }

  .reserve-information {
    font-size: 1.5rem;
  }

}

@media screen and (max-width:500px) {

  .service ul li.service-item-image {
    height: 300px;
  }
}





/*Food-menu
-----------------------------------------------------------*/

.food-menu .h3-food-menu {
	font-size: clamp(24px, 3vw, 30px);
  font-weight: bold;
  color: #099;
  border-bottom: 5px dotted #099;
  line-height: 1.5 !important;
  padding-bottom: 5px;
  margin-bottom: 25px;
}

.food-menu ul {
  width: 96%;
  margin: 0 auto 20px auto;
}

.food-menu ul li.food-item {
  width: 48%;
}

.food-menu ul li.food-left-box {
  float: left;
}

.food-menu ul li.food-right-box {
  float: right;
}

.food-menu ul li.food-item dl {
  border-bottom: 1px solid #ccc;
}

.food-menu ul li.food-item dl dt.m-text {
  float: left;
}

.food-menu ul li.food-item dl dd.price {
  float: right;
	font-size: clamp(24px, 3vw, 30px);
  text-align: right;
  font-family: 'Averia Serif Libre', cursive;
  line-height: 1.5 !important;
}


/*Etc-menu*/
.etc-menu{
	width:96%;
	margin:0 auto;
}

.etc-menu p.xl-text {
  text-align: center;
  padding: 15px 3%;
  border: 1px solid #FC6;
  line-height: 1 !important;
  background: #FFC;
  margin: 0 auto;
}

.etc-menu p.xl-text span.bold {
  font-weight: bold;
  line-height: 1 !important;
  color: #F60;
}

.bbq-notice {
  margin-left: 1.2rem;
}


@media screen and (max-width:700px) {

  .food-menu .h3-food-menu {
    border-bottom: 3px dotted #099;
  }

.food-menu ul li.food-item {
    width: 94%;
    margin: 0 auto;
}

.food-menu ul li.food-left-box {
    float: none;
}

.food-menu ul li.food-right-box {
    float: none;
}

.etc-menu{
    width: 92%;
}

}


#price-link{
	position: relative;
}
.white-gra{
	position: absolute;
	bottom: -50px;
	background-image: url(../images/white-gra.png);
	background-repeat: repeat-x;
	width: 100%;
	height: 50px;
}





/*Instagram
-----------------------------------------------------------*/
#instagram-link{
	margin-top: 250px;
}

.h2-instagram img {
  width: 250px;
  height: auto;
  margin: 10px auto 0 auto;
}

.instaIcon-link02 {
  width: 75px;
  margin: 20px auto 0 auto;
}

.instaIcon-link02 a img {
  display: block;
  width: 100%;
  height: auto;
}

.instaIcon-link02 a:hover img {
  opacity: 0.75;
}

.instagram-media{
	width: 100%;
	margin: auto;
}

/*ul.post {
  width: 100%;
}

ul.post li {
  float: left;
  width: 33%;
  margin-right: 0.5%;
  margin-bottom: 0.5%;
}

ul.post li.lastImg {
  margin-right: 0;
}

ul.post li a img {
  width: 100%;
  height: auto;
  display: block;
}

ul.post li a:hover img {
  opacity: 0.75;
}*/


@media screen and (max-width:700px) {

#instagram-link{
	margin-top:200px;
}

  .h2-instagram img {
    width: 200px;
    margin: 5px auto 0 auto;
  }
  .instaIcon-link02 {
    width: 50px;
  }
}

@media screen and (max-width:500px) {

#instagram-link{
	margin-top:150px;
}

  .h2-instagram img {
    width: 175px;
  }
  .instaIcon-link02 {
    width: 50px;
  }
}

@media screen and (max-width:400px) {

  .h2-instagram img {
    width: 150px;
  }
  .instaIcon-link02 {
    width: 40px;
  }
}

@media screen and (max-width:350px) {

#instagram-link{
	margin-top: 100px;
}

  .h2-instagram img {
    width: 140px;
  }
  .instaIcon-link02 {
    width: 35px;
  }
}





/*Event
-----------------------------------------------------------*/
.kabutomushi img{
	width: 100%;
	height: auto;
    margin-bottom: 50px;
}

.beach-dj-party a img{
	width: 100%;
	height: auto;
    margin-bottom: 50px;
}
.beach-dj-party a:hover img{
    opacity: 0.75;
}

.BBQ-party a img{
	width: 100%;
	height: auto;
    border: 0.5px solid #ccc;
}
.BBQ-party a:hover img{
    opacity: 0.75;
}

@media screen and (max-width:700px) {

.kabutomushi img{
   margin-bottom: 25px;
}

.beach-dj-party a img{
    margin-bottom: 25px;
}
}



/*Access
-----------------------------------------------------------*/

/*G-map*/

#G-map {
  width: 100%;
  height: 600px;
}

/*Access Info*/

.accessInfo {
  width: 100%;
  height: 400px;
  background: url(../images/wormz.png) repeat 0 0;
  margin-bottom: 10px;
}

li.accessInfo-ph {
  float: right;
  width: 50%;
  height: 400px;
  background-size: cover !important;
}

li.spaceArea02 {
  float: right;
  width: 40%;
  height: 400px;
  padding: 25px 4%;
}

.ship-timetable, .bus-timetable {
  margin: 0.5rem;
  width: 250px;
}

a.ship-timetable, a.bus-timetable {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 10px 1.5%;
  background: #F90;
  line-height: 1 !important;
  font-size: 14px;
  border-radius: 0.1em;
}

a:hover.ship-timetable, a:hover.bus-timetable {
  background: #F60;
}

span.time {
	font-size: clamp(20px, 2vw, 24px);
  font-family: 'Averia Serif Libre', cursive;
}

span.tel {
	font-size: clamp(20px, 2vw, 24px);
  font-family: 'Averia Serif Libre', cursive;
}


@media screen and (max-width:1200px) {

  li.accessInfo-ph {
    width: 50%;
  }
  li.spaceArea02 {
    width: 50%;
  }
}

@media screen and (max-width:900px) {

  .accessInfo {
    height: auto;
  }
  li.accessInfo-ph {
    float: none;
    width: 100%;
    height: 350px;
  }
  li.spaceArea02 {
    float: none;
    width: 100%;
    height: auto;
    padding: 50px 4%;
  }
}

@media screen and (max-width:700px) {

  li.accessInfo-ph {
    height: 250px;
  }
}






/*Footer
-----------------------------------------------------------*/

footer {
  width: 100%;
  position: relative;
  z-index: 10;
  /*----------------------z-index:10-------------------------*/
}

.foot-wrapp {
  width: 100%;
  height: 550px;
  background-size: cover;
}

ul.sns-siteLink {
  width: 100%;
}

ul.sns-siteLink li {
  width: 7%;
  float: left;
  margin-right: 24%;
}

ul.sns-siteLink li.lastSns {
  margin-right: 0;
}

ul.sns-siteLink li a img {
  width: 100%;
  height: auto;
  opacity: 0.75;
}

ul.sns-siteLink li a:hover img {
  opacity: 1.0;
}

h2.foot-logo img {
  width: 250px;
  height: auto;
  margin: 0 auto;
}

p.copy {
  width: 100%;
  padding: 20px 0;
  background: #099;
  text-align: center;
  color: #fff;
	font-size: clamp(12px, 2vw, 16px);
  font-family: 'Averia Serif Libre', cursive;
}


@media screen and (max-width:700px) {

  .foot-wrapp {
    padding: 25px 0 0 0;
  }

  h2.foot-logo img {
    width: 200px;
  }
}

@media screen and (max-width:500px) {

  .foot-wrapp {
    padding: 50px 0 0 0;
  }

  ul.sns-siteLink li {
    width: 10%;
    margin-right: 20%;
  }

  p.copy {
    padding: 15px 0;
  }
}

@media screen and (max-width:400px) {

  .foot-wrapp {
    height: 525px;
    padding: 75px 0 0 0;
  }

  h2.foot-logo img {
    width: 175px;
  }
}

@media screen and (max-width:350px) {

  .foot-wrapp {
    height: 425px;
  }

  h2.foot-logo img {
    width: 150px;
  }

  p.copy {
    padding: 10px 0;
  }
}






/*PageTop リンク
-----------------------------------------------------------*/

#PageTop {
  width: 60px;
  height: 60px;
  font-size: 24px;
  position: fixed;
  right: 1%;
  bottom: 80px;
  z-index: 20;
  /*----------------------z-index:20-------------------------*/
}

#PageTop a {
  text-align: center;
  padding: 0 25%;
  background: #099;
  border-radius: 10em;
  display: block;
  text-decoration: none;
  line-height: 60px;
}
#PageTop a:hover {
  opacity: 0.75;
}

#PageTop a .fa-angle-up{
	color: #fff;
}


/* お問合せ
-----------------------------------------------------------*/
.text-inquiry {
  margin-top: 1rem;
}
