/* 北川作成 */
* {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

/* メインビジュアル */
.menu-firstview {
  background-image: url("../images/menu_firstview.jpg");
}

.hide-sp {
  display: inline;
}

.section-nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 20px auto;
}

.section-nav li {
  position: relative;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.section-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 0.7em 0.7em 1.5em;
  height: 50px;
  background-color: transparent;
  color: #da3516;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  border: 1.5px solid #da3516;
  border-radius: 4px;
  transition: all 0.3s ease;
  transform: scale(1);
  opacity: 1;
}

.section-nav li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1em;
  height: 1em;
  background-color: #da3516;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/*支払方法*/

#information {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: right;
}

#information p {
  padding: 12px 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

#information .payment-title {
  color: #da3516;
  font-weight: bold;
}

#information a {
  color: #da3516;
  border: 1px solid #da3516;
  padding: 6px 12px;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  transform: scale(1);
  opacity: 1;
}

/*料金*/

.price-one {
  width: 400px;
  margin: 0 auto;
  border: 1.5px solid #da3516;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  gap: 20px;
}

.ticket-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ticket-item {
  width: 400px;
  border: 1.5px solid #da3516;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  gap: 20px;
}

.option-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.option-item {
  width: 300px;
  height: 300px;
  border: 1.5px solid #da3516;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  gap: 10px;
}

.ticket-title,
.menu-title,
.option-title {
  font-size: 22px;
  font-weight: bold;
  color: #da3516;
  border-bottom: 1px dashed #da3516;
  width: 100%;
}

.option-title {
  font-size: 20px;
  color: #da3516;
  border-bottom: 1px dashed #da3516;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.option-image {
  width: 250px;
  height: 100px;
  object-fit: contain;
}

.menu-price {
  font-size: 26px;
  padding-bottom: 10px;
}

.ticket-price {
  font-size: 24px;
  padding-bottom: 8px;
}

.option-price {
  font-size: 22px;
}

.menu-text {
  font-size: 16px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ticket-text {
  font-size: 17px;
}

.option-text {
  font-size: 14px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.badge-wrap {
  position: relative;
}

.sale-badge-left {
  position: absolute;
  top: -15px;
  left: 10px;
  width: 100px;
  height: auto;
  z-index: 1;
  transform: rotate(-5deg);
}

.sale-txt {
  position: absolute;
  top: -15px;
  left: 2px;
  width: 100px;
  line-height: 98px;
  color: white;
  font-weight: bold;
  letter-spacing: 0px;
  z-index: 2;
  transform: rotate(-5deg);
}

.attention {
  color: #da3516;
  font-weight: bold;
}

.ticket-note {
  padding-bottom: 0;
}

.point-text {
  font-size: 17px;
}

/* 施設 */

.facility-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.facility-item {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.facility-item.reverse {
  flex-direction: row-reverse;
}

.facility-image {
  width: 45%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
}

.facility-item.reverse .facility-image {
  justify-content: flex-start;
  padding-left: 10px;
}

.facility-image img {
  width: 70%;
  height: auto;
  display: block;
}

.facility-content {
  width: 55%;
  display: flex;
  align-items: stretch;
}

.content-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.facility-item.reverse .content-inner {
  align-items: flex-end;
  text-align: right;
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  align-items: flex-start;
}

.facility-item.reverse .text-block {
  text-align: right;
  align-items: flex-end;
}

.room-title {
  font-size: 20px;
  font-weight: bold;
  color: #da3516;
}

.room-text {
  font-size: 16px;
  line-height: 1.8;
}

.sub-images {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sub-images img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid #231816;
  border-radius: 7px;
  padding: 5px;
}

.facility-item.reverse .sub-images {
  justify-content: flex-end;
}

/* アメニティ */

.amenity-images {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  gap: 50px 50px;
  justify-content: center;
}

.amenity-images img {
  width: 150px;
  height: 150px;
}

.amenity-item {
  text-align: center;
}

.amenity-item p {
  margin-top: 0.5em;
  font-size: 16px;
  line-height: 1.5;
}

.amenity-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 20px 40px;
}

.amenity-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-wrap::after {
  content: "〇";
  position: absolute;
  top: -50px;
  right: -30px;
  font-size: 80px;
  font-weight: 900;
  color: #da3516;
  opacity: 0.5;
  pointer-events: none;
  font-family: "Noto Sans JP", serif;
}

.mark-circle::after {
  content: "○";
}

.mark-triangle::after {
  content: "△";
}

.mark-cross::after {
  content: "×";
  font-size: 110px;
  font-weight: 100;
  top: -85px;
  right: -45px;
}

.amenity-name {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0.5em;
}

/* 注意事項 */

.caution-border {
  border: 1.5px solid #da3516;
  padding: 30px 30px 0 30px;
  max-width: 520px;
  margin: 0 auto;
}

.caution-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 500px;
  margin: 0 auto;
  border-bottom: 1px dashed #da3516;
  padding-bottom: 20px;
}

.caution-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.caution-item {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
  border-bottom: 1px dashed #da3516;
  padding-bottom: 20px;
}

.caution-title {
  writing-mode: vertical-rl;
  font-size: 16px;
  font-weight: bold;
  color: #da3516;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.caution-item:last-child {
  border-bottom: none;
}

.caution-icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.caution-item img {
  width: 100px;
  height: 100px;
}

.caution-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  min-width: 280px;
}

