@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&family=M+PLUS+Rounded+1c&family=Playwrite+DK+Uloopet:wght@100..400&family=Zen+Kaku+Gothic+New&display=swap');
a[href="#"]:before {
  content: "【リンク先未指定】";
}
/*共通
------------------------------*/
body {
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", serif;
  text-align: center;
}
.inbox {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
}
section {
  padding: 12rem 0 5em;
}
section section {
  padding: 5rem 0 0;
}
h1, h2, h3, h4, dt {
  font-family: "Zen Old Mincho", serif;
  /*text-transform: capitalize;*/
}
.sub {
  font-family: "Playwrite DK Uloopet", serif;
  font-size: 0.8em;
  font-weight: normal;
  letter-spacing: 0;
}
h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 1em;
  letter-spacing: 0.2em;
  line-height: 1.3;
  font-weight: 700;
}
h2 span[class^="icon-"] {
  display: block;
  margin: 0 auto 0.5em;
  opacity: 0.7;
}
h2 .sub {
  display: block;
  opacity: 0.6;
  font-size: 0.6em;
  margin-top: 0.5em;
}
h3 {
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1em;
}
h3 .sub {
  margin: 0.3em 1em;
}
h4, dt {
  font-size: 1.25em;
  font-weight: 700;
}
@media screen and (min-width:769px) {
  h3:before, h3:after {
    content: "─";
  }
  h3:before {
    margin-right: 1.5em;
  }
  h3:after {
    margin-left: 1.5em;
  }
}
@media screen and (max-width:768px) {
  h2 {
    font-size: 2em;
    font-weight: 400;
  }
  h3 {
    font-size: 1.5em;
    font-weight: 400;
  }
  h4, dt {
    font-size: 1.1em;
    font-weight: 400;
  }
}
/*top_img
------------------------------*/
.top_img {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}
.top_img .logo {
  z-index: 9999;
  text-align: center;
  position: absolute;
  width: 90%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.top_img .logo img {
  position: absolute;
  width: 900px;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_img h1 {
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: #d873a1;
  padding: 0.2em 2em;
  border-radius: 2em;
  display: inline-block;
}
.top_img h1 strong {
  display: none;
}
span.week {
  background: #d873a1;
  color: #fff;
  border-radius: 1.5em;
  font-size: 0.5em;
  min-width: 1.5em;
  vertical-align: 0.35em;
  margin: 0 0.1em;
}
.top_img .logo img {
  max-width: 650px;
  display: block;
  margin: 0 auto 12vh;
}
.top_slider {
  position: relative;
  overflow: hidden;
}
.top_slider, .top_slider li img {
  height: 85vh;
  width: 100%;
}
.top_slider li {
  float: left;
  text-align: center;
}
.top_slider li img {
  object-fit: cover;
}
@media screen and (min-width:769px) {
  .top_img h1 {
    font-size: 1.8em;
    white-space: nowrap;
  }
}
@media screen and (max-width:768px) {
  .top_img .logo img {
    width: 100%;
  }
  .top_img .logo h1 {
    display: block;
    width: 100%;
    font-size: 1.2em;
  }
}
.language {
  position: absolute;
  right: 5%;
  top: 0;
  width: 5em;
  display: flex;
  justify-content: space-between;
  font-size: 1.5em;
  background: #fff;
  border-radius: 0 0 0.2em 0.2em;
  box-shadow: 0 0.1em 0.5em rgba(0, 0, 0, 0.4);
  border: 2px solid #f77aa7;
  border-top: none;
  overflow: hidden;
  z-index: 9999;
}
.language li {
  flex: 1;
}
.language li a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #888;
}
.language li.here a {
  font-weight: bold;
  color: #fff;
  background: #f77aa7;
}
/*nav
------------------------------*/
nav {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.5em 0.5em rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 9999;
}
nav ul {
  display: flex;
  justify-content: space-between;
  border: 1px solid #d74a57;
}
nav li {
  border: 1px solid #d74a57;
  flex: 1;
}
nav a {
  text-decoration: none !important;
  text-align: center;
  display: block;
  width: 100%;
  padding: 1em 0;
  color: #d74a57 !important;
}
nav a span[class^="icon-"] {
  font-size: 2em;
  display: block;
  margin: 0 auto 0.2em;
}
nav a:hover {
  background: #fff4f6;
}
nav a.is-current {
  background: #d74a57;
  color: #fff !important;
  font-weight: bold;
}
nav.fixed {
  position: fixed;
  left: 0;
  top: 0;
}
@media screen and (min-width:769px) {
  nav {
    font-size: 1.2em;
  }
  nav.fixed {
    font-size: 1em;
  }
  nav.fixed a span[class^="icon-"] {
    font-size: 1.5em;
    display: inline;
    vertical-align: -0.2em;
    margin: 0;
    margin-right: 0.5em;
  }
}
@media screen and (max-width:768px) {
  nav {
    font-size: 0.8em;
  }
  nav a span[class^="icon-"] {
    font-size: 3em;
  }
  nav:not(.fixed) ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  nav:not(.fixed) li {
    width: 33.3%;
    flex: none;
    flex-grow: 1;
  }
  nav.fixed {
    font-size: 0.5em;
  }
}
/*pagetop
------------------------------*/
.pagetop {
  height: 3em;
  width: 3em;
  position: fixed;
  right: 2.5%;
  bottom: 3rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0.8em rgba(0, 0, 0, 0.1);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 1em;
  width: 1em;
  border-top: 1px solid #d74a57;
  border-right: 1px solid #d74a57;
  transform: translateY(20%) rotate(-45deg);
}
/*map
------------------------------*/
#info {
  padding: 0;
  position: relative;
}
#info:before {
  background: #fbedf0 url("../images/info_bg.jpg") no-repeat center top;
}
#intro {
  padding: 7rem 0 2rem;
  color: #d74a57;
}
#intro .inbox p {
  line-height: 2;
}
#map, #access {
  text-align: center;
  background: url("../images/map_bg1.png") no-repeat right top;
  position: relative;
  z-index: 1;
}
#map:before, #access:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/map_bg2.png") no-repeat left top;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#map .inbox img {
  max-height: 90vh;
  margin-bottom: 5rem;
}
#map:before {
  bottom: 38vh;
  background-position: left bottom;
}
#info h3 {
  font-family: "Playwrite DK Uloopet", "Zen Old Mincho", serif;
  color: #d74a57;
}
#info section:not(:first-child) {
  padding: 4rem 0;
}
#info section#map {
  padding-top: 8rem;
}
#map .link a {
  background: rgba(247, 202, 222, 0.8);
  color: #333;
  font-size: 0.8em;
}
@media screen and (min-width:769px) {
  #intro .inbox {
    max-width: 850px;
  }
  #intro .inbox p {
    font-size: 1.1em;
  }
  #map .inbox {
    position: relative;
  }
  #map .link:first-of-type {
    position: absolute;
    left: 5%;
    bottom: 10em;
  }
}
@media screen and (max-width:768px) {
  #map, #access, #map:before, #access:before {
    background-size: 100% auto;
  }
  #map .link:first-of-type {
    margin-bottom: 3em;
  }
}
/*sakura_list
------------------------------*/
.sakura_list {
  position: relative;
  overflow: hidden;
}
.sakura_list li {
  float: left;
  text-align: center;
  padding: 0 1em;
  font-size: 0.8em;
}
.sakura_list h4 {
  color: #d74a57;
}
.sakura_list .icon-arrow_left, .sakura_list .icon-arrow_right {
  display: block;
  width: 2em;
  height: 2em;
  font-size: 1.5em;
  padding: 0.5em 0;
  line-height: 1;
  background: rgba(215, 74, 87, 0.8);
  position: absolute;
  top: 3em;
  color: #fff;
  text-align: center;
  z-index: 10;
  cursor: pointer;
}
.sakura_list .icon-arrow_left {
  left: 0;
}
.sakura_list .icon-arrow_right {
  right: 0;
}
@media screen and (min-width:769px) {
  .sakura_list {
    margin: 0 auto;
    max-width: 1300px;
  }
  .sakura_list img {
    width: 85%;
  }
}
/*calendar
------------------------------*/
#calendar {
  background: #fdfcf5 url("../images/calendar_bg.png") repeat left top;
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
}
#calendar h3 span {
  background: #fff;
  width: 2em;
  padding: 0.4em 0.5em;
  border-radius: 100%;
}
#calendar table {
  margin-bottom: 1em;
  background: #fff;
}
#calendar th, #calendar tr:nth-child(2) td {
  padding: 0.3em 0.5em;
}
#calendar th {
  white-space: nowrap;
  padding-right: 1em;
  text-align: left;
}
#calendar td {
  text-align: center;
  border-left: 1px dotted #ccc;
}
#calendar tr:nth-child(even), #calendar tr:nth-child(even) th {
  background: #fff4f6;
}
#calendar tr:nth-child(2) td:nth-child(7n+3) {
  color: #4a82d7;
  background: rgba(142, 224, 255, 0.3);
}
#calendar tr:nth-child(2) td:nth-child(7n+4), tr:nth-child(2) .holiday {
  color: #d74a57;
  background: rgba(255, 200, 200, 0.5);
}
.open {
  background: url(../images/calendar_line.png) repeat center center;
  background-size: contain;
}
#calendar table img {
  width: 1.5em;
  display: block;
  margin: 0 auto;
}
/*
テーブルスクロール
----------------------------------------*/
.table_scroll {
  overflow: auto;
  padding-top: 0.5em;
}
.table_scroll {
  overflow: auto;
  position: relative;
}
.table_scroll:before {
  display: inline-block;
  content: "Scroll \e906";
  font-family: "icomoon";
  background: #d74a57;
  padding: 0.2em 1em;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.table_scroll {
  white-space: nowrap;
}
.table_scroll::-webkit-scrollbar {
  height: 0.5em;
}
.table_scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.table_scroll::-webkit-scrollbar-thumb {
  background: #d74a57;
  border-radius: 1em;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
}
.table_scroll th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .table_scroll th:first-child {
    font-size: 0.75em;
  }
}
/*event_box
------------------------------*/
.event_box {
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5em;
  border-radius: 0.5em;
  box-shadow: 0 0 0.6em rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: left;
}
.event_box dl {
  position: relative;
  padding: 3.5rem;
}
.event_box dd.comment {
  padding-top: 1em;
  border-top: 2px dotted #db6499;
  margin: 1em 0;
}
.event_box dd.date:before,
.event_box dd p.date:before{
  content: "期間：";
}
.event_box dd.place:before,
.event_box dd p.place:before {
  content: "会場：";
}
.event_box dd.price:before,
.event_box dd p.price:before {
  content: "料金：";
}
.event_box dd.date, .event_box dd.place, .event_box dd.price,
.event_box dd p.date, .event_box dd p.place, .event_box dd p.price{
  text-indent: -3em;
  padding-left: 3em;
}/*
.event_box dd.date:before {
  content: "期間：";
}
.event_box dd.place:before {
  content: "会場：";
}
.event_box dd.price:before {
  content: "料金：";
}
.event_box dd.date, .event_box dd.place, .event_box dd.price {
  text-indent: -3em;
  padding-left: 3em;
}*/
.event_box dd span {
  text-indent: 0;
  padding-left: 0;
}
.event_box dd span.list {
	text-align: left;
}
.event_box dd.sponsored, .event_box dd.novelty {
  /*background: #fff;*/
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  color: #666;
  margin-top: 1em;
}
.event_box dd.sponsored {
  overflow: hidden;
}
.event_box dd.sponsored strong {
  display: block;
  margin-bottom: 0.5em;
}
.event_box dd.sponsored strong:before {
  content: "【";
  margin-right: 0.3em;
}
.event_box dd.sponsored strong:after {
  content: "】";
  margin-left: 0.3em;
}
.event_box dd.sponsored .img {
  margin-left: 1.5em;
  float: right;
  text-align: center;
  width: 140px;
  max-width: 30%;
  font-size: 0.85em;
  line-heigh: 1.2;
}
#wagashi.event_box dd.sponsored .img {
  width: 100px;
  max-width: 22%;
  margin-left: 1em;
}
.event_box dd.sponsored .img p {
  margin: 0.5em 0;
}
.event_box dd.sponsored .img img {
  display: block;
  margin: 0 auto;
}
.event_box dd:not(.comment) {
  font-size: 0.85em;
}
.event_box dd.link,
.event_box dd p.link{
  text-align: center;
  margin: 0.5em 0 1em;
}
.event_box dd.link p {
  display: inline-block;
  border: 1px solid #db6499;
  color: #db6499;
  padding: 0.7em 2em;
  border-radius: 1.5em;
  margin: 0.5em;
}
.link a {
  display: inline-block;
  background: #e184ae;
  color: #fff;
  padding: 0.7em 2em;
  border-radius: 1.5em;
  text-decoration: none;
  margin: 0.5em;
}
.link a:after {
  content: "\e908";
  margin-left: 1em;
  font-family: "icomoon";
}
.link a:hover {
  opacity: 0.7;
}
.event_box .reserved dt:after {
  font-weight: normal;
  content: "事前ご予約制";
  color: #db6499;
  background: #fff;
  border: 1px solid #db6499;
  display: inline-block;
  font-size: 0.65em;
  margin-left: 1em;
  vertical-align: 0.15em;
  padding: 0.1em 0.5em;
}
@media screen and (min-width:769px) {
  .event_box {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    /*align-items:center;*/
    overflow: inherit;
  }
  .event_box:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .event_box > .img {
    width: 50%;
    position: relative;
    overflow: hidden;
  }
  .event_box:nth-of-type(even) > .img {
    border-radius: 0 0.5em 0.5em 0;
  }
  .event_box:nth-of-type(odd) > .img {
    border-radius: 0.5em 0 0 0.5em;
  }
  .event_box > .img img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .event_box dl {
    flex: 1;
  }
  #afternoontea .price, #afternoontea .link{
    width: 50%;
  }
  #afternoontea.event_box > .img,
  .event_box.pr > .img {
    min-height: 350px;
	  border-radius: 0;
  }
  #kyoto .event_box, #garden .event_box, #art .event_box {
    margin-bottom: 7em;
  }
  .sponsored {
    width: 120%;
    box-shadow: 0.1em 0.1em 0.6em rgba(0, 0, 0, 0.2);
    margin-bottom: -8em;
    margin-left: -10%;
  }
  #afternoontea .novelty,
  .event_box.pr .novelty {
    width: 45%;
    position: absolute;
    right: 2em;
    bottom: 2em;
    display: flex;
    align-items: center;
  }
  #afternoontea .novelty img,
  .event_box.pr .novelty img {
    width: 50%;
    max-width: 180px;
    margin-left: 1em;
  }
}
@media screen and (min-width:1300px) {
  #yoga.event_box > .img img {
    height: auto;
    top: inherit;
  }
}
@media screen and (max-width:768px) {
  .event_box .img img {
    display: block;
  }
  .event_box .reserved dt:after {
    position: absolute;
    left: -1em;
    top: -2.5em;
  }
  .event_box dt {
    position: relative;
    padding-right: 1.5em;
  }
  .event_box dt:before {
    content: "\e907";
    font-family: "icomoon";
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .event_box dt.ygchange:before {
    content: "\e90a";
  }
  .event_box dd {
    display: none;
  }
  .novelty {
    text-align: center;
  }
}
/*event
------------------------------*/
#event:before {
  background: #f9eded url("../images/event_bg.jpg") no-repeat center top;
}
#event:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/sakura.png") repeat left top;
  background-size: 100% auto;
  z-index: -1;
}
#event h2 {
  position: relative;
  color: #c02a6d;
  background: rgba(255, 255, 255, 0.5);
  padding: 2em;
  display: inline-block;
  border: 1px solid #fff;
  box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.1);
}
#event h2:before, #event h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #db6499;
  position: absolute;
  left: 0.2em;
  top: 0.2em;
}
#event h2:after {
  left: -0.2em;
  top: -0.2em;
}
#event h3 {
  color: #555;
}
#event dt {
  color: #db6499;
}
#calendar h3:before, #calendar h3:after, #event h3:before, #event h3:after {
  display: none;
}
#calendar h3 span, #event h3 span {
  font-size: 1.2em;
  display: block;
  margin: 0 auto 0.3em;
}
#event .event_box dd.sponsored, .event_box dd.novelty {
  border: 3px double #fedee3;
}
.event_link li {
  margin-bottom: 0.5em;
}
.event_link li a {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #e184ae;
  background: #e184ae;
  color: #fff;
  text-decoration: none;
  border-radius: 1.5em;
  padding: 0.7em 0;
  position: relative;
}
.event_link li a:after {
  content: "\e907";
  font-family: "icomoon";
  width: 1em;
  position: absolute;
  right: 1em;
}
.event_link li a:hover {
  background: #fff;
  color: #db6499;
}
@media screen and (min-width:769px) {
  .event_link {
    display: flex;
    gap: 1em;
    justify-content: space-around;
    font-size: 1.2em;
  }
  .event_link li {
    flex: 1;
  }
}
@media screen and (max-width:768px) {
  #event {
    background-size: 170% auto;
  }
}
/*#stamp
------------------------------*/
#info .event_box {
  padding: 1em;
}
/*#info .event_box dt {
  font-family: "M PLUS Rounded 1c", serif;
}*/
#info .event_box dt span[class^="icon-"] {
  font-size: 1.3em;
  margin-right: 0.5em;
  vertical-align: -0.15em;
}
#stamp.event_box dl dt {
  color: #db6499;
}
#stamp {
  margin-top: 2em;
}
#stamp .novelty img {
  display: block;
  margin-top: 0.5em;
}
#insta .event_box {
  background-image: linear-gradient(150deg, rgba(247, 166, 12, 0.9), rgba(255, 66, 111, 0.8) 60%, rgba(136, 62, 190, 0.7) 85%, rgba(53, 93, 180, 0.7));
  color: #fff;
}
#insta .inbox {
  max-width: 840px;
}
#insta.event_box dl dd.comment {
  border-top: 1px solid #fff;
}
#insta.event_box dl dd.link a {
  background: none;
  border: 1px solid #fff;
  color: #fff;
}
@media screen and (max-width:768px) {
  #info .event_box {
    padding-bottom: 0;
  }
}
/*light
------------------------------*/
#light {
  background: #5a7083 url("../images/light_bg.jpg") repeat center top;
  background-size: 100% auto;
}
#light h2, #light h3, #light .inbox > p {
  color: #fff;
  text-shadow: 0 0 0.5em #ff92f6;
}
#light .event_box {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}
#light .event_box dt {
  color: #204782;
}
#light .event_box dd.comment {
  border-color: #fff;
}
#light .event_box .link a {
  background: none;
  border: 1px solid #204782;
  color: #204782;
}
.column_box {
  text-align: left;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0.5em;
  padding: 1em 5%;
}
.column_box h4 {
  background: #060c20;
  display: inline-block;
  padding: 0.2em 0.5em;
  margin-bottom: 0.5em;
}
@media screen and (min-width:769px) {
  .column_box {
    display: flex;
    gap: 2em;
    align-items: center;
  }
  .column_box img {
    width: 30%;
  }
  .column_box div {
    flex: 1;
  }
  #light .event_box {
    margin-bottom: 6em;
  }
  #light .event_box .img {
    width: 40%;
  }
  #light .event_box dl {
    flex: 1;
  }
  #light .event_box dl + dl {
    padding-left: 0;
  }
  #light .event_box dt span {
    display: block;
  }
  #light .comment {
    min-height: 9em;
  }
  #light .link, #light .sponsored {
    width: 210%;
    margin-left: -110%;
  }
}
/*stay
------------------------------*/
#stay:before {
  background: #fff7f5 url("../images/stay_bg.jpg") no-repeat center top;
}
#stay h3, #stay dt {
  color: #656f31;
}
#stay .event_box dd.comment {
  border-color: #656f31;
}
#stay .event_box dd.link a {
  background: #656f31;
}
/*restaurant
------------------------------*/
#restaurant {
  position: relative;
  overflow: hidden;
}
#restaurant:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fdfcf6 url("../images/restaurant_bg.jpg") repeat center top;
  background-attachment: fixed;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#restaurant h3, #restaurant dt {
  color: #866827;
}
#restaurant .event_box dd.comment {
  border-color: #b68929;
}
#restaurant .event_box dd.link a {
  background: #b68929;
}
#restaurant section {
  position: relative;
  z-index: 1;
}
#restaurant section:before {
  background: url("../images/restaurant_top.png") no-repeat right top;
  top: 0;
  right: -10%;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width:769px) {
  #restaurant {
    background: url("../images/restaurant_bottom.png") repeat-y left -65px;
  }
  #restaurant .event_box .img {
    min-height: 400px;
  }
  #momiji .event_box .img {
    min-height: 450px;
  }
}
@media screen and (max-width:768px) {
  #restaurant {
    background-size: 100% auto;
  }
  #restaurant section:nth-of-type(odd):before {
    background: url("../images/restaurant_bottom.png") no-repeat left top;
    right: auto;
    left: -10%;
    background-size: contain;
  }
  #restaurant section:before {
    background-size: contain;
  }
}
/*access
------------------------------*/
.googlemap {
  position: relative;
  padding-top: 50%;
  background: #f5f5f5;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width:768px) {
  .googlemap {
    padding-top: 120%;
  }
  #access p {
    text-align: left;
  }
}
/*footer
------------------------------*/
footer {
  padding: 3rem 0;
  background-image: linear-gradient(0deg, rgba(253, 146, 146, 0.3), rgba(209, 254, 212, 0.3) 50%);
}
footer h3 {
  color: #d74a57;
}
footer .credit {
  margin: 2em;
}
footer .credit li {
  margin-bottom: 1em;
}
footer .credit img {
  max-height: 5em;
  max-width: 200px;
}
.sns_box {
  background: #fff url("../images/event_bg.jpg") no-repeat center top;
  background-size: cover;
  padding: 3rem 5%;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
  margin-bottom: 5rem;
}
.sns_list li {
  margin-bottom: 0.5em;
}
.sns_list a {
  display: flex;
  background: #fff;
  justify-content: center;
  flex-direction: column;
  border: 2px solid #ccc;
  padding: 0.5em;
  position: relative;
  text-decoration: none;
  width: 100%;
  height: 5.5em;
  padding: 0.5em;
  padding-left: 9rem;
  text-align: left;
  line-height: 1.2;
}
.sns_list span {
  display: block;
  font-size: 5rem;
  width: 1em;
  height: 1em;
  line-height: 1;
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sns_list span.logo-instagram {
  background: url("../images/logo_insta.png") no-repeat center center;
  background-size: contain;
}
.sns_list span.logo-line {
  background: url("../images/logo_line.png") no-repeat center center;
  background-size: contain;
}
.sns_list a:after {
  content: "\e908";
  font-family: "icomoon";
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sns_list a:hover {
  color: #d74a57;
  background: #fff4f6;
  border-color: #d74a57;
}
@media screen and (min-width:769px) {
  footer {
    margin-top: 10em;
  }
  footer .inbox {
    position: relative;
    padding-top: 12em;
  }
  .sns_box {
    position: absolute;
    top: -10em;
    left: 0;
  }
  footer .credit {
    display: flex;
    align-items: center;
  }
  footer .credit li {
    flex: 1;
  }
  .sns_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1%;
  }
  .sns_list li {
    width: 48%;
  }
}
@media screen and (max-width:768px) {
  .sns_box {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    margin-top: -3em;
    margin-bottom: 2em;
  }
  .sns_box a {
    font-size: 0.85em;
  }
  .sns_list a {
    padding-left: 12rem;
  }
}
/*背景固定------------------------------*/
#info, #event, #stay {
  position: relative;
  clip-path: inset(0);
}
#info:before, #event:before, #stay:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  position: fixed;
  left: 0;
  bottom: 0;
  inset: 0;
  z-index: -2;
}
@media screen and (max-width:768px) {
  #info:before, #event:before, #stay:before {
    background-size: auto 100vh;
  }
}

