@charset "utf-8";
@import url('https://www.nta.co.jp/akafu/east/common/css/common.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');
@import url('https://use.fontawesome.com/releases/v5.6.3/css/all.css');

/* CSS Document */
html {
  scroll-behavior: smooth;
}

#wrapper {
  width: 100%;
  /*max-width:950px;*/
  margin: 0 auto 10px;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #111111;
  color: #333;
  position: relative;
  z-index: 0;
}

#wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  opacity: 0.1;
  /* 半透明化 */
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 759.9px) {
  #wrapper::before {
		position: fixed;
		top: 0;
  	left: 0;
		right: 0;
		bottom: 0;
    background-size: 200% auto;
  }
}

#wrapper * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

#wrapper a {
  word-break: break-all;
}

#wrapper img {
  vertical-align: bottom;
}

#wrapper h2,
#wrapper h3,
#wrapper h4 {
  font-weight: bold;
}

@media screen and (min-width: 760px) {
  .pc_none {
    display: none;
  }
}

@media screen and (max-width: 759.9px) {
  .sp_none {
    display: none;
  }
}

.disnon {
  display: none;
}

.text_red {
  color: #B20202;
}

.text_blue {
  color: #0055ff;
}

.text_bold {
  font-weight: bold;
}

.text_normal {
  font-weight: normal;
}

.text_center {
  text-align: center;
}

.text_font_sans {
  font-family: 'Noto Sans JP', sans-serif;
}

.attention {
  font-size: 90%;
  width: fit-content;
  margin: 0 auto 30px;
}

.attention p {
  font-weight: normal;
  text-align: left;
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 5px;
}

.mgn_btm20 {
  margin-bottom: 20px;
}

.marker {
  background: linear-gradient(transparent 80%, #ffd22c 80%);
  font-weight: bold;
}

a.invalid {
  pointer-events: none;
}

a.godetail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  text-decoration: none;
  background: url("../images/button.png") no-repeat center bottom;
  background-size: 100%;
  z-index: 10;
  color: #FFFFFF;
  font-size: 90%;
  line-height: 1.4;
  padding-bottom: 5px;
}

a.godetail:hover {
  color: #FFFFFF !important;
  text-decoration: none !important;
  opacity: 0.8;
}

a.godetail.gray {
  background: url("../images/button_gray.png") no-repeat center bottom;
  background-size: 100%;
  pointer-events: none;
}

.yoyaku .deco {
  /* font-weight: normal; */
  display: inline-block;
  padding: 0 50px;
  background: url("../images/deco_white_left.png") no-repeat center left, url("../images/deco_white_right.png") no-repeat center right;
  background-size: 30px auto;
  color: #fff;
  font-size: 150%;
}

.yoyaku_planname {
  font-size: 120%;
  font-weight: bold;
  margin: 10px 0;
}

.yoyaku_day {
  font-size: 90%;
  /* font-weight: bold; */
  margin: 10px 0;
}

@media screen and (max-width: 759.9px) {
  a.godetail {
    font-size: 90%;
  }

  .deco {
    display: inline-block;
    padding: 0 10px;
    background: url("../images/deco_left.png") no-repeat center left, url("../images/deco_right.png") no-repeat center right;
    background-size: 8px;
    font-size: 120%;
  }
}

p.credit {
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: right;
  background: rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 90%;
}

.bg_white {
  background-color: rgb(255 255 255 / 0.75);
  border-radius: 20px;
  padding: 20px 20px;
  margin: 30px auto;
  width: 90%;
}

@media screen and (max-width: 759.9px) {
  .bg_white {
    padding: 20px;
  }
}

/*--------.page_roof-------------*/
.page_roof {
  position: relative;
  width: 100%;
}

.page_roof .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_roof .toptitle {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  gap: 20px;

}

.page_roof .toptitle dt {
  width: 120px;
}

.page_roof .toptitle dt img {
  width: 100%;
  height: auto;
}

.page_roof .toptitle dd {
  color: #085A9F;
  font-family: "Cal Sans", sans-serif;
  letter-spacing: 0.05em;
}

.page_roof .toptitle h2 {
  text-align: center;
  font-size: 200%;
  line-height: 1.4;
  margin-bottom: 10px;
}

.page_roof .toptitle p.date {
  font-weight: bold;
  text-align: center;
  font-size: 160%;
  line-height: 1.4;
  color: #085A9F;
  margin-bottom: 10px;
}

.page_roof .toptitle p.place {
  font-size: 140%;
  font-weight: normal;
  margin-left: 1em;
}

