@charset "utf-8";

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

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



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

   WIDE DESKTOP LAYOUT

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

/* ====================================================
		Layout
==================================================== */
body {
  letter-spacing: 0.05em;
  background: #fafafa;
}
main {
  padding-bottom: 300px;
}


/* ====================================================
		Contents Fadein
==================================================== */
.contentsFadein {
	opacity: 0;
	transition: opacity 1.5s cubic-bezier(0.75, 0, 0.25, 1);
}
.contentsFadein.scrollin {
	opacity: 1;
}


/* ====================================================
		Splash
==================================================== */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fafafa;
}
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width: 100px;
}
.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%;
	position: absolute;
	top: 0;
	left: 0;
}

/* -------------------------------
		Logo
------------------------------- */
#gHeader #logo {
  width: 216px;
	position: relative;
	z-index: 1002;
  padding: 60px 0 0 50px;
}
#gHeader #logo a {
	display: block;
}
#gHeader #logo a img {
  width: 100%;
  height: auto;
}


/* ====================================================
		Global Navigation
==================================================== */
/* -------------------------------
		Contents blur
------------------------------- */
.mainblur {
	filter: blur(8px);
}

/* -------------------------------
		Menu Close
------------------------------- */
#gNavi {
  position: fixed;
	z-index: -1;
	opacity: 0;
	top: 0;
	width: 100%;
  height: 100vh;
	background: rgba(241,241,239,0.6);
	transition: all 0.3s;
}
#gNavi #gNaviList {
  display: none;
}
#gNavi ul {
  position: absolute;
  z-index: 999;
  top: 160px;
  right: 50px;
}

/* -------------------------------
		Menu Open
------------------------------- */
#gNavi.panelactive {
	opacity: 1;
	z-index: 999;
}
#gNavi.panelactive #gNaviList {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999; 
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
}
#gNavi.panelactive ul {
  width: 30%;
  text-align: left;
}
#gNavi.panelactive li {
  width: 46%;
}
#gNavi.panelactive li a {
  display: block;
  padding: 10px 0 40px;
  border-top: 1px solid #e6e6e6;
  transition: .3s ease-out;
}
#gNavi.panelactive li a:hover {
  color: #771c20;
  border-top: 1px solid #333;
  opacity: 1;
}
#gNavi.panelactive li a strong,
#gNavi.panelactive li a span {
  display: block;
}

/* English */
#gNavi.panelactive li a strong {
  font-size: 2.2rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Japanese */
#gNavi.panelactive li a span {
  font-size: 1rem;
}

/* -------------------------------
		Hamburger Menu Button
------------------------------- */
.openbtn {
  width: 120px;
  height: 70px;
	top: 50px;
	right: 50px;
	cursor: pointer;
  position: fixed;
  z-index: 9999;
}
	
/* Close Button */	
.openbtn span {
  width: 100%;
  height: 1px;
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: calc(40% + 12px);
  transform: translateX(-50%);
	background-color: #333;
}
.openbtn span:first-child {
	top: 20px;	
}
.openbtn span:last-child {
  width: 70px;
	top: 30px;
  left: calc(60% + 13px);
}
.openbtn.active span:first-child {
  width: 100%;
  top: 20px;
  left: 0;
  transform: translateY(14px) rotate(-16deg);
}
.openbtn.active span:last-child {
  width: 100%;
  top: 34px;
  left: 0;
  transform: rotate(16deg);
}


/* ====================================================
		Common
==================================================== */
/* -------------------------------
		LayoutA
------------------------------- */
.layoutA {
  padding-left: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.layoutA h2 {
  width: calc(45% - 100px);
}
.layoutA div {
  width: 55%;
}

/* -------------------------------
		Title
------------------------------- */
h2,
#requirements h3 {
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  position: relative;
}
h2::before,
#requirements h3::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #333;
  display: block;
  position: absolute;
  top: 0.4em;
  left: -15px;
}
h2 strong,
h2 span {
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  display: block;
}
h2 strong {
  font-size: 6rem;
  letter-spacing: 0;
}
h2 span {
  font-size: 1.5rem;
  font-family: "ten-mincho", serif;
  padding-top: 15px;
}


/* ====================================================
		Main Visual
==================================================== */

/* -------------------------------
		Layout
------------------------------- */
#mainVisual {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* -------------------------------
		Catch Copy
------------------------------- */
#mainVisual p,
#thanks p {
  position: relative;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
}
#mainVisual p strong,
#thanks p strong {
  font-size: 16rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  background-image: url("../img_common/bg_catch-copy_spring.jpg");
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color:transparent;
  text-fill-color:transparent;
  color: transparent;
  animation: fl-animate 10s linear infinite;
}
/* Japanese */
#mainVisual p span,
#thanks p span {
  font-size: 3.6rem;
  font-family: "ten-mincho", serif;
  font-weight: 300;
  display: block;
  padding-top: 40px;
}

/* Animation */
@keyframes fl-animate {
  0% {
    background-position: left 0px top 0px;
  }
  100% {
    background-position: left 1200px top 0px;
  }
}


/* ====================================================
		Credo - About
==================================================== */

/* -------------------------------
		Layout
------------------------------- */
#about {
  padding-top: 100px;
}
#about section:not(:last-child) {
  padding-bottom: 80px;
}

/* -------------------------------
		Title
------------------------------- */
#about h3 {
  font-size: 3rem;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  margin-bottom: 40px;
}
#about h3::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
#about h3 span {
  background: #fafafa;
  display: inline-block;
  padding-right: 20px;
}

