/*コメント*/
.circle-img img{border-radius:50%;}

.no-line a, .no-line a:hover, .no-line a:hover:after
	{text-decoration:none;
	color:#003366 !important;
	/*text-shadow:1px 1px 1px black !important;

-webkit-text-shadow:1px 1px 1px black !important;*/}

.green05,.green05 a,.green05 a:hover,.green05 a:hover:after{color:#176534;text-decoration:none;}

.neumo { font-size:1.2em;
	text-align: center; 
	padding-top: 1.0em; 
	width: 250px; height: 60px; 
	border-radius: 57px; 
	background: #ffffff; 
	/*box-shadow: 9px 9px 18px #b5dcff, -9px -9px 18px #d0eaff;*/ 
	transition: box-shadow 0.2s ease;border:1px solid #2a2a2a; }

.neumo:active {
    box-shadow: inset 9px 9px 18px #2a2a2a, inset -9px -9px 18px #2a2a2a;
  }

.no-line2 a, .no-line2 a:hover, .no-line2 a:hover:after
	{text-decoration:none;
	color:#2a2a2a !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(252,196,129,0.5);
    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(252,196,129,0.5);
    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(252,196,129,0.5);
    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(252,196,129,0.5);
    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(252,196,129,0.5);
    transform: skewY(-5deg);
    transform-origin: left bottom;
    z-index: 0;
}

/* 中央部分（傾斜していない背景） */
.slant-bg {
    background-color: rgba(252,196,129,0.5);
}
/*menu-bar*/
.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#003366;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -10px;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background:#003366;
    /*アニメーションの指定*/
    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方向にスケール拡大*/
}

/*現在地とhoverの設定*/
/*rotate-button*/
.rotate-link {
            display: inline-block;
            position: relative;
            text-decoration: none;
            /*color: #333;*/
            transition: transform 0.3s ease;
        }

        .rotate-link:hover {
            animation: rotate-text 0.5s ease;
        }

        @keyframes rotate-text {
            0% {
                transform: rotateX(0deg);
            }
            100% {
                transform: rotateX(360deg);
            }
        }


/**/
.vertical-margin{margin:16% 0 0 0;}
/*card-btn*/
.card-btn {
  display:grid;
  align-self: end;
  justify-self: end;
}


.card-text {white-space:nowrap;display: flex;
  flex-direction: column;
  line-height: 1.5;
  margin-bottom: 10px;
  flex-grow: 1;
}
/*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;
}





/**/
/*fade-n-slider*/
.fade-in {

    opacity: 0;

    transform: scale(0.9);

    transition: opacity 1s ease-out, transform 1s ease-out;

    display: block;

    /*margin: 50px 0;*/

}


.fade-in.show {

    opacity: 1;

    transform: scale(1);

}
/*parallax*/


/**/
.slider-containers {
            width:100%
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        .slides {
            width: 100%;
            height: 100%;
            position: absolute;
            transition: transform 0.5s ease, opacity 0.5s ease;
            opacity: 0;
            transform: translateY(100%) translateX(0);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slides.active {
            opacity: 1;
            transform: translateY(0) translateX(0);
        }

        .slides.prev {
            transform: translateY(0) translateX(-100%);
            opacity: 0;
        }

        .slider-controls {
            text-align: center;
            margin-top: 10px;
        }

        .slider-controls button {
            margin: 0 5px;
            padding: 5px 10px;
            cursor: pointer;
        }

        /* ドットナビゲーション用のスタイル */
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: white;
        }











/**/
.sliders-container {
            display: grid;
            grid-template-columns:repeat(12, 1fr);
            grid-template-rows:1fr;
            /*gap: 10px;*/
            width: 100%;height:auto;
            /*max-width: 800px;
            margin: 0 auto;*/
        }
        .main-slider {
            grid-column: 3 / 12;
            grid-row: 3 / 10;
        }
        .sub-slider {
            grid-column: 2 / 7;
            grid-row: 8 /12 ;
        }
        .slider-grid {
            display: grid !important;
        }
        .slider-grid .slick-slide {
            grid-area: 1 / 1;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .slider-grid .slick-active {
            opacity: 1;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/*left-right-structure*/
.container {overflow:hidden;
            display: flex;
            height: 100vh;
        }

        .slider-area {overflow:hidden;
            width: 50%;
            position: relative;
        }

        .text-area {
            width: 50%;
            padding: 20px;
        }

        textarea {
            width: 100%;
            height: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            resize: none;
        }

        .slider {overflow:hidden;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {overflow:hidden;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .slide.active {overflow:hidden;
            opacity: 1;
        }

        /*.slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
            display: flex;
            gap: 10px;
        }

        .slider-nav button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid white;
            background: transparent;
            cursor: pointer;
            padding: 0;
        }

        .slider-nav button.active {
            background: white;
        }

        .prev-button,
        .next-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 1;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prev-button:hover,
        .next-button:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .prev-button {
            left: 20px;
        }

        .next-button {
            right: 20px;
        }*/
/**/
/* スライダーのサイズ調整 */

/**/

.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,*/
.slider-containeres {margin-top:8%;
      position: relative;
    }
    .text-slideres{
      position: absolute;
      bottom: 20px;
      left: 0;
      width: 100%;
      text-align: left;
    }
    
    .text-slide {
      padding: 20px;
      
      color: #151515;
      display: none;
    }
    .text-slide.slick-current {
      display: block;
    }
.image-slideres{width:100%;}

.custom-arrowes {
    position: absolute;
    top: -80px;font-size:1em;font-weight:200;
    right:5%;
    z-index: 1;
}

.custom-arrowes button {
    background: rgba(255, 255, 255, 0.0);
    color: #000;
    border: 2px solid;
    padding: 20px;
    margin-left: 5px;
    cursor: pointer;
    border-radius:50%;
}

.custom-arrowes button:hover {
    background: rgba(0, 0, 0, 0.2);
}
/*image-slider*/
  .slider-container,.slider-containers,.slider-containerz {margin:6% 0;
      position: relative;
    }
    .text-slider,.text-sliders,.text-sliderz {
      position: absolute;
      bottom: 20px;
      left: 0;
      width: 100%;
      text-align: left;
    }
    .text-slide {
      padding: 20px;
      
      color: #151515;
      display: none;
    }
    .text-slide.slick-current {
      display: block;
    }
.image-slider,.image-sliders,.image-sliderz{width:100%;}

.custom-arrow {
    position: absolute;
    top: -80px;font-size:1em;font-weight:200;
    right:5%;
    z-index: 1;
}

.custom-arrow button {
    background: rgba(255, 255, 255, 0.0);
    color: #000;
    border: 2px solid;
    padding: 20px;
    margin-left: 5px;
    cursor: pointer;
    border-radius:50%;
}

.custom-arrow button:hover {
    background: rgba(0, 0, 0, 0.2);
}

.custom-arrowss {
    position: absolute;
    top: -80px;font-size:1em;font-weight:200;
    right:5%;
    z-index: 1;
}

.custom-arrowss button {
    background: rgba(255, 255, 255, 0.0);
    color: #000;
    border: 2px solid;
    padding: 20px;
    margin-left: 5px;
    cursor: pointer;
    border-radius:50%;
}

.custom-arrowss button:hover {
    background: rgba(0, 0, 0, 0.2);
}

.custom-arrowz {
    position: absolute;
    top: -80px;font-size:1em;font-weight:200;
    right:5%;
    z-index: 1;
}

.custom-arrowz button {
    background: rgba(255, 255, 255, 0.0);
    color: #000;
    border: 2px solid;
    padding: 20px;
    margin-left: 5px;
    cursor: pointer;
    border-radius:50%;
}

.custom-arrowz button:hover {
    background: rgba(0, 0, 0, 0.2);
}




#transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #22449C;
    animation: moveCircle 1s linear;
}

@keyframes moveCircle {
    from { left: -50px; }
    to { left: 100%; }
}

.v-line-bar{padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
  display:inline-block;
  background: #febabb;/*背景色*/
  border-left: solid 5px #fc1a1c;/*左線*/
  border-bottom: solid 3px #b62b2c;/*下線*/}

.ab h2 {
  position: relative;
  margin-bottom: 0.2Arem;
  font-weight: bold;/*太字*/
  /*font-size: 22px;*//*フォントサイズ*/
  text-align: left;
}

.ab h2::before {
  position: absolute;
  top: -50px;/*文字上からの位置*/
  left: 10%;/*文字左からの位置*/
  transform: translateX(-50%);
  color:#BECED2;/*フォントカラー*/
  font-size: 2.4em;/*背景フォントサイズ*/
  /*text-transform: uppercase;*/
  content: 'Blog';/*背景文字（★ご自由に変更ください）*/
  z-index: -1;
}

iframe {
  vertical-align: bottom;
}


.map iframe {
   aspect-ratio: 16/9;
   max-width: 95%;
   width: 100%;
   height: auto;
}
    
.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;

    }
  }

.curtain {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
  overflow: hidden;
}

.curtain:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #336EA1;
  transition: 0.5s cubic-bezier(.15,.65,.85,.65);
}

.isPlay:before {
  transform: translate3d(100%,0, 0);
}

.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}
.heading09 {
	font-size: 2.0em;font-weight:bold;
}

.heading09::before {
	content: attr(data-en);
	display: block;
	color: #00adc1;
	font-size: 1.3em;font-weight:bold;
}

.heading09::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: #00adc1;
}


.heading10 {font-size:1.8em;
	position: relative;
	padding-top: 30px;
	/*font-size: 26px;*/
	border-bottom: 2px solid #aaa;
}

.heading10 span {
	position: relative;
	z-index: 2;
}

.heading10::before {
	content: attr(data-en);
	position: absolute;
	top: 0px;
	left: 0;
	color: #aaa;
	font-size:1.4em;
	/*text-transform: uppercase;*/
	z-index: 1;
}
/*heading10-1*/
.heading10-1 {display:inline-block;
	position: relative;
	padding-top: 30px;
	/*font-size: 26px;*/
        font-size:1.5em;
	border-bottom: 2px solid #00adc1;
}

.heading10-1 span {
	position: relative;
	z-index: 2;
}

.heading10-1::before {
	content: attr(data-en);
	position: absolute;
	top: 0px;
	left: 0;
	color: #00adc1;
	font-size:1.8em;
	/*text-transform: uppercase;*/
	z-index: 1;
}

/**/
.button018 a {font-size:1.4em;height:100px;font-weight:bold;
    position: relative;
    /*display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;*/
    max-width: 250px;
    padding: 20px 0px 20px 60px;
    color: #313131;
    transition: 0.3s ease-in-out;
    
}

.button018 a:before, .button018 a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.button018 a:before {
  width: 1.0rem;
  height: 1.0rem;
  left: 2.4rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.button018 a:after {
  left: 0;
  background: #EFBF04;
  z-index: 1;
  width: 6rem;
  height: 6rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.button018 a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

.button018 a:hover span {padding-right:20px;
  color: #fff;
}
.button018 a:hover:before {text-decoration:none;
  left: 2rem;
}
.button018 a:hover:after {text-decoration:none;
  right: 0;
  width: 100%;
}
/**/
.button021 a {
    font-size: 1.2em;
    height: 100px;
    font-weight: bold;
    position: relative;
    max-width: 300px;
    padding: 40px 80px 20px 20px;
    color: #313131;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
}

.button021 a:before, .button021 a:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
}

.button021 a:before {
    width: 1.0rem;
    height: 1.0rem;
    right: 2.4rem;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
}

.button021 a:after {
    right: 0;
    background: #EFBF04;
    z-index: 1;
    width: 6rem;
    height: 6rem;
    border-radius: 4rem;
    transform: translateY(-50%);
    transition: all 0.5s;
}

.button021 a span {
    position: relative;
    transition: all 0.3s;
    z-index: 3;
}

.button021 a:hover span {
    padding-left: 20px;
    color: #fff;
}

.button021 a:hover:before {
    right: 2rem;
}

.button021 a:hover:after {
    right: 0;
    width: 100%;
}
/**/
.button022 a {

    font-size: 1.2em;

    height: 100px;

    font-weight: bold;

    position: relative;

    max-width: 300px;

    padding: 40px 80px 20px 20px;

    color: #313131;

    transition: 0.3s ease-in-out;

    text-decoration: none;

    display: inline-block;

}


.button022 a:before, .button022 a:after {

    content: "";

    position: absolute;

    display: block;

    top: 50%;

}


.button022 a:before {

    width: 1.0rem;

    height: 1.0rem;

    right: 2.4rem;

    border-top: solid 2px #fff;

    border-right: solid 2px #fff;

    z-index: 2;

    transform: translateY(-50%) rotate(45deg);

    transition: all 0.3s;

}


.button022 a:after {

    right: 0;

    background: #EFBF04;

    z-index: 1;

    width: 6rem;

    height: 6rem;

    border-radius: 4rem;

    transform: translateY(-50%);

    transition: all 0.5s;

}


.button022 a span {

    position: relative;

    transition: all 0.3s;

    z-index: 3;

}


.button022 a:hover span {

    padding-left: 20px;

    color: #fff;

}


.button022 a:hover:before {

    animation: arrowBounce 0.5s forwards;

}


@keyframes arrowBounce {

    0% {

        right: 3rem;

    }

    50% {

        right: 2.0rem;

    }

    100% {

        right: 3rem;

    }

}


.button022 a:hover:after {

    right: 0;

 

   width: 100%;
}
/**/
/*上下分割*/

.bgCH{
  position:relative;/*テキストの基点となる位置を定義*/
}

.bgCH span.mask{
  position:relative;/*背景色の基点となる位置を定義*/
  display: block;/*画像をくくるspanタグをブロック要素にする*/
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*高さからはみ出ているものを隠す*/
}

.bgCH span.mask::before {
  content:"";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;/*移り変わる速さを変更したい場合はこの数値を変更*/
  transform: scale(1, 0);
  transform-origin:center;
    background:#333;/*背景色*/
  width: 100%;
  height: 100%;
}

.bgCH span.mask:hover::before{/*hoverした時の変化*/
  transform:scale(1, 1);opacity:0.5;
}

.bgCH span.cap{
  position: absolute;
  opacity:0;
  transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  z-index:3;/*テキストを前面に出す*/
  top: 50%;
    left: 50%;
  transform: translate(-50%,-50%);
  color:#01171D;text-decoration:none;

  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff,
  -1px 1px 0 #fff,  1px -1px 0 #fff,
  1px 0 0 #fff, -1px  0 0 #fff,
  0 1px 0 #fff,  0 -1px 0 #fff;/*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;/*行の高さを1.5にする*/
}

.bgCH a:hover span.cap{/*hoverした時の変化*/
  opacity:1.0;
}
/**/
.bgDU{
	position:relative;/*テキストの基点となる位置を定義*/
}

.bgDU span.mask{
	position:relative;/*背景色の基点となる位置を定義*/
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}

.bgDU span.mask::before{
	content:"";
	position: absolute;
	z-index: 2;
	left:0;
	top:0;
	opacity:0;/*透過0*/
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
    transform: translateY(100%);
	background:#333;/*背景色*/
	width:100%;
	height: 100%;	
}

.bgDU:hover span.mask::before{/*hoverした時の変化*/
	opacity:0.8;/*透過なしに変化*/
	transform: translateY(0);
}

.bgDU span.cap{/*画像の上のテキスト*/width:100%;text-align:center;
	position: absolute;
	opacity:0;/*透過0*/
	transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
	z-index:3;/*テキストを前面に出す*/
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);/*テキストの位置中央指定*/
	color: #fff;/*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;/*行の高さを1.5にする*/
}

.bgDU:hover span.cap{/*hoverした時の変化*/
	opacity:1;/*透過なしに変化*/}

/*左から右へ*/
.bgLR{
  position:relative;/*テキストの基点となる位置を定義*/
}

.bgLR span.mask{
  position:relative;/*背景色の基点となる位置を定義*/
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}

.bgLR span.mask::before{
  content:"";
  position: absolute;
  z-index: 2;
  left:0;
  top:0;
  opacity:0;
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
    transform: translateX(-100%);
  background:#333;/*背景色*/
  width:100%;
  height: 100%; 
}

.bgLR:hover span.mask::before{/*hoverした時の変化*/
  opacity:0.5;
  transform: translateX(0);
}

.bgLR span.cap{
  position: absolute;
  opacity:0;
  transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  z-index:3;/*テキストを前面に出す*/
  top: 50%;
    left: 50%;
  transform: translate(-50%,-50%);
  color: #28b7bc;/*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff,
  -1px 1px 0 #fff,  1px -1px 0 #fff,
  1px 0 0 #fff, -1px  0 0 #fff,
  0 1px 0 #fff,  0 -1px 0 #fff;

/*行の高さを1.5にする*/
}

.bgLR:hover span.cap{/*hoverした時の変化*/
  opacity:0.5;
}

#splash {
    /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#ffffff;
	text-align:center;
	/*color:#fff;*/
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg{
	width:320px;
}

/*========= SVG操作手書き風にするためのCSS ===============*/

#mask .st0{
    fill:none;
    stroke:#fff;
    stroke-width:90;/*線の太さを指定する*/
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:10;
    stroke-dasharray: 1500; /* 線の間隔を指定する */
    stroke-dashoffset:1500; /* 線の位置を指定する */
}

