:root {
  --main-color: #dc2715;
  --main-color2: #f7b510;
  --main-bgcolor: #f0f3fa ;
}


.font1{font-family: 'Hina Mincho', serif;}
.font2{font-family: 'Kosugi', sans-serif;}
.font3{font-family: 'Noto Sans JP', sans-serif;}
.font4{font-family: 'Noto Serif JP', serif;}
.font5{font-family: 'Reggae One', cursive;}
.font6{font-family: 'RocknRoll One', sans-serif;}
.font7{font-family: 'Sawarabi Gothic', sans-serif;}
.font8{font-family: 'Sawarabi Mincho', serif;}
.font9{font-family: 'Shippori Mincho B1', serif;}
.font10{font-family: 'Zen Maru Gothic', sans-serif;}
.font11{font-family: 'DotGothic16', sans-serif;}
.font12{font-family: 'Zen Kaku Gothic New', sans-serif;}



.pan{background-color: var(--main-bgcolor);padding: 5px 0;font-size: 90%;}
.header{border-bottom: 1px solid #eee;}

.bg_main{background-color: var(--main-bgcolor);}
.img_wrap img{
  width: 100%;
  cursor: pointer;
  transition-duration: 0.3s;
}
.img_wrap:hover img{
  opacity: 0.6;
  transition-duration: 0.3s;
}

.mainclor1{color: var(--main-color);}
.mainclor2{color: var(--main-color2);}

h2 {
	position: relative;
  text-align: center;
	padding: 0;line-height: 3rem;
}


h3 {
	background: linear-gradient(transparent 70%, #ffe600 70%);width:250px;margin: 0 auto 10px;font-weight: bold;
}
h4{color:var(--main-color);;font-size: 1.5rem;text-align: center;font-weight: bold;line-height: 1.4rem;margin-bottom: 1em;margin-top: 1em;}
@media only screen and (max-width: 767px) {
  h2{font-size: 1.2rem;line-height: 1.3rem;width: 100%;}
  h3{font-size: 1.2rem;width:200px}
  .spf_m{font-size: 140%;}
  .spf_s{font-size: 110%;}
  p{font-size: 80%;}
}

.w100 {
  width: 100%;
}
.w60 {
  width: 60%;
}
.w70 {
  width: 70%;
}
.w80 {
  width: 80%;
}
.w50 {
  width: 50%;
}
.max-100 {
    max-width: 100%;
  }
#topBtn{
    background:var(--main-color);;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
main{}



/* --- オープニング ---------------------------------------- */
/* --- 全体のBOX定義 ---------------------------------------- */
.box {
  position   : relative;
  max-width  : 100%;
  height     : 100%;
  margin     : auto;
  overflow   : hidden;
}

/* --- 背景の指定 ------------------------------------------- */
.box .bgImg {
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  right      : 0;
  opacity    : 0;
  animation  : bgAnime 28s infinite;   /* 4画像 × 各7s = 28s */
}

/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.box .src1 {
  background-image : url(../images/op.jpg);   /* 背景の画像を指定 */
  background-color: #FFF;
  background-position: center;
  background-size: cover;
}

@keyframes bgAnime {
   0% { opacity: 0; transform: scale(1.0, 1.0); }
   1% { opacity: 1; transform: scale(1.0, 1.0); }
  49% { opacity: 1; transform: scale(1.1, 1.1); }
  50% { opacity: 1; transform: scale(1.1, 1.1); }
 100% { opacity: 0; }
}
/* --- 全体のBOX定義ここまで ----------------- */

.fadein {
  opacity: 0;
  animation: fadein 9s;
}
@keyframes fadein {
 0%{ filter: blur(40px); opacity: 0;}
 30% { filter: blur(0); opacity: 1;}
 100% { filter: blur(0); opacity: 1;}
}

.start {
background-position: center;
background-size: cover;
background-color: #FFF;
animation-duration: 5s;
animation-delay: 5s;
animation-fill-mode: forwards;
animation-name: top-op;
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 9000;
}
.txt001 {animation-delay:0.5s;}
.txt002 {animation-delay:1.5s; }
.txt003 {animation-delay:2.5s; }

@keyframes top-op{
0% {
width: 100%;
left:0;
}
50% {
width: 100%;
opacity: 50;
}
99% {
width: 100%;
opacity: 0;
left: 0;
display: none;
}
100% {
width: 100%;
opacity: 0;
left: 100%;
display: none;
}
}

/*メニュー用css*/

.menu-content .row{padding: 0 ;margin: 0;}

.menu-content ul {
  padding: 90px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ccc;height: auto;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color:#000;
  text-decoration: none;
  padding: 8px 15px 10px 10px;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
@media only screen and (max-width: 1000px) {
  .menu-content ul {
    padding: 0px 30px 0;
  }
  .menu-content ul li a {
    padding: 15px 15px 10px 10px;
  }

.menu-content ul li a::before {
  right: 11px;
  top: 20px;
}
  .menu-content{
    padding: 90px 0 0;}
  }

.menu-content {
  width: 20%;
  height: 100%;
  position: fixed;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .1);
  top: 0;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  overflow-y: auto;
  opacity: 0.95;
  background-color: #FFF;
  transition: all 0.5s;/*アニメーション設定*/
}

.menu-content a:hover{
  color: var(--main-color);
}

#menu-btn-check:checked ~ .menu-content {
    left: 80%;/*メニューを画面内へ*/
}
@media only screen and (max-width: 1000px) {
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    overflow-y: auto;
    opacity: 0.95;
    background-color: #FFF;
    transition: all 0.5s;/*アニメーション設定*/
  }
  
  #menu-btn-check:checked ~ .menu-content {
      left: 0%;/*メニューを画面内へ*/
  }
  .menu-mt{margin-top: 0 !important;padding-top: 0 !important;}
  .menu-mb{margin-bottom: 0 !important;padding-bottom: 0 !important;}
  }
