@charset "UTF-8";

html {
  background: #fff;
  overflow-x: hidden;
}
body {
  font-size: 16px;
  color: #444;
  line-height: 200%;
  overflow-x: hidden;
  font-family:'Roboto','Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
}
img { width: 100%;}
a {
  opacity: 1;
  transition: all .3s;
  color: #ccc;
}
a:hover {
  opacity: 0.8;
  transition: all .3s;
}
.pc_only{display: block;}
.sp_only{display: none;}
header img{display: block;width: 100%;}
/* 親要素 */
.mv {
  width: 100%;
  position: relative; /* 子要素の基準点にする（超重要） */
  display: block;      /* 高さを確保するため */
}

/* メイン画像（背景） */
.fvmain {
  width: 100%;
  position: static;   /* absoluteを解除し、通常の配置にする */
}
.fvmain img {
  width: 100%;
  height: auto;
  display: block;    /* 画像の下の不要な隙間を消す */
}
/* 重ねたい画像 */
.fvpoint {
  position: absolute; /* 親要素（.mv）を基準に絶対配置する */
  top: 43%;         /* 好きな位置に調整（上からの距離） */
  left: 20%;       /* 好きな位置に調整（右からの距離） */
  z-index: 10;       /* 重なり順を上にする */
  width: 100%;
}
.fvpoint img {
  width: 13%;     /* 重ねる画像のサイズ */
  animation: zoomIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

 
@keyframes zoomIn {
  0% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
 

/* 下の要素は回り込まず、正しく下に配置される */
.check {
  width: 100%;
}
#contents {
  width: 100%;
}
#contents .contents_inner {
  margin: 0 auto;
  background: #fff;
}
.section_inner {
  width: 940px;
  margin: 0 auto;
}
.btn {
  width: 100%;
}
.btn .btn_inner{
  width: 1000px;
  margin: 6vw auto;
  text-align: center;
}
.btn .btn_inner a{
  display: block;
  width: 750px;
  margin: 0 auto;
  text-align: center;
}
h2 {
  margin-bottom: 60px;
}
h2 img{
  display: block;
  width: 85%;
  margin: 0 auto;
}
.contents01 , .contents02 , .contents03 , .contents04 {
  width: 100%;
  background: none;
}
.contents01 {
  background: none;
}
.contents02 {
  background: #07c068;
}
.contents02 .support{
  padding: 0 30px 60px 30px;
}
.contents02 .support_title{

}
.contents02 .support_inner {
  margin-top: 50px;
}
.contents02 .support_inner .support_img{
  border-bottom: 1px dotted #6eb900;
  padding-bottom: 20px;
}
.contents02 .support_inner .support_box{
  padding-top: 30px;
  font-size: 120%;;
  display: none;/*はじめは非表示*/
  margin: 20px 0 0 0;
  padding: 3%;
  background: #fff;
  border-radius: 20px;
}
.contents02 .support_inner .support_box .red{
  color: #c00;
}
.contents02 .support_inner .support_box .small{
  font-size: 70%;
}
.contents03 .indefinitely{
}
.contents03 .indefinitely_text{
  text-shadow: 0 1px 0 #fff;
  text-align: center;
}
.contents05 {
 /* margin-top: 5vw;*/
}
/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:120%;
    font-weight: bold;
    padding: 2%;
    transition: all .5s ease;
    text-align: center;
    background: #c1ebd7;
    border-radius: 40px;
    margin: 30px auto 0 auto;
    width: 40%;
    color: #07c068;
}
/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 20px;
    height: 5px;
    background-color: #07c068;
}
.title::before{
    top:46%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:46%;
    left: 15px;
    transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}
.video {margin: 20px auto 0 auto;background: #f6f6f6;padding: 40px 0 60px 0;}
.video_title {
  width: 60%;
  padding: 10px 0;
  font-weight: 600;
  text-align: center;
  font-size:120%;
  background: #07c069;
  color:#fff;
  margin: 0 auto;
  border-radius:50px;
}
.video iframe{
  text-align:center;
  margin:40px auto;
  border:15px solid #fff;
  width: 700px;
  height:394px;
}
.slider_card {
  margin: 0 15px;
}
.slider_card img{
  width: 80%;
  margin: 0 auto;
}
.slick-prev {
  left: 0px;
}
.slick-next {
  right: 0px;
}
.slick-next:before {
	background: url("/assets_lp/cnt/pochi02/images/next.webp") no-repeat center center;
	background-size: contain;
}
.slick-prev:before {
	background: url("/assets_lp/cnt/pochi02/images/prev.webp") no-repeat center center;
	background-size: contain;
}
.slick-prev,.slick-next{
  width: 50px;
  height: 50px;

}
.slick-prev:before, .slick-next:before {
  font-size: 50px;
}
.slick-arrow {
  z-index: 2;
}
.slick-arrow:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}
.contents03 p {
  text-align: center;
  margin: 20px 0;
  font-weight: bold;
  font-size: 160%;
  line-height: 160%;
}
.contents03 .red {
  color:#ef0807;
}
.contents03 .employment {
  margin: 60px 0;
}
.contents03 .employment img{
  width: 80%;
  margin: 0 auto;
}
.annotation01 {
  font-size: 60%;
  font-weight: normal;
  line-height: 140%;
  display: inline-block;
}
.annotation02 {
  font-size: 80%;
  text-align:right;
  font-weight: normal;
}
.contents04 {
  padding: 80px 0;
  background: url("/assets_lp/utg/pochi/images/itemback.gif") no-repeat;
}
.contents04 .work_title {
  width: 60%;
  text-align: center;
  margin: 0 auto 3vw auto;
}
.contents04 .work p {
  text-align: center;
  margin-top: 30px;
}