/* -------------------------------
		Quotation
------------------------------- */
#about p,
#about blockquote {
  line-height: 2.2;
  padding: 0 100px 0 60px;
}
/* Text */
#about p {
  font-size: 1.3rem;
  line-height: 2;
}

/* Blockquote */
#about blockquote {
  font-weight: 500;
  padding-bottom: 20px;
  position: relative;
}
#about blockquote::before {
  content: '';
  width: 20px;
  height: 16px;
  background: url("../img_common/img_quotation-marks.png") no-repeat 0 0 / 20px 16px;
  display: block;
  position: absolute;
  top: -10px;
  left: 25px;
}
#about blockquote p {
  font-size: 1.5rem;
  padding: 0;
}
#about blockquote cite {
  font-size: 1.1rem;
  font-style: normal;
  display: block;
  padding-top: 6px;
}


/* ====================================================
		Mission / Vision / Value - philosophy
==================================================== */

/* -------------------------------
		Layout
------------------------------- */
#philosophy {
  border-top: #333 1px solid;
  border-bottom: #333 1px solid;
  margin: 280px 0;
}
#philosophy article {
  width: calc(33.333% - 1px);
}
#philosophy article:not(:last-child) {
  border-right: #333 1px solid;
}

/* -------------------------------
		Title
------------------------------- */
#philosophy h2 {
  text-align: center;
  position: static;
  padding: 150px 0;
  cursor: pointer;
}
#philosophy .box h3 {
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 20px;
}

/* -------------------------------
		Icon - Plus
------------------------------- */
#philosophy .plus {
  position: relative;
	width: 80px;
	height: 80px;
	border: 1px solid #e6e6e6;
	border-radius: 40px;
  padding: 0;
  margin: 80px auto 0;
}
#philosophy .plus::before,
#philosophy .plus::after {
  content: '';
  background-color: #333;
  position: absolute;
  top: 50%;
	left: 50%;
  transform: translate(-50%, -50%);
}
#philosophy .plus::before {
	width: 1px;
	height: 15px;
  transition: .3s ease-out;
}
#philosophy .plus::after {
	width: 15px;
	height: 1px;
}

/* Close */
#philosophy .title.close .plus::before {
  transform: rotate(90deg);
  top: calc(50% - 7px);
}
#philosophy .title.close .plus::after {
  display: none;
}

/* -------------------------------
		Accordion
------------------------------- */
#philosophy .box {
  display: none;
  font-size: 1.3rem;
  line-height: 2;
  padding: 0 40px 40px;
  margin-top: -100px;
}


/* ====================================================
		Team
==================================================== */

/* -------------------------------
		Layout
------------------------------- */
#team {
  padding: 100px 100px 0;
  margin-bottom: 100px;
}

/* -------------------------------
		Title
------------------------------- */
#team h2 {
  padding-bottom: 100px;
}


/* ====================================================
		Skill
==================================================== */

/* -------------------------------
		Layout
------------------------------- */
#team #skill {
  padding-top: 60px;
}
#team #skill section {
  border-bottom: 1px solid rgb(230, 230, 230);
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 18px;
}

/* -------------------------------
		Title
------------------------------- */
#team #skill section h3 {
  width: 20%;
  font-size: 2rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  line-height: 1;
}

/* -------------------------------
		Detail
------------------------------- */
#team #skill section ul {
  width: 80%;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
}
#team #skill section ul li {
  position: relative;
}
#team #skill section ul li:not(:last-child)::after {
  content: '／';
  position: relative;
  display: inline;
  margin: 0 4px;
}

/* -------------------------------
		Attention
------------------------------- */
#team #skill small {
  font-size: 1rem;
  display: block;
  padding-top: 30px;
}


/* ====================================================
		News
==================================================== */

/* -------------------------------
		Layout
------------------------------- */
#news {
  padding: 100px 0 0 100px;
  margin-bottom: 250px;
}
#news ul {
  width: 80%;
  border-top: 1px solid #e6e6e6;
}

/* -------------------------------
		Title
------------------------------- */
#news h2 {
  width: 20%;
  font-size: 3rem;
  position: static;
}

/* -------------------------------
		List
------------------------------- */
#news ul li {
  border-bottom: 1px solid #e6e6e6;
}
#news ul li a {
  display: block;
  padding: 40px 50px;
}

/* -------------------------------
		Update Time
------------------------------- */
#news time {
  color: #b3b3b3;
  font-family: "din-condensed", sans-serif;
  font-weight: 300;
  line-height: 1;
}

/* -------------------------------
		New Mark
------------------------------- */
#news span {
  color: #fff;
  font-size: 1.2rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  line-height: 1;
  background: #771c20;
  display: inline-block;
  padding: 3px 6px 1.5px;
  margin-left: 10px;
  position: relative;
  top: -2px;
}

/* -------------------------------
		Text
------------------------------- */
#news p {
  font-size: 1.3rem;
}


/* ====================================================
		Requirements
==================================================== */

/* -------------------------------
		Layout
------------------------------- */
#requirements {
  padding-bottom: 300px;
}
#requirements section {
  padding: 100px 100px 0;
}
#requirements section:not(:last-child) {
  padding-bottom: 50px;
}
#requirements section dl {
  width: 80%;
  line-height: 2.2;
  border-bottom: 1px solid #e6e6e6;
}
#requirements a {
  position: relative;
}
#requirements a::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  bottom: 0;
  left: 0;
}
#requirements a:hover::after {
  content: none;
}

