.s-access__access.s-access__access2 {
	margin: 0 0 0.5rem;
}
#page-index .s-overview__timeline-list::after {
	height: 1px;
}
main {
padding-top: 10em;
}
.s-footer__number span a, .s-footer__nav li a, .s-footer__sns li a {
	color: #000 !important;
}
.s-visual__copy-ja {
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
}

#page-index .s-experience {
    overflow: hidden;
}

.s-experience__frame {
	font-family: ivyora-display,Didot,"Times New Roman",serif;
}

.product_title {
	font-weight: bold;
	border-bottom: 1px solid;
	width: fit-content;
	padding: 3px 15px;
	margin-bottom: 10px;
	background-color: #21201e;
	color: #fff;
}
.product_cook {
	width: fit-content;
	border-bottom: 1px solid;
	padding: 3px 10px 0;
	font-weight: bold;
	margin-bottom: 5px;
}
.c-articles__link p, .c-articles__link h3 {
	background-color: #23211f;
	height: 35px;
	padding: 5px 10px;
	color: #fff;
}
.s-access__thumb.s-access__thumb2 {
	width: 40%;
}

.s-overview__slider {
	margin: 3em 0;
}
.s-overview__slider {
	border: 1px solid;
	padding: 1em;
}

.carousel-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-bottom: 1em;
}

.carousel-wrapper {
display: flex;
transition: transform 0.5s ease;
}

.carousel-wrapper.no-transition {
transition: none;
}

.carousel-slide {
min-width: calc(33.333% - 14px);
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
overflow: hidden;
}

.carousel-slide img {
width: 100%;
height: 100%;
object-fit: cover;
}

.carousel-btn {
position: absolute;
background: rgba(255, 255, 255, 0.9);
border: none;
width: 50px;
height: 50px;
font-size: 1.5rem;
cursor: pointer;
transition: background 0.3s;
z-index: 10;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
bottom: 1%;
border-radius: 30px;
}

.carousel-btn:hover {
background: white;
}

.carousel-btn.prev {
left: 40%;
}

.carousel-btn.next {
right: 40%;
}

.carousel-dots {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 30px;
}

.dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: #ccc;
cursor: pointer;
transition: background 0.3s;
}

.dot.active {
background: #667eea;
}

.s-experience .s-experience__inner {
	padding: 0 4rem;
	margin: 0 20em 0 auto;
}

header {
    padding: 0 40px 0 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1002;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	background-color: #fff;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.nav-menu {
    list-style: none;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #3498db;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: #fff;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -7px);
    background: #fff;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000d6;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-menu.active li {
    transform: translateY(0);
    opacity: 1;
}

.nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
}

.nav-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
}

.nav-menu li a {
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 2px;
	font-family: "Noto Sans JP", sans-serif;
}

/* デモ用のコンテンツ */
.content {
    margin-top: 100px;
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.content p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}


@media (max-width: 768px) {
.carousel-slide {
min-width: calc(50% - 10px);
height: 300px;
font-size: 2rem;
}
.logo {
	width: 100px;
}
.carousel-btn.prev {
	left: 10%;
}
.carousel-btn.next {
	right: 10%;
}
.carousel-btn {
	font-size: 3.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
#page-index .s-stay__panel--3 {
	display: none;
}
.s-access__thumb.s-access__thumb2 {
	width: 100%;
	margin-top: 2em;
}




.nav-menu.active {
	display: block !important;
	width: 100% !important;
}
.ham_nav_div1, .ham_nav_div2 {
	width: 100% !important;
	line-height: 4 !important;
}
.ham_nav_div1 {
	display: flex !important;
	justify-content: center !important;
	gap: 0 10px !important;
	flex-wrap: wrap !important;
	border-right: none !important;
	border-bottom: 2px solid #fff !important;
	padding-bottom: 1em !important;
	width: 85% !important;
	margin: 5em auto 1em !important;
}
.ham_nav_div1 .ham_nav_item {
	width: 47% !important;
	text-align: left !important;
}
.ham_nav_div2 {
	width: 80% !important;
	margin: 0 auto !important;
}
.ham_nav_item iframe {
	width: 100% !important;
	height: 155px !important;
}
}

@media (max-width: 480px) {
.carousel-slide {
min-width: 100%;
height: 250px;
font-size: 1.5rem;
}
.s-visual {
	width: 90% !important;
}

}





.ham_nav_div1, .ham_nav_div2 {
	width: 20%;
	line-height: 4;
}
.ham_nav_div1 {
	border-right: 2px solid #fff;
	margin-right: 4em;
	text-align: center;
}
.ham_nav_item a, .ham_nav_item {
	color: #fff;
}

.s-visual {
	width: 80%;
	margin: 0 auto;
}

.c-book_btn_form {
	background-color: #000;
	color: #fff;
	padding: 3px 15px;
	border-radius: 50px;
	text-align: center;
}
.label.label-danger2 {
	background-color: #0058ff;
	color: #fff;
	padding: 3px 5px;
	border-radius: 5px;
}
.label.label-danger {
	background-color: red;
	color: #fff;
	padding: 3px 5px;
	border-radius: 5px;
}
.row {
	display: flex;
	justify-content: left;
	align-items: center;
	margin: 2em 0;
}
.col-md-3.formTitle {
	width: 30%;
}
.col-md-9.formArea {
	width: 65%;
}
.col-sm-4.col-sm-offset-4.control-label.comit01 {
	text-align: center;
}
.btn.btn-success.btn-lg.btn-block {
	background-color: #1d201f;
	color: #fff;
	font-size: 1.3em;
	padding: 10px 25px;
	border-radius: 10px;
}

/* その他入力欄のスタイル */
.other-input-wrapper {
  background: #f8f9fa;
  border-radius: 10px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.other-input-wrapper label {
  font-size: 14px;
}

.other-input-wrapper textarea {
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.col-md-9.formArea input {
	padding: 10px;
}
.other-input-wrapper textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(238, 123, 0, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .other-input-wrapper {
    padding: 15px;
  }
  
  .other-input-wrapper textarea {
    max-width: 100%;
  }
}