@charset "UTF-8";

@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

:root {
  --fontFamily-serif: "YuMincho, ", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --gutter: 20px;
  --spacing-a: 80px;
  --spacing-b: 30px;
  --spacing-b-half: calc(var(--spacing-b) / 2);
  --leading-trim: calc((1em - 1lh) / 2);
}

@media screen and (max-width: 660px) {
  :root {
    --spacing-a: 40px;
  }
}

html {
  scroll-behavior: smooth;
}

/* utility */

.txl {
  text-align: left;
}
.txr {
  text-align: right;
}
.txc {
  text-align: center;
}
img {
  width: 100%;
  height: auto;
}
table {
  table-layout: fixed;
}
table th,
table td {
  padding: 10px;
}
.list li {
  text-indent: -1.2em;
  margin-left: 1.2em;
}
.disc li:before {
  content: "●";
  margin-right: 3px;
}
.square li:before {
  content: "■";
  margin-right: 3px;
}
.sp-only {
  display: none;
}
.mb0 {
  margin-bottom: 0;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.pc-only {
  display: revert;
}
.sp-only {
  display: none;
}
@media all and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: revert;
  }
}

.u-hidden {
  display: none !important;
}

@media print {
  .u-hidden {
    display: none !important;
  }
}

.u-ib {
  display: inline-block;
}

#ghead {
  width: 100%;
  overflow: hidden;
}

#ghead .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

#ghead .inner h1 {
  margin-right: 20px;
  width: 220px;
}

.shonannohoseki {
  color: #fff;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}

.shonannohoseki #ghead {
  margin-bottom: 0;
  padding: 0;
}

.shonannohoseki h2,
.shonannohoseki h3,
.shonannohoseki h4 {
  font-weight: normal;
}

.effect {
  opacity: 0;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: opacity 0.5s cubic-bezier(0.42, 0, 0.58, 1), -webkit-transform 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: opacity 0.5s cubic-bezier(0.42, 0, 0.58, 1), -webkit-transform 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: transform 0.5s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: transform 0.5s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.5s cubic-bezier(0.42, 0, 0.58, 1), -webkit-transform 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

span.btn,
a.btn {
  display: block;
  color: #fff;
  padding: 20px 10px 20px 20px;
  background: #000;
  border: solid 1px white;
  position: relative;
}

span.btn:after,
a.btn:after {
  content: "";
  width: 11px;
  height: 22px;
  background: url(../images/icon-right.svg) no-repeat;
  background-size: 11px 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

span.btn:hover:after,
a.btn:hover:after {
  right: 15px;
}

span.btn {
  text-align: center;
  color: #999;
  background: #666;
  border: solid 1px #999;
}

span.btn:after {
  display: none;
}

p + p {
  margin-top: 1em;
}

#ghead {
  position: relative;
}

body {
  min-width: 1000px;
}

.visual {
  position: relative;
}

.visual__img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.visual__img--sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .visual__img--pc {
    display: none;
  }
  .visual__img--sp {
    display: block;
  }
}

.visual .logo {
  /*  text-align: left;*/
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: absolute;
  top: 60px;
  left: 84%;
  transform: translateX(-50%);
}

.visual .logo h1 img {
  width: 300px;
}

.visual .logo .award img {
  width: 142px;
}

.page-navi {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: color-mix(in srgb, #2f4897 90%, transparent);
}

.page-navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-width: 1000px;
  margin: 0 auto;
}

.page-navi ul li a {
  display: block;
  color: white;
  font-family: var(--fontFamily-serif);
  padding: 10px;
  background-repeat: no-repeat;
  background-position: left center;
}

.page-navi ul li span {
  display: block;
  color: #fff;
  font-size: 10px;
  font-size: 1rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
}

.page-navi ul li.illumi a {
  padding-left: 44px;
  background-image: url(../images/icon-illumi.png);
  background-size: 37px;
}

.page-navi ul li.ceremony a {
  padding-left: 28px;
  background-image: url(../images/icon-ceremony.svg);
  background-size: 20px;
}

.page-navi ul li.schedule a {
  padding-left: 30px;
  background-image: url(../images/icon-map.png);
  background-size: 21px;
}

.page-navi ul li.info a {
  padding-left: 34px;
  background-image: url(../images/icon-info.png);
  background-size: 24px;
}

.page-navi.fixed {
  position: fixed;
  top: 0;
  bottom: auto;
  z-index: 100;
}

.shonannohoseki-wrap {
  width: 100%;
  position: relative;
  /* background-image: url(../images/bg-contents.png); */
  background-repeat: no-repeat;
  background-size: 100%;
  /* background: -webkit-linear-gradient(top, #472654, #162464 50%, #00002c);
  background: linear-gradient(to bottom, #472654, #162464 50%, #00002c); */
  background-color: black;
  background-image: linear-gradient(to bottom, #2f4897, #d17357);
  /*&:after {
		content: '';
		width: 100%;
		height: 100vh;
		background: url(../images/bg-contents.png);
		background-size: cover;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -1;
	}*/
}

.shonannohoseki-wrap .content-area + .content-area {
  /* margin-top: 40px; */
}

.shonannohoseki-wrap .content-full .content {
  max-width: 100%;
}

.shonannohoseki-wrap .content-title {
  text-align: center;
  margin: 0 auto 40px;
}

.shonannohoseki-wrap .content-title h2 {
  color: white;
  font-size: 34px;
  font-size: 3.4rem;
  font-family: var(--fontFamily-serif);
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 300;
}

.shonannohoseki-wrap .content-title p {
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.shonannohoseki-wrap .content-title.title-line h2 {
  max-width: 800px;
  margin: 0 auto;
}

.shonannohoseki-wrap .content-title.title-line span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
}

.shonannohoseki-wrap .content-title.title-line span:after,
.shonannohoseki-wrap .content-title.title-line span:before {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background: url(../images/line.svg) no-repeat center center;
  background-size: 800px;
  display: block;
}

.shonannohoseki-wrap .content-title.title-line span:before {
  margin-right: 10px;
}

.shonannohoseki-wrap .content-title.title-line span:after {
  margin-left: 10px;
}

.shonannohoseki-wrap .content-title.title-line p {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0em;
}

.shonannohoseki-wrap .content {
  max-width: 100%;
  margin: 0 auto;
}

.shonannohoseki-wrap .content.map-content {
  max-width: 1064px;
}

.shonannohoseki-wrap .content-area {
  padding: 0 100px;
  max-width: 1000px;
  width: 1000px;
  margin: 0 auto;
}

.shonannohoseki-wrap .content-area.full {
  padding: 0;
}

.shonannohoseki-wrap .content-area.slide-wrap {
  padding: 40px 0 80px;
  max-width: 100%;
  min-width: 100%;
  background-image: url(../images/bg-slide.png);
  background-size: cover;
}

.shonannohoseki-wrap .read {
  font-size: 18px;
  font-size: 1.8rem;
  padding: var(--spacing-a) 80px 0;
  max-width: 100%;
  /* background-image: url(../images/bg-read.png); */
  background-position: center bottom;
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  width: auto;
}

#wrap {
  position: relative;
  overflow: hidden;
}

