@charset "UTF-8";

.main {
	position: relative;
	z-index: 1;
	max-height: 100vh;      /* ウィンドウの高さを超えない */
    overflow: hidden; 
}

.main img {
    width: 100%;
    height: 100%;
    max-height: 100vh;      /* ウィンドウの高さに合わせる */
    object-fit: cover;       /* 比率を保ちながらトリミング */
    display: block;
}

.main-text {
	position: absolute;
	bottom: 50px;
	left: 2.5%;
	width: 95%;
	margin: 0 auto;
	color: #fff;
}

.main-text .main-copy {
	font-size: 18px;
	margin-bottom: 10px;
}

.main-text h1 {
	font-size: clamp(24px, 6vw, 73px);
	line-height: 1.4;
}

.top-news {
	padding: 100px 0;
}

.top-news .inner {
    display: flex;
    justify-content: space-between;
}

.top-news .inner .title {
	width: 20%;
	position: relative;
}

.top-news .inner .news-list {
    width: 75%;
}

.news-release-list {
	border-top: 1px solid #dddddd;
}

.news-release-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 50px 0;
  border-bottom: 1px solid #dddddd;
}

.news-release-list li time {
  color: #d4b572;
  font-size: 0.85rem;
  white-space: nowrap;
}


.top-news .title h2 {
	font-size: 13px;
	font-weight: bold;
	margin-bottom: 40px;
	position: relative;
}

.top-news .title span {
	display: block;
	color: #d4b572;
	font-size: 68px;
	margin-bottom: 6px;
	line-height: 1;
}

.top-news .title .more-bt a {
	color: #fff;
	background: #d4b572;
	font-size: 12px;
	padding: 4px 35px;
	border-radius: 2px;
	border: 1px solid #d4b572;
}

.top-news .title .more-bt a:hover {
	color: #d4b572;
	background: none;
}

.top-about {
	background: url("../images/index/about-bg.jpg") no-repeat right #251d13;
	padding: 250px 0;
	color: #fff;
}


.top-about .copy {
	font-size: 28px;
	margin-bottom: 10px;
}

.top-about h2 {
	font-size: 70px;
	color: #d4b572;
	margin-bottom: 50px;
	line-height: 1.2;
}

.top-about-inner {
	display: flex;
	align-items: center;
	gap:50px;
}

.top-about-inner .img {
	width: 130px;
}

.top-about-inner p {
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 2;
}

.bt-style01 {
	width: 100%;
	max-width: 300px;
}

.bt-style01 a {
	display: block;
	padding: 10px 0;
	text-align: center;
	border: 1px solid #d4b572;
	border-radius: 4px;
}

.top-about-inner .bt-style01 a:hover {
	background: #d4b572;
	color: #fff;
}

.top-sec01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 120px 0 60px 0;
}

.top-sec01 .img {
	width: 55%;
}

.top-sec01 .text {
	width: 40%;
}

.top-sec01 dt {
	font-size: 30px;
	line-height: 1;
	margin-bottom: 10px;
	color: #d4b572;
}

.top-sec01 dd {
	font-size: 40px;
	line-height: 1.3;
	border-bottom: 1px solid #d4b572;
	padding-bottom: 10px;
	margin-bottom: 25px;
}

.top-sec01 h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.top-sec02 {
	margin-bottom: 100px;
}

.top-sec02 h2 {
	font-size: 28px;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 35px;
}

.top-sec02 ul {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
	margin-bottom: 30px;
}

.top-sec02 p {
	margin-top: 10px;
	text-align: center;
}

.top-sec02 .bt-style01 {
	margin-left: auto;
	margin-right: auto;
}


.top-sec02 .bt-style01 a {
	background: #d4b572;
	color: #fff;
}


.top-sec02 .bt-style01 a:hover {
	background: none;
	color: #d4b572;
}

.top-sec03 {
	margin-bottom: 30px;
}

.top-sec03 ul {
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.top-sec03 a {
	display: block;
	text-align: center;
	padding: 250px 0;
	color: #fff;
	font-size: 28px;
	background-position: center;
	background-size: 100%;
	transition: background-size 0.6s ease;
}

.top-sec03 li a {
	background-image: url("../images/index/img02.jpg");
	background-repeat: no-repeat;
}

.top-sec03 li:last-child a {
	background-image: url("../images/index/img03.jpg");
	background-repeat: no-repeat;
}

/* hover時に拡大 */
.top-sec03 a:hover {
	background-size: 110%;
}


.top-sec04 {
	overflow: hidden;
	width: 100%;
	margin-bottom: 30px;
}

.top-sec04 .slider-track {
	display: flex;
	width: max-content;
	animation: slide-left 100s linear infinite;
}

.top-sec04 ul {
	display: flex;
	padding: 0;
	margin: 0;
	gap:30px;
	list-style: none;
}

.top-sec04 li {
	flex: 0 0 auto;
}

.top-sec04 img {
	display: block;
	height: 400px; /* 好きな高さ */
	width: auto;
}

@keyframes slide-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}




























