/*コメント*/
/* ブログアーカイブのスタイル */
.blog-list {
    margin: 0 -15px; /* 左右のネガティブマージンでコンテナをはみ出し、等間隔に */
}
.blog-item {
    /*float: left;
    width: calc(100%/3);
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box;*/
}

/* レスポンシブ対応 */
@media screen and (max-width: 992px) {
    .blog-item {
        /*width: 30%;*/ 
  }
}

@media screen and (max-width: 768px) {
    .blog-item {
        /*width: 50%;*/ 
    }
}

@media screen and (max-width: 480px) {
    .blog-item {
        /*width: 100%;*/
   }
}

.blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-link:hover {
    opacity: 0.8;
}

.blog-thumbnail {
    overflow: hidden;
    margin-bottom: 10px;
}

.blog-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.blog-item .entry-title h5{font-family: "Noto Sans JP", sans-serif;
    color:#6e6259;
    font-size: 1.3em;
    margin: 0;
    line-height: 1.4;
    font-weight: bold;
}

.blog-item .entry-title p{font-family: "Noto Sans JP", sans-serif;
    color:#6e6259;
    font-size: 1.1em;
    margin: 0;
    line-height: 1.4;
    font-weight: bold;
}

.bg-clear{background:transparent;}

/*part.5-end--*/
.grey04{color:#959595;}

.redbrown04, .redbrown04 a,.redbrown04 a:hover, .redbrown04 a:hover:after{color:#a4312a;text-decoration:none;}

.brown03,.brown03 a,.brown03 a:hover,.brown03 a:hover:after

{color:#290909;text-decoration:none;text-shadow:1px 1px 1px white;

-webkit-text-shadow:1px 1px 1px white;}

.gold04, .gold04 a, .gold04 a:hover, .gold04 a:hover:after{color:#e0b874;text-decoration:none;}

.neumo {
    font-size: 1.2em;
    text-align: center;
    padding-top: 1.0em;
    width: 250px;
    height: 60px;
    border-radius: 57px;
    background: #270909;
    color: #e0e0e0; /* テキストを読みやすくするため明るい色に */
    box-shadow: 8px 8px 16px #1a0606, -8px -8px 16px #340c0c;
    transition: all 0.3s ease;
    border: none; /* 境界線を削除（ニューモフィズムでは通常不要） */
}

.neumo:active {
    box-shadow: inset 8px 8px 16px #1a0606, inset -8px -8px 16px #340c0c;
    transform: scale(0.98); /* 押された効果を強調 */
}

.neumo:hover {
    box-shadow: 10px 10px 20px #1a0606, -10px -10px 20px #340c0c;
}

.no-line a, .no-line a:hover, .no-line a:hover:after
	{text-decoration:none;
	color:#ffffff !important;
	/*text-shadow:1px 1px 1px black !important;

-webkit-text-shadow:1px 1px 1px black !important;*/}

.between-left-w{margin-left:10%;}

.glowanime span{opacity: 0;display:inline-block;}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowanime.glow span{ animation:glow_anime 1s ease-out forwards;display:inline-block; }

@keyframes glow_anime{
	0% { opacity:0; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
	50% { opacity:1;text-shadow: 0 0 10px #fff,0 0 15px #fff; }
	100% { opacity:1; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
}
.slant-container {
    position: relative;
    margin: 100px 0;
    padding: 0;
    overflow: hidden;
}

/* 上部の凹み */
.slant-top {
    height: 100px;
    width: 100%;
    position: relative;z-index:10;
    overflow: hidden;
}

.slant-top::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,1.0);
    transform: skewY(-5deg);
    transform-origin: top right;
    z-index: 0;
}

.slant-top::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color:rgba(255,255,255,1.0);
    transform: skewY(5deg);
    transform-origin: top left;
    z-index: 0;
}

/* 中央部分 */
.slant-bg {
    width: 100%;
    margin: 0;
    padding: 150px 0;
    position: relative;z-index:2;
    overflow: hidden;
}

.slant-bg h3 {text-align:center;
    width: 85%;
    margin: 0 auto;
}
.slant-bg p {text-align:center;
    width: 90%;
    margin: 0 auto;
}

.slant-bg::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,1.0);
    z-index: 0;
}

/* 下部の凹み */
.slant-bottom {
    height: 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slant-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,1.0);
    transform: skewY(5deg);
    transform-origin: right bottom;
    z-index: 0;
}