/* -------------------------------
		Title
------------------------------- */
#requirements h2 {
  color: #fff;
  font-size: 30rem;
  line-height: 1;
  letter-spacing: -0.02em;
  position: static;
  animation: flowing 40s linear infinite;
  display: inline-block;
  padding-left: 100%;
}

#requirements h3 {
  font-size: 6rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
  display: block;
  padding-bottom: 80px;
}
#requirements h3::before {
  top: 0.1em;
}

/* -------------------------------
		Catch Copy
------------------------------- */
#requirements .catch {
  width: 20%;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
#requirements .catch strong {
  position: relative;
  top: 0;
  left: -100px;
}
#requirements .catch span {
  font-size: 1.5rem;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2.8;
  background: #fff;
  padding: 4px;
}

/* -------------------------------
		Dl
------------------------------- */
#requirements dt,
#requirements dd {
  font-size: 1.3rem;
  border-top: 1px solid #e6e6e6;
  padding: 40px 0;
}
#requirements dt {
  width: 20%;
  font-weight: 500;
}
#requirements dd {
  width: 80%;
}

/* List */
#requirements ul {
  padding-left: 8px;
}
#requirements ul li {
  position: relative;
}
#requirements ul li::before {
  content: '';
  width: 3px;
  height: 3px;
  background-color: #333;
  border-radius: 100%;
  position: absolute;
  top: 0.8em;
  left: -8px;
  display: block;
}

/* Attention */
#requirements span {
  font-size: 1rem;
}
#requirements small {
  font-size: 1rem;
  display: block;
  padding-top: 6px;
}

/* -------------------------------
		SE / Photo / Video
------------------------------- */
#requirements_se-photo-video span {
  font-size: 1em;
  display: inline;
}


/* ====================================================
		Environment
==================================================== */

/* -------------------------------
		Layout
------------------------------- */
#environment {
  color: #fff;
  background: #dad7d0;
  padding: 100px 100px;
  margin-bottom: 200px;
  position: relative;
}
#environment::after {
  content: 'ENVIRONMENT';
  color: #fff;
  font-size: 30rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.1;
  position: relative;
  top: -100px;
  left: 100px;
  animation: flowing 40s 10s linear infinite;
  padding-left: 100%;
  display: inline-block;
}
#environment .flex {
  justify-content: flex-start;
}
#environment section {
  width: calc(24.5% - 60px);
  background-color: #333;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  filter: grayscale(100%);
  font-style: normal;
  padding: 0 30px 25px;
  margin-bottom: 7px;
  position: relative;
  z-index: 1;
}
#environment section:not(:nth-child(4n)) {
  margin-right: 0.66%;
}
#environment section::before {
  content: '';
  display: block;
  padding-top: calc(100% - 80px);
}

/* -------------------------------
		Title
------------------------------- */
#environment h2 {
  font-size: 30rem;
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  top: 100px;
  opacity: 0.1;
  animation: flowing 40s linear infinite;
  display: inline-block;
  padding-left: 100%;
}
#environment h2::before {
  content: none;
}
#environment h3 {
  font-size: 2rem;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* -------------------------------
		Text
------------------------------- */
#environment p {
  min-height: 3em;
  font-size: 1.1rem;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 300;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}

/* -------------------------------
		List
------------------------------- */
#environment section:nth-child(1) {background-image: url("../img_index/ph_environment_skillup.jpg");}
#environment section:nth-child(2) {background-image: url("../img_index/ph_environment_book.jpg");}
#environment section:nth-child(3) {background-image: url("../img_index/ph_environment_study.jpg");}
#environment section:nth-child(4) {background-image: url("../img_index/ph_environment_communication.jpg");}
#environment section:nth-child(5) {background-image: url("../img_index/ph_environment_business-management.jpg");}
#environment section:nth-child(6) {background-image: url("../img_index/ph_environment_staff.jpg");}
#environment section:nth-child(7) {background-image: url("../img_index/ph_environment_holiday.jpg");}
#environment section:nth-child(8) {background-image: url("../img_index/ph_environment_leave-work.jpg");}
#environment section:nth-child(9) {background-image: url("../img_index/ph_environment_worklife-balance.jpg");}
#environment section:nth-child(10){background-image: url("../img_index/ph_environment_car.jpg");}
#environment section:nth-child(11){background-image: url("../img_index/ph_environment_social-insurance.jpg");}
#environment section:nth-child(12){background-image: url("../img_index/ph_environment_health-check.jpg");}
#environment section:nth-child(13){background-image: url("../img_index/ph_environment_environment.jpg");}
#environment section:nth-child(14){background-image: url("../img_index/ph_environment_hair.jpg");}
#environment section:nth-child(15){background-image: url("../img_index/ph_environment_coffee.jpg");}
#environment section:nth-child(16){background-image: url("../img_index/ph_environment_office.jpg");}



/* Filter */
#environment section::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(51,51,51,0.9);
  position: absolute;
  top: 0;
  left: 0;
}


/* ====================================================
		Flow
==================================================== */

/* -------------------------------
		Layout
------------------------------- */
#flow {
  padding: 100px 0 250px 100px;
}
#flow li:not(:last-child) {
  padding-bottom: 80px;
}

/* -------------------------------
		Title
------------------------------- */
#flow h2 {
  
}
#flow h3 {
  font-size: 3rem;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  margin-bottom: 40px;
}
#flow h3::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
#flow h3 strong {
  font-weight: 400;
  background: #fafafa;
  display: inline-block;
  padding-right: 20px;
}
#flow h4 {
  font-size: 1.3rem;
  font-weight: 500;
  padding-bottom: 6px;
}

