@charset "utf-8";

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

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



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

   WIDE DESKTOP LAYOUT

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

/* ====================================================
		Layout
==================================================== */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .08em;
}
.row {
  padding: 0 10%;
  margin: 0 auto;
}

/* -------------------------------
		Selection
------------------------------- */
::selection {
  background: #CCDDC5;
}




/* ====================================================
		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: 200px;
}

/* -------------------------------
		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%;
	position: absolute;
	top: 0;
	left: 0;
}

/* -------------------------------
		Logo
------------------------------- */
#gHeader #logo {
  width: 210px;
	position: relative;
  top: 70px;
  left: 60px;
	z-index: 1002;
}
#gHeader #logo a {
  width: 210px;
	display: block;
}

/* -------------------------------
		Contact Button
------------------------------- */
#headContact {
  position: absolute;
  top: 65px;
  right: 140px;
  z-index: 100;
}
#headContact a {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: right;
  border: 1px solid #fff;
  border-radius: 100px;
  display: block;
  padding: 8px 30px;
}
#headContact a:hover {
  background: rgb(0,0,0,.1);
}

/* -------------------------------
		Global Navigation - Hamburger
------------------------------- */
#gNaviHamburger {
  position: fixed;
  z-index: 999;
  top: -140%;
  right: 0;
  width: 50%;
  height: 100vh;
  background: rgb(245, 245, 245);
  transition: all 0.6s;
}
#gNaviHamburger.panelactive {
  top: 0;
  z-index: 9999;
}
#gNaviHamburger #gNavi-list {
  position: fixed;
  z-index: 999; 
  width: 50%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#gNaviHamburger div {
  width: 60%;
  display: flex;
  margin: auto;
}
#gNaviHamburger #gNavi-list div {
  display: block;
  padding: 30px 0;
}
#gNaviHamburger ul {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 0;
}

/* List */
#gNaviHamburger li {
  overflow: hidden;
}
#gNaviHamburger li:not(:last-child) {
  border-bottom: 2px dashed rgb(245, 245, 245);
}
#gNaviHamburger li a {
  color: #333;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.1em;
  transform: translateY(100%);
  padding: 20px 10%;
  position: relative;
  display: block;
}
#gNaviHamburger li a:hover {
  color: #fff;
  opacity: 1;
}
#gNaviHamburger li a::after {
  content: '';
  position: absolute;
  bottom: calc(51% - 1px);
  left: 2%;
  width: 96%;
  height: 88%;
  background: #109519;
  border-radius: 6px;
  transition: all .3s;
  transform: scale(0.9, 1) translateY(50%);
  transform-origin: center top;
  z-index: 0;
  opacity: 0;
}
#gNaviHamburger li a:hover::after {
  transform: scale(1, 1) translateY(50%);
  opacity: 1;
}
#gNaviHamburger li a strong,
#gNaviHamburger li a span {
  width: 100%;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
#gNaviHamburger li a strong {
  font-weight: 700;
}
#gNaviHamburger li a span {
  font-size: 1.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  display: block;
  padding: 0;
}

/* Banner */
#gNaviHamburger .bn {
  width: 100%;
}

/* Animation */
.slideAnimeDownUp {
  animation-name: slideTextY100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: .5s;
}
@keyframes slideTextY100 {
  from { transform: translateY(100%);}
  to   { transform: translateY(0);}
}

/* Hamburger Menu - Button */
.openbtn {
  width: 60px;
  height: 60px;
  background: #109519;
  border-radius: 40px;
	position: fixed;
  z-index: 10000;
	top: 50px;
	right: 50px;
	cursor: pointer;
  transition: all .3s;
}
.openbtn:hover {
  transform: scale(1.1, 1.1);
}
	
/* If - × */	
.openbtn span {
  width: 20px;
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 20px;
  height: 1px;
  background-color: #fff;
  transform: rotate(4deg);
}
.openbtn span:nth-of-type(1) { top: 25px;}
.openbtn span:nth-of-type(2) { top: 31px;}
.openbtn span:nth-of-type(3) { top: 37px;}

.openbtn.active {
  background: #fff;
}
.openbtn.active span {
  background-color: #141414;
}
.openbtn.active span:nth-of-type(1) {
  top: 24px;
  left: 21px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 36px;
  left: 21px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* If - Up */
#logo.upMove {
  animation: upAnime 0.5s forwards;
}
@keyframes upAnime {
  from {
    opacity: 1;
  	transform: translateY(0);
  }
  to {
    opacity: 0;
  	transform: translateY(-100px);
  }
}
#logo.downMove {
	animation: downAnime 0.5s forwards;
}
@keyframes downAnime{
  from {
  	opacity: 0;
  	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
  	transform: translateY(0);
  }
}