.slant-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,1.0);
    transform: skewY(-5deg);
    transform-origin: left bottom;
    z-index: 0;
}

/* 中央部分（傾斜していない背景） */
.slant-bg {
    background-color: rgba(255,255,255,1.0);
}
/*menu-bar*/
.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#D4AF37;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -10px;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background:#D4AF37;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

/*1moji-1moji*/
/*text animetions*/
@keyframes showTextFromBottom{
  0%{
    transform: translateY( 100% );
  }
  100%{
    transform: translateY( 0px );
  }
}
.anime-up.displayed span,.anime-up-a.displayed span,.anime-up-b.displayed span,.anime-up-c.displayed span{
  animation: showText 1s backwards;
  display: inline-block;
}
.anime-up.displayed > span,.anime-up-a.displayed > span,.anime-up-b.displayed > span,.anime-up-c.displayed > span{
  overflow: hidden;
}
.anime-up.displayed > span > span,.anime-up-a.displayed > span > span,

.anime-up-b.displayed > span > span,.anime-up-c.displayed > span > span{
  animation: showTextFromBottom 0.5s backwards;
}
/**/
/**/

.between-left_ss{margin-left:2%;}

.carousel-container{
    position: relative;
    width: 100%;
}

.carousel img{
    width: 100%;
    height: auto;
}

.custom-arrows {
    position: absolute;
    top: -70px;font-size:1em;font-weight:200;
    right: 30px;
    z-index: 1;
}

.custom-arrows button{
    background: rgba(255, 255, 255, 0.0);
    color: #000;
    border: 2px solid;
    padding: 20px;
    margin-left: 5px;
    cursor: pointer;
    border-radius:50%;
}

.custom-arrows button:hover{
    background: rgba(0, 0, 0, 0.2);
}

/*slick-fade:false,*/

.aa{margin:0;}
/*slick-card-slider*/
/*rolling-text*/
.body-content__rollig-text {font-weight:bold;
  white-space: nowrap;
  font-family:  sans-serif;
  /*margin-top: 6vw;*/
    .rolling-text__text {
      font-size: 6em;
      display: inline-block;color:#fff;
text-shadow: 2px 2px 0 #22449C, -2px -2px 0 #22449C,
  -2px 2px 0 #22449C,  2px -2px 0 #22449C,
  2px 0 0 #22449C, -2px  0 0 #22449C,
  0 2px 0 #22449C,  0 -2px 0 #22449C;

    }
  }

/*caption*/
.item {
  position: relative;
  overflow: hidden;
}

.item:hover .caption-up {
  transform: translateY(0%);
}

.caption-up {text-align:left;
  margin: 0;
  padding: 1em;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  box-sizing: border-box;
  transition: transform 0.5s;
  transform: translateY(100%);
  background: rgba(255, 255, 255, 0.7);
  color: #151515;
}

/*
  The rest is only styling for this example page
*/
.item p {
  text-align: left;
}
/**/
.card01 {
  display: grid;
}
.card-image {
  /* 格子のサイズに合わせて画像サイズを変更する */
  justify-self: stretch;
  grid-column-start: 1;
  grid-row-start: 1;
}
.card-description {z-index:4;
  /* 説明文を水平方向の（横軸の）中央に配置する */
  justify-self: center;
  /* 説明文を垂直方向の（縦軸の）中央に配置する */
  align-self: center;
  grid-column-start: 1;
  grid-row-start: 1;
}



.card-description2 {margin:0 0 0 5%;z-index:10;
  /* 説明文を水平方向の（横軸の）中央に配置する */
  justify-self: start;
  /* 説明文を垂直方向の（縦軸の）中央に配置する */
  align-self:center;
  grid-column-start: 1;
  grid-row-start: 1;
}
.card-description3 {margin:5%;
  /* 説明文を水平方向の（横軸の）中央に配置する */
  justify-self: end;
  /* 説明文を垂直方向の（縦軸の）中央に配置する */
  align-self:end;
  grid-column-start: 1;
  grid-row-start: 1;
}