/*三本線疑似要素*/
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 90;background-image: url(images/menu_btn.gif);
  background-size: contain;
  border-radius: 3px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #dc2715;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
/*チェックボックスを隠す*/
#menu-btn-check {
    display: none;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
    .pcnav{ display: none !important; }
}

/* PCメニュー */
.flex_nav a{
  text-decoration: none;
  padding: 10px 0 20px;
  font-size: 15px;
  font-weight: 400;
  display: block;
  line-height: 1em;
  font-weight: 600;
  color: #333;
  }
  .flex_nav .current a{
  color: #F33135;
  }
  .flex_nav a:hover{
  color: var(--main-color);
  background-color: #f5f5f5;
  }
.flex_nav img{width: 40px;margin: 15px 0 20px;}
.flex_nav span{font-size: 10px;color: #888;}
.flex_nav {
    display: flex;
}
 
.flex_nav-item {
    padding: 0;
    margin: 0 0;
    text-align: center;
    color:  #111;
    width: 300px;
}

.flex_nav-item a {
  height: 80px;
  padding-top: 30px;
}
 
.flex_nav-item:nth-child(1) {
  border-left:1px solid #e0e0e0 ;
}
 
.flex_nav-item:nth-child(2) {
  border-left:1px solid #e0e0e0 ;
}
 
.flex_nav-item:nth-child(3) {
  border-left:1px solid #e0e0e0 ;
}
 
.flex_nav-item:nth-child(4) {
  border-left:1px solid #e0e0e0 ;
}
.flex_nav-item:nth-child(5) {
  border-left:1px solid #e0e0e0 ;
}
.flex_nav-item:nth-child(6) {
  border-left:1px solid #e0e0e0 ;
}
.flex_nav-item:nth-child(7) {
  border-left:1px solid #e0e0e0 ;
    border-right:1px solid #e0e0e0 ;
}
.flex_nav .last{
    border-right:1px solid #e0e0e0 ;
    color: #FFF;
    background-color: #dc2715;
    }
    .flex_nav .last a{
      color: #FFF;
      }
      .flex_nav .last :hover{
        color: #FFF;
        background-color: #e04234;
        }

@media (max-width: 992px) {
.flex_nav a{font-size: 12px;}
}


/* おしらせ */
.news div{}
.news .news_bl{border-bottom: 1px dotted #e0e0e0;padding: 15px 5px;background-color: #f0f3fa;}
.news .news_bl2{border-bottom: 1px dotted #e0e0e0;padding: 15px 5px;background-color: #fff;}
.icon{width: 100%;}

/* 昭和冷凍について */
.photo_P {
  position: relative;
  background-color: black;
  display: inline-block;
  text-align: center;
  width: 100%;
  }

.photo_P p {
  position: absolute !important;
  top: 52%;
  left: 50%;
  color: #FFF;
  font-size: 200%;
  line-height: 1em;
  font-weight: bold;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:10px 20px;
  border: 1px solid #fff;
  }
  .photo_P p span {
    font-size: 50% !important;
    font-weight: normal;
    }

.photo_P img {
  width: 100%;
  height: 280px;
  opacity: 0.9;
  object-fit: cover; /* この一行を追加するだけ！ */
  }
  @media (max-width: 992px) {
    .photo_P img {
      height: 150px;
      }
      .photo_P p {
        font-size: 150%;
        }
  }

/*アニメーション要素のスタイル*/
.animation{
  opacity : 0;
  visibility: hidden;
  transition: 2s;
  transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


  /* 下から */
  
  .fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(30px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }}


/* フォーム */
/*
input[type="text"] {border: 4px solid #7d8dc6;width: 100%;padding: 10px;}
textarea{border: 4px solid #7d8dc6;width: 100%;padding: 10px;}
*/
#form label {
 position: relative;
 cursor: pointer;
 padding-left: 30px;
}

#form label::before,
#form label::after {
 content: "";
 display: block; 
 border-radius: 50%;
 position: absolute;
 transform: translateY(-50%);
 top: 50%;
}

#form label::before {
 background-color: #fff;
 border: 1px solid #999;
 border-radius: 50%;
 width: 20px;
 height: 20px;
 left: 5px;
}