/* Banner - Recruit */
#gNaviHamburger .bn {
  padding-top: 10px;
}
#gNaviHamburger .bn a {
  color: #fff;
  width: calc(100% - 20% - 8px);
  background: url("../img_common/bn_gnavi_recruit.jpg") no-repeat center center / cover;
  border: 4px solid #fff;
  border-radius: 10px;
  display: block;
  padding: 30px 10%;
  position: relative;
}
#gNaviHamburger .bn a span {
  position: relative;
  z-index: 2;
}
#gNaviHamburger .bn a::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(0,0,0,.4);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: .3s;
}
#gNaviHamburger .bn a:hover {
  opacity: 1;
}
#gNaviHamburger .bn a:hover::after {
  background: rgb(0,0,0,.2);
}




/* ====================================================
		Page Path
==================================================== */
#pagePath {
  text-align: right;
  display: flex;
	flex-wrap: wrap;
  justify-content: flex-end;
  padding: 10px 60px 20px;
}
#pagePath li {
  font-size: 1.3rem;
	position: relative;
}
#pagePath li a {
  border-bottom: 1px solid #fff;
  opacity: .3;
}
#pagePath li a:hover {
  border-bottom: 1px solid #333;
}
#pagePath li:not(:last-child)::after {
  content: '/';
  position: relative;
  top: 0;
  right: 0;
  opacity: .3;
  padding: 0 5px;
}




/* ====================================================
		Subpage - Main Visual
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#main {
  width: calc(100% - 20px);
  margin: 10px auto;
  position: relative;
}

/* -------------------------------
		Main Visual
------------------------------- */
#main p {
  position: relative;
  z-index: 0;
}
#main p::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(204,204,204,1);
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
#main img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* -------------------------------
		Page Title
------------------------------- */
#main h1 {
  position: absolute;
  bottom: 50px;
  left: 100px;
  z-index: 1;
}

/* English */
#main h1 span,
#main h1 strong {
  display: block;
}
#main h1 span {
  color: #fff;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: .1em;
  position: relative;
}
#main h1 span::before,
#main h1 span::after {
  font-size: 1.5rem;
  font-weight: 400;
}
#main h1 span::before {
  content: '(';
  padding-right: 10px;
}
#main h1 span::after {
  content: ')';
  padding-left: 10px;
}

/* Japanese */
#main h1 strong {
  color: #fff;
  font-size: 7.4rem;
  font-weight: 400;
  line-height: 1.4;
}




/* ====================================================
		Contents
==================================================== */
/* -------------------------------
		Title
------------------------------- */
#contents .title {
  padding-bottom: 70px;
}

/* Japanese */
#contents .title strong {
  font-size: 3.8rem;
  font-weight: 500;
  display: block;
}

/* English */
#contents .title span {
  color: #109519;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  position: relative;
  display: inline;
  padding: 0 14px;
}
#contents .title span::before,
#contents .title span::after {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#contents .title span::before {
  content: '（';
  left: -10px;
}
#contents .title span::after {
  content: '）';
  right: -10px;
}

/* -------------------------------
		Images
------------------------------- */
#contents article .photo img {
  border-radius: 10px;
}

/* -------------------------------
		Button
------------------------------- */
#contents .btn {
  text-align: center;
  padding-top: 100px;
}
#contents .btn a {
  color: #fff;
  background: #109519;
  border-radius: 100px;
  padding: 30px 40px 30px 100px;
  display: inline-block;
  position: relative;
}
#contents .btn a::before,
#contents .btn a span::before,
#contents .btn a span::after {
  content: '';
  position: absolute;
}

/* Icon - Box */
#contents .btn a::before {
  width: 50px;
  height: 28px;
  background: #fff;
  border: 1px solid #109519;
  border-radius: 100px;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 0;
  transition: .3s;
}