.card-description4 {margin:0 0 10% 0;z-index:10;
  /* 説明文を水平方向の（横軸の）中央に配置する */
  justify-self: center;
  /* 説明文を垂直方向の（縦軸の）中央に配置する */
  align-self:end;
  grid-column-start: 1;
  grid-row-start: 1;
}

.card-description5 {margin:0 0 0% 0;z-index:10;
  /* 説明文を水平方向の（横軸の）中央に配置する */
  justify-self: center;
  /* 説明文を垂直方向の（縦軸の）中央に配置する */
  align-self:end;
  grid-column-start: 1;
  grid-row-start: 1;
}

.back-white00{background:#fff;border-radius:20px;padding:5px;}

/*button*/
.btn-b {
  display: inline-block;
  padding: 0.8em 0.8em;
  background-color: #eeeeee; /* 背景色 */
  box-shadow: 0 5px 0 #898989; /* 影の太さ・色 */
  border-radius: 5px;
  /*color: #fff;*/
  /*cursor: pointer;*/
  text-decoration: none; /* 文字の下線を消す */
}

/* ホバー時 */
.btn-b:hover {
  box-shadow: none;
  transform: translateY(5px);
}



/*button*/
.btn-z {
  display: inline-block;
  padding: 0.8em 2em;
  background-color: #eeeeee; /* 背景色 */
  box-shadow: 0 5px 0 #898989; /* 影の太さ・色 */
  border-radius: 5px;
  /*color: #fff;*/
  /*cursor: pointer;*/
  text-decoration: none; /* 文字の下線を消す */
}

/* ホバー時 */
.btn-z:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.btn-y {
  display: inline-block;
  padding: 0.8em 1.2em;
  background-color: #eeeeee; /* 背景色 */
  box-shadow: 0 5px 0 #898989; /* 影の太さ・色 */
  border-radius: 5px;
  /*color: #fff;*/
  /*cursor: pointer;*/
  text-decoration: none; /* 文字の下線を消す */
}

/* ホバー時 */
.btn-y:hover {
  box-shadow: none;
  transform: translateY(5px);
}
/*オレンジ*/
.btn-x {
  display: inline-block;
  padding: 0.8em 2em;
  background-color: #FF7300; /* 背景色 */
  /*box-shadow: 0 5px 0 #FF7300;*/ /* 影の太さ・色 */
  border-radius: 5px;
  /*color: #fff;*/
  /*cursor: pointer;*/
  text-decoration: none; /* 文字の下線を消す */
}

/* ホバー時 */
.btn-x:hover {
  box-shadow: none;
  /*transform: translateY(5px);*/
}



/*end*/
/*modal-window*/
.modal.modal-fullscreen .modal-dialog,
.modal.modal-fullscreen .modal-content {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
    min-height: auto;
    overflow:auto;
}
.modal.modal-fullscreen .modal-dialog {
  margin: 0;
  width: 100%;min-height:auto;
  animation-duration:0.6s;
}
.modal.modal-fullscreen .modal-content {
  border: none;
  -moz-border-radius: 0;min-height:auto;
  border-radius: 0;
  -webkit-box-shadow: inherit;
  -moz-box-shadow: inherit;
  -o-box-shadow: inherit;
  box-shadow: inherit;
}
.modal.modal-fullscreen.force-fullscreen .modal-body {
  padding: 0;min-height:auto;
}
.modal.modal-fullscreen.force-fullscreen .modal-header,
.modal.modal-fullscreen.force-fullscreen .modal-footer {
  left: 0;
  position: absolute;
  right: 0;
}
.modal.modal-fullscreen.force-fullscreen .modal-header {
  top: 0;
}
.modal.modal-fullscreen.force-fullscreen .modal-footer {
  bottom: 0;height:10vh;
}
/*end*/


/*bush! button*/
@keyframes animate{
0%{transform:scale(.95); opacity:1}
90%{opacity:.1}to{transform:scale(1.2,1.5); opacity:0}
}


div.btn-0 {
  position: relative;
  width: 250px;
  margin: 0px auto;
  transition: .2s;
}
div.btn-0:before, div.btn-0:after {
  content: "";
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100%;
  top: 3px;
  left: 0;
  border-radius: 32px;
  background: #06C755;
  border: 1px solid #ff999e;
  transform: translate3d(0,0,0);
}
div.btn-0:before {z-index:2;
  animation: animate 2s ease-out infinite;
}
div.btn-0:after {z-index:2;
 animation: animate 2s ease-out 1s infinite;
}

.btn-0 a {font-family: 'Raleway', 'Open Sans', sans-serif;
  display: block;
  position: relative;z-index:5;
  top: 3px;
  padding: 20px 0;
  border-radius: 32px;
  color: #fff;font-weight:bold;
  text-align: center;
  text-decoration: none;
  background: #06C755;
}
.btn-0 a:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #19904A;
  border-radius: 32px;
  transition: .2s;
  transform: translate3d(0,0,0);
}
.btn-0 span {
  display: block;
  position: relative;
  top: -3px;
  z-index: 2;
  font-family: sans-serif;
  transition: .2s;
}
.btn-0 span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 8px;
  height: 8px;  
  margin: -4px 0 0 0;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: translateX(5px) rotate(45deg);
  transition: .3s .1s;
}

