*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #5f5a5b;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button,
input,
select,
textarea {
  font: inherit;
}

.iy-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 767px) {
  .iy-container {
    padding-inline: 12px;
  }
}

.iy-section {
  padding-block: 64px;
}
@media (max-width: 767px) {
  .iy-section {
    padding-block: 40px;
  }
}

.iy-grid {
  display: grid;
  gap: 24px;
}
@media (max-width: 767px) {
  .iy-grid {
    gap: 16px;
  }
}

.iy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.iy-button:hover {
  opacity: 0.85;
}
.iy-button:focus-visible {
  outline: 2px solid #7a7074;
  outline-offset: 3px;
}
.iy-button:disabled, .iy-button[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.iy-button--primary {
  background-color: #7a7074;
  color: #fff;
}

.iy-button--secondary {
  background-color: #b9c4c8;
  color: #7a7074;
}

.iy-button--outline {
  border-color: #7a7074;
  background-color: transparent;
  color: #7a7074;
}

.iy-card {
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e5e8ea;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 89, 0.08);
}

.iy-card__image {
  overflow: hidden;
}
.iy-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.iy-card__body {
  padding: 24px;
}
@media (max-width: 767px) {
  .iy-card__body {
    padding: 16px;
  }
}

.iy-card__title {
  margin: 0;
  color: #7a7074;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.iy-card__text {
  margin-top: 12px;
  color: #5f5a5b;
}

.iy-card__footer {
  margin-top: 20px;
}

.iy-area-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  aspect-ratio: 4/3;
}
.iy-area-card:hover .iy-area-card__image {
  transform: scale(1.04);
}

.iy-area-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.iy-area-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(43, 76, 89, 0.72), rgba(43, 76, 89, 0.05));
}

.iy-area-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.iy-area-card__count {
  margin: 4px 0 0;
  font-size: 0.875rem;
}

.iy-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 20px;
  border: 1px solid #e5e8ea;
  border-radius: 12px;
  background-color: #ffffff;
  color: #7a7074;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.iy-feature-card:hover {
  transform: translateY(-2px);
  border-color: #b9c4c8;
  box-shadow: 0 4px 20px rgba(43, 76, 89, 0.08);
}

.iy-feature-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f4dddd;
}

.iy-feature-card__label {
  font-weight: 700;
  line-height: 1.5;
}

.iy-form-field {
  display: grid;
  gap: 8px;
}
.iy-form-field + .iy-form-field {
  margin-top: 20px;
}

.iy-form-label {
  color: #5f5a5b;
  font-weight: 700;
  line-height: 1.5;
}

.iy-form-input,
.iy-form-select,
.iy-form-textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #e5e8ea;
  border-radius: 6px;
  background-color: #ffffff;
  color: #5f5a5b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.iy-form-input::placeholder,
.iy-form-select::placeholder,
.iy-form-textarea::placeholder {
  color: #999999;
}
.iy-form-input:focus,
.iy-form-select:focus,
.iy-form-textarea:focus {
  border-color: #7a7074;
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 76, 89, 0.12);
}

.iy-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.iy-form-select {
  cursor: pointer;
}

.iy-form-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.iy-form-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.iy-form-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #7a7074;
}

.iy-form-help {
  margin: 0;
  color: #7d7778;
  font-size: 0.875rem;
  line-height: 1.6;
}

.iy-search-form {
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e5e8ea;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(43, 76, 89, 0.08);
}
@media (max-width: 767px) {
  .iy-search-form {
    padding: 20px;
  }
}

.iy-search-form__title {
  margin: 0 0 24px;
  color: #7a7074;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.iy-search-form__fields {
  display: grid;
  gap: 20px;
}

.iy-search-form__submit {
  margin-top: 24px;
  text-align: center;
}
.iy-search-form__submit .iy-button {
  min-width: 240px;
}
@media (max-width: 767px) {
  .iy-search-form__submit .iy-button {
    width: 100%;
    min-width: 0;
  }
}

.iy-section-heading {
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .iy-section-heading {
    margin-bottom: 24px;
  }
}

.iy-section-heading__title {
  margin: 0;
  color: #7a7074;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .iy-section-heading__title {
    font-size: 1.5rem;
  }
}

.iy-section-heading__text {
  margin: 8px 0 0;
  color: #7d7778;
  font-size: 0.95rem;
  line-height: 1.7;
}

.iy-top-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .iy-top-hero {
    min-height: 440px;
  }
}
@media (max-width: 767px) {
  .iy-top-hero {
    min-height: 380px;
  }
}

.iy-top-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iy-top-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 76, 89, 0.56) 0%, rgba(43, 76, 89, 0.16) 70%, rgba(43, 76, 89, 0) 100%);
}