/* Icon - Arrow */
#contents .btn a span {
  position: relative;
}
#contents .btn a span::before {
  width: 12px;
  height: 1px;
  background-color: #109519;
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  transition: .3s;
}
#contents .btn a span::after {
  width: 5px;
  height: 5px;
  top: calc(50% - 1px);
  left: -46px;
  border-top: solid 1px #109519;
  border-right: solid 1px #109519;
  transform: rotate(45deg) translateY(-50%);
  transition: .3s;
}
#contents .btn a:hover {
  background: #fff;
  opacity: 1;
}
#contents .btn a:hover::before {
  border: 1px solid #fff;
  background: none;
}
#contents .btn a:hover span::before {
  background-color: none;
}
#contents .btn a:hover span::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}

/* White Type */
#contents .btn.white a {
  color: #333;
  background: #fff;
}
#contents .btn.white a::before {
  border: 1px solid #109519;
  background: #109519;
}
#contents .btn.white a span::before {
  background-color: #fff;
}
#contents .btn.white a span::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
#contents .btn.white a:hover::before {
  background: #fff;
}
#contents .btn.white a:hover span::before {
  background-color: #109519;
}
#contents .btn.white a:hover span::after {
  border-top: solid 1px #109519;
  border-right: solid 1px #109519;
}



/* ====================================================
		Aside
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
aside {
  padding-top: 350px;
}
aside ul {
  text-align: center;
  border-top: 1px solid rgb(51,51,51,.1);
  border-bottom: 1px solid rgb(51,51,51,.1);
}
aside ul li {
  width: 50%;
}
aside ul li:first-child {
  width: calc(50% - 1px);
  border-right: 1px solid rgb(51,51,51,.1);
}
aside ul li a {
  color: #109519;
  padding: 30px;
  display: block;
}
aside ul li a:hover {
  opacity: 1;
}

/* -------------------------------
		Photo
------------------------------- */
aside ul li a img {
  border-radius: 10px;
}
aside ul li a:hover img {
  opacity: 1;
}

/* -------------------------------
		English
------------------------------- */
aside ul li a .english {
  color: #109519;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-bottom: 15px;
  display: block;
}
aside ul li a .english::before,
aside ul li a .english::after {
  font-size: 1.5rem;
  font-weight: 400;
}
aside ul li a .english::before {
  content: '(';
  padding-right: 10px;
}
aside ul li a .english::after {
  content: ')';
  padding-left: 10px;
}

/* -------------------------------
		Japanese
------------------------------- */
aside ul li a p {
  font-size: 2rem;
  margin-top: 30px;
  position: relative;
}
aside ul li a p::after {
  content: '';
  width: 50px;
  height: 28px;
  background: #109519;
  border: 1px solid #109519;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
  transition: .3s;
}

/* Hover */
aside ul li a:hover p::after {
  background: none;
}

/* -------------------------------
		Arrow
------------------------------- */
aside ul li a p span {
  position: relative;
  display: block;
}
aside ul li a p span::before,
aside ul li a p span::after {
  content: '';
  position: absolute;
  z-index: 1;
  transition: .3s;
}
aside ul li a p span::before {
  width: 12px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
aside ul li a p span::after {
  width: 5px;
  height: 5px;
  top: calc(50% - 1px);
  right: 22px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translateY(-50%);
}

/* Hover */
aside ul li a:hover p span::before {
  background-color: #109519;
}
aside ul li a:hover p span::after {
  border-top: solid 1px #109519;
  border-right: solid 1px #109519;
}



/* ====================================================
		Footer
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#gFooter {
  padding-top: 140px;
}
#gFooter a {
}

/* -------------------------------
		Contact
------------------------------- */
#gFooter #contact,
#gFooter #contact a div {
  position: relative;
}
#gFooter #contact a {
  color: #fff;
  background: #109519;
  border-radius: 10px;
  display: block;
  margin: 0 10px;
  padding: 130px 100px;
  z-index: 0;
  position: relative;
}
#gFooter #contact a:hover {
  opacity: 1;
}

/* Background - Gray */
#gFooter #contact::after {
  content: '';
  width: calc(100% + 20px);
  height: 50%;
  background: rgb(51,51,51,.05);
  position: absolute;
  bottom: 0;
  left: -10px;
  z-index: -1;
}

/* Background - Circle */
#gFooter #contact a div::before {
  content: '';
  width: 260px;
  height: 260px;
  border: 1px solid #fff;
  border-radius: 130px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: block;
  opacity: .3;
  z-index: 1;
  transition: .5s;
}
#gFooter #contact a:hover div::before {
  top: calc(50% + 10px);
  transform: scale(1.1) translateY(-50%);
}

