@charset "utf-8";

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

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



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

   WIDE DESKTOP LAYOUT

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


/* ====================================================
		Layout
==================================================== */
#serviceWrapper {
  padding-bottom: 100px;
}

/* -------------------------------
		Lead Text
------------------------------- */
#main .lead {
  padding: 0 100px 100px;
}




/* ====================================================
		Local Navigation
==================================================== */
/* -------------------------------
		Link
------------------------------- */
#lnavi li:nth-child(2) a,
#lnavi li:nth-child(3) a {
  color: #c8cbce;
}




/* ====================================================
		Branding
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#branding section {
  padding-bottom: 200px;
}

/* -------------------------------
		Title
------------------------------- */
#branding section h3 {
  font-family: 'Noto Sans JP',YuGothic,sans-serif;
  font-feature-settings: "palt";
	-moz-font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 2.4;
}

/* -------------------------------
		Image
------------------------------- */
#branding .imageBox img {
  opacity: 0.7;
}





/* ====================================================
		Creative / Promotion
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#branding article {
  padding-bottom: 200px;
}
/* -------------------------------
		Title
------------------------------- */
#branding article h3 {
  font-size: 4.4rem;
  padding-bottom: 100px;
}

/* -------------------------------
		List
------------------------------- */
#branding article ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#branding article ul li {
  width: 47%;
  border-top: 1px solid #e1e4e6;
}
#branding article ul li:not(:nth-of-type(2n)) {
  margin-right: 6%;
}
#branding article ul li:nth-last-child(2),
#branding article ul li:last-child {
  border-bottom: 1px solid #e1e4e6;
}

/* -------------------------------
		Link
------------------------------- */
#branding article ul li a {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Arrow */
#branding article ul li a::before,
#branding article ul li a::after {
  content: '';
  position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	vertical-align: middle;
  transition: all .3s;
}
#branding article ul li a::before {
  width: 11px;
	height: 1px;
  right: 4px;
	background: #4d4d4d;
}
#branding article ul li a::after {
  width: 8px;
	height: 8px;
	border-top: 1px solid #4d4d4d;
	border-right: 1px solid #4d4d4d;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* Hover */
#branding article ul li a:hover::before {
  right: -5px;
}
#branding article ul li a:hover::after {
  right: -9px;
}

/* -------------------------------
		Image
------------------------------- */
#branding article ul li a .imageBox {
  width: 40%;
}

/* -------------------------------
		Type
------------------------------- */
#branding article ul li a .type {
  width: 60%;
  text-align: center;
}

/* Japanese */
#branding article ul li a .type strong {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
}

/* English */
#branding article ul li a .type span {
  color: #dbdfe2;
  font-size: 1.4rem;
  line-height: 1.2;
  display: block;
  padding-top: 20px;
}







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

   TABLET

======================================================================================================================= */
@media screen and (min-width: 897px) and (max-width: 1299px) {
  
  /* ====================================================
      Layout
  ==================================================== */
  /* -------------------------------
      Lead Text
  ------------------------------- */
  #main .lead {
    padding: 0 50px 100px;
  }
  
  
  
  
  
  /* ====================================================
      Branding
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #branding section {
    padding-bottom: 150px;
  }
  
  
  
  
  /* ====================================================
      Creative / Promotion
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #branding article {
    padding-bottom: 150px;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #branding article h3 {
    font-size: 3rem;
    padding-bottom: 80px;
  }
  
  
  
}













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

   MOBILE

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

  /* ====================================================
      Layout
  ==================================================== */
  #serviceWrapper {
    padding-bottom: 100px;
  }
  
  /* -------------------------------
      Lead Text
  ------------------------------- */
  #main .lead {
    padding: 40px 20px 0;
  }
  
  
  
  
  
  /* ====================================================
      Branding
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #branding section {
    padding-bottom: 0;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #branding section h3 {
    font-size: 1.5rem;
    line-height: 2;
    padding-bottom: 10px;
  }
  
  /* -------------------------------
      Image
  ------------------------------- */
  #branding .flex .imageBox {
    margin: 20px auto 100px;
  }
  
  
  
  
  /* ====================================================
      Creative / Promotion
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #branding article {
    padding-bottom: 80px;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #branding article h3 {
    font-size: 1.5rem;
    padding-bottom: 50px;
  }
  
  /* -------------------------------
      List
  ------------------------------- */
  #branding article ul li {
    width: 100%;
  }
  #branding article ul li:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
  #branding article ul li:nth-last-child(2n) {
    border-bottom: none;
  }
  
  /* -------------------------------
      Link
  ------------------------------- */
  #branding article ul li a {
    padding: 20px 0;
  }
  
  /* Arrow */
  #branding article ul li a::before {
    width: 7px;
  }
  #branding article ul li a::after {
    width: 4px;
    height: 4px;
  }
  
  /* Hover */
  #branding article ul li a:hover::before {
    right: 4px;
  }
  #branding article ul li a:hover::after {
    right: 0;
  }
  
  /* -------------------------------
      Type
  ------------------------------- */
  /* Japanese */
  #branding article ul li a .type strong {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  /* English */
  #branding article ul li a .type span {
    font-size: 1rem;
    padding-top: 10px;
  }
  
  
  
  
  
  
  
  
  
  
  
  
}