#form label::after {
 background-color: #555;
 border-radius: 50%;
 opacity: 0;
 width: 14px;
 height: 14px;
 left: 8px
}

#form input:checked + label::after {
 opacity: 1;
}

#form .visually-hidden {
position: absolute;
white-space: nowrap;
border: 0;
clip: rect(0 0 0 0);
clip-path: inset(50%);
overflow: hidden;
height: 1px;
width: 1px;
margin: -1px;
padding: 0;
}

.cp_ipselect {
	overflow: hidden;
	width: 80%;
	margin: 1em 0;
	text-align: center;
}
.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl02 {
	position: relative;
	border: 4px solid #7d8dc6;
	border-radius: 2px;
	background: #ffffff;
}
.cp_ipselect.cp_sl02::before {
	position: absolute;
	top: 1em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #7d8dc6;
	pointer-events: none;
}
.cp_ipselect.cp_sl02:after {
	position: absolute;
	top: 0;
	right: 2.5em;
	bottom: 0;
	width: 1px;
	content: '';
	border-left: 4px solid #7d8dc6;
}
.cp_ipselect.cp_sl02 select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}

/* スライド */
.slideshow_sction{
  margin-top: -5%;
  position: relative;
  z-index: 9;}
.slideshow {
  display: flex;
  animation: loop-slide 20s infinite linear 1s both;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slideshow {
  display: flex;
  padding-left: 0 !important;
}
.slideshow li {list-style: none;}
.content {
  width: 200px;
  height: 200px;
}
.content img {width: 90%;}

@media only screen and (max-width: 767px) {
  .content {
  width: 80px;
  height: 50px;
}
}

.rlg_01 { 
background:repeating-linear-gradient(
45deg,
#ff5959,
#ff5959 15px,
#ff4242 0,
#ff4242 30px
);
}
.bgwhite{background-color: #FFF;}


.rec {width: 100%;}
.rec th {width: 15%;padding: 15px;background-color: #ff4242;color: #FFF;border: 1px solid #FFF;}
.rec td {width: 85%;padding: 15px;border: 1px solid #FFF;background-color: #EEE;}

@media only screen and (max-width: 767px) {
  .rec {font-size: 10px;}
}

  .access {width: 100%;margin-bottom: 30px;}
  .access th {width: 20%;padding: 15px;background-color: #ff4242;color: #FFF;border: 1px solid #FFF;}
  .access td {width: 80%;padding: 15px;border: 1px solid #FFF;background-color: #EEE;}
  
  @media only screen and (max-width: 767px) {
    .access th {width: 100%;display: block;}
    .access td {width: 100%;display: block;}
  }

  .company {width: 100%;}
  .company th {width: 20%;padding: 15px;background-color: #ff4242;color: #FFF;border: 1px solid #FFF;}
  .company td {width: 80%;padding: 15px;border: 1px solid #FFF;background-color: #EEE;}
  
  @media only screen and (max-width: 767px) {
    .company th {width: 100%;display: block;}
    .company td {width: 100%;display: block;}
  }

.price {width: 100%;}
.price th {width: 25%;padding: 15px;background-color: #ff4242;color: #FFF;border: 1px solid #FFF;}
.price td {width: 25%;padding: 15px;border: 1px solid #FFF;background-color: #EEE;}

@media only screen and (max-width: 767px) {
  .price {font-size: 10px;}
} 

.faq:first-letter {
  font-size: 40px;
  color: #dc2715;
}

.faq_a:first-letter {
  font-size: 40px;
  color: #1596dc;
  font-weight: bold;
}
.form_sp {width: 100%;margin-bottom: 30px;}
.form_sp th {width: 30%;padding: 15px;background-color: #ff4242;color: #FFF;border: 1px solid #FFF;}
.form_sp td {width: 70%;padding: 15px;border: 1px solid #FFF;background-color: #EEE;}

@media only screen and (max-width: 767px) {
.form_sp th{width: 100%;display: block;}
.form_sp td{width: 100%;display: block;}
}
/* フッター */
.footer-logo{ border-top: 1px solid #eee;padding: 0 0;border-top: 5px solid var(--main-color);background-image: url(../images/footer.jpg);background-size: cover;background-position: bottom;}
.footer-logo_bg{background-color: rgba(0,0,0,0.6);}

#footer{color: #FFF;font-size: .9rem;background-color: var(--main-color);width: 100%;}
#footer h2{font-size: 1.2rem;color: #FFF;text-align: left;margin-bottom: 0.5em;margin-top: 0em;}
#footer h2 span{font-size: .9rem;color: #FFF;}
#footer ul{padding-left: 1em;text-indent: -1em;}
#footer li{color: #FFF;list-style: none;}
#footer li a{color: #FFF;text-decoration: none;}
#footer li a:hover{color: #efdc0f;text-decoration: none;}
.copyright{padding: 10px 0;}
.footer{text-align: center;margin-left: 2%;width: 100%;}
.footer li{width: 16%;}
.footer li{float: left; margin-left: 0;font-size: 18px;text-align: center;}
@media (max-width: 992px) {
.footer li{float: none; margin-left: 0;font-size: 15px;text-align: center;width: 100%;line-height: 1.5rem;}

}
@media (max-width: 992px) {
.copyright{font-size: 10px;}
#footer h2{margin-top: 1.5rem;}
.pickup span{ font-size: 0.8rem;}
}


/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}

/*==================================================
パタッ
===================================*/


/* 下へ */
.flipDown{
animation-name:flipDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipDownAnime{
  from {
    transform: perspective(2500px) rotateX(100deg);
 	opacity: 0;
  }

  to {
    transform: perspective(2500px) rotateX(0);
	opacity: 1;
  }
}


/* 左へ */
.flipLeft{
animation-name:flipLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
perspective-origin:left center;
opacity:0;
}

@keyframes flipLeftAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}


/* 左上へ */
.flipLeftTop{
animation-name:flipLeftTopAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipLeftTopAnime{
  from {
   transform: translate(-20px,80px) rotate(-15deg);
 	opacity: 0;
  }

  to {
   transform: translate(0,0) rotate(0deg);
	opacity: 1;
  }
}

/* 右へ */
.flipRight{
animation-name:flipRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
perspective-origin:right center;
opacity:0;
}

@keyframes flipRightAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}

/* 右上へ */
.flipRightTop{
animation-name:flipRightTopAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipRightTopAnime{
  from {
   transform: translate(-20px,80px) rotate(25deg);
   opacity: 0;
  }

  to {
   transform: translate(0,1) rotate(0deg);
	opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger{
    opacity: 0;
}

/*==================================================
くるっ
===================================*/


/* X 軸（縦へ） */
.rotateX{
	animation-name:rotateXAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes rotateXAnime{
	from{
		transform: rotateX(0);
		opacity: 0;
		}
	to{
		transform: rotateX(-360deg);
		opacity: 1;
		}
}

/*　Y軸（横へ） */
.rotateY{
	animation-name:rotateYAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes rotateYAnime{
	from{
		transform: rotateY(0);
		opacity: 0;
		}
	to{
		transform: rotateY(-360deg);
		opacity: 1;
		}
}

/* Z 軸（左へ） */
.rotateLeftZ{
	animation-name:rotateLeftZAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes rotateLeftZAnime{
	from{
		transform: rotateZ(0);
		opacity: 0;
		}
	to{
		transform: rotateZ(-360deg);
		opacity: 1;
		}
}

/*　Z 軸（右へ） */
.rotateRightZ{
	animation-name:rotateRightZAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes rotateRightZAnime{
	from{
		transform: rotateZ(0);
		opacity: 0;
		}
	to{
		transform: rotateZ(360deg);
		opacity: 1;
		}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger{
    opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/

/* 拡大 */
.zoomIn{
	animation-name:zoomInAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
	transform: scale(0.6);
	opacity: 0;
  }

  to {
    transform: scale(1);
	opacity: 1;
  }
}

/* 縮小 */
.zoomOut{
	animation-name:zoomOutAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
	transform: scale(1.2);
	opacity: 0;
  }

  to {
    transform:scale(1);
	opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.zoomInTrigger,
.zoomOutTrigger{
    opacity: 0;
}

/*==================================================
じわっ
===================================*/

/* ぼかしから出現 */
.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.blurTrigger{
    opacity: 0;
}

/*==================================================
にゅーん
===================================*/

/* 滑らかに変形して出現 */
.smooth{
	animation-name:smoothAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
  　transform-origin: left;
	opacity:0;
}

@keyframes smoothAnime{
  from {
  transform: translate3d(0, 100%, 0) skewY(12deg);
  opacity:0;
  }

  to {
  transform: translate3d(0, 0, 0) skewY(0);
  opacity:1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.smoothTrigger{
    opacity: 0;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/

/*枠線が伸びて出現*/

.lineTrigger{
  position: relative; /* 枠線が書かれる基点*/
  opacity:0;
}

.lineTrigger.lineanime{
	animation-name:lineAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes lineAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*上下線*/
.lineTrigger::before,
.lineTrigger::after{
  position: absolute;
  content:"";
  width:0;
  height:1px;
  background:#333;/* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after{
  position: absolute;
  content:"";
  width: 1px;
  height:0;
  background:#333;/* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
	top:0;
	left:0;
}

.lineTrigger.lineanime::before {
	animation: lineAnime .5s linear 0s forwards;/*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before{ 
	top:0;
	right:0;
}

.lineTrigger.lineanime .line2::before {
	animation: lineAnime2 .5s linear .5s forwards;/*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after { 
	bottom:0;
	right:0;
}

.lineTrigger.lineanime::after {
	animation: lineAnime .5s linear 1s forwards;/*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after{ 
	bottom:0;
	left:0;
}

.lineTrigger.lineanime .line2::after {
	animation: lineAnime2 .5s linear 1.5s forwards;/*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
	0% {width:0%;}
    100%{width:100%;}
}

@keyframes lineAnime2 {
	0% {height:0%;}
    100%{height:100%;}
}

/*枠線内側の要素*/

.lineTrigger.lineanime .lineinappear{
	animation: lineInnerAnime .5s linear 1.5s forwards;/*1.5秒後に中央のエリアが0.5秒かけて表示*/
	opacity: 0;/*初期値を透過0にする*/	
}

@keyframes lineInnerAnime{
	0% {opacity:0;}
    100% {opacity:1;}
}


/*==================================================
シャッ（背景色が伸びて出現）
===================================*/

/*背景色が伸びて出現（共通）*/
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*右から*/
.bgRLextend::before{
	animation-name:bgRLextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgRLextendAnime{
	0% {
		transform-origin:right;
		transform:scaleX(0);
	}
	50% {
		transform-origin:right;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}

/*下から*/
.bgDUextend::before{
	animation-name:bgDUextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgDUextendAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

/*上から*/
.bgUDextend::before{
	animation-name:bgUDextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgUDextendAnime{
	0% {
		transform-origin:top;
		transform:scaleY(0);
	}
	50% {
		transform-origin:top;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:bottom;
	}
	100% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger{
    opacity: 0;
}


/*========= レイアウトのためのCSS ===============*/

.wrapper{
	overflow: hidden;
}

.flex{
	display:flex;
	flex-wrap: wrap;
}

.box{
	width: 220px;
	padding: 20px;
    margin: 0 20px 20px 20px;
	background: #666;
	color: #fff;
	box-sizing:border-box;
}

.bgextend,
.lineTrigger{
	box-sizing:border-box;
}



/*==================================================
アニメーション設定
===================================*/

/* アニメーションの回数を決めるCSS*/

.count2{  
	animation-iteration-count: 2;/*この数字を必要回数分に変更*/
}

.countinfinite{  
	animation-iteration-count: infinite;/*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time05{  
	animation-delay: 0.5s;
}

.delay-time1{  
	animation-delay: 1s;
}

.delay-time15{  
	animation-delay: 1.5s;
}

.delay-time2{  
	animation-delay: 2s;
}

.delay-time25{  
	animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/

.change-time05{  
	animation-duration: 0.5s;
}

.change-time1{  
	animation-duration: 1s;
}

.change-time15{  
	animation-duration: 1.5s;
}

.change-time2{  
	animation-duration: 2s;
}

.change-time25{  
	animation-duration: 2.5s;
}



@media screen and (max-width: 768px) {
	.detail table {
		width:100%;
	}
	.detail td {
		width:100%;
		display:block;
	}

	.detail th {
		width:100%;
		display:block;
	}
}
