:root {
    color-scheme: light;
  }
  
html,
body {
	height: 100%;
	font-family: "Sorts+Mill+Goudy", serif;
    background-color:#fcfcfc;
}

.extfont-serif {
	font-family: "Sorts+Mill+Goudy", serif;
}
.extfont-sansserif {
	font-family: "Mulish", sans-serif;
}
/* image slider */
.slider-container {
    position: relative;
    aspect-ratio: 1400/590;
}
.slider {
    width: 100%;
    height: 100%;
    position: relative;
}
/* Check Inn 予約ボタン カッコいいカスタムCSS */
.checkinn-reservation-button {
    width: 100% !important;
    max-width: 200px !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.checkinn-reservation-button:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 10px rgba(0, 0, 0, 0.3) !important;
}

.checkinn-reservation-button button {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 4px 4px !important;
    background: linear-gradient(135deg, #1e4d38, #2d6a4f) !important; /* 深いグリーングラデ */
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.checkinn-reservation-button button:hover {
    background: linear-gradient(135deg, #2d6a4f, #3d8b6f) !important;
}