@media screen and (max-width: 759.9px) {
  .page_roof .toptitle {
    width: 90%;
    height: auto;
    display: block;
    padding: 20px;
  }

  .page_roof .toptitle dt {
    width: 60px;
    margin: 0 auto 10px;
  }

  .page_roof .toptitle h2 {
    text-align: center;
    font-size: 160%;
  }

  .page_roof .toptitle p.date {
    font-size: 120%;
  }

  .page_roof .toptitle p.place {
    font-size: 100%;
    width: fit-content;
    margin: 0 auto;
  }
}

/*--------.page_roof-------------*/
.logoimg {
  /* width: 100%; */
  height: 20vw;
  /* max-width: 200px; */
  margin: 0 auto 30px;
  display: block;
}

.deco_h2 {
  font-weight: bold;
  margin: 0 auto 1.4rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  background: linear-gradient(90deg, rgba(45, 119, 241, 1), rgba(0, 45, 92, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.details {
  width: 80%;
  margin: 30px auto 20px;
  font-weight: 600;
}

.details dl {
  display: flex;
  margin-bottom: 10px;
}

.details dt {
  width: 45%;
  margin: 0 10px 10px 0;
  font-weight: 600;
}

.details dd {
  width: 80%;
  text-indent: 20px;
}

.details dd a {
  font-size: 90%;
}

/* メインビジュアル全体 */
.page_roof .photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 250px;
  /* max-height: 450px; */
  overflow: hidden;
}

/* スライド画像を背景に */
/*.page_roof .photo .swiper-container main .swiper-wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}*/

@media screen and (max-width: 759.9px) {
  .page_roof {
    height: 50vh;
  }

  .page_roof .photo {
    height: 100%;
    min-height: 400px;
  }

  .main-visual-logo {
    width: 60vw;
    max-width: 180px;
    min-width: 80px;
  }

  .deco_h2 {
    margin-bottom: 1rem;
    font-size: 160%;
  }

  .deco_h2.adjust {
    padding-left: 0.5em;
  }

  .logoimg {
    height: 40vw;
  }

  .details {
    width: 100%;
    margin: 30px auto 20px;
  }

  .details dl {
    display: block;
  }

  .details dt {
    width: 100%;
    margin: 0 10px 0px 0;
    font-weight: 600;
  }

  .details dd {
    width: 100%;
  }

  /* メインビジュアルSwiperの高さを親要素に合わせる */
  .page_roof .photo .swiper-container,
  .page_roof .photo .swiper-wrapper,
  .page_roof .photo .swiper-slide {
    height: 100%;
  }


  /* スライド画像を背景にする場合 */
  .page_roof .photo .swiper-slide {
    background-size: cover;
    background-position: center;
  }
}

/*-------------ページコンテンツ   --------------*/
.pageContent {
  width: 100%;
  margin: 0 auto;
  z-index: 100;
  position: relative;
}

.pageContent .inner {
  width: 94%;
  max-width: 950px;
  margin: 0 auto;
}

.pageContent .inner_narrow {
  width: 90%;
  max-width: 740px;
  margin: 0 auto;
}
/*-------------Read-------------*/
.guide_yoyaku {
  text-align: center;
  padding: 30px 0;
}

.guide_yoyaku a {
  width: fit-content;
  margin: 0 auto;
  padding: 0 40px;
  background-image: linear-gradient(130deg, #F2C063, #F2CF66, #D9B36C);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  border-radius: 20px;
  border: 2px solid #8C693E;
}

.guide_yoyaku a:hover {
  background: #F2C84B;
  opacity: 1;
}

.guide_yoyaku a p.deco {
  padding: 0 50px;
  background: url("../images/deco_white_left.png") no-repeat center left, url("../images/deco_white_right.png") no-repeat center right;
  background-size: 30px auto;
  color: #fff;
  font-size: 150%;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 759.9px) {
	.guide_yoyaku {
		text-align: center;
		padding: 60px 0 30px;
	}
	.guide_yoyaku a {
		padding: 0 20px;
		height: 60px;
		border-radius: 10px;
		border: 1px solid #8C693E;
	}
	.guide_yoyaku a p.deco {
		padding: 0 20px;
		background: url("../images/deco_white_left.png") no-repeat center left, url("../images/deco_white_right.png") no-repeat center right;
		background-size: 15px auto;
		color: #fff;
		font-size: 110%;
		text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
	}
}
/*-------------Read-------------*/

.about img {
  height: 200px;
  display: block;
  margin: 0 auto 30px;
  align-items: center;
}

.lead {
  font-weight: 600;
  margin: 0 20px 20px;
}

.lead h3 {
  margin: 20px auto;
  font-size: 110%;
}

@media screen and (max-width: 759.9px) {
  .about img {
    height: auto;
    width: 100%;
  }

  .lead {
    font-weight: 600;
    margin: 0 10px 20px;
  }
}

#hotelplan .yoyaku {
  text-align: center;
  margin-bottom: 80px;
}

#hotelplan .yoyaku .deco {
  display: inline-block;
  text-align: center;
  padding: 0 50px;
  background: url("../images/deco_blue_left.png") no-repeat center left, url("../images/deco_blue_right.png") no-repeat center right;
  background-size: 30px auto;
  font-size: 150%;
  color: #0169a1;
}

#hotelplan .yoyaku ul {
  width: fit-content;
  margin: 20px auto 20px;
  text-align: left;
}