.btn-0 a:hover {color: #fff;font-weight:bold;text-decoration: none;
  top: 3px;
}
.btn-0 a:hover:after {color: #fff;font-weight:bold;text-decoration: none;
  top: 0;
  background: #06C755;
}
.btn-0 a:hover span {
  top: 0;
}
.btn-0 a:hover span:after {
  right: 27px;
}


/*end*/
/*part2*/
div.btn-00 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  transition: .2s;
}
div.btn-00:before, div.btn-0:after {
  content: "";
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100%;
  top: 3px;
  left: 0;
  border-radius: 32px;
  background: #EE7800;
  border: 1px solid #E27D17;
  transform: translate3d(0,0,0);
}
div.btn-00:before {z-index:2;
  animation: animate 2s ease-out infinite;
}
div.btn-00:after {z-index:2;
 animation: animate 2s ease-out 1s infinite;
}

.btn-00 a {font-family: 'Raleway', 'Open Sans', sans-serif;
  display: block;
  position: relative;z-index:5;
  top: 3px;
  padding: 20px 0;
  border-radius: 32px;
  color: #fff;font-weight:bold;
  text-align: center;
  text-decoration: none;
  background: #EE7800;
}
.btn-00 a:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #EE7800;
  border-radius: 32px;
  transition: .2s;
  transform: translate3d(0,0,0);
}
.btn-00 span {
  display: block;
  position: relative;
  top: -3px;
  z-index: 2;
  font-family: sans-serif;
  transition: .2s;
}
.btn-00 span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 8px;
  height: 8px;  
  margin: -4px 0 0 0;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: translateX(5px) rotate(45deg);
  transition: .3s .1s;
}

.btn-00 a:hover {color: #fff;font-weight:bold;text-decoration: none;
  top: 3px;
}
.btn-00 a:hover:after {color: #fff;font-weight:bold;text-decoration: none;
  top: 0;
  background: #EE7800;
}
.btn-00 a:hover span {
  top: 0;
}
.btn-00 a:hover span:after {
  right: 27px;
}
/*end*/
/*========= モーダル表示のためのCSS ===============*/

/*動画表示のモーダルの余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
  padding:0;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
  background:#ccc;  
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#666;
}

/**/
.mv__scroll {
  position: absolute;
  right: 40px;
  bottom: 0;
}

/* scroll */
.scroll {
  color: #000;
  font-size: 14px;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
}
.scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background-color: #000;
  margin-top: 14px;
  animation: scroll 3s infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 50% 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 50% 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 50% 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 50% 100%;
  }
}

