@charset "UTF-8";
/* CSS Document */
/* CSS Document */
.icon {
  grid-area: icon; }

.name {
  grid-area: name; }

.ph {
  grid-area: ph; }

.text {
  grid-area: text; }

.red {
  color: red; }

.movie_box {
  width: 100%;
  max-width: 970px;
  margin: auto;
  display: flex; }
  .movie_box a {
    display: block; }
    .movie_box a img {
      display: block; }

.floor {
  width: 100%;
  max-width: 970px;
  margin: auto;
  margin-bottom: 80px; }
  .floor .article {
    border-top: 1px solid #ba9132;
    padding: 20px 0;
    margin: 20px auto;
    width: calc(100% - 20px); }
    .floor .article .grid_container {
      display: grid;
      grid-template-columns: 80px auto;
      grid-template-rows: auto auto;
      gap: 10px 10px;
      grid-auto-flow: row;
      align-items: center;
      grid-template-areas: "icon name " "text text"; }
    .floor .article .icon {
      grid-area: icon; }
      .floor .article .icon img {
        width: 100%; }
    .floor .article .text {
      grid-area: text;
      font-size: 1.4rem; }
      .floor .article .text img {
        float: right;
        width: 50%;
        margin: 0 0 5px 5px; }
      .floor .article .text p {
        text-align: left; }
    .floor .article .name {
      grid-area: name; }
      .floor .article .name h1 {
        font-size: 2rem;
        color: #ba9132;
        line-height: 1.2; }
    .floor .article .ph {
      grid-area: ph; }
      .floor .article .ph img {
        width: 100%; }

.floor_ph {
  width: max-content;
  max-width: calc(100% - 20px);
  margin: 0 auto 30px; }
  .floor_ph img {
    width: 100%; }
  .floor_ph .btn {
    background: rgba(186, 145, 50, 0.5);
    display: block;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 2.0rem;
    border-radius: 4px;
    text-decoration: none; }

.subpage .article .event .r {
  text-align: right;
  font-size: 1.4rem; }