/* Arrow */
#gFooter #contact a::before,
#gFooter #contact a::after {
  content: '';
  position: absolute;
  z-index: 1;
}
#gFooter #contact a::before {
  width: 12px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 235px;
  transform: translateY(-50%);
}
#gFooter #contact a::after {
  width: 5px;
  height: 5px;
  top: calc(50% - 1px);
  right: 236px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translateY(-50%);
}

/* Title */
#gFooter #contact a .title {
  padding-bottom: 50px;
}
#gFooter #contact a .title strong,
#gFooter #contact a .title span {
  display: block;
}
#gFooter #contact a .title strong {
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: .08em;
  line-height: 1.5;
}
#gFooter #contact a .title span {
  font-size: 1.6rem;
}

/* Lead Text */
#gFooter #contact a .txt {
  font-size: 2rem;
}

/* -------------------------------
		Footer Information
------------------------------- */
#footerInformation {
  background: rgb(51,51,51,.05);
  padding: 140px 100px 0 60px;
  margin: 0 auto;
}

/* -------------------------------
		Footer Company
------------------------------- */
#footerCompany {
  width: 50%;
}

/* -------------------------------
		Logo
------------------------------- */
#flogo {
  width: 286px;
  padding-bottom: 50px;
}
#flogo a {
  display: block;
}

/* -------------------------------
		Company Name
------------------------------- */
#footerCompany .companyName {
  font-size: 1.6rem;
  padding-bottom: 15px;
}

/* -------------------------------
		Address
------------------------------- */
#footerCompany address {
  font-size: 1.3rem;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: .05em;
}

/* Google Map Link */
#footerCompany address a.map {
  border-bottom: 1px solid #333;
}
#footerCompany address a.map:hover {
  border-bottom: 1px solid #f5f5f5;
  opacity: 1;
}

/* -------------------------------
		Footer Navigation
------------------------------- */
#footerNavigation {
  width: 50%;
}

/* List */
#footerNavigation ul {
  width: 50%;
}
#footerNavigation ul li:not(:last-child) {
  padding-bottom: 20px;
}
#footerNavigation ul li a {
  display: block;
}
#footerNavigation ul li a strong,
#footerNavigation ul li a span {
  line-height: 1.2;
  display: block;
}

/* English */
#footerNavigation ul li a strong {
  color: #109519;
  font-size: 2.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: .05em;
}

/* Japanese */
#footerNavigation ul li a span {
  font-size: 1.3rem;
  letter-spacing: 0;
}

/* -------------------------------
		Footer Recruit
------------------------------- */
#footerRecruit {
  width: 50%;
}

/* Link */
#footerRecruit a:hover {
  opacity: 1;
}

/* Photo */
#footerRecruit a .photo {
  position: relative;
  padding-bottom: 15px;
}
#footerRecruit a .photo img {
  border-radius: 10px;
  position: relative;
  z-index: 0;
}
#footerRecruit a:hover .photo img {
  opacity: .6;
}

/* English */
#footerRecruit a .photo .english {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#footerRecruit a .photo .english::before,
#footerRecruit a .photo .english::after {
  font-size: 1.5rem;
  font-weight: 400;
}
#footerRecruit a .photo .english::before {
  content: '(';
  padding-right: 10px;
}
#footerRecruit a .photo .english::after {
  content: ')';
  padding-left: 10px;
}

/* Japanese */
#footerRecruit a .txt {
  font-size: 1.8rem;
  position: relative;
}

/* Button - Arrow */
#footerRecruit a .txt::after {
  content: '';
  width: 50px;
  height: 28px;
  background: #109519;
  border: solid 1px #109519;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
  transition: .3s;
}
#footerRecruit a .txt span {
  position: relative;
  display: block;
}
#footerRecruit a .txt span::before,
#footerRecruit a .txt span::after {
  content: '';
  position: absolute;
  z-index: 1;
  transition: .3s;
}
#footerRecruit a .txt span::before {
  width: 12px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#footerRecruit a .txt span::after {
  width: 5px;
  height: 5px;
  top: calc(50% - 1px);
  right: 22px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translateY(-50%);
}
#footerRecruit a:hover .txt::after {
  background: none;
}
#footerRecruit a:hover .txt span::before {
  background-color: #109519;
}
#footerRecruit a:hover .txt span::after {
  border-top: solid 1px #109519;
  border-right: solid 1px #109519;
}