/* -------------------------------
		Flow Number
------------------------------- */
#flow ol li .num {
  font-size: 2rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  position: absolute;
  top: 0.5em;
  left: -80px;
}
#flow ol li .num::after {
  content: '';
  width: 80px;
  height: 80px;
  border: 1px solid #333;
  border-radius: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* -------------------------------
		Flow Contents
------------------------------- */
#flow p {
  font-size: 1.3rem;
  line-height: 2.2;
  padding-right: 100px;
}
#flow p a {
  position: relative;
}
#flow p a::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  bottom: 0;
  left: 0;
}
#flow p a:hover::after {
  content: none;
}

/* In Box */
#flow section section {
  padding-top: 25px;
}
#flow section section p {
  line-height: 1.8;
}

/* Attention */
#flow small {
  font-size: 1rem;
  letter-spacing: 0;
  display: block;
  padding-top: 6px;
}


/* ====================================================
		Entry
==================================================== */

/* -------------------------------
		MailFormPro CSS - Reset
------------------------------- */
form#mailformpro {
  padding-right: 100px;
}
form#mailformpro dl {
  margin-bottom: 60px;
}
form#mailformpro dl dt,
form#mailformpro dl dd {
  float: none;
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
  clear: both;
}
form#mailformpro dl dt {
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 15px;
}
form#mailformpro dl dd {
  padding-bottom: 50px;
}
.mfp_element_text, .mfp_element_number, .mfp_element_select-one, .mfp_element_email, .mfp_element_tel, .mfp_element_textarea, .mfp_element_date, .mfp_element_password {
  box-shadow: none;
  margin: 0;
}
.mfp_element_all {
  max-width: 100%;
}
div.mfp_ok {
	display: none!important;
}
div.mfp_err {
  background: none;
  color: #771c20;
  padding: 2px 0px 5px 17px;
}

/* -------------------------------
		Input
------------------------------- */
#entry textarea,
#entry input[type="tel"],
#entry input[type="email"], 
#entry input[type="text"],
#entry input[type="url"],
#entry input[type="radio"],
#entry select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#entry textarea,
#entry input[type="tel"],
#entry input[type="email"], 
#entry input[type="text"],
#entry input[type="url"] {
  width: 100%!important;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  border: none;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
}
#entry dd ul li:first-child {
  display: none;
}
#entry dd small {
  padding-top: 10px;
}

/* -------------------------------
		placeholder
------------------------------- */
#entry input::placeholder {
  color: #e6e6e6;
}

/* -------------------------------
		Icon - Must
------------------------------- */
#entry .must {
  position: relative;
  border: none;
  text-shadow: none;
  font-size: 1em;
  color: #333;
  float: none;
  box-shadow: none;
  background: none;
}
#entry .must::after {
  content: '必須';
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  background: #333;
  padding: 3px 6px 1.5px;
  margin-left: 10px;
  display: inline-block;
  position: relative;
  top: -2px;
}

/* -------------------------------
		Radio button
------------------------------- */
#entry .radiobutton li:not(:last-child) {
  margin-bottom: 10px;
}
#entry .radiobutton label {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
#entry .radiobutton input[type="radio"] {
  width: 14%;
  height: 100%;
  font-size: 2rem;
  background: #e6e6e6;
  border-radius: 0;
  position: relative;
  padding: 25px 0;
  margin: 0;
  transition: .3s ease-out;
  cursor: pointer;
  text-align: center;
}
#entry .radiobutton input[type="radio"]::before {
  content: '';
  display: inline-block;
  color: #333;
  line-height: 1;
  width: 16px;
  height: 8px;
  border: 1px solid #fff;
  border-top: 0;
  border-right: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(-45deg);
  margin: 0 auto;
}
#entry .radiobutton input[type="radio"]:checked {
  background: #333;
}

/* Text */
#entry .radiobutton span {
  width: calc(86% - 60px);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  background: #fff;
  padding: 25px 30px;
}

/* -------------------------------
		Select
------------------------------- */
#entry .selectbox {
  display: block;
  position: relative;
}
#entry select {
  width: 100%;
  font-size: 1.5rem;
  color: #333;
  line-height: 1.4;
  padding: 30px;
  border: none;
  outline: 0;
  background: #fff;
  background-image: none;
  box-shadow: none;
  text-overflow: ellipsis;
  cursor: pointer;
}
#entry .selectbox::before {
  content: '';
  position: absolute;
  top: calc(30px + 0.5em);
  right: 40px;
  transform: translate(50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
}

/* -------------------------------
		Text Area
------------------------------- */
#entry textarea {
  width: 100%!important;
	height: 300px!important;
	resize: vertical;
}

/* -------------------------------
		Layout
------------------------------- */
#entry {
  position: relative;
}
#entry::before {
  content: 'ENTRY FORM';
  color: #fff;
  font-size: 30rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  position: relative;
  top: 0;
  left: 0;
  margin-bottom: 100px;
  animation: flowing 40s linear infinite;
  display: block;
  padding-left: 100%;
}

/* -------------------------------
		Privacy Policy
------------------------------- */
#entry .privacyPolicyBox {
  width: 100%;
  height: 300px;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  border: 1px solid #e6e6e6;
  position: relative;
  overflow: auto;
  overflow-y: scroll;
  margin-bottom: 30px;
  padding: 30px;
  box-sizing: border-box;
}
#entry .privacyPolicyBox section:not(:last-child) {
  padding-bottom: 20px;
}

/* Title */
#entry .privacyPolicyBox h3 {
  font-size: 1.3rem;
  font-weight: 500;
  padding-bottom: 8px;
}