#hotelplan .yoyaku .yoyaku_unit {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#hotelplan .yoyaku .yoyaku_unit a.godetail {
  width: 40%;
}

@media screen and (max-width: 759.9px) {
  #hotelplan .yoyaku .deco {
    padding: 0 20px;
    background: url("../images/deco_blue_left.png") no-repeat center left, url("../images/deco_blue_right.png") no-repeat center right;
    background-size: 16px;
    font-size: 130%;
  }

  #hotelplan .yoyaku ul {
    font-size: 90%;
    text-indent: -1em;
    padding-left: 1em;
  }

  #hotelplan .yoyaku .yoyaku_unit {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #hotelplan .yoyaku .yoyaku_unit a.godetail {
    width: 90%;
  }
}

/*-------------charm------------*/
.charm {
  margin-bottom: 20px;
  width: 100%;
}

.charm dl {
  width: 75%;
  margin: 0 auto 20px;
}

.charm dl dt {
  width: 100%;
  font-size: 140%;
  font-weight: 600;
  /*color: #005ba0;*/
  margin: 0 0 10px;
  background: linear-gradient(-90deg, rgba(45, 119, 241, 1), rgba(0, 45, 92, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.charm dl dd {
  width: 100%;
}

.charm dl dd .caption p {
  font-size: 100%;
}

@media screen and (max-width: 759.9px) {
  .charm dl {
    width: 95%;
  }

  .charm dl dt {
    font-size: 16px;
    text-indent: -1em;
    margin-left: 1em;
  }

  .charm dl dd .caption p {
    font-size: 14px;
  }

}

/*-----動画---------------*/
.movie {
  /* background: #dee9ef; */
  margin-top: 30px;
  padding-top: 70px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.movie h2 {
  /* background: url("../images/line_title.png")no-repeat center bottom;
  background-size: auto 3px; */
  padding-bottom: 8px;
  margin-bottom: 40px;
  color: #062d5e;
}


.player {
  margin: 0 0 0 50px;
}

.movie iframe {
  /*width:560px;
	height:315px;*/
  width: 750px;
  height: 420px;
  margin: 0 0 50px 0;
}

@media screen and (max-width: 759.9px) {
  .movie iframe {
    width: 90vw;
    height: 50vw;
    margin: 0 0 40px 0;
  }
}

/*-------booking---------*/
.inner_narrow {
  margin: 0 auto;
  padding: 20px 0;
  font-weight: 600;
  position: relative;
}

.inner_narrow.comingsoon {
  margin-bottom: 60px;
}

.inner_narrow.comingsoon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.inner_narrow .underline {
  text-decoration: underline;
  text-decoration-color: #d4edfb;
  text-underline-offset: -3px;
  text-decoration-thickness: 10px;
  text-decoration-skip-ink: none;
  font-size: 120%;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.inner_narrow p.title {
  font-size: 140%;
  text-align: center;
  margin-bottom: 20px;
}

.inner_narrow .yoyaku {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.inner_narrow .yoyaku p {
  margin-bottom: 20px;
}

.inner_narrow .yoyaku .yoyaku_unit>a {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 20px;
}


@media screen and (max-width: 759.9px) {
  .inner_narrow .yoyaku p.deco {
		padding: 0 20px;
		background: url("../images/deco_white_left.png") no-repeat center left, url("../images/deco_white_right.png") no-repeat center right;
		background-size: 20px auto;
		color: #fff;
		font-size: 120%;
  }
}

.inner_narrow .comingsoon {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 150px;
  display: flex;
  text-justify: inter-character;
  align-items: center;
  color: #B30A0A;
  font-size: 200%;
  margin: 0 auto 10px;
  justify-content: center;
  z-index: 20;
}

.inner_narrow .comingsoon span {
  padding: 0 20px;
  border: 2px solid #B30A0A;
  background: rgba(255, 255, 255, 0.6);
  transform: rotate(-10deg);
}

@media screen and (max-width: 759.9px) {
  .inner_narrow .comingsoon {
    font-size: 180%;
  }

  .inner_narrow .comingsoon span {
    padding: 0 15px;
  }

  .inner_narrow .underline {
    font-size: 110%;
    text-underline-offset: -3px;
    text-decoration-thickness: 7px;
  }

  .inner_narrow p.title {
    font-size: 120%;
  }
}

/*-------------event------------*/

.package {
  width: 95%;
  margin: 0 auto;
}

.package p {
  margin-bottom: 20px;
  text-align: left;
}

.package p.title {
  font-size: 140%;
  text-align: center;
}

.package .no {
  font-size: 120%;
}

.package .thin {
  width: fit-content;
  margin: 10px auto;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 100%;
  font-weight: normal;
}

.package .package_bold {
  font-size: 120%;
  /*color: #07006b;*/
  color: rgba(0, 45, 92, 1);
  font-weight: bold;
  margin: 0 auto 10px;
  width: fit-content;
}

.package .package_bold.date {
  font-size: 110%;
}

.package .hr-simple {
  border: none;
  border-top: 1.5px solid rgba(0, 45, 92, 1);
  margin: 30px auto;
  height: 0;
  /* ←高さを0にしておくと確実 */
  width: 80%;
  display: block;
}

@media screen and (max-width: 759.9px) {}


/*-----スライドswiper カスタマイズ-共通-------------------*/
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  width: 100%;
}

.swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}

/*-----mainSwiper--------------------*/
.swiper-container.main {
  margin-bottom: 10px;
}

.swiper-pagination.main {
  bottom: 15px;
  width: 100%;
  display: none;
}

.swiper-pagination.main .swiper-pagination-bullet-active {
  background: #FFFFFF;
  z-index: 1000;
}

.swiper-pagination.main .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-button-prev.main::after,
.swiper-button-next.main::after {
  font-size: 20px;
  color: #FFF;
  font-weight: bold;
  opacity: 0.5;
}

.swiper-button-prev.main:hover::after,
.swiper-button-next.main:hover::after {
  opacity: 1;
}

.swiper-button-prev.main {
  left: 5px;
  top: 48%;
}

.swiper-button-next.main {
  right: 5px;
  top: 48%;
}

@media screen and (max-width: 759.9px) {

  .swiper-button-prev.main::after,
  .swiper-button-next.main::after {
    font-size: 20px;
  }

  .swiper-button-prev.main {
    left: 5px;
    top: 46%;
  }

  .swiper-button-next.main {
    right: 5px;
    top: 46%;
  }
}

/*-----inboxswiper--------------------*/
.swiper-container.inbox .swiper-slide {
  padding-bottom: 60px;
  /*position: relative;*/
}

.swiper-container.inbox .swiper-slide .caption {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 55px;
}

.swiper-container.inbox .swiper-slide img {
  width: 100%;
}

.swiper-container.inbox .swiper-slide .photo {
  position: relative;
}

/* ドットインジケーターの色*/
.swiper-pagination.inbox .swiper-pagination-bullet {
  opacity: 0.6;
}

/* ドットインジケーターの位置*/
.swiper-container.inbox .swiper-pagination {
  bottom: 65px;
}

.swiper-pagination.inbox .swiper-pagination-bullet-active {
  background: #FFFFFF;
}

/* prev&next 矢印の色とサイズ*/
.swiper-button-prev.inbox {
  left: 5px;
  top: 40%;
}

.swiper-button-next.inbox {
  right: 5px;
  top: 40%;
}

.swiper-button-prev.inbox::after,
.swiper-button-next.inbox::after {
  font-size: 20px;
  color: #FFF;
  font-weight: bold;
}

@media screen and (max-width: 759.9px) {
  .swiper-container.inbox .swiper-slide {
    padding-bottom: 70px;
  }

  .swiper-container.inbox .swiper-slide .caption {
    height: 65px;
  }

  .swiper-container.inbox .swiper-pagination {
    bottom: 75px;
  }

  .swiper-button-prev.inbox {
    left: 2px;
    top: 35%;
  }

  .swiper-button-next.inbox {
    right: 2px;
    top: 35%;
  }

  .swiper-button-prev.inbox::after,
  .swiper-button-next.inbox::after {
    font-size: 15px;
  }
}