@charset "UTF-8";
/*
Theme Name: 2create
Theme URL: 
Description: ツクリテ専用テーマ
Author: 2create
Version: 1.0.0
Tags: ビジネス
*/



@import url("css/base.css") screen and (min-width:769px) and (max-width: 5000px);
@import url("css/layout.css") screen and (min-width:769px) and (max-width: 5000px);

/*SP*/
@import url("css/base_sp.css") screen and (min-width:0px) and (max-width:  768px);
@import url("css/layout_sp.css") screen and (min-width:0px) and (max-width: 768px);


/* オープニング
--------------------------------------------------------------------------------------------------------------------------------------------- */
#logo_loader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 101;
    background-color: #6BC8F2;
  pointer-events: none;
}
#logo_loader .f_logo {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 160px;
    height: 50px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    animation: loadLogo 1s;
}
#logo_loader .f_logo img {
    width: 100%;
    height: auto;
}

@keyframes loadLogo {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
}
}
#logo_loader.open {
    animation-name: slideOut;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
    animation-delay: 1.5s;
}

@keyframes slideOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  80% {
      transform: scale(1);
    opacity: 1;
  }
  100% {
      transform: scale(3);
    opacity: 0;
  }
}


/* ページ遷移フェード
--------------------------------------------------------------------------------------------------------------------------------------------- */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#eee;  /* 背景カラー */
  z-index: 9999;  /* 一番手前に */
  pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;  /* 初期値 : 透過状態 */
  -webkit-transition: opacity .5s ease;  /* アニメーション時間は 0.5秒 */
  transition: opacity .5s ease;
}

body.fadeout::after {
  opacity: 1;
}

body.fadeout article{
  -webkit-transition: transform .5s ease-out;
  transition: transform .5s ease-out;
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}