.iy-top-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  color: #fff;
}
@media (max-width: 767px) {
  .iy-top-hero__content {
    padding-inline: 12px;
  }
}

.iy-top-hero__title {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.35;
}

.iy-top-hero__text {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .iy-top-hero__text {
    margin-top: 16px;
    font-size: 0.95rem;
  }
}

.iy-top-search {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}
@media (max-width: 767px) {
  .iy-top-search {
    margin-top: -32px;
  }
}

.iy-top-search__inner {
  max-width: 960px;
  margin-inline: auto;
}

.iy-top-area {
  background-color: #ffffff;
}

.iy-top-area__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) {
  .iy-top-area__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .iy-top-area__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .iy-top-area__grid .iy-area-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}

.iy-top-feature {
  background-color: #f7f9fa;
}

.iy-top-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1024px) {
  .iy-top-feature__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .iy-top-feature__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.iy-top-recommend {
  background-color: #ffffff;
}

.iy-top-recommend__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) {
  .iy-top-recommend__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .iy-top-recommend__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.iy-top-region {
  background-color: #f7f9fa;
}

.iy-top-region__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .iy-top-region__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .iy-top-region__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.iy-top-region__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 16px;
  border: 1px solid #e5e8ea;
  border-radius: 6px;
  background-color: #ffffff;
  color: #7a7074;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.iy-top-region__link:hover {
  border-color: #b9c4c8;
  box-shadow: 0 4px 20px rgba(43, 76, 89, 0.08);
}

.iy-top-article {
  background-color: #ffffff;
}

.iy-top-article__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) {
  .iy-top-article__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .iy-top-article__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.iy-hotel-single {
  padding: 48px 0 80px;
  color: #5f5a5b;
}
.iy-hotel-single .iy-container {
  max-width: 1100px;
}
@media (max-width: 767px) {
  .iy-hotel-single .iy-container {
    width: 100%;
    max-width: none;
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .iy-hotel-single {
    padding: 32px 0 56px;
  }
}

.iy-hotel-header {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .iy-hotel-header {
    margin-bottom: 24px;
  }
}
.iy-hotel-header__area {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #7d7778;
}
.iy-hotel-header__area a {
  color: #7a7074;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.iy-hotel-header__area a:hover {
  opacity: 0.7;
}
.iy-hotel-header__title {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #5f5a5b;
}

.iy-hotel-gallery {
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 20px;
  background: #f7f9fa;
}
@media (max-width: 767px) {
  .iy-hotel-gallery {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-bottom: 0;
    border-radius: 0;
  }
  .iy-hotel-gallery__main {
    width: 100%;
  }
  .iy-hotel-gallery__main img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
  }
}
.iy-hotel-gallery__main {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.iy-hotel-gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iy-hotel-anchor {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 48px;
  border-top: 1px solid #e5e8ea;
  border-bottom: 1px solid #e5e8ea;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}
.iy-hotel-anchor a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 8px;
  color: #5f5a5b;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.iy-hotel-anchor a:not(:last-child) {
  border-right: 1px solid #e5e8ea;
}
.iy-hotel-anchor a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #7a7074;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}
.iy-hotel-anchor a:hover {
  color: #7a7074;
  background: #f7f9fa;
}
.iy-hotel-anchor a:hover::after {
  width: 60%;
}
@media (max-width: 767px) {
  .iy-hotel-anchor {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
  .iy-hotel-anchor a {
    min-height: 48px;
    padding: 8px 4px;
    font-size: 12px;
  }
}

.iy-hotel-single .iy-section {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .iy-hotel-single .iy-section {
    margin-bottom: 36px;
  }
}
.iy-hotel-single .iy-section__title {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 14px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  color: #5f5a5b;
}
@media (max-width: 767px) {
  .iy-hotel-single .iy-section__title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}
.iy-hotel-single .iy-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: #b9c4c8;
}

.iy-hotel-pet__main-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(43, 76, 89, 0.12);
  border-radius: 12px;
  background: #f7f9fa;
}
@media (max-width: 767px) {
  .iy-hotel-pet__main-status {
    padding: 18px;
  }
}
.iy-hotel-pet__label {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .iy-hotel-pet__label {
    font-size: 16px;
  }
}
.iy-hotel-pet__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 38px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #7a7074;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .iy-hotel-pet__value {
    min-width: 48px;
    min-height: 34px;
    font-size: 16px;
  }
}
.iy-hotel-pet__sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .iy-hotel-pet__sizes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .iy-hotel-pet__sizes {
    gap: 8px;
  }
}
.iy-hotel-pet__size {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 16px 10px;
  border: 1px solid #e5e8ea;
  border-radius: 12px;
  background: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .iy-hotel-pet__size {
    min-height: 88px;
    padding: 12px 8px;
  }
}
.iy-hotel-pet__size-name {
  margin-bottom: 8px;
  font-size: 14px;
  color: #7d7778;
}
@media (max-width: 767px) {
  .iy-hotel-pet__size-name {
    font-size: 13px;
  }
}
.iy-hotel-pet__size-status {
  color: #7a7074;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .iy-hotel-pet__size-status {
    font-size: 16px;
  }
}
.iy-hotel-pet__details {
  margin-top: 24px;
}
.iy-hotel-pet__facilities {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .iy-hotel-pet__facilities {
    margin-top: 32px;
  }
}
.iy-hotel-pet__subtitle {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #5f5a5b;
}
@media (max-width: 767px) {
  .iy-hotel-pet__subtitle {
    margin-bottom: 14px;
    font-size: 18px;
  }
}
.iy-hotel-pet__facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) {
  .iy-hotel-pet__facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .iy-hotel-pet__facility-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.iy-hotel-pet__facility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e5e8ea;
  border-radius: 6px;
  background: #ffffff;
}
.iy-hotel-pet__facility-name {
  font-size: 14px;
  line-height: 1.5;
}
.iy-hotel-pet__facility-status {
  flex-shrink: 0;
  color: #7a7074;
  font-weight: 700;
}
.iy-hotel-pet__notes {
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: 12px;
  background: #f7f9fa;
}
@media (max-width: 767px) {
  .iy-hotel-pet__notes {
    margin-top: 24px;
    padding: 18px;
  }
}
.iy-hotel-pet__note-body {
  font-size: 15px;
  line-height: 1.8;
  color: #7d7778;
}
.iy-hotel-pet__note-body p {
  margin: 0;
}
.iy-hotel-pet__note-body p + p {
  margin-top: 1em;
}