/* -------------------------------
		Footer Other Text
------------------------------- */
#footerOtherText {
  background: rgb(51,51,51,.05);
  padding: 100px 100px 30px 60px;
  justify-content: flex-end;
  align-items: baseline;
}

/* Privacy Policy */
#footerOtherText ul li a {
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: right;
}

/* -------------------------------
		Copyright
------------------------------- */
#copyright {
  font-size: .9rem;
  line-height: 1.3;
  padding-left: 20px;
}




/* ====================================================
		Page Top
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#pageTop {
  width: 70px;
  font-size: 1rem;
  font-family: new-order, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  background: #fff;
  border-radius: 20px 0 0;
	position: fixed;
	bottom: 0;
	right: 0;
	opacity: 0;
	transform: translateY(100px);
  cursor: pointer;
  z-index: 999;
}
#pageTop::before {
  content: '';
  width: 1em;
  height: 1em;
  color: #1a1a1a;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-50%) translateY(25%) rotate(-45deg);
  position: absolute;
  top: 25px;
  left: 50%;
}

/* -------------------------------
		Animation
------------------------------- */
#pageTop.pageUpMove {
	animation: pageUpAnime 0.5s forwards;
}
@keyframes pageUpAnime {
  from {
    opacity: 0;
  	transform: translateY(100px);
  }
  to {
    opacity: 1;
  	transform: translateY(0);
  }
}
#pageTop.pageDownMove {
	animation: pageDownAnime 0.5s forwards;
}
@keyframes pageDownAnime {
  from {
  	opacity: 1;
  	transform: translateY(0);
  }
  to {
  	opacity: 1;
  	transform: translateY(100px);
  }
}

/* -------------------------------
    Link
------------------------------- */
#pageTop a {
  text-align: center;
	display: block;
  padding: 40px 0 20px;
}
@media all and (min-width: 897px) {
	#pageTop a:hover {
		opacity: 0.6;
	}
}




/* ====================================================
		WEB Font
==================================================== */
.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.montserrat,
.english {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}











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

   TABLET

======================================================================================================================= */
@media screen and (min-width: 897px) and (max-width: 1299px) {
  .sp { display: none;}
  
  /* ====================================================
      Subpage - Main Visual
  ==================================================== */
  /* -------------------------------
      Page Title
  ------------------------------- */
  /* Japanese */
  #main h1 strong {
    font-size: 5.4rem;
  }
  
  
  
  
  /* ====================================================
      Contents
  ==================================================== */
  /* -------------------------------
      Title
  ------------------------------- */
  #contents .title {
    padding: 0 6% 70px;
  }
  
  
  
  
  /* ====================================================
      Aside
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  aside {
    padding-top: 250px;
  }
  
  /* -------------------------------
      Japanese
  ------------------------------- */
  aside ul li a p {
    font-size: 1.8rem;
  }
  
  


  /* ====================================================
      Footer
  ==================================================== */
  /* -------------------------------
      Contact
  ------------------------------- */
  #gFooter #contact a {
    padding: 100px 80px;
  }
  
  /* Background - Circle */
  #gFooter #contact a div::before {
    width: 200px;
    height: 200px;
  }
  
  /* Arrow */
  #gFooter #contact a::before {
    right: 185px;
  }
  #gFooter #contact a::after {
    right: 186px;
  }
  
  /* Title */
  #gFooter #contact a .title {
    padding-bottom: 30px;
  }
  #gFooter #contact a .title strong {
    font-size: 5rem;
  }
  #gFooter #contact a .title span {
    font-size: 1.4rem;
  }

  /* Lead Text */
  #gFooter #contact a .txt {
    font-size: 1.6rem;
  }
  
  /* -------------------------------
      Logo
  ------------------------------- */
  #flogo {
    padding-bottom: 40px;
  }
  
  /* -------------------------------
      Footer Navigation
  ------------------------------- */
  /* English */
  #footerNavigation ul li a strong {
    font-size: 2rem;
  }
  
  /* Japanese */
  #footerNavigation ul li a span {
    font-size: 1.2rem;
  }
  
  /* -------------------------------
      Footer Recruit
  ------------------------------- */
  /* Japanese */
  #footerRecruit a .txt {
    font-size: 1.4rem;
  }
  
  
  
}













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

   MOBILE

