/*コメント*/
.fade-in-element {
    opacity: 0;
    transform: translateY(120px);
    transition: opacity 5s ease, transform 1s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/**/
.skyblue04{color:#A8D0E6;}

.navyblue, .navyblue a, .navyblue a:hover, .navyblue a:hover:after{color:#2851A3;text-decoration:none;}
/**/
.head-left-border {
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* centerからflex-startに変更 */
    position: relative; /* :after の位置基準 */
}
 
.head-left-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
    margin-left: 1rem;
}

.head-left-border:before {
    font-style: italic;
    content: attr(data-en);
    position: absolute;
    top: 100%;
    left: 50%; /* 50%から0に変更 */
    transform: translateX(-50%); 
    padding: 0 1em;
    background-color: transparent;
    font-size: 1.2em;
    text-align: center; /* 中央揃えから左揃えに変更 */
    width: 100%; /* 必要に応じて幅を調整 */
}

.neumo {position:relative; 
    font-size: 1.2em;
    text-align: center; 
    padding-top: 1.0em; 
    width: 250px; 
    height: 60px; 
    border-radius: 57px; 
    background: #01b700; /* 緑色に変更 */
    box-shadow: 9px 9px 18px #019a00, /* 暗い緑のシャドウ */
                -9px -9px 18px #01d400; /* 明るい緑のシャドウ */
    transition: box-shadow 0.2s ease;
    /*border: 1px solid #2a2a2a;*/ 
}

.neumo:active {
    box-shadow: inset 9px 9px 18px #019a00, /* 暗い緑のシャドウ（内側） */
                inset -9px -9px 18px #01d400; /* 明るい緑のシャドウ（内側） */
}

.no-line2 a, .no-line2 a:hover, .no-line2 a:hover:after {
    text-decoration: none;
    color: #2a2a2a !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:#F86F03;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -10px;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background:#F86F03;
    /*アニメーションの指定*/
    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方向にスケール拡大*/
}

.aa{margin:0;}
/*slick-card-slider*/
/**/
.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;
  top: 0; /* bottom: 0 から top: 0 に変更 */
  left: 0;
  width: 100%;
  height: 100%; /* 高さを100%に設定して画像全体を覆う */
  overflow: auto;
  box-sizing: border-box;
  transition: transform 0.5s;
  transform: translateY(100%);
  background: rgba(168, 208, 230, 0.7);
  color:#fff;text-shadow:1px 1px 1px #000;
}

/*
  The rest is only styling for this example page
*/
.item p {
  text-align: left;
}
/*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 #FF7A00; /* 影の太さ・色 */
  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: #FF7A00;
  border: 1px solid #FF7A00;
  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: #FF7A00;
}
.btn-00 a:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #FF7A00;
  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);
  }
}
/**/
.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%;
  }
}
.padding-between{padding:2% 4% 2% 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; 
}

/*#94c74f*/
.emphasis-bright-block h1,.emphasis-bright-block p,.emphasis-bright-block h2{
	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:#A8D0E6;}

/*#94c74f */
.emphasis-bright p,.emphasis-bright span,.emphasis-bright h2{
	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:#A8D0E6;}

/*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;
}