.iy-hotel-detail-list {
  margin: 0;
  border-top: 1px solid #e5e8ea;
}
.iy-hotel-detail-list__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #e5e8ea;
}
@media (max-width: 767px) {
  .iy-hotel-detail-list__row {
    display: block;
  }
}
.iy-hotel-detail-list__row dt,
.iy-hotel-detail-list__row dd {
  margin: 0;
  padding: 18px 20px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .iy-hotel-detail-list__row dt,
  .iy-hotel-detail-list__row dd {
    padding: 14px 16px;
  }
}
.iy-hotel-detail-list__row dt {
  background: #f7f9fa;
  font-weight: 700;
}
@media (max-width: 767px) {
  .iy-hotel-detail-list__row dt {
    padding-bottom: 8px;
  }
}
.iy-hotel-detail-list__row dd {
  background: #ffffff;
}
@media (max-width: 767px) {
  .iy-hotel-detail-list__row dd {
    padding-top: 8px;
  }
}

.iy-hotel-plans__contents {
  padding: 28px;
  border: 1px solid #e5e8ea;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(43, 76, 89, 0.08);
}
@media (max-width: 767px) {
  .iy-hotel-plans__contents {
    padding: 18px;
  }
}

.iy-hotel-description__body {
  font-size: 13px;
  line-height: 1.8;
}
.iy-hotel-description__body p {
  margin-top: 0;
  margin-bottom: 1.5em;
}
.iy-hotel-description__body p:last-child {
  margin-bottom: 0;
}
.iy-hotel-description__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.iy-hotel-description__body a {
  color: #7a7074;
}

.iy-hotel-info__contents {
  overflow: hidden;
  border: 1px solid #e5e8ea;
  border-radius: 12px;
  background: #ffffff;
}

.iy-hotel-access__contents {
  line-height: 1.8;
}
.iy-hotel-access iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .iy-hotel-access iframe {
    min-height: 300px;
  }
}

.iy-hotel-plans__contents > p:only-child,
.iy-hotel-info__contents > p:only-child,
.iy-hotel-access__contents > p:only-child {
  margin: 0;
  color: #999999;
}