.content-container {
  position: relative;
  z-index: 2;
}

.wrap-bg {
  position: absolute;
  z-index: 1;
  left: 0%;
  width: 100%;
  top: 0;
  /* height: 100%;
  object-fit: cover; */
}

.shonannohoseki-wrap .read .inner {
  max-width: 800px;
  margin: 0 auto;
}

.shonannohoseki-wrap .note {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  max-width: 540px;
  margin: 30px auto 0;
  padding: 10px 20px;
  border: solid 1px #fff;
}

.shonannohoseki-wrap .iincho {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 32px;
}

.shonannohoseki-wrap .iincho .image {
  margin-left: 20px;
  width: 127px;
}

.shonannohoseki-wrap .opening {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 660px) {
  .shonannohoseki-wrap .opening {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.shonannohoseki-wrap .illumi {
  margin-bottom: 100px;
  padding-top: 80px;
  background: url(../images/line.svg) no-repeat top center;
  background-size: 1000px;
  position: relative;
}

.shonannohoseki-wrap .illumi .opening {
  padding-bottom: 100px;
}

@media screen and (max-width: 660px) {
  .shonannohoseki-wrap .illumi[class] {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 0;
  }
  .shonannohoseki-wrap .illumi .opening {
    padding-bottom: 40px;
  }
}

.shonannohoseki-wrap .illumi .content-title img {
  width: 48px;
}

.shonannohoseki-wrap .illumi .recobtn {
  position: absolute;
  top: 30px;
  right: 0;
}

.shonannohoseki-wrap .illumi .recobtn .btn {
  color: #f4e4ba;
  text-align: center;
  padding-left: 50px;
  width: 300px;
  position: relative;
}

.shonannohoseki-wrap .illumi .recobtn .btn:before {
  content: "";
  width: 48px;
  height: 40px;
  background: url(../images/icon-illumi.png) no-repeat;
  background-size: 40px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.shonannohoseki-wrap .illumi2,
.shonannohoseki-wrap .illumi3 {
  margin-bottom: 50px;
}

.shonannohoseki-wrap .ceremony {
  padding-top: 40px;
  background: url(../images/line.png) no-repeat top center;
  background-size: 1000px;
}

.shonannohoseki-wrap .ceremony .content-title img {
  width: 20px;
}

.shonannohoseki-wrap .schedule {
  padding-top: 40px;
  background: url(../images/line.png) no-repeat top center;
  background-size: 1000px;
  padding-bottom: 140px;
}

.shonannohoseki-wrap .schedule .content-title img {
  width: 21px;
}

.shonannohoseki-wrap .info {
  padding-top: 80px;
  /* background: url(../images/line.svg) no-repeat top center; */
  background-size: 1000px;
}

.shonannohoseki-wrap .info .content-title img {
  width: 24px;
}

.shonannohoseki-wrap .photo-box .photo-info {
  color: #fff;
  padding: 30px 85px;
  /* background: #000; */
}

.shonannohoseki-wrap .photo-box .photo-title {
  color: white;
  text-align: center;
  background: url(../images/line.svg) no-repeat bottom center;
  background-size: 1000px;
}

.shonannohoseki-wrap .photo-box .photo-title h3 {
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.shonannohoseki-wrap .photo-box .photo-title h3 span {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.shonannohoseki-wrap .photo-box .photo-text p {
  line-height: 1.8;
}

.shonannohoseki-wrap .photo-box .photo-note {
  font-size: 14px;
  font-size: 1.4rem;
  max-width: 540px;
  margin: 20px auto 0;
  padding: 20px;
  border: solid 1px #fff;
}

.shonannohoseki-wrap .photo-box.box-small .photo-info {
  padding: 10px;
}

.shonannohoseki-wrap .photo-box.box-small .photo-title {
  background: none;
}

.shonannohoseki-wrap .photo-box.box-small .photo-title h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}

.shonannohoseki-wrap .photo-box + .photo-box {
  margin-top: 50px;
}

.shonannohoseki-wrap .photo-double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shonannohoseki-wrap .photo-double .photo-box {
  margin-top: 0;
  width: 47%;
}

.shonannohoseki-wrap .michi-slide {
  overflow: hidden;
  margin-bottom: 40px;
  height: 280px;
}

.shonannohoseki-wrap .michi-slide ul {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
  height: 280px;
}

.shonannohoseki-wrap .michi-slide li {
  padding-right: 10px;
}

.shonannohoseki-wrap .michi-slide li img {
  width: 300px;
  height: 200px;
}

.shonannohoseki-wrap .michi-slide li p {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: var(--fontFamily-serif);
  text-align: center;
  margin-top: 10px;
}

.shonannohoseki-wrap .michi-slide .box {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: var(--fontFamily-serif);
  text-align: center;
  padding: 0 5px;
}

.shonannohoseki-wrap .michi-slide .box p {
  margin-top: 10px;
}

.shonannohoseki-wrap .slide-text {
  margin: 0 auto;
  max-width: 800px;
}

.shonannohoseki-wrap .recommend-title {
  color: #f4e4ba;
  text-align: center;
  font-family: var(--fontFamily-serif);
  font-size: 32px;
  font-size: 3.2rem;
  margin-top: 50px;
}

.shonannohoseki-wrap .recommend-box {
  color: #fff;
  max-width: 700px;
  margin: 0 auto 36px;
  padding: 20px;
  background: #000;
}

.shonannohoseki-wrap .recommend-box h3 {
  color: #f4e4ba;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: var(--fontFamily-serif);
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
}

.shonannohoseki-wrap .recommend-box h3 span {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.shonannohoseki-wrap .recommend-btn {
  max-width: 700px;
  margin: 0 auto;
}

.shonannohoseki-wrap .recommend-btn a.btn {
  color: #f4e4ba;
  text-align: center;
  padding-left: 10px;
}

.shonannohoseki-wrap .recommend-btn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 20px;
  background: #000;
  border: solid 1px #f4e4ba;
}

.shonannohoseki-wrap .recommend-btn ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 46.71429%;
  width: 68%;
}

.shonannohoseki-wrap .recommend-btn ul li a {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  color: #f4e4ba;
  text-align: center;
  border: solid 1px #f4e4ba;
}

.shonannohoseki-wrap .recommend-btn ul li a span {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
}

.shonannohoseki-wrap .recommend-btn ul li:first-child {
  width: 30%;
}

.shonannohoseki-wrap .recommend-btn ul li:first-child a.btn {
  padding-left: 10px;
}

.shonannohoseki-wrap .recommend-btn ul li:last-child a.btn {
  padding: 10px 40px;
}

.shonannohoseki-wrap .opening-live {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 665px;
  margin: 0 auto;
}

.shonannohoseki-wrap .opening-live .live-image {
  width: 27.06767%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.shonannohoseki-wrap .opening-live .live-info {
  width: 68.57143%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.shonannohoseki-wrap .opening-live .live-info .note {
  margin: 0;
}

.shonannohoseki-wrap .special-live .live-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.shonannohoseki-wrap .special-live .live-image .thumb {
  width: 19%;
}

.shonannohoseki-wrap .special-live .live-image .thumb p {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 10px;
}

.shonannohoseki-wrap .special-live .coming-soon p {
  color: #f4e4ba;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: var(--fontFamily-serif);
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.1em;
}

.shonannohoseki-wrap .event-box {
  color: #fff;
  margin: 0 auto;
  padding: 20px 40px 40px;
  background: #000;
}

.shonannohoseki-wrap .event-box .event-title {
  max-width: 630px;
  margin: 0 auto 20px;
  padding-bottom: 10px;
  background: url(../images/line.png) no-repeat bottom center;
  background-size: 1000px;
}

.shonannohoseki-wrap .event-box .event-title h3 {
  color: #f4e4ba;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: var(--fontFamily-serif);
  font-weight: normal;
  text-align: center;
  margin-bottom: 0;
}
.table-wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 660px) {
  .table-wrap {
    overflow-x: scroll;
  }
  .table-wrap table {
    min-width: 800px;
  }
}

.shonannohoseki-wrap .event-box + .event-box {
  margin-top: 50px;
}

.shonannohoseki-wrap .schedule table {
  color: #001f4c;
  table-layout: auto;
}

.shonannohoseki-wrap .schedule table th,
.shonannohoseki-wrap .schedule table td {
  padding: 5px;
  border: solid 1px black;
}

.shonannohoseki-wrap .schedule table th {
  min-width: 140px;
  background: black;
  color: white;
}

.shonannohoseki-wrap .schedule table th:first-of-type {
  width: 160px;
}

.shonannohoseki-wrap .schedule table th:last-of-type {
  width: 200px;
}

.shonannohoseki-wrap .schedule table td {
  text-align: center;
  background: #fff;
}

.shonannohoseki-wrap .schedule .schedule-info {
  /* text-align: center; */
  margin-bottom: 40px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.schedule-info {
  position: relative;
  transform: translate3d(2.5ch, 0, 0);
}

.schedule-info-text::before {
  content: "※1：";
  position: absolute;
  transform: translate3d(-100%, 0, 0);
}

.shonannohoseki-wrap .event-map .event-map-wrap {
  position: relative;
  width: 800px;
}

@media screen and (max-width: 660px) {
  .shonannohoseki-wrap .event-map .event-map-scroll {
    overflow-x: scroll;
  }
  .shonannohoseki-wrap .event-map .event-map-wrap {
    position: relative;
    width: 660px;
  }
}
.shonannohoseki-wrap .event-map {
  margin-bottom: 80px;
}
.shonannohoseki-wrap .event-map .map-btn {
  width: 186px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.shonannohoseki-wrap .event-map .map-btn li + li {
  margin-top: 10px;
}

.shonannohoseki-wrap .event-map .map-btn a.btn {
  padding-top: 15px;
  padding-bottom: 15px;
}

.event-map-button-link {
  transition: opacity 1.3s;
}

.event-map-button-link:hover .event-map-button {
  opacity: 0.5;
}

.event-map-button {
  position: absolute;
}

.event-map-button._aquarium {
  top: 25.6%;
  left: 37.2%;
  width: 135px;
}

.event-map-button._island {
  top: 38%;
  left: 23%;
  width: 180px;
}

.event-map-button._mainspot {
  top: 7%;
  left: 0%;
  width: 293px;
}

.event-map-button._opening {
  top: 25%;
  left: 4%;
  width: 232px;
}

.event-map-button._enoshimajinja-okutsumiya {
  top: 52%;
  left: 0%;
  width: 150px;
}
.event-map-button._koibito {
  top: 65%;
  left: 0%;
  width: 150px;
}
.event-map-button._iwaya {
  top: 78%;
  left: 0%;
  width: 170px;
}
.event-map-button._oiwaya {
  bottom: 3%;
  width: 180px;
  left: 18%;
}
.event-map-button._yacht {
  top: 40.5%;
  right: 0;
  width: 210px;
}
.event-map-button._nakatsumiya {
  top: 64%;
  right: 0;
  width: 210px;
}
.event-map-button._enoshimajinja-nakatsumiya {
  top: 78%;
  right: 0;
  width: 210px;
}
.event-map-button._kamegaoka {
  bottom: 3%;
  width: 210px;
  left: 45%;
}

@media screen and (max-width: 660px) {
  .event-map-button._aquarium {
    top: 25.6%;
    left: 37.2%;
    width: calc(135px * 660 / 800);
  }

  .event-map-button._island {
    top: 38%;
    left: 23%;
    width: calc(180px * 660 / 800);
  }

  .event-map-button._mainspot {
    top: 7%;
    left: 0%;
    width: calc(293px * 660 / 800);
  }

  .event-map-button._opening {
    top: 25%;
    left: 4%;
    width: calc(232px * 660 / 800);
  }

  .event-map-button._enoshimajinja-okutsumiya {
    top: 52%;
    left: 0%;
    width: calc(150px * 660 / 800);
  }

  .event-map-button._koibito {
    top: 65%;
    left: 0%;
    width: calc(150px * 660 / 800);
  }

  .event-map-button._iwaya {
    top: 78%;
    left: 0%;
    width: calc(170px * 660 / 800);
  }

  .event-map-button._oiwaya {
    bottom: 3%;
    width: calc(180px * 660 / 800);
    left: 18%;
  }

  .event-map-button._yacht {
    top: 40.5%;
    right: 0;
    width: calc(210px * 660 / 800);
  }

  .event-map-button._nakatsumiya {
    top: 64%;
    right: 0;
    width: calc(210px * 660 / 800);
  }

  .event-map-button._enoshimajinja-nakatsumiya {
    top: 78%;
    right: 0;
    width: calc(210px * 660 / 800);
  }

  .event-map-button._kamegaoka {
    bottom: 3%;
    width: calc(210px * 660 / 800);
    left: 45%;
  }
}

/* @media (max-width: 660px) {
  .event-map-button._aquarium {
    width: calc(150 / 660 * 100vw * 620 / 800);
    top: 15%;
    left: 40%;
  }
  .event-map-button._island {
    width: calc(180 / 660 * 100vw * 620 / 800);
    top: 38%;
    left: 23%;
  }

  .event-map-button._mainspot {
    width: calc(293 / 660 * 100vw * 620 / 800);
    top: 7%;
    left: 0%;
  }

  .event-map-button._opening {
    width: calc(232 / 660 * 100vw * 620 / 800);
    top: 25%;
    left: 4%;
  }

  .event-map-button._enoshimajinja-okutsumiya {
    width: calc(150 / 660 * 100vw * 620 / 800);
    top: 52%;
    left: 0%;
  }
  .event-map-button._koibito {
    width: calc(150 / 660 * 100vw * 620 / 800);
    top: 65%;
    left: 0%;
  }
  .event-map-button._iwaya {
    width: calc(170 / 660 * 100vw * 620 / 800);
    top: 78%;
    left: 0%;
  }
  .event-map-button._oiwaya {
    width: calc(180 / 660 * 100vw * 620 / 800);
    bottom: 3%;
    left: 18%;
  }
  .event-map-button._yacht {
    width: calc(210 / 660 * 100vw * 620 / 800);
    top: 40.5%;
    right: 0;
  }
  .event-map-button._nakatsumiya {
    width: calc(210 / 660 * 100vw * 620 / 800);
    top: 64%;
    right: 0;
  }
  .event-map-button._enoshimajinja-nakatsumiya {
    width: calc(210 / 660 * 100vw * 620 / 800);
    top: 78%;
    right: 0;
  }
  .event-map-button._kamegaoka {
    width: calc(210 / 660 * 100vw * 620 / 800);
    bottom: 3%;
    left: 45%;
  }
} */

.shonannohoseki-wrap .info dl dt {
  color: white;
  font-weight: 700;
  font-size: 21px;
  font-size: 2.1rem;
  padding-left: 20px;
  background: url(../images/icon-info2.png) no-repeat left center;
  background-size: 16px;
}

.shonannohoseki-wrap .info dl dd {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  padding-left: 20px;
}

.shonannohoseki-wrap .info dl dd a {
  color: #fff;
  text-decoration: underline;
}

.shonannohoseki-wrap .info dl dd + dt {
  margin-top: 1.5em;
}

.shonannohoseki-wrap .sponsor {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(../images/line.svg) no-repeat top center;
  background-size: 1000px;
  margin-top: 40px;
}

.shonannohoseki-wrap .sponsor ul {
  line-height: 2;
}

.shonannohoseki-wrap .sponsor ul li {
  display: inline-block;
}

.shonannohoseki-wrap .sponsor ul li:after {
  content: "／";
}

.shonannohoseki-wrap .sponsor ul li:first-child:after,
.shonannohoseki-wrap .sponsor ul li:last-child:after {
  display: none;
}

.shonannohoseki-wrap .sponsor ul li a {
  color: #fff;
  text-decoration: underline;
}

.bnr {
  text-align: center;
  padding: 20px 20px 40px;
}

.bnr a {
  display: inline-block;
  width: 130px;
}

#gfoot {
  text-align: center;
  padding: 10px;
}

.mb90 {
  margin-bottom: 90px;
}

/*#gfoot .bnr ul li a.btn_r {
	padding: 32px 20px 30px 20px;
}*/
.btn-fb span,
.btn-tw span {
  display: none;
}

.btn-inline {
  display: inline-block !important;
  float: left;
  margin-right: 10px;
}

.btn-fb,
.btn-tw {
  width: 30px;
  height: 30px;
  display: inline-block;
  float: left;
  margin: 19px 0 0 10px;
}

.btn-fb:hover,
.btn-tw:hover {
  opacity: 0.8;
}

.btn-fb {
  background: url(../images/btn-fb.png) no-repeat;
  background-size: 30px 30px;
}

.btn-tw {
  background: url(../images/btn-tw.png) no-repeat;
  background-size: 30px 30px;
}

.shop {
  text-align: center;
}

.shop h2 {
  color: #f4e4ba;
  font-size: 28px;
  font-size: 2.8rem;
  font-family: var(--fontFamily-serif);
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.shop p {
  font-size: 18px;
  font-size: 1.8rem;
}

.shop .btn {
  margin: 40px auto;
  width: 280px;
}
.banner a {
  width: 450px;
  height: 135px;
  cursor: pointer;
}
.banner img {
  width: 450px;
  height: 135px;
  margin: 30px auto;
  text-align: center;
  float: left;
}

@media screen and (max-width: 660px) {
  #ghead {
    display: block;
  }
}

@media screen and (max-width: 660px) {
  body {
    min-width: 100%;
  }
  .shonannohoseki {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .banner img {
    width: 100%;
    float: none;
    margin-bottom: 0;
  }

  .sp-tgl {
    z-index: 5;
  }
  .sp-navi {
    z-index: 3;
  }
  .sp-tgl {
    /* background: url(../images/bg-tgl.png) no-repeat center center; */
    background-size: cover;
    border-radius: 0;
    width: 50px;
    height: 50px;
  }
  .sp-tgl p {
    color: white;
    font-size: 10px;
    font-size: 1rem;
    font-family: var(--fontFamily-serif);
    text-align: center;
    position: absolute;
    left: 8px;
    bottom: 2px;
  }
  .sp-tgl span {
    width: 30px;
    background: white;
    left: 10px;
  }
  .sp-tgl span:nth-child(1) {
    top: 12px;
  }
  .sp-tgl span:nth-child(2) {
    top: 20px;
  }
  .sp-tgl span:nth-child(3) {
    top: 28px;
  }
  .sp-tgl.active {
    background: none;
    border: solid 1px white;
  }
  .sp-tgl.active p {
    display: none;
  }
  .sp-tgl.active span {
    background: white;
  }
  .sp-tgl.active span:nth-child(1) {
    -webkit-transform: translateY(12px) rotate(-315deg);
    -ms-transform: translateY(12px) rotate(-315deg);
    transform: translateY(12px) rotate(-315deg);
  }
  .sp-tgl.active span:nth-child(2) {
    opacity: 0;
  }
  .sp-tgl.active span:nth-child(3) {
    -webkit-transform: translateY(-4px) rotate(315deg);
    -ms-transform: translateY(-4px) rotate(315deg);
    transform: translateY(-4px) rotate(315deg);
  }
  .sp-navi {
    /* background: url(../images/bg-spnavi.jpg) no-repeat top center; */
    background-image: linear-gradient(to bottom, #2f4897, #d17357);
    background-size: cover;
  }
  .sp-navi ul {
    padding-right: 20px;
    padding-left: 20px;
  }
  .sp-navi ul li a {
    display: block;
    color: white;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: var(--fontFamily-serif);
    text-align: center;
    padding: 10px;
    border: solid 1px white;
  }
  .visual {
    position: relative;
  }
  .visual .logo {
    text-align: left;
    top: 30px;
    left: 44%;
  }
  .visual .logo h1 img {
    width: 200px;
  }

  .visual .logo .award img {
    width: 100px;
  }
  .page-navi {
    display: none;
  }
  .shonannohoseki-wrap .content-area {
    padding: var(--spacing-a) 20px 0;
    width: 100%;
  }
  .shonannohoseki-wrap .content-area.full {
    padding: var(--spacing-a) 20px 0;
  }
  .shonannohoseki-wrap .content-area.slide-wrap {
    padding: 40px 0;
  }
  .shonannohoseki-wrap .content-area.slide-wrap .txc {
    padding: 0 20px;
  }
  .shonannohoseki-wrap .content-area + .content-area {
    margin-top: 0;
  }
  .shonannohoseki-wrap .content-title h2 {
    font-size: 20px;
    font-size: 2rem;
    margin-top: 10px;
  }
  .shonannohoseki-wrap .content-title.title-line {
    padding: 0;
  }
  .shonannohoseki-wrap .content-title.title-line p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .shonannohoseki-wrap .read {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .shonannohoseki-wrap .illumi {
    margin-bottom: 0;
  }
  .shonannohoseki-wrap .illumi .recobtn {
    position: static;
    margin-bottom: 30px;
  }
  .shonannohoseki-wrap .illumi .recobtn .btn {
    width: 100%;
  }
  .shonannohoseki-wrap .illumi3 {
    padding-top: 0;
  }
  .shonannohoseki-wrap .illumi2,
  .shonannohoseki-wrap .illumi3 {
    margin-bottom: 30px;
  }
  .shonannohoseki-wrap .photo-box + .photo-box {
    margin-top: 30px;
  }
  .shonannohoseki-wrap .photo-box .photo-info {
    padding: 20px;
  }
  .shonannohoseki-wrap .photo-box .photo-title {
    background-size: 1000px;
  }
  .shonannohoseki-wrap .photo-box .photo-title h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .shonannohoseki-wrap .photo-double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .shonannohoseki-wrap .photo-double .photo-box {
    margin-top: 0;
    width: 100%;
  }
  .shonannohoseki-wrap .photo-double .photo-box + .photo-box {
    margin-top: 30px;
  }
  .shonannohoseki-wrap .michi-slide {
    margin-bottom: 20px;
  }
  .shonannohoseki-wrap .recommend-title {
    font-size: 20px;
    font-size: 2rem;
  }
  .shonannohoseki-wrap .recommend-box {
    margin-bottom: 30px;
  }
  .shonannohoseki-wrap .recommend-box h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .shonannohoseki-wrap .recommend-btn ul li {
    width: 100% !important;
  }
  .shonannohoseki-wrap .recommend-btn ul li a br {
    display: none;
  }
  .shonannohoseki-wrap .recommend-btn ul li + li {
    margin-top: 10px;
  }
  .shonannohoseki-wrap .ceremony {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .shonannohoseki-wrap .opening-live .live-image {
    margin-bottom: 20px;
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .shonannohoseki-wrap .opening-live .live-info {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .shonannohoseki-wrap .opening-live .live-info .note {
    margin: 0;
  }
  .shonannohoseki-wrap .special-live .live-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .shonannohoseki-wrap .special-live .live-image .thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  .shonannohoseki-wrap .special-live .live-image .thumb .image {
    margin-right: 2%;
    width: 30%;
    max-width: 200px;
  }
  .shonannohoseki-wrap .special-live .live-image .thumb p {
    width: 68%;
    text-align: left;
  }
  .shonannohoseki-wrap .special-live .live-image .thumb p br {
    display: none;
  }
  .shonannohoseki-wrap .special-live .live-image .thumb + .thumb {
    margin-top: 10px;
  }
  .shonannohoseki-wrap .event-box + .event-box {
    margin-top: 30px;
  }
  .shonannohoseki-wrap .event-box {
    padding: 20px;
  }
  .shonannohoseki-wrap .event-box .event-title h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .shonannohoseki-wrap .schedule table {
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
    /*th {
					display: none;
				}
				td {
					color: #fff;
					text-align: left;
					display: block;
					background: rgba(0,0,0,.6);
					border-bottom: dotted 1px;
					br {
						display: none;
					}
					&:first-of-type {
						&:before {
							content: '日程：'
						}
					}
					&:nth-of-type(2n) {
						&:before {
							content: '会場：'
						}
					}
					&:nth-of-type(3n) {
						&:before {
							content: 'イベント：'
						}
					}
					&:nth-of-type(4n) {
						margin-bottom: 10px;
						border: none;
						&:before {
							content: '点灯時間：'
						}
					}
				}*/
  }
  .shonannohoseki-wrap .schedule table th,
  .shonannohoseki-wrap .schedule table td {
    padding: 5px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .shonannohoseki-wrap .schedule table th:first-of-type {
    /* width: auto; */
  }
  .shonannohoseki-wrap .schedule .schedule-info {
    text-align: left;
  }
  .shonannohoseki-wrap .event-map .map-btn {
    margin-top: 20px;
    width: 100%;
    position: static;
  }
  .shonannohoseki-wrap .event-map .map-btn ul li {
    width: 100%;
  }
  .shonannohoseki-wrap .info dl dt,
  .shonannohoseki-wrap .info dl dd {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .shonannohoseki-wrap .sponsor {
    margin-top: 40px !important;
  }
  .shop {
    padding-top: 0 !important;
  }
  .shop h2 {
    font-size: 20px;
    font-size: 2rem;
  }
  .shop p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .shop .btn {
    width: 100%;
  }
}

.visual .visual__text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0px 3px 6px #000000;
}

.visual .visual__text .big {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 300%;
}

@media screen and (max-width: 660px) {
  .visual .visual__text .big {
    font-size: 200%;
  }
}

.shonannohoseki-wrap .special-live .live-image {
  justify-content: center;
}

.shonannohoseki-wrap .special-live .live-image .thumb {
  width: 20%;
  margin-right: 15px;
  position: relative;
}

.live-schedule-day {
  position: absolute;
  z-index: 1;
  top: -10px;
  left: -10px;
  display: inline-block;
  padding: 8px 5px;
  border-radius: 50%;
  width: 36px !important;
  height: 36px;
  margin-top: 0 !important;
  font-size: 12px !important;
}

.live-schedule-day.day-21 {
  background: #eacbe1;
}

.live-schedule-day.day-22 {
  background: #b36ba9;
}

.live-schedule-day.day-25 {
  background: #b5aad3;
}

.shonannohoseki-wrap .special-live .live-image .thumb:nth-child(4n) {
  margin-right: 0;
}

.special-live .live-image .thumb .image img {
  width: 140px;
  height: 140px;
  overflow: hidden;
  object-fit: cover;
}

.finished {
  color: #e4c37f;
  font-weight: bold;
  display: inline-block;
  padding: 0px 10px;
  border: solid 2px #e4c37f;
  margin: 0.5em 0;
}

@media screen and (max-width: 480px) {
  .finished {
    display: block;
    text-align: center;
    margin-left: 0;
    font-size: 13px;
  }

  .live-schedule-day {
    padding: 9px 4px;
    width: 30px !important;
    height: 30px;
    font-size: 10px !important;
  }

  .shonannohoseki-wrap .special-live .live-image .thumb {
    flex-direction: column;
  }

  .shonannohoseki-wrap .special-live .live-image .thumb + .thumb {
    margin-top: 0;
  }

  .shonannohoseki-wrap .special-live .live-image .thumb .image {
    width: 100%;
    height: 65px;
  }

  .special-live .live-image .thumb .image img {
    width: 100%;
    height: 100%;
  }

  .shonannohoseki-wrap .special-live .live-image .thumb p {
    width: 100%;
    font-size: 12px;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
}

.shotengai-map {
  text-align: center;
}

.shotengai-map figcaption {
  margin-top: 8px;
}

@media screen and (max-width: 660px) {
  .shotengai-map figcaption {
    font-size: 13px;
  }
}

.shotengai-map-col2 {
  width: calc(100% / 2 - 16px);
  margin: 0 8px 40px;
  float: left;
}

@media screen and (max-width: 660px) {
  .shotengai-map-col2 {
    width: 100%;
    margin: 0 0 16px;
    float: none;
  }
}

.shotengai-map-col1 {
  max-width: 600px;
  margin: 0 auto;
}

.store {
  margin-top: 80px;
}

@media screen and (max-width: 660px) {
  .store {
    margin-top: 40px;
  }
}

.store-list {
  padding: 0 40px 40px;
  margin-top: 20px;
}

@media screen and (max-width: 660px) {
  .store-list {
    padding: 0 16px 16px;
    margin-top: 16px;
  }
}

.store-item {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  height: auto;
}

@media screen and (max-width: 660px) {
  .store-item {
    display: block;
  }
}

.store-item .name > * {
  margin: unset;
}
.store-list > .store-item:nth-child(1) {
  margin-top: 0px;
}

.store-img {
  width: 50%;
}

@media screen and (max-width: 660px) {
  .store-img {
    width: 100%;
  }
}

.store-text {
  width: 50%;
  text-align: left;
  margin-left: 24px;
  font-size: 14px;
}

@media screen and (max-width: 660px) {
  .store-text {
    width: 100%;
    margin-left: 0;
  }
}

.store-list .name {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 8px;
}

@media screen and (max-width: 660px) {
  .store-list .name {
    margin-top: 16px;
    font-size: 16px;
  }
}

.store-list .name a {
  text-decoration: underline;
}

.store-list .name a:hover {
  text-decoration: none;
}

.store-list .detail a {
  text-decoration: underline;
}

.store-list .detail a:hover {
  text-decoration: none;
}

.store-list .detail tr {
  font-size: 15px;
  vertical-align: top;
}

@media screen and (max-width: 660px) {
  .store-list .detail tr {
    font-size: 12px;
  }
}

.store-list .detail th {
  width: 28%;
  padding: 5px;
  text-align: left !important;
}

.store-list .detail td {
  width: 72%;
  padding: 5px;
}

.circle {
  position: absolute;
  top: 10px;
  right: 50%;
  left: 50%;
  display: inline-block;
  width: 100px;
  height: 50px;
  border-radius: 50% / 100% 100% 0 0;
  background: #000;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}

.circle span {
  color: #ffd000;
  font-weight: bold;
  font-size: 26px;
  margin-top: 4px;
  display: block;
  text-align: center;
}

/* Acordion Faq */
.tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #fff;
  overflow: hidden;
}

input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

label {
  position: relative;
  display: block;
  padding: 1em 3em 1em 1em;
  /* background: #000; */
  font-weight: bold;
  line-height: 3;
  cursor: pointer;
  /* background-color: #000; */
  line-height: 1.4;
}

@media screen and (max-width: 660px) {
  label {
    font-size: 13px;
  }
}

.tab-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s;
  -o-transition: max-height 0.35s;
  transition: max-height 0.35s;
  color: #000;
  background-color: #fff;
}

.tab-content p {
  margin: 1em;
}

/* :checked */
input:checked ~ .tab-content {
  max-height: 100%;
}

/* Icon */
label::before,
label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 15px;
  height: 2px;
  margin-top: -1px;
  background-color: #fff;
  transform-origin: 50% 50%;
  transition: all 0.3s ease-out;
}

@media screen and (max-width: 660px) {
  label::before,
  label::after {
    right: 12px;
  }
}

label::before {
  transform: rotate(-90deg);
  opacity: 1;
  z-index: 2;
}

input[type="radio"]:checked + label::before {
  transform: rotate(90deg);
  background: #fff !important;
}

input[type="checkbox"]:checked + label::before {
  transform: rotate(180deg);
  background: #fff !important;
  opacity: 0;
}

.store-heading-text {
  font-size: 110%;
  text-align: left;
  margin: 20px 40px;
  border-left: 2px solid #2f2d2c;
  box-sizing: border-box;
  padding-left: 20px;
}

@media screen and (max-width: 660px) {
  .store-heading-text {
    margin: 16px;
    padding-left: 8px;
  }
}

.headline {
  color: white;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 660px) {
  .headline {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media (min-width: 769px) {
  .photo-col2 {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    /* background: #000; */
  }

  .photo-col2 img,
  .photo-col2 .photo-info {
    width: 50%;
    /* align-self: stretch;
        object-fit: cover; */
  }

  .photo-col2 .photo-info {
    padding: 24px !important;
  }
}

.photo-btn a {
  display: block;
  padding: 10px 20px;
  width: 100%;
  max-width: 400px;
  color: #e4c37f;
  font-weight: bold;
  border: solid 2px #e4c37f;
  margin: 1em 0;
}

.photo-btn a:hover {
  color: #fff;
  border: solid 2px #fff;
}

.page-navi ul li.shoplist a {
  padding-left: 28px;
  background-image: url(../images/icon-shop.png);
  background-size: 20px;
}

.page-navi ul li.schedule a {
  padding-left: 30px;
  background-image: url(../images/icon-schedule.png);
  background-size: 21px;
}

.page-navi ul li.map a {
  padding-left: 30px;
  background-image: url(../images/icon-map.png);
  background-size: 21px;
}

@media (min-width: 769px) {
  .is-pcReverse {
    flex-flow: row-reverse;
  }
}

.shonannohoseki-wrap .shoplist .content-title img {
  width: 28px;
}

.shonannohoseki-wrap .shoplist {
  margin-bottom: 60px;
  padding-top: 80px;
  background: url(../images/line.png) no-repeat top center;
  background-size: 1000px;
  position: relative;
}

.shonannohoseki-wrap .schedule {
  padding-top: 80px;
  background: url(../images/line.svg) no-repeat top center;
  background-size: 1000px;
}

.shonannohoseki-wrap .schedule .content-title img {
  width: 40px;
}

@media screen and (max-width: 660px) {
  .shonannohoseki-wrap .content-area {
    padding: var(--spacing-a) 20px 0;
    width: 100%;
  }
}

@media (min-width: 661px) {
  .shonannohoseki-wrap .event-map {
    position: relative;
  }

  .shonannohoseki-wrap .event-map .map-btn {
    width: 200px;
    position: absolute;
    right: -70px;
    bottom: -160px;
  }
}

.shonannohoseki-wrap .eventlink-area {
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 14px;
  font-size: 1.4rem;
}

.shonannohoseki-wrap .eventlink {
  text-align: center;
}

@media screen and (max-width: 660px) {
  .shonannohoseki-wrap .eventlink {
    text-align: left;
  }
}

.eventlink p {
  margin: 24px 0 14px;
}

.icon-rank {
  position: absolute;
  top: 7%;
  left: 4%;
  max-width: 280px;
}

@media screen and (max-width: 660px) {
  .icon-rank {
    bottom: 0;
    left: 10px;
    max-width: 180px;
    top: auto;
  }
}

.note-area {
  padding-top: 30px;
  padding-bottom: 50px;
}

.note-area-title {
  text-align: center;
  font-size: 1.6rem;
  line-height: calc(29 / 16);
  font-weight: 700;
}

.note-box {
  font-size: 1.4rem;
  line-height: calc(22 / 14);
  max-width: 540px;
  margin: 20px auto 0;
  padding: 10px 20px;
  border: solid 1px #fff;
  font-weight: 700;
  /* background-color: black; */
}

.note-box .-row {
  display: block;
}

.note-box .-row._pl {
  padding-left: 5em;
}
@media screen and (max-width: 660px) {
  .note-box .-row._pl {
    padding-left: unset;
  }
}

.note-box._text-left {
  text-align: left;
}

.content-area.hotel .content-lead {
  line-height: 1.8;
  margin-bottom: calc(56px + (1em - 1lh) / 2);
  margin-top: calc(56px + (1em - 1lh) / 2);
  max-width: 490px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 660px) {
  .content-area.hotel .content-lead {
    margin-bottom: calc(46px + (1em - 1lh) / 2);
    margin-top: calc(46px + (1em - 1lh) / 2);
  }
}

.shonannohoseki-wrap .hotel {
  padding-top: 80px;
  background: url(../images/line.svg) no-repeat top center;
  background-size: 1000px;
  padding-bottom: 48px;
}

.page-navi ul li.hotel a {
  padding-left: 30px;
  background-image: url(../images/icon-hotel.svg);
  background-size: 21px;
}

.hotel label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 11px;
  height: 20px;
  margin-top: -10px;
  transform-origin: 50% 50%;
  transition: all 0.3s ease-out;
  background: url(../images/icon-right.svg) no-repeat;
  background-size: 11px 20px;
  transform: rotate(90deg);
  z-index: 2;
}

.hotel label::before {
  display: none;
}

.hotel input[type="checkbox"]:checked + label::after {
  transform: rotate(270deg);
}

.u-underline {
  text-decoration: underline;
}
.u-color-text {
  color: #001f4c;
}

.u-text-hover:hover {
  opacity: 0.6;
}

@media screen and (max-width: 660px) {
  .u-pc-only {
    display: none;
  }
}
@media not screen and (max-width: 660px) {
  .u-sp-only {
    display: none;
  }
}

.top-intro {
  display: flex;
  flex-direction: column;
  row-gap: var(--spacing-b);
}

.top-intro__summary {
  text-align: center;
  font-family: var(--fontFamily-serif);
  display: flex;
  flex-direction: column;
  row-gap: var(--spacing-b-half);
}

.top-intro__summary > * {
  margin-block: var(--leading-trim);
}
.top-intro__name {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 800;
}

@media screen and (max-width: 660px) {
  .top-intro__name {
    font-size: 17px;
  }
}

.top-intro__catch {
  font-size: 36px;
  letter-spacing: 0.07em;
  line-height: 1.5;
  font-weight: 600;
}

@media screen and (max-width: 660px) {
  .top-intro__catch {
    font-size: 24px;
  }
}

.top-intro__date {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 500;
}

@media screen and (max-width: 660px) {
  .top-intro__date {
    font-size: 20px;
  }
}

.top-intro__description {
  margin-block: var(--leading-trim);
  line-height: 1.66;
  font-size: 19px;
  font-weight: 500;
}

@media screen and (max-width: 660px) {
  .top-intro__description {
    font-size: 16px;
  }
}

.top-coming {
  padding-top: var(--spacing-a);
  padding-bottom: var(--spacing-a);
  text-align: center;
}

.top-coming > * {
}
.top-coming__ja {
  margin-top: var(--leading-trim);
  font-size: 36px;
  letter-spacing: 0.07em;
  line-height: 1.5;
  font-family: var(--fontFamily-serif);
  font-weight: 600;
}
@media screen and (max-width: 660px) {
  .top-coming__ja {
    font-size: 24px;
  }
}

.top-coming__en {
  margin-bottom: var(--leading-trim);
  font-size: 36px;
  letter-spacing: 0.07em;
  line-height: 1.5;
  font-family: var(--fontFamily-serif);
  font-weight: 600;
  margin-top: unset;
}
@media screen and (max-width: 660px) {
  .top-coming__en {
    font-size: 24px;
  }
}