/**/
/*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:10%;z-index:10;
  /* 説明文を水平方向の（横軸の）中央に配置する */
  justify-self: end;
  /* 説明文を垂直方向の（縦軸の）中央に配置する */
  align-self:center;
  grid-column-start: 1;
  grid-row-start: 1;
}

.sub_contents00{width:100%;}

.sub_contents000{width:100vw;}

.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;
}

.next a {color:#151515;
  padding-top: 60px;
}
.next a:hover, .next a:hover:after{color:#151515; text-decoration:none;}

 .next a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #151515;
  border-bottom: 1px solid #151515;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}
/*no link*/
.next2{color:#151515;
  padding-top: 60px;
}
.next2{color:#151515; text-decoration:none;}

 .next2 span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #151515;
  border-bottom: 1px solid #151515;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb2 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb2 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes sdb2 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}
/**/
.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%;
  }
}

.btn-10 {color:rgba(239,191,4,1.0);
  font-family: 'Raleway', 'Open Sans', sans-serif;
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 60px;
  max-width: 250px;
  margin: 1rem auto;
  text-transform: uppercase;
  border: 1px solid rgba(239,191,4,1.0);
}
.btn-10 {text-align:center;padding:1.2em 0 1.2em 0;
  color:rgba(239,191,4,1.0); font-weight:600;} 

