:root{

  --accent:#e79e00;
  --glass: rgba(255,255,255,0.04);
}
.carousel-3cards{
  background: var(--carousel-bg);
  padding: 30px 12px 0px 12px;
}
.carousel-3cards .carousel-inner{
  max-width:1100px;
  margin:0 auto;
  position:relative;
  overflow:visible;
}
.carousel-track{
  display:flex;
  gap:28px;
  align-items:stretch;
  transition:transform .6s cubic-bezier(.22,.9,.35,1);
}
.carousel-card{
  flex:0 0 calc(33.333% - 18.66px);
  background:var(--card-bg);
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
  padding:15px;
  color:#fff;
  transform-origin:center;
  position:relative;
  overflow:hidden;
}
.carousel-card img{
  width:100%;
  border-radius:12px;
  display:block;
  box-shadow:0 8px 20px rgba(0,0,0,0.45);
}
.carousel-card .card-body{padding:14px 6px 4px}
.card-title{font-size:28px;font-weight:700;color:var(--accent);margin-bottom:6px;text-align:center}
.card-desc{font-size:12px;line-height:1.5;text-align:center}
.carousel-controls{
  display:none; /* hidden by default; shown on SP */
}
.carousel-controls .carousel-btn{
  background:#ffffff38;
  border:1px solid rgba(255, 255, 255, 0);
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
}
/* indicators shown on SP only */

/* center emphasis (moved to SP media) */

@media (max-width:600px){
  .carousel-card{flex:0 0 100%}
  .carousel-inner{padding:0 18px}
  .carousel-controls{display:block}

  .carousel-indicators{display:flex;gap:8px;justify-content:center;margin-top:18px}
  .indicator{width:10px;height:10px;border-radius:50%;background:rgba(255, 255, 255, 0.349);cursor:pointer}
  .indicator.active{background:var(--accent);box-shadow:0 0 8px rgba(231,158,0,0.6)}
  /* center emphasis only on SP */
  .carousel-card.center{transform:scale(1.04);box-shadow:0 18px 40px rgba(0,0,0,0.6)}
}

.btn a {
  position: relative;
  display: block;
  width: 280px;
  padding: 10px 0;
  background-color: #e79e00;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  text-decoration: none;
  text-align: center;
  transition: .2s;
  box-sizing: border-box;
  border-radius: 5px;
}
.btn a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: .2s;
  box-sizing: border-box;
}

/* スライドする背景色のスタイル */
.btn-slide-horizontal a {
  border: 3px solid #926606;
  z-index: 1;
}
.btn-slide-horizontal a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  transform-origin: right top;
  transform: scaleX(0);
  transition: transform .2s ease;
  z-index: -1;
  border-radius: 2px;
}

/* ホバー時のスタイル */
.btn-slide-horizontal a:hover {
  color: #e79e00;
  border: 3px solid #e79e00;
}
.btn-slide-horizontal a:hover::before {
  transform-origin: left top;
  transform: scaleX(1);
}
.btn-slide-horizontal a:hover::after {
  border-color: #e79e00;
}

/* carousel-card 内のボタンを中央に配置 */
.carousel-card .btn-slide-horizontal{
  display:flex;
  justify-content:center;
}


.container {
  display: flex;
  flex-wrap: wrap;
}
.column {
  width: 50%;
}

@media (min-width: 1024px) {
  .column {
    width: calc(100% / 3);
  }
}

/* アニメーションスクロールを促す*/

.scroll {
  position: relative;
}
.scroll-text {
  color: #e79e00;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}
.scroll-border {
  position: relative;
  top: 1px;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  background: #e79e00;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}

html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 55px;
    width: 55px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 4px #e79e00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 13px;
    width: 13px;
    border-top: 4px solid #e79e00;
    border-right: 4px solid #e79e00;
    transform: translateY(20%) rotate(-45deg);
}

.pagetop {
    box-shadow: 0 4px 6px rgb(0 0 0 / 30%);
}

@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover .pagetop__arrow {
        border-color: #c27400;
        background: #f3b735;
    }
}

.box-shadow {
  box-shadow: 2px 3px 3px 0px rgba(0, 0, 0, 0.123);
}

.box-shadow2 {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.459);
}

.box-shadow3 {
  box-shadow: 2px 3px 6px 0px rgba(56, 33, 3, 0.363);
}

.under1 {
  background: linear-gradient(transparent 90%, #e79e00 95%);
}

.under2 {
  background: linear-gradient(transparent 50%, #555555 0%);
}

.under3 {
  background: linear-gradient(transparent 0%, #cecece8c 0%);
}

.under4 {
  background: linear-gradient(transparent 50%, #55555523 0%);
}

.under5 {
  background: linear-gradient(transparent 20%, #414141 0%);
}

.under6 {
  background: linear-gradient(transparent 50%, #ffffff23 0%);
}

.under7 {
  background: linear-gradient(transparent 70%, #ffffff18 0%);
}

.under8 {
  background: linear-gradient(transparent 0%, #ffffff 0%);
}

.under9 {
  background: linear-gradient(transparent 0%, #414141 0%);
}

.image_link{
  position:relative;
  display:block;
  height:auto;
}
.image_link img{
  display:block;
  width:100%;
}
.image_link:before{
  content:"";
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  background:#000;/*好みの色に変えてください。*/
  opacity:0;
  transition:0.3s;
  border-radius: 4px;
}
.image_link:hover:before{
  opacity:0.2;
}

/* アニメーションスクロールを促す*/

.scroll2 {
  position: relative;
}
.scroll2-text {
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  font-weight: normal;
}
.scroll2-border {
  position: relative;
  top: 1px;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.scroll2-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}

html {
    scroll-behavior: smooth;
}