@charset "utf-8";

/* ---------------------------------------------------
   File: weblab.css
   Version: 1.0.0
   Update: 2023-04-15
   Author: https://flowlab.co.jp

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



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

   WIDE DESKTOP LAYOUT

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


/* ====================================================
		Layout
==================================================== */
.row {
  padding: 0 100px;
}



/* ====================================================
		Contents
==================================================== */
/* -------------------------------
		Page Title
------------------------------- */
#main h1 {
  width: calc(100% - 100px);
}




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

   TABLET

======================================================================================================================= */
@media screen and (min-width: 897px) and (max-width: 1299px) {
  
  /* ====================================================
      Layout
  ==================================================== */
  .row {
    padding: 0 50px;
  }
  
  
  
  
  
}













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

   MOBILE

======================================================================================================================= */
@media screen and (max-width: 896px) {

  /* ====================================================
      Layout
  ==================================================== */
  .row {
    padding: 0 20px;
  }
  
  
  
  
  /* ====================================================
      Contents
  ==================================================== */
  /* -------------------------------
      Page Title
  ------------------------------- */
  #main h1 {
    width: calc(100% - 40px);
    padding-bottom: 50px;
  }
  
  
  
  
}