/*25.02.20追記*/ 
.event_box dd p.date, .event_box dd p.place, .event_box dd p.price{
	width: 100%;
	margin-bottom: 0;
}
@media screen and (min-width:769px) {
	.sp-only{
		display: none
	}
  .box-lyt-column{
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: space-between;
	  align-items: flex-start;
	}
	
	.box-lyt-column dt{
		width: 100%;
	}
	.box-lyt-column dd.comment{
		width: 100%;
	}
	.box-lyt-column dd{
		width: 49%;
	}
	.event_box.pr .box-lyt-column .novelty{
		width: 49%;
		position: relative;
		right: 0;
		bottom: 0;
		margin-top: 0;
	} 
	.event_box.pr .novelty{
		display: block;
	}
}
ul.lyt-list{
	text-align: left
}
ul.lyt-list p{
	margin-bottom: .2em;
	text-indent: -1.2em;
	margin-left: 1.2em;
}
ul.lyt-list li{
	margin-bottom: .6em;
}
ul.lyt-list li ul.sub-list{
	
}
ul.lyt-list li ul.sub-list li{
	margin-bottom: 0;
	text-indent: -1em;
	margin-left: 1em;
}
ul.lyt-list li ul.sub-list li .note{
	display: block;
	font-size: .9em;
}