/* Agree */
#entry .label-agree {
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
}
#entry .label-agree input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: .3s ease-out;
  padding: 3px 0 0;
  margin: 0 6px 0 0;
  text-align: center;
  vertical-align: middle;
}
#entry .label-agree input[type="checkbox"]::before {
  content: '';
  display: inline-block;
  color: #333;
  line-height: 1;
  width: 12px;
  height: 6px;
  border: 1px solid #fafafa;
  border-top: 0;
  border-right: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(-45deg);
}
#entry .label-agree input[type="checkbox"]:checked {
  background: #333;
}

/* -------------------------------
		Submit
------------------------------- */
#submitButtonBox {
  width: 100%;
  padding: 0;
}
#submitButtonBox #submitButton {
  width: 100%;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  background-color: #333;
  ackground-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  padding: 40px 30px;
  cursor: pointer;
  display: block;
}
#submitButtonBox #submitButton[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}


/* ====================================================
		Entry - Check
==================================================== */
/* -------------------------------
		MailFormPro CSS - Reset
------------------------------- */
table#mfp_confirm_table tr.mfp_achroma,
.mfp_achroma,
table#mfp_confirm_table tr.mfp_colored,
.mfp_colored {
  background: none;
}
.mfp_element_submit:hover,.mfp_element_reset:hover,.mfp_element_button:hover,button.mfp_next:hover,button.mfp_prev:hover {
	background: none;
	box-shadow: none;
}
div#mfp_phase_confirm {
  width: 100%;
}

/* -------------------------------
		Title
------------------------------- */
#mfp_phase_confirm_inner {
  width: calc(100% - 50px);
  padding: 0;
}
div#mfp_phase_confirm h4 {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: left;
  padding: 10px 0 40px;
}

/* -------------------------------
		Display
------------------------------- */
table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
  text-align: left;
  font-size: 1.5rem;
  border-top: solid 1px #fafafa;
  padding: 20px 0;
}
table#mfp_confirm_table tr:last-child th,
table#mfp_confirm_table tr:last-child td {
  border-bottom: solid 1px #fafafa;
}
table#mfp_confirm_table tr th {
  width: 30%;
  font-weight: 500;
  font-style: normal;
}
table#mfp_confirm_table tr td {
  width: 70%;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2;
}

/* -------------------------------
		Label
------------------------------- */
form#mailformpro label {
  padding: 0;
  margin: 0;
}
form#mailformpro label.mfp_not_checked {
  padding: 0;
  border: none;
}
form#mailformpro label.mfp_checked {
  padding: 0;
  border: none;
  background-color: none!important;
  box-shadow: none;
}

/* -------------------------------
		Button - Submit
------------------------------- */
.mfp_element_submit, .mfp_element_reset, .mfp_element_button, button.mfp_next, button.mfp_prev {
  border-radius: 4px;
  padding: 30px 50px;
  border: 0;
  color: #fff;
  letter-spacing: .06em;
  font-size: 1.5rem!important;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
div.mfp_buttons {
  width: 100%;
  text-align: left;
  padding: 50px 0;
}
div.mfp_buttons button {
  font-size: 1.5rem!important;
}
.mfp_element_button {
  text-shadow: none;
}
#mfp_button_cancel.mfp_element_button {
  background: #ccc;
}

/* Submit */
.mfp_element_submit {
  background: #333;
  text-shadow: none;
}
div.mfp_buttons button#mfp_button_send {
  width: 300px;
  margin-right: 20px;
  background: #333;
  border: 1px solid #333;
}
div.mfp_buttons button#mfp_button_send:hover {
  opacity: 1;
  background: #333;
}


/* ====================================================
		Footer
==================================================== */
#gFooter {
  background: #fff;
  padding: 200px 100px 35px 100px;
}
#gFooter a {
}

/* -------------------------------
		Company Information
------------------------------- */
#gFooter .companyInformation {
  width: 60%;
}

/* Company Name */
#gFooter .companyInformation p {
  font-size: 1.5rem;
  font-weight: 500;
}

/* Address */
#gFooter .companyInformation address {
  font-size: 1.3rem;
  font-style: normal;
  line-height: 2;
  padding: 15px 0 40px;
}

/* Site Link */
#gFooter .companyInformation ul {
  font-size: 1.4rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
#gFooter .companyInformation ul a {
  display: block;
}
#gFooter .companyInformation ul a span {
  border-bottom: 1px solid #333;
  display: inline-block;
  transition: .3s ease-out;
}
#gFooter .companyInformation ul a:hover span {
  border-bottom: 1px solid #fff;
}

/* -------------------------------
		Footer Navigation
------------------------------- */
#gFooter #fnavi {
  width: 40%;
  padding-bottom: 250px;
}
#gFooter #fnavi li {
  width: 50%;
  padding-bottom: 30px;
}
#gFooter #fnavi li a {
  display: block;
}
#gFooter #fnavi li a strong,
#gFooter #fnavi li a span {
  display: block;
}

/* English */
#gFooter #fnavi li a strong {
  font-size: 1.8rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.02em;
}

/* Japanese */
#gFooter #fnavi li a span {
  font-size: 1rem;
}

/* -------------------------------
		Page Top
------------------------------- */
#pageTop {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 100;
	display: none;
}
#pageTop a {
  display: block;
  padding: 50px;
}
#pageTop a span {
  color: #c6c6c6;
  position: absolute;
}
#pageTop a span::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 1px;
  width: 14px;
  height: 14px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(-45deg);
}

/* -------------------------------
		Copyright
------------------------------- */
#gFooter #copyright {
  font-size: 1.2rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
	display: block;
	text-align: right;
}