.btn-10:before, .btn-10:after,
.btn-10 span:before,
.btn-10 span:after {color:rgba(239,191,4,1.0);
  content: '';
  position: absolute;z-index:5;
  top: 0;
  left: 0;
  width: 0;
  height: 80px;
  background-color:rgba(239,191,4,0.25);
  -webkit-transition: 0.4s;
  transition: 0.4s; }

.btn-10:after,
.btn-10 span:before {color:rgba(239,191,4,1.0);
  left: auto;
  right: 0; }

.btn-10 span:before,
.btn-10 span:after {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s; }

.btn-10:hover {
  color:rgba(239,191,4,1.0); }

.btn-10:hover:before, .btn-10:hover:after,
.btn-10:hover span:before,
.btn-10:hover span:after {color:rgba(239,191,4,1.0);
  width: 250px; }

.btn-10:active {
  background-color:rgba(239,191,4,1.0); }


.btn
 {
  
  font-weight: 700;
  line-height: 1.5;
  
  display: inline-block;
  padding: 1rem 4rem;
  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  
}

a.btn-border-green {color:#336600;
  border: 1px solid #336600;
  border-radius: 30px;font-size: 1.3em;
  background: #fff;
}

a.btn-border-green:hover {
  color:#fff;
  background: #336600;
}