.gray01, .gray01 a, .gray01 a:hover, .gray01 a:hover:after{color:#999;text-decoration:none;}

.padding-between{padding:2% 4% 2% 4%;}

.padding-between2{padding:2% 4% 2% 4%;margin-left:4%;}

.flowchart{
  margin-left: .5em;
  border-left: 2px dashed;
}
.flowchart h2{
  position: relative;
  margin-left: 2em;
  margin-bottom: 0;
}
.flowchart p{
  margin-top: .3em;
  margin-left: 3em;
}
.flowchart h2:before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: calc(-2em - 6px);
  top: .5em;
}
.flowchart h2:after{
  content: "";
  border-bottom: 1px solid;
  width: 1.5em;
  background: #000;
  position: absolute;
  top: .7em;
  left: -2em; 
}

.space-top-bottom-L{padding:16% 0;}

/*#D4AF37*/
.emphasis-bright-block h2,.emphasis-bright-block p{
	box-decoration-break:clone;
	-webkit-box-decoration:clone;
        display:block;
	padding:10px;
 	line-height:2.2;
	font-weight:bold;
	text-align:center;
	color:#fff;
	background-color:#270909;}

/*#D4AF37 */
.emphasis-bright p,.emphasis-bright span{
	box-decoration-break:clone;
	-webkit-box-decoration:clone;
        display:inline-block;
	padding:10px;
 	line-height:2.2;
	font-weight:bold;
	text-align:center;
        color:#fff;
	background:#270909;}

/*fadeup-text*/
.anime .bg-wrap,
.anime .bg-wrap .inn {
  display:block;
}
 
.anime .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
 
/*.anime .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
 
.anime .bg-wrap .inn.large {
  font-size: 36px;
  font-weight: bold;
}
.anime .bg-wrap .inn.small {
  font-size: 15px;
}*/
 
.anime .bg-wrap .inn {
  opacity: 0;
  transform: translateY(200px);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.anime.is-animated .bg-wrap {
  opacity: 1;
}
 
.anime.is-animated .bg-wrap .inn {
  opacity: 1;
  transform:  translateY(0px);
}
/*fadeup-text_end*/
/*fade-part2*/
.animate .bg-wrap,
.animate .bg-wrap .inn {
  display:block;
}
 
.animate .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
 
/*.anime .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
 
.anime .bg-wrap .inn.large {
  font-size: 36px;
  font-weight: bold;
}
.anime .bg-wrap .inn.small {
  font-size: 15px;
}*/
 
.animate .bg-wrap .inn {
  opacity: 0;
  transform: translateX(-300px);
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.animate.is-animated .bg-wrap {
  opacity: 1;
}
 
.animate.is-animated .bg-wrap .inn {
  opacity: 1;
  transform:  translateX(0px);
}
/*fade-part3*/
.anim .bg-wrap,
.anim .bg-wrap .inn {
  display:block;
}
 
.anim .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
 
/*.anime .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
 
.anime .bg-wrap .inn.large {
  font-size: 36px;
  font-weight: bold;
}
.anime .bg-wrap .inn.small {
  font-size: 15px;
}*/
 
.anime .bg-wrap .inn {
  opacity: 0;
  transform: translateY(100px);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.anime.is-animated .bg-wrap {
  opacity: 1;
}
 
.anime.is-animated .bg-wrap .inn {
  opacity: 1;
  transform:  translateY(0px);
}
/**/
.image-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.image-wrapper {
  width: calc(100%/3);
  /*padding: 10px;*/
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: auto;
}

.hover-image {
  display: none;
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  z-index: 10;
}

.image-wrapper:first-child .hover-image {
  left: 0;
}

.image-wrapper:last-child .hover-image {
  left: auto;
  right: 0;
}

.hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item:hover .caption-up,.item:hover .caption-up2 {
  transform: translateY(0%);
}

.caption-up {text-align:left;
  margin: 0;
  padding: 1em;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  box-sizing: border-box;
  transition: transform 0.5s;
  transform: translateY(100%);
  background: rgba(255, 255, 255, 0.7);
  color: #151515;
}
.caption-up2 {text-align:center;
  margin: 0;
  padding: 1em;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  box-sizing: border-box;
  transition: transform 0.5s;
  transform: translateY(100%);
  background: rgba(255, 255, 255, 0.7);
  color: #151515;
}
/*