.fadeUpTrigger{
    opacity: 0;
}
.fadeLeftTrigger{
    opacity: 0;
}
.fadeRightTrigger{
    opacity: 0;
}
.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.fadeLeft{
	animation-name:fadeLeftAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease;
	opacity:0;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(100%);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}

.fadeRight{
	animation-name:fadeRightAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease;
	opacity:0;
}
@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(-100%);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}

footer {
  background: #333;
}
footer .footer_inner{
  font-size: 80%;
  color: #ccc;
  width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5vw 0;
}
footer .footer_inner img{
  width: 146px;
}
footer .copy{
  width: 1000px;
  margin: 0 auto;
  border-top: 1px dotted #666;
  font-size: 80%;
  text-align: center;
  color: #888;
  padding: 1vw 0;
}
/* # =================================================================
   # FIXbtn
   # ================================================================= */

.fixedbtn {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  bottom: 0;
  opacity: 0;
  transition: all .3s;
}
.on {
  opacity: 100;
  transition: all .3s;
}
.off {
  opacity: 0;
  transition: all .3s;
}
.fixedbtn_inner {
  width: 1000px;
  margin: 0 auto;
}
.fixedbtn_inner ul {
  width: 65%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixedbtn_inner li {
  list-style-type: none;
  padding: 10px 20px;
}
.fixedbtn_inner li img{
  display: block;
  text-align: center;
}
.fixedbtn_inner a{
  width:100%;
  text-align: center;
}
.fixedbtn_inner a img{
  width:55%;
  margin:10px auto;
  text-align: center;
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.anime-updown {
  animation: 2s fuwafuwa infinite;
}


/* # =================================================================
   # SP
   # ================================================================= */

@media (max-width: 750px) {
  .fvpoint {
    top: 42%;    /* スマホでは少し上に */
    left: 5%;  /* スマホでは少し右端に寄せる */
    width: 100%; /* スマホ画面だと小さくなりすぎる場合は、割合を大きくする */
  }
  .fvpoint img{
    width: 21%;
  }
  .pc_only{display: none;}
  .sp_only{display: block;}
  .btn{
    margin: 10vw auto;
  }
  .btn .btn_inner{
    width: 100%;
    margin: 6vw auto 2vw auto;
    text-align: center;
  }
  .btn .btn_inner a{
    display: block;
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
  .mv .check{
    width: 95%;
    margin: 3vw auto;
  }
  .mv .check img{
    width: 95%;
  }
  .contents02 .support{
    padding: 0 3vw 6vw 3vw;
  }
  .video {padding:40px 0 10px 0;}
  .video_title {
    width: 80%;;
    font-size:80%;
  }
  .video iframe{
    width: 95%;
    height:auto;
    aspect-ratio: 16 / 9;  /* 縦幅は横幅の56.25%に自動決定 */
    border:10px solid #fff;
  }
  .title {
    font-size:120%;
    margin-top: 4vw;
    width: 70%;
  }
  /*アイコンの＋と×*/
  .title::before,
  .title::after{
      position: absolute;
      content:'';
      width: 18px;
      height: 4px;
      background-color: #07c068;
      
  }
  .title::before{
      top:46%;
      left: 15px;
      transform: rotate(0deg);
      
  }
  .title::after{    
      top:46%;
      left: 15px;
      transform: rotate(90deg);
  }
   .contents02 .support_title{
  
  }
  .contents02 .support_inner {
    margin-top: 6vw;
    padding: 0 ;
  }
  .contents02 .support_inner .support_img{
    padding-bottom: 3vw;
  }
  .contents03 .indefinitely{
    background: #dbdbdb;
    padding-top: 20px;
  }
  .contents03 .indefinitely img{
    width: 100%;
  }
  .contents03 .indefinitely_text{
    width: 100%;
    font-size: 70%;
    line-height: 130%;
  }
  .contents04 {
    padding: 8vw 0 6vw 0;
  }
  .support_box {
    padding: 5vw 5vw 5vw 5vw;
  }
  .support_box p{
    font-size: 80%;
  }
  .section_inner {
    width: 100%;
  }
  .slick-prev,.slick-next{
    width: 32px;
    height: 32px;
    z-index: 1000;
  }
  .slick-prev:before, .slick-next:before {
    font-size: 30px;
  }
  .slick-prev {
    left: 10px;
    top:115%;
  }
  .slick-next {
    right: 10px;
    top:115%;
  }
  .slider_card{
    margin:0 10px;
  }
  .slider_card img{
    width: 100%;
  }
  .fixedbtn_inner {
    width: 100%;
  }
  .fixedbtn_inner ul {
    width: 100%;
  }
  .fixedbtn_inner li {
  padding: 10px;
  }
  .fixedbtn_inner ul li img{
    width: 100%;
    display: block;
  }
  footer .footer_inner{
    width: 90%;
  }
  footer .footer_inner p{
    font-size: 80%;
  }
  footer .footer_inner img{
    width: 50px;
  }
  footer .copy{
    width: 100%;
    font-size: 80%;
    padding: 3vw 0;
  }
  .fixedbtn_inner a img{
    width:65%;
  }
}