.gray01, .gray01 a, .gray01 a:hover, .gray01 a:hover:after{color:#999;text-decoration:none;}

.padding-between{padding:2% 4% 2% 4%;}

.heading{
	position:relative;
	padding-top:65px;
	/*font-size:1.4em;*/
	}
.heading span{
	position:relative;
	z-index:2;
	}
.heading::before{
	content: attr(data-en);
	position:absolute;
	top:-30%;
	left:50%;
        transform: translateY(30%);
	transform: translateX(-50%);
	color:#94B9F0;
 	font-size:6em;
	font-style:italic;
        font-family: 'Montserrat', sans-serif;
	z-index:1;
	font-weight:bold;
	}
.details {
  transition: .5s;
}
.details[open] {
  background: transparent;
}

.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; 
}

.fade {
  /*font: 900 2rem sans-serif;
  color: steelblue;
  padding: 1rem;
  text-align: center;*/
  opacity:0;
  animation-duration: 7s;
}

.space-top-bottom-L{margin:16% 0;}

/*#F7941D*/
.emphasis-bright-block h1,.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:#F7941D;}

/*#F7941D */
.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:#F7941D;}

/*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);
}



.btn-border {
  cursor: pointer;
  position: relative;
  padding: 0px 0px;
  background: white;
  /*font-size: 28px;*/
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 1s;
}
.btn-border:after, .btn-border:before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  border: 0px solid #fff;
  transition: all 1s;
}
.btn-border:after {
  top: -1px;
  left: -1px;
  border-top: 10px solid #9BC286;
  border-left: 10px solid #9BC286;
}
.btn-border:before {
  bottom: -1px;
  right: -1px;
  border-bottom: 10px solid #9BC286;
  border-right: 10px solid #9BC286;
}
.btn-border:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.btn-border:hover:before, .btn-border:hover:after {
  width: 100%;
  height: 100%;
}