/* ====================================================
		Animation
==================================================== */
@keyframes flowing {
  0% { transform: translateX(0)}
  100% { transform: translateX(-100%)}
}

/* ====================================================
		WEB Font
==================================================== */

.font_din-condensed-light {
  font-family: "din-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.font_din-condensed-regular {
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.font_heisei-kaku-gothic-w3 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.font_heisei-kaku-gothic-w5 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.font_ten-mincho {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-style: normal;
}


/* ====================================================
		Entry Thanks
==================================================== */
#thanks {
  position: static;
  padding: 200px 0 0 100px;
}
#thanks p {
  position: static;
  transform: none;
}

/* -------------------------------
    Text
------------------------------- */
#thanks .txt {
  font-size: 1.4rem;
  line-height: 2.4;
  padding-top: 60px;
}

/* -------------------------------
    Button
------------------------------- */
#thanks ul,
#thanks ul li {
  padding: 0;
  margin: 0;
}
#thanks ul {
  padding-top: 30px;
}
#thanks ul li a {
  color: #fff;
  font-size: 1.3rem;
  background: #333;
  padding: 20px 60px;
  display: inline-block;
}


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

   TABLET

======================================================================================================================= */
@media screen and (min-width: 897px) and (max-width: 1299px) {
  .sp { display: none;}
  
  /* ====================================================
      Global Navigation
  ==================================================== */
  /* -------------------------------
      Menu Open
  ------------------------------- */
  #gNavi.panelactive ul {
    width: 50%;
  }
  
  
  /* ====================================================
      Common
  ==================================================== */
  /* -------------------------------
      LayoutA
  ------------------------------- */
  .layoutA {
    padding-left: 100px;
    display: block;
  }
  .layoutA h2 {
    width: 100%;
    padding-bottom: 100px;
  }
  .layoutA div {
    width: 100%;
  }
  
  
  /* ====================================================
      Requirements
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #requirements section dl {
    width: 100%;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #requirements h3 {
    padding-bottom: 40px;
  }
  #requirements .no h3 {
    padding-bottom: 0;
  }
  
  /* -------------------------------
  		Catch Copy
  ------------------------------- */
  #requirements .catch {
    width: 100%;
    -webkit-writing-mode: horizontal-tb;
    -moz-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    padding-bottom: 60px;
  }
  #requirements .catch strong {
    left: 0;
  }
  
  /* No Catch Copy */
  #requirements .no .catch {
    padding: 0;
  }
  
  
  /* ====================================================
      Environment
  ==================================================== */

  /* -------------------------------
      Layout
  ------------------------------- */
  #environment {
    padding: 100px 10px;
  }
  #environment section {
    width: calc(32.8% - 60px);
  }
  #environment section:not(:nth-child(4n)) {
    margin-right: 0;
  }
  #environment section:not(:nth-child(3n)) {
    margin-right: 0.8%;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #environment h3 {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  
  
  /* ====================================================
      Flow
  ==================================================== */
  
  /* -------------------------------
      Layout
  ------------------------------- */
  #flow.layoutA {
    display: flex;
  }
  #flow.layoutA h2 {
    width: calc(30% - 100px);
  }
  #flow.layoutA div {
    width: 60%;
  }
  
  
  /* ====================================================
      Footer
  ==================================================== */
  /* -------------------------------
      Company Information
  ------------------------------- */
  #gFooter .companyInformation {
    width: 100%;
  }
  
  /* -------------------------------
      Footer Navigation
  ------------------------------- */
  #gFooter #fnavi {
    width: 100%;
    padding: 100px 0;
  }
  #gFooter #fnavi li {
    width: 25%;
  }
  
  
  /* ====================================================
      Entry Thanks
  ==================================================== */

  /* -------------------------------
      Catch copy
  ------------------------------- */
  #thanks p strong {
    font-size: 12rem;
  }
  
  /* Japanese */
  #thanks p span {
    font-size: 2rem;
  }
  
  /* -------------------------------
      Text
  ------------------------------- */
  #thanks .txt {
    font-size: 1.3rem;
  }
  
}






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

   MOBILE