======================================================================================================================= */
@media screen and (max-width: 896px) {
  .sp { display: block;}
  .pc { display: none;}
  
  /* ====================================================
      Layout
  ==================================================== */
  .row {
    padding: 0 6%;
  }
  
  
  
  
  /* ====================================================
      Splash
  ==================================================== */
  /* -------------------------------
      Logo
  ------------------------------- */
  #splash_logo img {
    width: 120px;
  }
  
  
  
  
  /* ====================================================
      Header
  ==================================================== */
	#gHeader {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
	}
  
  /* -------------------------------
      Logo
  ------------------------------- */
	#gHeader #logo {
    width: 150px;
    top: 28px;
    left: 30px;
	}
  #gHeader #logo a {
    width: 150px;
  }
  
  /* -------------------------------
      Contact Button
  ------------------------------- */
  #headContact {
    display: none;
  }
  
  /* -------------------------------
      Global Navigation - Hamburger
  ------------------------------- */
  #gNaviHamburger {
    width: 100%;
  }
  #gNaviHamburger #gNavi-list {
    width: 100%;
  }
  #gNaviHamburger div {
    width: 80%;
  }
  
  /* List */
  #gNaviHamburger li a {
    font-size: 1.6rem;
    padding: 14px 10%;
  }
  #gNaviHamburger li a:hover {
    color: #333;
    opacity: 1;
  }
  #gNaviHamburger li a::after {
    content: none;
  }
  #gNaviHamburger li a span {
    font-size: 1.1rem;
  }
  
  /* Banner - Recruit */
  #gNaviHamburger .bn a span {
    font-size: 1.3rem;
  }
  #gNaviHamburger .bn a:hover::after {
    background: rgb(0,0,0,.4);
  }
  
  /* Hamburger Menu - Button */
  .openbtn {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
  }
  
  /* If - × */	
  .openbtn span {
    width: 16px;
    left: 12px;
  }
  .openbtn span:nth-of-type(1) { top: 15px;}
  .openbtn span:nth-of-type(2) { top: 20px;}
  .openbtn span:nth-of-type(3) { top: 25px;}

  .openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 14px;
  }
  .openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 14px;
  }
  
  
  
  
  /* ====================================================
      Page Path
  ==================================================== */
  #pagePath {
    display: none;
  }
  
  

  
  /* ====================================================
      Subpage - Main Visual
  ==================================================== */
  /* -------------------------------
      Page Title
  ------------------------------- */
  #main h1 {
    bottom: 15px;
    left: 20px;
  }

  /* English */
  #main h1 span {
    font-size: 1rem;
  }
  #main h1 span::before,
  #main h1 span::after {
    font-size: 1.2rem;
  }
  #main h1 span::before {
    padding-right: 6px;
  }
  #main h1 span::after {
    padding-left: 6px;
  }

  /* Japanese */
  #main h1 strong {
    font-size: 2rem;
  }
  
  
  
  
  /* ====================================================
      Contents
  ==================================================== */
  /* -------------------------------
      Title
  ------------------------------- */
  #contents .title {
    padding: 0 0 30px;
  }
  
  /* Japanese */
  #contents .title strong {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  /* English */
  #contents .title span {
    font-size: 1rem;
    padding: 0 8px;
    margin-left: 4px;
  }
  #contents .title span::before,
  #contents .title span::after {
    font-size: 1.3rem;
  }

  /* -------------------------------
      Images
  ------------------------------- */
  #contents article .photo img {
    border-radius: 5px;
  }
  
  /* -------------------------------
      Button
  ------------------------------- */
  #contents .btn {
    padding-top: 60px;
  }
  #contents .btn a {
    padding: 15px 10px 15px 50px;
    display: block;
  }
  #contents .btn a span {
    display: block;
  }
  
  /* Icon - Box */
  #contents .btn a::before {
    width: 40px;
    height: 24px;
  }
  
  /* Icon - Arrow */
  #contents .btn a span::before {
    width: 10px;
    left: -5px;
  }
  #contents .btn a span::after {
    left: -3px;
  }
  
  
  
  /* ====================================================
      Aside
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  aside {
    padding-top: 150px;
  }
  aside ul li a {
    padding: 10px 10px 15px;
  }
  
  /* -------------------------------
      Photo
  ------------------------------- */
  aside ul li a img {
    border-radius: 5px;
  }
  
  /* -------------------------------
      English
  ------------------------------- */
  aside ul li a .english {
    font-size: 1rem;
    padding-bottom: 10px;
  }
  aside ul li a .english::before,
  aside ul li a .english::after {
    font-size: 1.2rem;
    font-weight: 400;
  }
  aside ul li a .english::before {
    padding-right: 6px;
  }
  aside ul li a .english::after {
    padding-left: 6px;
  }

  /* -------------------------------
      Japanese
  ------------------------------- */
  aside ul li a p {
    font-size: 1.2rem;
    margin-top: 15px;
    padding-right: 30px;
  }
  aside ul li a p::after {
    width: 24px;
    height: 24px;
  }

  /* -------------------------------
      Arrow
  ------------------------------- */
  aside ul li a p span::before {
    width: 10px;
    right: -22px;
  }
  aside ul li a p span::after {
    right: -20px;
  }
  
  
  
  
  /* ====================================================
      Footer
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #gFooter {
    padding-top: 50px;
  }
  
  /* -------------------------------
      Contact
  ------------------------------- */
  #gFooter #contact a {
    border-radius: 5px;
    padding: 25px 30px;
  }
    
  /* Background - Circle */
  #gFooter #contact a div::before {
    width: 40px;
    height: 40px;
    right: -2px;
  }
  #gFooter #contact a:hover div::before {
    top: 50%;
    transform: scale(1) translateY(-50%);
  }
  
  /* Arrow */
  #gFooter #contact a::before {
    width: 10px;
    right: 45px;
  }
  #gFooter #contact a::after {
    right: 46px;
  }
  
  /* Title */
  #gFooter #contact a .title {
    padding-bottom: 20px;
  }
  #gFooter #contact a .title strong {
    font-size: 2.2rem;
  }
  #gFooter #contact a .title span {
    font-size: 1.1rem;
  }

  /* Lead Text */
  #gFooter #contact a .txt {
    font-size: 1.2rem;
    padding-right: 60px;
  }
  
  /* -------------------------------
      Footer Information
  ------------------------------- */
  #footerInformation {
    padding: 50px 10% 0;
  }
  
  /* -------------------------------
      Footer Company
  ------------------------------- */
  #footerCompany {
    width: 100%;
  }
  
  /* -------------------------------
      Logo
  ------------------------------- */
  #flogo {
    width: 210px;
    padding-bottom: 20px;
  }
  
  /* -------------------------------
      Company Name
  ------------------------------- */
  #footerCompany .companyName {
    font-size: 1.4rem;
    padding-bottom: 6px;
  }
  
  /* -------------------------------
      Footer Navigation
  ------------------------------- */
  #footerNavigation {
    width: 100%;
  }
  
  /* List */
  #footerNavigation ul {
    width: 100%;
    padding: 30px 0;
  }
  #footerNavigation ul li:not(:last-child) {
    padding-bottom: 15px;
  }
  
  /* English */
  #footerNavigation ul li a strong {
    font-size: 2rem;
  }
  
  /* Japanese */
  #footerNavigation ul li a span {
    font-size: 1.2rem;
  }
  
  /* -------------------------------
      Footer Recruit
  ------------------------------- */
  #footerRecruit {
    width: 100%;
  }
  
  /* Photo */
  #footerRecruit a .photo img {
    border-radius: 5px;
  }
  
  /* English */
  #footerRecruit a .photo .english {
    font-size: 1rem;
  }
  #footerRecruit a .photo .english::before,
  #footerRecruit a .photo .english::after {
    font-size: 1.2rem;
  }
  
  /* Japanese */
  #footerRecruit a .txt {
    font-size: 1.3rem;
  }
  
  /* Button - Arrow */
  #footerRecruit a .txt::after {
    width: 40px;
    height: 24px;
  }
  #footerRecruit a .txt span::before {
    width: 10px;
    right: 16px;
  }
  #footerRecruit a .txt span::after {
    right: 18px;
  }
  
  /* -------------------------------
      Footer Other Text
  ------------------------------- */
  #footerOtherText {
    padding: 80px 0 30px;
    display: block;
  }
  
  /* Privacy Policy */
  #footerOtherText ul {
    padding-bottom: 10px;
  }
  #footerOtherText ul li a {
    font-size: 1.2rem;
    text-align: left;
    padding-left: 10%;
  }
  
  /* -------------------------------
      Copyright
  ------------------------------- */
  #copyright {
    padding-left: 10%;
  }
  
  
  
  
  /* ====================================================
		Page Top
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #pageTop {
    display: none;
  }
  
  
  
  

}