.custom-btn {
  width: 260px;
  height: 60px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Raleway', 'Open Sans', sans-serif;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}
/* 1 */
.btn-1 {
  background: rgb(6,14,131);
  background: linear-gradient(0deg, rgba(6,14,131,1) 0%, rgba(12,25,180,1) 100%);
  border: none;
}
.btn-1:hover {
   background: rgb(0,3,255);
background: linear-gradient(0deg, rgba(0,3,255,1) 0%, rgba(2,126,251,1) 100%);
}

/* 2 */
.btn-2 {
  background: rgb(96,9,240);
  background: linear-gradient(0deg, rgba(96,9,240,1) 0%, rgba(129,5,240,1) 100%);
  border: none;
  
}
.btn-2:before {
  height: 0%;
  width: 2px;
}
.btn-2:hover {
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .5), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
}


/* 3 */
.btn-3 {
  background: rgb(0,172,238);
background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
  
}
.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
   background: rgba(2,126,251,1);
  transition: all 0.3s ease;
}
.btn-3:before {
  height: 0%;
  width: 2px;
}
.btn-3:after {
  width: 0%;
  height: 2px;
}
.btn-3:hover{
   background: transparent;
  box-shadow: none;
}
.btn-3:hover:before {
  height: 100%;
}
.btn-3:hover:after {
  width: 100%;
}
.btn-3 span:hover{
   color: rgba(2,126,251,1);
}
.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
   background: rgba(2,126,251,1);
  transition: all 0.3s ease;
}
.btn-3 span:before {
  width: 2px;
  height: 0%;
}
.btn-3 span:after {
  width: 0%;
  height: 2px;
}
.btn-3 span:hover:before {
  height: 100%;
}
.btn-3 span:hover:after {
  width: 100%;
}