.event_dl {
  font-size: 1.6rem;
  border-top: 1px solid #a0a0a0;
  border-left: 1px solid #a0a0a0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 10px; }
  .event_dl dl {
    width: calc(100%);
    display: flex;
    border-right: 1px solid #a0a0a0;
    border-bottom: 1px solid #a0a0a0; }
    .event_dl dl dt {
      padding: 5px;
      width: 3em; }
      .event_dl dl dt.month-1 {
        background: #ffadaf; }
      .event_dl dl dt.month-2 {
        background: #f7dd67; }
      .event_dl dl dt.month-3 {
        background: #fca3b9; }
      .event_dl dl dt.month-4 {
        background: #cae490; }
      .event_dl dl dt.month-5 {
        background: #8faeed; }
      .event_dl dl dt.month-6 {
        background: #90d1e2; }
      .event_dl dl dt.month-7 {
        background: #94c5e5; }
      .event_dl dl dt.month-8 {
        background: #f7cc67; }
      .event_dl dl dt.month-9 {
        background: #eca686; }
      .event_dl dl dt.month-10 {
        background: #c9a6d0; }
      .event_dl dl dt.month-11 {
        background: #9bc4ca; }
      .event_dl dl dt.month-12 {
        background: #81c7a9; }
    .event_dl dl dd {
      padding: 5px; }
      .event_dl dl dd ul {
        list-style-position: inside; }
        .event_dl dl dd ul li {
          cursor: pointer; }
          .event_dl dl dd ul li.slct {
            text-decoration: underline;
            font-weight: bold; }

.event_view {
  margin: 10px;
  position: relative;
  font-size: 1.6rem;
  margin: 35px 10px; }
  .event_view .close {
    position: absolute;
    top: 5px;
    right: 5px;
    margin: auto;
    width: 1em;
    height: 1em;
    z-index: 10;
    display: block; }
  .event_view dl {
    background: #eadec1;
    border-radius: 10px;
    padding: 20px; }
    .event_view dl dt {
      border-bottom: 1px dotted #000;
      font-size: 2rem; }
    .event_view dl::before {
      content: "";
      position: absolute;
      margin: auto;
      top: -20px;
      left: 0;
      right: 0;
      width: 0;
      height: 0;
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
      border-bottom: 20px solid #eadec1; }

@media (min-width: 768px) {
  .movie_box {
    width: 100%;
    max-width: 970px;
    margin: auto;
    margin: 30px auto;
    display: flex;
    justify-content: space-between; }
    .movie_box a {
      width: calc(50% - 15px); }
      .movie_box a img {
        width: 100%; }

  .event_dl {
    font-size: 1.6rem;
    border-top: 1px solid #a0a0a0;
    border-left: 1px solid #a0a0a0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    .event_dl dl {
      width: calc(100% / 6);
      border-right: 1px solid #a0a0a0;
      border-bottom: 1px solid #a0a0a0;
      display: block; }
      .event_dl dl dt {
        padding: 5px;
        width: 100%; }
        .event_dl dl dt.month-1 {
          background: #ffadaf; }
        .event_dl dl dt.month-2 {
          background: #f7dd67; }
        .event_dl dl dt.month-3 {
          background: #fca3b9; }
        .event_dl dl dt.month-4 {
          background: #cae490; }
        .event_dl dl dt.month-5 {
          background: #8faeed; }
        .event_dl dl dt.month-6 {
          background: #90d1e2; }
        .event_dl dl dt.month-7 {
          background: #94c5e5; }
        .event_dl dl dt.month-8 {
          background: #f7cc67; }
        .event_dl dl dt.month-9 {
          background: #eca686; }
        .event_dl dl dt.month-10 {
          background: #c9a6d0; }
        .event_dl dl dt.month-11 {
          background: #9bc4ca; }
        .event_dl dl dt.month-12 {
          background: #81c7a9; }
      .event_dl dl dd {
        min-height: 8em;
        padding: 5px; }
        .event_dl dl dd ul {
          list-style-position: inside; }
          .event_dl dl dd ul li {
            position: relative;
            cursor: pointer; }
            .event_dl dl dd ul li.slct {
              text-decoration: underline;
              font-weight: bold; }

  .event_view {
    position: absolute;
    font-size: 2rem;
    margin-top: 35px; }
    .event_view dl {
      background: #eadec1;
      border-radius: 10px;
      padding: 20px; }
      .event_view dl dt {
        border-bottom: 1px dotted #000;
        font-size: 2.8rem; }
      .event_view dl::before {
        content: "";
        position: absolute;
        margin: auto;
        top: -30px;
        left: 0;
        right: 0;
        width: 0;
        height: 0;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 30px solid #eadec1; }

  .floor {
    width: 100%;
    max-width: 970px;
    margin: auto;
    margin-bottom: 80px; }
    .floor .article {
      border-top: 1px solid #ba9132;
      padding: 20px 0;
      margin: 20px auto; }
      .floor .article .grid_container {
        display: grid;
        margin-bottom: 40px;
        grid-template-columns: 120px auto minmax(100px, 50%);
        grid-template-rows: auto auto;
        gap: 0px 10px;
        grid-auto-flow: row;
        grid-template-areas: "icon name ph" "text text ph"; }
      .floor .article .icon {
        grid-area: icon; }
      .floor .article .name {
        grid-area: name; }
        .floor .article .name h1 {
          font-size: min(2.6rem, 2.6vw);
          color: #ba9132;
          line-height: 1.5; }
      .floor .article .ph {
        grid-area: ph; }
      .floor .article .text {
        grid-area: text;
        font-size: 1.8rem; }
      .floor .article .floor_ph {
        width: max-content;
        max-width: calc(100% - 20px);
        margin: auto; }
        .floor .article .floor_ph img {
          width: 100%; }
        .floor .article .floor_ph .btn {
          background: rgba(186, 145, 50, 0.5);
          display: block;
          color: #fff;
          text-align: center;
          padding: 10px;
          font-size: 2.6rem;
          border-radius: 4px;
          text-decoration: none; } }
.facility_overview {
  display: flex;
  flex-direction: column; }
  .facility_overview .flex_dl {
    font-size: min(2rem, 3.8vw);
    margin: 10px; }
    .facility_overview .flex_dl dl {
      display: block;
      padding: 0;
      margin: 0 auto 5px;
      width: calc(100% - 20px); }
      .facility_overview .flex_dl dl dt {
        width: 100%;
        border-bottom: 1px solid #ba9132; }
        .facility_overview .flex_dl dl dt::before {
          content: "■";
          color: #ba9132;
          margin-right: 3px; }
      .facility_overview .flex_dl dl dd {
        width: calc(100%);
        font-size: min(1.8rem, 3.4vw);
        margin-left: 1em; }
  .facility_overview .ph {
    margin: 0 10px; }
    .facility_overview .ph img {
      width: 100%; }

@media (min-width: 768px) {
  .facility_overview {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .facility_overview .flex_dl {
      width: 50%;
      font-size: 1.8rem; }
      .facility_overview .flex_dl dl {
        display: flex;
        padding: 0;
        margin: 0 0 5px; }
        .facility_overview .flex_dl dl dt {
          width: 8em;
          border-bottom: 0 none; }
          .facility_overview .flex_dl dl dt::before {
            content: "";
            color: #ba9132;
            margin-right: 0; }
        .facility_overview .flex_dl dl dd {
          width: calc(100% - 9em); }
    .facility_overview .ph {
      width: 50%; }
      .facility_overview .ph img {
        width: 100%; } }
.concept .catch {
  position: relative; }
  .concept .catch img {
    width: 100%;
    position: relative; }
    .concept .catch img.text {
      z-index: 1;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width: 630px;
      max-width: 100%; }
.concept .block {
  display: block;
  margin: 0 10px 20px; }
  .concept .block .text {
    width: calc(100% - 20px);
    margin: 0 auto; }
    .concept .block .text h2 {
      text-align: center;
      font-size: 2.2rem;
      color: #ba9132;
      line-height: 1.2;
      margin-bottom: 20px; }
    .concept .block .text p {
      font-size: 1.8rem;
      text-align: left; }
  .concept .block .ph {
    width: calc(100% - 20px);
    margin: auto; }
    .concept .block .ph img {
      width: 100%; }

@media (min-width: 768px) {
  .concept .block {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 0 0 40px; }
    .concept .block.reverce {
      flex-direction: row-reverse; }
    .concept .block .text {
      width: calc((100% - 40px) / 2); }
      .concept .block .text h2 {
        text-align: center;
        font-size: 2.8rem;
        color: #ba9132; }
      .concept .block .text p {
        font-size: 1.8rem;
        text-align: left; }
    .concept .block .ph {
      width: calc((100% - 40px) / 2); }
      .concept .block .ph img {
        width: 100%; } }
.price ul {
  list-style-type: none;
  font-size: 1.4rem;
  margin-bottom: 20px;
  margin-left: 10px; }
  .price ul li::before {
    content: "";
    width: 1em;
    height: 1em;
    background: #ba9132;
    display: inline-block;
    border-radius: 1em;
    margin-right: 5px; }
.price .tbl_box {
  font-size: 1.8rem; }
  .price .tbl_box .box {
    width: calc(100% - 20px);
    margin: 0 auto 10px; }
    .price .tbl_box .box table {
      width: 100%;
      margin-bottom: 20px;
      border-collapse: collapse; }
      .price .tbl_box .box table caption {
        text-align: left; }
      .price .tbl_box .box table th {
        width: 12em;
        border: 1px solid #000;
        background: rgba(186, 145, 50, 0.1);
        font-weight: 400; }
      .price .tbl_box .box table td {
        border: 1px solid #000;
        padding-left: 20px;
        padding-right: 20px; }
        .price .tbl_box .box table td.r {
          text-align: right; }
    .price .tbl_box .box p {
      text-align: left;
      font-size: 1.4rem;
      line-height: 1.4; }

@media (min-width: 768px) {
  .price ul {
    font-size: 1.8rem; }
  .price .tbl_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
    .price .tbl_box .box {
      width: calc((100% - 40px) / 2); } }