.inuyado-rakuten-search {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) 100px 100px auto;
  gap: 12px;
  align-items: end;
  margin: 0 0 24px;
  padding: 20px;
  border-radius: 12px;
  background: #f7f9fa;
}
@media (max-width: 1024px) {
  .inuyado-rakuten-search {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .inuyado-rakuten-search {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}
.inuyado-rakuten-search__field {
  min-width: 0;
}
.inuyado-rakuten-search__field label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #5f5a5b;
}
.inuyado-rakuten-search input,
.inuyado-rakuten-search select {
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid #e5e8ea;
  border-radius: 6px;
  background: #ffffff;
  color: #5f5a5b;
  font-size: 14px;
  box-sizing: border-box;
}
.inuyado-rakuten-search input:focus,
.inuyado-rakuten-search select:focus {
  outline: 2px solid rgba(43, 76, 89, 0.16);
  outline-offset: 1px;
  border-color: #7a7074;
}
@media (max-width: 1024px) {
  .inuyado-rakuten-search__submit {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .inuyado-rakuten-search__submit {
    grid-column: auto;
  }
}
.inuyado-rakuten-search__submit button {
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #bf0000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.inuyado-rakuten-search__submit button:hover {
  opacity: 0.86;
}

.inuyado-rakuten-results {
  margin: 24px 0 0;
}
.inuyado-rakuten-results__heading {
  margin-bottom: 16px;
}
.inuyado-rakuten-results__heading h3 {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 1.5;
  color: #5f5a5b;
}
.inuyado-rakuten-results__heading p {
  margin: 0;
  color: #7d7778;
  font-size: 13px;
}
.inuyado-rakuten-results__note {
  margin: 14px 0 0;
  color: #999999;
  font-size: 11px;
  line-height: 1.7;
}

.inuyado-rakuten-plan-list {
  display: grid;
  gap: 12px;
}

.inuyado-rakuten-plan {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #e5e8ea;
  border-radius: 12px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .inuyado-rakuten-plan {
    display: block;
    padding: 16px;
  }
}
.inuyado-rakuten-plan__main {
  flex: 1;
  min-width: 0;
}
.inuyado-rakuten-plan__provider {
  margin: 0 0 10px;
}
.inuyado-rakuten-plan__provider-logo {
  display: block;
  width: auto;
  max-width: 130px;
  height: 24px;
  object-fit: contain;
}
.inuyado-rakuten-plan__meal {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #fff2df;
  color: #99621f;
  font-size: 11px;
  font-weight: 700;
}
.inuyado-rakuten-plan__meal--none {
  background: #f7f9fa;
  color: #7d7778;
}
.inuyado-rakuten-plan__title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  color: #5f5a5b;
}
.inuyado-rakuten-plan__room {
  margin: 0 0 5px;
  color: #7d7778;
  font-size: 13px;
  line-height: 1.6;
}
.inuyado-rakuten-plan__room span {
  display: inline-block;
  margin-right: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  background: #f7f9fa;
  font-size: 10px;
}
.inuyado-rakuten-plan__point {
  margin: 6px 0 0;
  color: #bf0000;
  font-size: 12px;
  font-weight: 700;
}
.inuyado-rakuten-plan__side {
  flex: 0 0 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 1024px) {
  .inuyado-rakuten-plan__side {
    flex-basis: 170px;
  }
}
@media (max-width: 767px) {
  .inuyado-rakuten-plan__side {
    display: block;
    margin-top: 16px;
    text-align: left;
  }
}
.inuyado-rakuten-plan__price {
  line-height: 1;
}
.inuyado-rakuten-plan__price strong {
  font-size: 24px;
  color: #5f5a5b;
}
.inuyado-rakuten-plan__price span {
  margin-left: 2px;
  font-size: 13px;
}
.inuyado-rakuten-plan__unit {
  margin: 5px 0 0;
  color: #999999;
  font-size: 11px;
}
.inuyado-rakuten-plan__total {
  margin: 8px 0 0;
  color: #7d7778;
  font-size: 12px;
}
.inuyado-rakuten-plan__button {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #bf0000;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}
.inuyado-rakuten-plan__button:hover {
  opacity: 0.86;
}

.inuyado-rakuten-message {
  margin: 20px 0;
  padding: 18px 20px;
  border-radius: 6px;
  background: #f7f9fa;
  font-size: 13px;
  line-height: 1.7;
}
.inuyado-rakuten-message p {
  margin: 4px 0;
}
.inuyado-rakuten-message__title {
  font-weight: 700;
}
.inuyado-rakuten-message--error {
  background: #fff0f0;
  color: #a51c1c;
}

.inuyado-rakuten-cache-debug {
  color: #999999;
  font-size: 10px;
}

.iy-hotel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 28px;
}
.iy-hotel-tags__item {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.iy-hotel-tags__item--size {
  background: #7a7074;
  color: #ffffff;
}
.iy-hotel-tags__item--feature {
  border: 1px solid #b9c4c8;
  background: #ffffff;
  color: #7a7074;
}
@media (max-width: 767px) {
  .iy-hotel-tags {
    gap: 6px;
  }
  .iy-hotel-tags__item {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 12px;
  }
}

.iy-hotel-tags__item--feature {
  border-color: #d9d9d9;
  color: #777;
}
@media (max-width: 767px) {
  .iy-hotel-tags__item--feature {
    font-size: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