/* 4 */
.btn-4 {
  background-color: #4dccc6;
background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-4:hover{
  background-color: #89d8d3;
background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%);
}
.btn-4 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-4:before,
.btn-4:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
   box-shadow:  4px 4px 6px 0 rgba(255,255,255,.9),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.9),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  transition: all 0.3s ease;
}
.btn-4:before {
  height: 0%;
  width: .1px;
}
.btn-4:after {
  width: 0%;
  height: .1px;
}
.btn-4:hover:before {
  height: 100%;
}
.btn-4:hover:after {
  width: 100%;
}
.btn-4 span:before,
.btn-4 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.9),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.9),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  transition: all 0.3s ease;
}
.btn-4 span:before {
  width: .1px;
  height: 0%;
}
.btn-4 span:after {
  width: 0%;
  height: .1px;
}
.btn-4 span:hover:before {
  height: 100%;
}
.btn-4 span:hover:after {
  width: 100%;
}

/* 5 */
.btn-5 {
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
  background: rgb(255,27,0);
background: linear-gradient(0deg, rgba(255,27,0,1) 0%, rgba(251,75,2,1) 100%);
}
.btn-5:hover {
  color: #f0094a;
  background: transparent;
   box-shadow:none;
}
.btn-5:before,
.btn-5:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #f0094a;
  box-shadow:
   -1px -1px 5px 0px #fff,
   7px 7px 20px 0px #0003,
   4px 4px 5px 0px #0002;
  transition:400ms ease all;
}
.btn-5:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.btn-5:hover:before,
.btn-5:hover:after{
  width:100%;
  transition:800ms ease all;
}


