@charset "utf-8";

/* ---------------------------------------------------
   File: common.css
   Version: 1.0.0
   Update: 2025-03-05
   Author: https://flowlab.co.jp

   (c)2007-2025 Flowlab inc. All Rights Reserved.
--------------------------------------------------- */



/* =======================================================================================================================

   WIDE DESKTOP LAYOUT

======================================================================================================================= */
.sp { display: none;}

/* ====================================================
		Layout
==================================================== */
/* -------------------------------
		Selection
------------------------------- */
::selection {
  color: #fff;
  background: #CE1046;
}




/* ====================================================
		Splash
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
}

/* -------------------------------
		Logo
------------------------------- */
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width: 250px;
}

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




/* ====================================================
		Header
==================================================== */
#gHeader {
	width: 100%;
}

/* -------------------------------
		Logo
------------------------------- */
#gHeader #logo {
  width: 410px;
  padding: 33px 0;
  margin: 0 auto;
}
#gHeader #logo img {
  display: block;
}

/* -------------------------------
		Button - Entry
------------------------------- */
#gHeader #entryButton {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}
#gHeader #entryButton a {
  color: #fff;
  font-size: 2.4rem;
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: .05em;
  background: #CE1046;
  display: inline-block;
  padding: 17px 48px 15px;
}




/* ====================================================
		Footer
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#gFooter {
  text-align: center;
  background: #f2f2f2;
  padding: 60px 8% 15px;
}
#gFooter .flex div {
  width: 50%;
}

/* -------------------------------
		Logo
------------------------------- */
#gFooter .footerLogo {
  width: auto;
  height: 26px;
  padding-bottom: 30px;
}
#gFooter .footerLogo img {
  width: auto;
  height: 26px;
  mix-blend-mode: multiply;
}

/* -------------------------------
		Company Name
------------------------------- */
#gFooter .companyName {
  font-weight: 600;
}

/* -------------------------------
		Address
------------------------------- */
#gFooter address {
  font-style: normal;
}

/* -------------------------------
		Button
------------------------------- */
#gFooter .btn {
  margin: 20px auto 40px;
}
#gFooter .btn a {
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid #333;
  padding: 8px 40px 10px;
}
#gFooter .btn a span {
  position: relative;
  padding-right: 16px;
}
#gFooter .btn a span::after {
  content: '';
  width: 11px;
  height: 8px;
  background: url("../img_common/icon_blank.png") no-repeat 0 0 / 11px 8px;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}

/* Hover */
#gFooter .btn a:hover {
  background: #ccc;
  opacity: 1;
}




/* ====================================================
		Copyright
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#copyright {
  font-size: 1rem;
	display: block;
	text-align: center;
}















/* =======================================================================================================================

   TABLET

======================================================================================================================= */
@media screen and (min-width: 897px) and (max-width: 1299px) {
  .sp { display: none;}
  
  /* ====================================================
      Splash
  ==================================================== */
  /* -------------------------------
      Logo
  ------------------------------- */
  #splash_logo img {
    width: 200px;
  }
  
  
  
  
  /* ====================================================
      Header
  ==================================================== */
  /* -------------------------------
      Logo
  ------------------------------- */
  #gHeader #logo {
    width: 300px;
    padding: 22px 0;
  }
  
  /* -------------------------------
      Button - Entry
  ------------------------------- */
  #gHeader #entryButton {
    top: 12px;
  }
  #gHeader #entryButton a {
    font-size: 2rem;
    padding: 12px 48px 10px;
  }
  /* ====================================================
      Footer
  ==================================================== */
  /* -------------------------------
      Logo
  ------------------------------- */
  #gFooter .footerLogo {
    width: auto;
    height: 20px;
    padding-bottom: 20px;
  }
  #gFooter .footerLogo img {
    width: auto;
    height: 20px;
  }

}













/* =======================================================================================================================

   MOBILE

======================================================================================================================= */
@media screen and (max-width: 896px) {
  .sp { display: block;}
  .pc { display: none;}
  
  /* ====================================================
      Splash
  ==================================================== */
  /* -------------------------------
      Logo
  ------------------------------- */
  #splash_logo img {
    width: 140px;
  }
  
  
  
  
  /* ====================================================
      Header
  ==================================================== */
	/* -------------------------------
      Logo
  ------------------------------- */
  #gHeader #logo {
    width: 240px;
    padding: 15px 0;
  }
  
  /* -------------------------------
      Button - Entry
  ------------------------------- */
  #gHeader #entryButton {
    width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: 9999;
  }
  #gHeader #entryButton a {
    font-size: 1.4rem;
    text-align: center;
    display: block;
    padding: 16px 0 14px;
  }
  
  /* ====================================================
      Footer
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #gFooter {
    padding: 60px 8% 15px;
  }
  #gFooter .flex div {
    width: 100%;
  }
  
  /* -------------------------------
      Logo
  ------------------------------- */
  #gFooter .footerLogo {
    width: auto;
    height: 16px;
    padding-bottom: 20px;
  }
  #gFooter .footerLogo img {
    width: auto;
    height: 16px;
  }
  
  /* -------------------------------
      Company Name
  ------------------------------- */
  #gFooter .companyName {
    font-size: 1.3rem;
  }

  /* -------------------------------
      Address
  ------------------------------- */
  #gFooter address {
    font-size: 1.3rem;
  }

  /* -------------------------------
      Button
  ------------------------------- */
  #gFooter .btn {
    margin: 15px auto 60px;
  }
  #gFooter .btn a {
    font-size: 1.3rem;
  }
  
  /* Hover */
  #gFooter .btn a:hover {
    color: #333;
    background: none;
    opacity: 1;
  }
  
  
  
  
  /* ====================================================
      Copyright
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #copyright {
    padding-bottom: 40px;
  }
  
  
  
    
  
  

  


}