======================================================================================================================= */
@media screen and (max-width: 896px) {
  .sp { display: block;}
  .pc { display: none;}
  
  /* ====================================================
      Layout
  ==================================================== */
  main {
    padding-bottom: 150px;
  }

  /* ====================================================
      Header
  ==================================================== */
  /* -------------------------------
      Logo
  ------------------------------- */
  #gHeader #logo {
    width: 150px;
    padding: 20px 0 0 20px;
    position: fixed;
  }
  
  /* ====================================================
      Global Navigation
  ==================================================== */
  /* -------------------------------
      Menu Close
  ------------------------------- */
  #gNavi ul {
    top: 100px;
    right: 20px;
  }
  
  /* -------------------------------
      Menu Open
  ------------------------------- */
  #gNavi.panelactive ul {
    width: calc(100% - 40px);
  }
  #gNavi.panelactive li {
    width: 48%;
  }
  
  /* -------------------------------
      Hamburger Menu Button
  ------------------------------- */
  .openbtn {
    width: 80px;
    height: 50px;
    top: 10px;
    right: 20px;
  }
  /* Close Button */
  .openbtn span:last-child {
    width: 47px;
    top: 28px;
    left: calc(60% + 13px);
  }
  .openbtn.active span:first-child {
    top: 10px;
  }
  .openbtn.active span:last-child {
    top: 24px;
  }
  
  
  /* ====================================================
      Common
  ==================================================== */
  /* -------------------------------
      LayoutA
  ------------------------------- */
  .layoutA {
    padding-left: 20px;
    display: block;
  }
  .layoutA h2 {
    width: 100%;
    padding-bottom: 100px;
  }
  .layoutA div {
    width: 100%;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  h2::before,
  #requirements h3::before {
    width: 4px;
    height: 4px;
    top: 0.3em;
    left: -8px;
  }
  h2 strong {
    font-size: 4rem;
  }
  h2 span {
    font-size: 1.2rem;
  }
  
  
  /* ====================================================
      Main Visual
  ==================================================== */
  /* -------------------------------
      Catch Copy
  ------------------------------- */
  #mainVisual p {
    left: 40px;
  }
  #mainVisual p strong {
    font-size: 6rem;
    line-height: 1.2;
  }
  
  /* Japanese */
  #mainVisual p span {
    font-size: 1.6rem;
    padding-top: 25px;
  }
  
  
  /* ====================================================
      Credo - About
  ==================================================== */
  /* -------------------------------
      Title
  ------------------------------- */
  #about h3 {
    font-size: 2rem;
  }
  
  /* -------------------------------
      Quotation
  ------------------------------- */
  #about p,
  #about blockquote {
    padding: 0 20px 0 40px;
  }
  /* Blockquote */
  #about blockquote {
    padding-bottom: 30px;
  }
  #about blockquote::before {
    width: 14px;
    height: 11px;
    background-size: 14px 11px;
    top: -10px;
    left: 15px;
  }
  #about blockquote p {
    font-size: 1.3rem;
  }
  
  
  /* ====================================================
      Mission / Vision / Value - philosophy
  ==================================================== */

  /* -------------------------------
      Layout
  ------------------------------- */
  #philosophy {
    margin: 100px 0 50px;
    display: block;
  }
  #philosophy article {
    width: 100%;
  }
  #philosophy article:not(:last-child) {
    border-bottom: #333 1px solid;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #philosophy h2 {
    line-height: 1;
    text-align: left;
    padding: 40px 0 40px 20px;
    position: relative;
  }
  #philosophy h2 strong {
    font-size: 2.8rem;
  }
  #philosophy h2 span {
    padding-top: 10px;
  }
  #philosophy .box h3 {
    font-size: 1.4rem;
    padding-bottom: 15px;
  }
  
  /* -------------------------------
      Icon - Plus
  ------------------------------- */
  #philosophy .plus {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  #philosophy .plus::before {
    height: 10px;
  }
  #philosophy .plus::after {
    width: 10px;
  }
  
  /* Close */
  #philosophy .title.close .plus::before {
    top: calc(50% - 5px);
  }
  
  /* -------------------------------
      Accordion
  ------------------------------- */
  #philosophy .box {
    padding: 0 20px 40px;
    margin-top: 0;
  }
  #philosophy .box p {
    line-height: 2;
  }
  
  
  /* ====================================================
      Team
  ==================================================== */

  /* -------------------------------
      Layout
  ------------------------------- */
  #team {
    padding: 100px 20px 0;
  }

  /* -------------------------------
      Title
  ------------------------------- */
  #team h2 {
    padding-bottom: 40px;
  }
  
  
  /* ====================================================
      Skill
  ==================================================== */

  /* -------------------------------
      Layout
  ------------------------------- */
  #team #skill {
    padding-top: 20px;
  }
  #team #skill section {
    padding: 30px 0 25px;
  }

  /* -------------------------------
      Title
  ------------------------------- */
  #team #skill section h3 {
    width: 100%;
    font-size: 2rem;
    padding-bottom: 10px;
  }

  /* -------------------------------
      Detail
  ------------------------------- */
  #team #skill section ul {
    width: 100%;
    font-size: 1.3rem;
  }

  /* -------------------------------
      Attention
  ------------------------------- */
  #team #skill small {
    padding-top: 30px;
  }
  
  
  /* ====================================================
      News
  ==================================================== */

  /* -------------------------------
      Layout
  ------------------------------- */
  #news {
    padding-left: 20px;
    margin-bottom: 120px;
  }
  #news ul {
    width: 100%;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #news h2 {
    width: 100%;
    font-size: 2.8rem;
    padding-bottom: 20px;
  }
  
  /* -------------------------------
      List
  ------------------------------- */
  #news ul li a {
    padding: 20px 20px 20px 0;
  }
  
  /* -------------------------------
      Update Time
  ------------------------------- */
  #news time {
    font-size: 1.2rem;
  }
  
  /* -------------------------------
      New Mark
  ------------------------------- */
  #news span {
    font-size: 1rem;
    padding: 2px 6px 1.5px;
    top: -1px;
  }

  
  /* ====================================================
      Requirements
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #requirements {
    padding-bottom: 150px;
  }
  #requirements section {
    padding: 0 20px;
  }
  #requirements section:not(:last-child) {
    padding-bottom: 80px;
  }
  #requirements section dl {
    width: 100%;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #requirements h2 {
    font-size: 10rem;
  }
  #requirements h3 {
    font-size: 4rem;
    padding-bottom: 40px;
  }
  #requirements .no h3 {
    padding-bottom: 0;
  }
  #requirements h3::before {
    width: 4px;
    height: 4px;
    top: 0.1em;
    left: -8px;
  }
  
  /* -------------------------------
  		Catch Copy
  ------------------------------- */
  #requirements .catch {
    width: 100%;
    -webkit-writing-mode: horizontal-tb;
    -moz-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    padding-bottom: 40px;
  }
  #requirements .catch strong {
    left: 0;
  }
  
  /* No Catch Copy */
  #requirements .no.catch {
    padding: 0;
  }
  
  /* -------------------------------
      Dl
  ------------------------------- */
  #requirements dt,
  #requirements dd {
    width: 100%;
  }
  #requirements dt {
    padding: 30px 0 10px;
  }
  #requirements dd {
    border-top: none;
    padding: 0 0 30px;
  }
  
  /* ====================================================
      Environment
  ==================================================== */

  /* -------------------------------
      Layout
  ------------------------------- */
  #environment {
    padding: 100px 10px;
    margin-bottom: 0;
  }
  #environment::after {
    font-size: 10rem;
  }
  #environment section {
    width: calc(49.2% - 40px);
    padding: 0 20px 20px;
  }
  #environment section:not(:nth-child(4n)) {
    margin-right: 0;
  }
  #environment section:not(:nth-child(2n)) {
    margin-right: 1.6%;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #environment h2 {
    font-size: 10rem;
  }
  #environment h3 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  
  /* ====================================================
      Flow
  ==================================================== */

  /* -------------------------------
      Layout
  ------------------------------- */
  #flow {
    padding: 100px 0 100px 20px;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #flow h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  #flow h3 strong {
    padding-left: 55px;
  }
  
  /* -------------------------------
      Flow Number
  ------------------------------- */
  #flow ol li .num {
    font-size: 1.4rem;
    top: 0.5em;
    left: 15px;
  }
  #flow ol li .num::after {
    width: 40px;
    height: 40px;
    border-radius: 100%;
  }
  
  /* -------------------------------
      Flow Contents
  ------------------------------- */
  #flow p {
    padding: 0 20px 0 55px;
  }
  /* In Box */
  #flow section section {
    padding: 20px 0 0 55px;
  }
  #flow section section p {
    padding: 0;
  }
  
  /* ====================================================
      Entry
  ==================================================== */
  /* -------------------------------
      MailFormPro CSS - Reset
  ------------------------------- */
  form#mailformpro {
    padding-right: 20px;
  }
  form#mailformpro dl dt {
    font-size: 1.3rem;
    padding-bottom: 10px;
  }
  form#mailformpro dl dd {
    padding-bottom: 30px;
  }
  
  /* -------------------------------
      Input
  ------------------------------- */
  #entry textarea,
  #entry input[type="tel"],
  #entry input[type="email"], 
  #entry input[type="text"],
  #entry input[type="url"] {
    font-size: 1.3rem;
    padding: 15px;
  }
  
  /* -------------------------------
      Radio button
  ------------------------------- */
  #entry .radiobutton input[type="radio"] {
    font-size: 1.3rem;
    padding: 18px 0;
  }

  /* Text */
  #entry .radiobutton span {
    width: calc(86% - 40px);
    font-size: 1.3rem;
    padding: 15px 20px;
  }
  
  /* -------------------------------
      Select
  ------------------------------- */
  #entry select {
    font-size: 1.3rem;
    padding: 15px;
  }
  #entry .selectbox::before {
    width: 5px;
    height: 5px;
    top: calc(20px + 0.3em);
    right: 30px;
  }
  
  /* -------------------------------
      Layout
  ------------------------------- */
  #entry::before {
    font-size: 10rem;
    left: -30px;
    margin-bottom: 0;
  }
  
  
  /* ====================================================
      Entry - Check
  ==================================================== */
  /* -------------------------------
      Title
  ------------------------------- */
  #mfp_phase_confirm_inner {
    width: calc(100% - 20px);
  }
  div#mfp_phase_confirm h4 {
    font-size: 1.4rem;
  }
  
  /* -------------------------------
      Display
  ------------------------------- */
  table#mfp_confirm_table tr th,
  table#mfp_confirm_table tr td {
    width: 100%;
    font-size: 1.3rem;
    display: block;
  }
  table#mfp_confirm_table tr th {
    padding-bottom: 0;
  }
  table#mfp_confirm_table tr td {
    padding-top: 10px;
  }
  
  /* -------------------------------
      Button
  ------------------------------- */
  div.mfp_buttons button#mfp_button_send {
    width: 100%;
    margin: 0;
  }
  #mfp_button_cancel.mfp_element_button {
    width: 100%;
  }

  
  /* ====================================================
      Footer
  ==================================================== */
  #gFooter {
    padding: 100px 20px 20px;
  }
  
  /* -------------------------------
      Company Information
  ------------------------------- */
  #gFooter .companyInformation {
    width: 100%;
  }
  
  /* -------------------------------
      Footer Navigation
  ------------------------------- */
  #gFooter #fnavi {
    width: 100%;
    padding: 100px 0 40px;
  }
  #gFooter #fnavi li {
    width: 50%;
    padding-bottom: 20px;
  }
  
  /* -------------------------------
      Copyright
  ------------------------------- */
  #gFooter #copyright {
    text-align: left;
  }
  
  
  /* ====================================================
      Entry Thanks
  ==================================================== */
  #thanks {
    padding: 100px 20px 0;
  }
  /* -------------------------------
      Catch Copy
  ------------------------------- */
  #thanks p {
    left: 40px;
  }
  #thanks p strong {
    font-size: 5rem;
    line-height: 1.2;
  }
  
  /* Japanese */
  #thanks p span {
    font-size: 1.4rem;
    padding-top: 25px;
  }
  
  /* -------------------------------
      Text
  ------------------------------- */
  #thanks .txt {
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0.01em;
  }
  
  /* -------------------------------
      Button
  ------------------------------- */
  #thanks ul li a {
    text-align: center;
    display: block;
    padding: 15px 0 13px;
  }

}