/* 6 */
.btn-6 {
  background: rgb(247,150,192);
background: radial-gradient(circle, rgba(247,150,192,1) 0%, rgba(118,174,241,1) 100%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-6 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-6:before,
.btn-6:after {
  position: absolute;
  content: "";
  height: 0%;
  width: 1px;
 box-shadow:
   -1px -1px 20px 0px rgba(255,255,255,1),
   -4px -4px 5px 0px rgba(255,255,255,1),
   7px 7px 20px 0px rgba(0,0,0,.4),
   4px 4px 5px 0px rgba(0,0,0,.3);
}
.btn-6:before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
.btn-6:after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}
.btn-6:hover{
  background: transparent;
  color: #76aef1;
  box-shadow: none;
}
.btn-6:hover:before {
  transition: all 500ms ease;
  height: 100%;
}
.btn-6:hover:after {
  transition: all 500ms ease;
  height: 100%;
}
.btn-6 span:before,
.btn-6 span:after {
  position: absolute;
  content: "";
  box-shadow:
   -1px -1px 20px 0px rgba(255,255,255,1),
   -4px -4px 5px 0px rgba(255,255,255,1),
   7px 7px 20px 0px rgba(0,0,0,.4),
   4px 4px 5px 0px rgba(0,0,0,.3);
}
.btn-6 span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: .5px;
  transition: all 500ms ease;
}
.btn-6 span:after {
  right: 0;
  bottom: 0;
  width: 0%;
  height: .5px;
  transition: all 500ms ease;
}
.btn-6 span:hover:before {
  width: 100%;
}
.btn-6 span:hover:after {
  width: 100%;
}

/* 7 */
.btn-7 {
background: linear-gradient(0deg, rgba(255,151,0,1) 0%, rgba(251,75,2,1) 100%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-7 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-7:before,
.btn-7:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: rgba(251,75,2,1);
  box-shadow:
   -7px -7px 20px 0px rgba(255,255,255,.9),
   -4px -4px 5px 0px rgba(255,255,255,.9),
   7px 7px 20px 0px rgba(0,0,0,.2),
   4px 4px 5px 0px rgba(0,0,0,.3);
  transition: all 0.3s ease;
}
.btn-7:before{
   height: 0%;
   width: 2px;
}
.btn-7:after {
  width: 0%;
  height: 2px;
}
.btn-7:hover{
  color: rgba(251,75,2,1);
  background: transparent;
}
.btn-7:hover:before {
  height: 100%;
}
.btn-7:hover:after {
  width: 100%;
}
.btn-7 span:before,
.btn-7 span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: rgba(251,75,2,1);
  box-shadow:
   -7px -7px 20px 0px rgba(255,255,255,.9),
   -4px -4px 5px 0px rgba(255,255,255,.9),
   7px 7px 20px 0px rgba(0,0,0,.2),
   4px 4px 5px 0px rgba(0,0,0,.3);
  transition: all 0.3s ease;
}
.btn-7 span:before {
  width: 2px;
  height: 0%;
}
.btn-7 span:after {
  height: 2px;
  width: 0%;
}
.btn-7 span:hover:before {
  height: 100%;
}
.btn-7 span:hover:after {
  width: 100%;
}

/* 8 */
.btn-8 {
  background-color: #f0ecfc;
background-image: linear-gradient(315deg, #f0ecfc 0%, #c797eb 74%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-8 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-8:before,
.btn-8:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: #c797eb;
  /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/
  transition: all 0.3s ease;
}
.btn-8:before{
   height: 0%;
   width: 2px;
}
.btn-8:after {
  width: 0%;
  height: 2px;
}
.btn-8:hover:before {
  height: 100%;
}
.btn-8:hover:after {
  width: 100%;
}
.btn-8:hover{
  background: transparent;
}
.btn-8 span:hover{
  color: #c797eb;
}
.btn-8 span:before,
.btn-8 span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #c797eb;
  /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/
  transition: all 0.3s ease;
}
.btn-8 span:before {
  width: 2px;
  height: 0%;
}
.btn-8 span:after {
  height: 2px;
  width: 0%;
}
.btn-8 span:hover:before {
  height: 100%;
}
.btn-8 span:hover:after {
  width: 100%;
}
  