.caution-text ul {
  padding-left: 1.2em;
  list-style-position: inside;
}

.caution-red {
  color: #da3516;
}

/* 横並びアイテム全体 */
/* リンク飛び時ヘッダー部分重なり回避 */
#amenity,
#caution {
  scroll-margin-top: 240px;
  /* ヘッダーの高さ分 + 少し余裕 */
}


/* レスポンシブ */
/* タブレット以下なし */
@media screen and (max-width: 1080px) {

  #amenity,
  #caution {
    scroll-margin-top: 70px;
    /* ヘッダーの高さ分 + 少し余裕 */
  }
}

/* 大きめスマホ以下 */
@media screen and (max-width: 768px) {

  #amenity,
  #caution {
    scroll-margin-top: 60px;
    /* ヘッダーの高さ分 + 少し余裕 */
  }

  .hide-sp {
    display: none;
  }

  /*ボタン*/
  .section-nav ul {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 20px auto 20px auto;
  }


  .section-nav li {
    padding: 0;
  }

  .section-nav li a {
    padding: 1em;
    font-size: 17px;
    flex-flow: column;
    line-height: 1;
    justify-content: center;
  }


  h2 {
    margin: 0 0 20px 0;
  }

  .with-icon::before {
    width: 55px;
  }

  .with-icon {
    padding-top: 35px;
    font-size: 24px;
  }

  #information {
    padding: 0 20px 10px 20px;
  }

  /*料金*/

  .price-one,
  .ticket-item,
  .option-item {
    width: 80%;
    margin: 0 auto 20px;
    padding: 15px 20px 10px 20px;
  }

  .ticket-note {
    padding-bottom: 0;
  }

  .with-icon+p {
    margin-bottom: 20px;
  }

  .sale-txt {
    width: 79px;
    line-height: 89px;
  }

  .ticket-list,
  .option-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .menu-title,
  .ticket-title,
  .option-title {
    font-size: 20px;
    width: 100%;
  }

  .menu-price {
    font-size: 22px;
    padding-bottom: 0;
  }

  .ticket-price {
    font-size: 20px;
    padding-bottom: 0;
  }

  .sale-badge-left {
    width: 80px;
    top: -10px;
    left: 10px;
  }

  .option-price {
    font-size: 20px;
  }

  .menu-text {
    line-height: 1.6;
    height: auto;
    padding: 0 8px;
  }

  .ticket-item {
    gap: 10px;
    padding-bottom: 10px;
  }

  .ticket-text {
    line-height: 3;
  }

  .option-text {
    font-size: 14px;
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }

  .tight-line {
    line-height: 1.2;
  }

  .option-text p {
    white-space: nowrap;
    margin: 0;
    padding: 0;
  }

  .option-image {
    width: 300px;
    height: 100px;
  }

  /*施設案内*/

  #facility {
    margin-bottom: 10px;
    padding: 0 15px;
  }

  .facility-item {
    flex-direction: row;
  }

  .facility-item.reverse {
    flex-direction: row-reverse;
  }

  .facility-image,
  .facility-content {
    width: 47%;
  }

  .facility-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .facility-content {
    display: flex;
    align-items: stretch;
  }

  .content-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 10px;
  }

  .text-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .sub-images {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .sub-images img {
    width: 40px;
    height: 40px;
    padding: 4px;
    border-radius: 5px;
    border: 1px solid #231816;
  }

  .room-title {
    font-size: 16px;
  }

  .room-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .facility-item.reverse:nth-of-type(2) .content-inner,
  .facility-item.reverse:nth-of-type(4) .content-inner {
    align-items: stretch !important;
    text-align: left !important;
  }

  .facility-item.reverse:nth-of-type(2) .text-block,
  .facility-item.reverse:nth-of-type(4) .text-block {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .facility-item.reverse:nth-of-type(2) .sub-images,
  .facility-item.reverse:nth-of-type(4) .sub-images {
    justify-content: flex-end !important;
  }

  /*アメニティ*/

  .amenity-images {
    display: grid;
    grid-template-columns: repeat(3, 140px);
    gap: 35px 25px;
    justify-content: center;
    padding: 0 20px;
  }

  .amenity-wrap {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 20px 20px;
  }

  .amenity-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .amenity-wrap::after {
    font-size: 60px;
    top: -25px;
    right: -15px;
  }

  .amenity-item p {
    font-size: 11px;
    margin-top: 0.3em;
    line-height: 1.4;
  }

  .amenity-item p span {
    font-size: 12px;
    font-weight: bold;
  }

  /*注意事項*/

  .caution-border {
    margin: 0 50px;
    padding: 20px;
  }

  .caution-item {
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #da3516;
  }

  .caution-title {
    font-size: 14px;
    width: 24px;
  }

  .caution-icon {
    width: 70px;
    height: 70px;
  }

  .caution-item img {
    width: 70px;
    height: 70px;
  }

  .caution-text {
    font-size: 13px;
    line-height: 1.5;
    min-width: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
  }

  .caution-text ul {
    padding-left: 1.2em;
  }

}

/* 小さめスマホ以下なし */
@media screen and (max-width: 667px) {}

/* 超小さいスマホ以下 */
@media screen and (max-width: 480px) {

  .section-nav li a {
    font-size: 15px;
    letter-spacing: -0.02em;
  }

  .facility-item {
    align-items: stretch;
  }

  .room-title {
    font-size: 14px;
    white-space: nowrap;

  }

  .room-text {
    font-size: 12.5px;
    line-height: 1.25;
  }

  .text-block {
    flex: 1;
    gap: 4px;
  }

  .sub-images img {
    width: 32px;
    height: 32px;
    padding: 3px;
    border-radius: 4px;
  }

  .with-icon::before {
    width: 50px;
  }

  .with-icon {
    padding-top: 30px;
    font-size: 22px
  }

  .amenity-images {
    grid-template-columns: repeat(3, 80px);
  }

  .option-image {
    width: 250px;
    height: 80px;
  }

  .amenity-images {
    grid-template-columns: repeat(2, 140px);
    gap: 25px;
  }

  .amenity-name,
  .amenity-item p {
    margin-top: 0;
  }

  .caution-text {
    line-height: 1.4;
  }

}

/* タブレット以下 スマホ以上 */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  .section-nav ul {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 30px auto 20px auto;
  }

  .section-nav li {
    padding: 0;
  }

  .section-nav li a {
    padding: 1em;
    font-size: 18px;
  }

  #information {
    padding-bottom: 0;
  }

  h2 {
    margin: 100px 0 20px 0;
  }

  .with-icon::before {
    width: 55px;
  }

  .with-icon {
    padding-top: 35px;
  }

  .price-one {
    width: 500px;
  }

  .ticket-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 30px;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 850px;
    margin: 0 auto;
  }

  .ticket-item {
    width: 40%;
    max-width: 400px;
  }

  .sale-txt {
    width: 79px;
    line-height: 89px;
  }

  .option-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .option-text {
    height: auto;
    min-height: 0;
  }

  .option-item {
    width: 400px;
  }

  .amenity-images {
    display: grid;
    grid-template-columns: repeat(3, 190px);
    gap: 40px;
    justify-content: center;
  }

  .amenity-wrap {
    width: 90px;
    height: 90px;
    margin: 0px 50px;
  }

  .caution-border {
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
  }
}

@media (hover: none) {
  .section-nav li a:hover {
    opacity: 1 !important;
    scale: 1 !important;
  }
}