/* 9 */
.btn-9 {
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
}
.btn-9:after {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background-color: #1fd1f9;
background-image: linear-gradient(315deg, #1fd1f9 0%, #b621fe 74%);
  transition: all 0.3s ease;
}
.btn-9:hover {
  background: transparent;
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  color: #fff;
}
.btn-9:hover:after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}

/* 11 */
.btn-17 {
  border: none;
  background: rgb(6,199,85);
    background: linear-gradient(0deg, rgba(6,199,85,1) 0%, rgba(0,255,105,1) 100%);
    color: #fff;
    overflow: hidden;
}
.btn-17:hover {
    text-decoration: none;
    color: #fff;
}
.btn-17:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn2 3s ease-in-out infinite;
}
.btn-17:hover{
  opacity: .7;
}
.btn-17:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@-webkit-keyframes shiny-btn2 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.btn-11 {
  border: none;
  background: rgb(127,100,70);
    background: linear-gradient(0deg, rgba(127,100,70,1) 0%, rgba(110,143,90,1) 100%);
    color: #fff;
    overflow: hidden;
}
.btn-11:hover {
    text-decoration: none;
    color: #fff;
}
.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-11:hover{
  opacity: .7;
}
.btn-11:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.btn-18 {
  border: none;
  background: rgb(37,74,142);
    background: linear-gradient(0deg, rgba(37,74,142,1) 0%, rgba(20,117,162,1) 100%);
    color: #fff;
    overflow: hidden;
}
.btn-18:hover {
    text-decoration: none;
    color: #fff;
}
.btn-18:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn3 3s ease-in-out infinite;
}
.btn-18:hover{
  opacity: .7;
}
.btn-18:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@-webkit-keyframes shiny-btn3 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
/* 12 */
.btn-12{
  position: relative;
  right: 20px;
  bottom: 20px;
  border:none;
  box-shadow: none;
  width: 130px;
  height: 40px;
  line-height: 42px;
  -webkit-perspective: 230px;
  perspective: 230px;
}
.btn-12 span {
  background: rgb(0,172,238);
background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  display: block;
  position: absolute;
  width: 130px;
  height: 40px;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  border-radius: 5px;
  margin:0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn-12 span:nth-child(1) {
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12 span:nth-child(2) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12:hover span:nth-child(1) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.btn-12:hover span:nth-child(2) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
 color: transparent;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}


/* 13 */
.btn-13 {
  background-color: #89d8d3;
background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%);
  border: none;
  z-index: 1;
}
.btn-13:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
   background-color: #4dccc6;
background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%);
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}
.btn-13:hover {
  color: #fff;
}
.btn-13:hover:after {
  top: 0;
  height: 100%;
}
.btn-13:active {
  top: 2px;
}


/* 14 */
.btn-14 {
  background: rgb(255,151,0);
  border: none;
  z-index: 1;
}
.btn-14:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  background-color: #eaf818;
  background-image: linear-gradient(315deg, #eaf818 0%, #f6fc9c 74%);
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5);
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  transition: all 0.3s ease;
}
.btn-14:hover {
  color: #000;
}
.btn-14:hover:after {
  top: auto;
  bottom: 0;
  height: 100%;
}
.btn-14:active {
  top: 2px;
}

/* 15 */
.btn-15 {
  background: #b621fe;
  border: none;
  z-index: 1;
}
.btn-15:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #663dff;
  border-radius: 5px;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  transition: all 0.3s ease;
}
.btn-15:hover {
  color: #fff;
}
.btn-15:hover:after {
  left: 0;
  width: 100%;
}
.btn-15:active {
  top: 2px;
}


/* 16 */
.btn-16 {
  border: none;
  color: #000;
}
.btn-16:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  direction: rtl;
  z-index: -1;
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}
.btn-16:hover {
  color: #000;
}
.btn-16:hover:after {
  left: auto;
  right: 0;
  width: 100%;
}
.btn-16:active {
  top: 2px;
}
/**/
.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;
}
/*