@charset "utf-8";

/* ++++++++++++++++++++++++++++++++++++++
   File: common.css
   Update: 2026-03-06
   (c)kobako design
++++++++++++++++++++++++++++++++++++++ */



/* ////////////////////////////////////////////////////////////////////////

   PC

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

/* ====================================================
		Layout
==================================================== */
body {
  color: #262423;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.row {
  max-width: 1100px;
  padding: 0 4%;
  margin: 0 auto;
}

/* -------------------------------
		Selection
------------------------------- */
::selection {
  color: #fff;
  background: #262423;
}


/* ====================================================
		Header
==================================================== */
#gHeader {
	width: calc(100% - 40px - 20px);
  background: #fff;
  border-radius: 3px;
	position: fixed;
	top: 20px;
	left: 20px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  z-index: 9999;
}

/* -------------------------------
		Logo
------------------------------- */
#gHeader #logo {
  width: 234px;
  margin: auto 0 auto 20px;
}
#gHeader #logo a {
}

/* -------------------------------
		Global Navigation
------------------------------- */
#gNavi {
	width: calc(100% - 234px - 20px);
}
#gNavi ul {
  display: flex;
  align-items: center;
	justify-content: flex-end;
}
#gNavi ul li {
  width: auto;
  position: relative;
}
#gNavi ul li a {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .06em;
	display: block;
	position: relative;
  padding: 10px;
}
#gNavi ul li a:hover {
  color: #de3e21;
  opacity: 1;
}
#gNavi ul li.g_contact {
  margin-left: 20px;
}
#gNavi ul li.g_contact a {
  color: #fff;
  font-weight: 400;
  background: #de3e21;
  border-radius: 3px;
  padding: 16px 30px;
}
#gNavi ul li.g_contact a:hover {
  background: #fdd000;
}

/* Dropdown Menu ------------- */
#gNavi ul ul {
  display: block;
}
#gNavi ul li.has-child::before {
	content: '';
  width: 4px;
	height: 4px;
  border-top: 1px solid #de3e21;
  border-right: 1px solid #de3e21;
	position: absolute;
  top: calc(10px + 0.2em);
	right: 10px;
  transform: rotate(135deg);
}
#gNavi li.has-child ul {
  width: 130px;
	background: #fff;
  border-radius: 3px;
  filter: drop-shadow(0 0 10px rgb(0,0,0,0.08));
	visibility: hidden;
  position: absolute;
	left: 0;
	top: calc(20px + 0.8em);
	opacity: 0;
	transition: all .3s;
  z-index: 4;
}
#gNavi li.has-child ul li a {
  font-size: 1.2rem;
  font-weight: 400;
}
#gNavi li.has-child ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
#gNavi ul li.has-child a {
  padding-right: 20px;
}

/* Hover */
#gNavi li.has-child:hover > ul,
#gNavi li.has-child ul li:hover > ul,
#gNavi li.has-child:active > ul,
#gNavi li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
#gNavi li.has-child ul li a:hover {
  color: #262423;
  background: #fdd000;
}
#gNavi li.has-child ul li:first-child a:hover {
  border-radius: 3px 3px 0 0;
}
#gNavi li.has-child ul li:last-child a:hover {
  border-radius: 0 0 3px 3px;
}
#gNavi ul li.has-child:nth-child(2) ul li a:hover {
  border-radius: 3px;
}

/* -------------------------------
		Global Navigation - Hamburger
------------------------------- */
#gNaviHamburger {
  position: fixed;
  z-index: 999;
  top: -150%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #182a56;
  transition: all 0.6s;
}
#gNaviHamburger.panelactive {
  top: 0;
  z-index: 9999;
}
#gNaviHamburger #gNavi-list {
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#gNaviHamburger div {
  width: 50%;
  display: flex;
  margin: auto;
}
#gNaviHamburger ul {
  width: 100%;
  padding: 50px 0;
}

/* List */
#gNaviHamburger li {
  overflow: hidden;
}
#gNaviHamburger li a {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.05em;
  transform: translateY(100%);
  padding: 10px 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#gNaviHamburger li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: .2;
  z-index: 2;
}
#gNaviHamburger li a strong,
#gNaviHamburger li a span {
  width: 50%;
}
#gNaviHamburger li a strong {
  font-weight: normal;
}
#gNaviHamburger li a span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
  padding: 1em 0 0;
}

/* 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: #de3e21;
  border-radius: 40px;
	position: fixed;
  z-index: 10000;
	top: 35px;
	right: 35px;
	cursor: pointer;
  transition: all .3s;
}
	
/* If - × */	
.openbtn span {
  width: 20px;
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 20px;
  height: 1px;
  background-color: #fff;
}
.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: #182a56;
}
.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,
#gNavi.upMove {
  animation: upAnime 0.5s forwards;
}
@keyframes upAnime {
  from {
    opacity: 1;
  	transform: translateY(0);
  }
  to {
    opacity: 0;
  	transform: translateY(-100px);
  }
}
#logo.downMove,
#gNavi.downMove {
	animation: downAnime 0.5s forwards;
}
@keyframes downAnime{
  from {
  	opacity: 0;
  	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
  	transform: translateY(0);
  }
}




/* ====================================================
		Page Path
==================================================== */
#pagePath {
  padding: 20px 0 0 20px;
}
#pagePath ul {
	display: flex;
	flex-wrap: wrap;
}
#pagePath ul li {
  font-size: 1.2rem;
	position: relative;
}

/* -------------------------------
		Link
------------------------------- */
#pagePath ul li a {
  line-height: 1;
  position: relative;
  margin-right: 30px;
  cursor: pointer;
}

/* Under Line */
#pagePath ul li a::before {
  content: '';
  width: 100%;
  height: 1px;
  background: #262423;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  transition: .3s;
  opacity: .3;
}
#pagePath ul li a:hover::before {
  opacity: 0;
}

/* Arrow */
#pagePath ul li a::after {
  content: '';
  width: 4px;
  height: 4px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: rotate(45deg) translateY(50%);
          transform: rotate(45deg) translateY(50%);
  position: absolute;
  right: -20px;
  top: calc(50% - 4px);
  opacity: .3;
}


/* ====================================================
		Contents
==================================================== */
/* -------------------------------
		Page Title
------------------------------- */
#contents h1 {
  max-width: 1100px;
  margin: 70px auto 160px;
  padding: 0 4%;
}
#contents h1 strong,
#contents h1 span {
  display: block;
}

/* English */
#contents h1 strong {
  color: #de3e21;
  font-size: 10rem;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

/* Japanese */
#contents h1 span {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}

/* -------------------------------
		Contents Title - Normal
------------------------------- */
#contents .tit_normal {
  font-size: 3rem;
  font-weight: 400;
  position: relative;
  padding: 28px 0 80px;
}

/* Red Line */
#contents .tit_normal::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #de3e21;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}


/* -------------------------------
		Button - Arrow
------------------------------- */
#contents .btn_arrow {
}
#contents .btn_arrow a {
  display: inline-block;
}
#contents .btn_arrow a span {
  font-size: 1.4rem;
  padding-right: 46px;
  position: relative;
  transition: .3s;
}
#contents .btn_arrow a span::before,
#contents .btn_arrow a span::after {
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  transition: .3s;
}

/* Circle */
#contents .btn_arrow a span::before {
  width: 30px;
  height: 30px;
  background: #de3e21;
  border-radius: 20px;
  transform: translateY(-50%);
  right: 0;
}

/* Arrow */
#contents .btn_arrow a span::after {
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  right: 11px;
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* Hover */
#contents .btn_arrow a:hover {
  opacity: 1;
}
#contents .btn_arrow a:hover span::before {
  background: #fdd000;
}

/* -------------------------------
		Button - Blank
------------------------------- */
#contents .btn_blank {
}
#contents .btn_blank a {
  display: inline-block;
}
#contents .btn_blank a span {
  font-size: 1.4rem;
  padding-right: 46px;
  position: relative;
  transition: .3s;
}
#contents .btn_blank a span::before,
#contents .btn_blank a span::after {
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  transition: .3s;
  transform: translateY(-50%);
}

/* Circle */
#contents .btn_blank a span::before {
  width: 30px;
  height: 30px;
  background: #182a56;
  border-radius: 20px;
  right: 0;
}

/* Arrow */
#contents .btn_blank a span::after {
  width: 10px;
  height: 10px;
  background: url("../img/common/icon_blank_white.svg") no-repeat 0 0 / 10px;
  right: 10px;
}

/* Hover */
#contents .btn_blank a:hover {
  opacity: 1;
}
#contents .btn_blank a:hover span::before {
  background: #fdd000;
}


/* -------------------------------
		Button - Line White
------------------------------- */
#contents .btn_line_white {
}
#contents .btn_line_white a {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  border: 1px solid #fff;
  border-radius: 100px;
  display: inline-block;
  position: relative;
  padding: 26px 150px 26px 40px;
}
#contents .btn_line_white a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%,-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 30px;
  display: block;
  transition: .3s;
}

/* Hover */
#contents .btn_line_white a:hover {
  color: #182a56;
  border: 1px solid #fdd000;
  background: #fdd000;
  opacity: 1;
}
#contents .btn_line_white a:hover::before {
  border-right: 1px solid #182a56;
  border-bottom: 1px solid #182a56;
}

/* -------------------------------
		Button - Normal
------------------------------- */
#contents .btn_normal {
}
#contents .btn_normal a {
   font-size: 1.4rem;
  line-height: 1;
  border: 1px solid #262423;
  border-radius: 100px;
  display: inline-block;
  position: relative;
  padding: 26px 150px 26px 40px;
}
#contents .btn_normal a::before,
#contents .btn_normal a::after {
  content: '';
  position: absolute;
  display: block;
  transition: .3s;
}

/* Circle */
#contents .btn_normal a::before {
  width: 30px;
  height: 30px;
  border: 1px solid #de3e21;
  background: #de3e21;
  border-radius: 20px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

/* Arrow */
#contents .btn_normal a::after {
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* Hover */
#contents .btn_normal a:hover {
  opacity: 1;
}
#contents .btn_normal a:hover::before {
  border: 1px solid #fdd000;
  background: #fdd000;
}

/* -------------------------------
		Google Map Link Text
------------------------------- */
.googleMapLink {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  position: relative;
  padding-right: 16px;
}
.googleMapLink span {
  color: #de3e21;
  position: relative;
}

/* Border Line */
.googleMapLink span::before {
  content: '';
  width: 100%;
  height: 1px;
  background: #de3e21;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  transition: .3s;
}

/* Blank Icon */
.googleMapLink::before {
  content: '';
  width: 10px;
  height: 10px;
  background: url("../img/common/icon_blank_red.svg") no-repeat 0 0 / 10px;
  position: absolute;
  top: calc(50% + 0.05em);
  right: 0;
  display: block;
  transform: translateY(-50%);
}
/* Hover */
.googleMapLink:hover {
  opacity: 1;
}
.googleMapLink:hover span::before {
  opacity: 0;
}


/* ====================================================
		Footer
==================================================== */
#gFooter {
  background: #fff;
  padding-top: 300px;
}


/* ====================================================
		Footer - Contact
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#gFooter #contact {
  color: #fff;
  background: #182a56;
  padding: 100px 0;
}
#gFooter #contact .flex {
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
#gFooter #contact a {
  color: #fff;
}

/* -------------------------------
		Title
------------------------------- */
#gFooter #contact .title {
  width: 30%;
  position: relative;
}
#gFooter #contact .title strong,
#gFooter #contact .title span {
  display: block;
}

/* English */
#gFooter #contact .title strong {
  font-size: 5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .02em;
}

/* Japanese */
#gFooter #contact .title span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

/* Right Line */
#gFooter #contact .title::before {
  content: '';
  width: 1px;
  height: calc(100% + 40px);
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  transform: translateY(-50%);
}

/* -------------------------------
		TEL & Mail
------------------------------- */
#tel-mailBlock {
  width: 58%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
}

/* -------------------------------
		TEL
------------------------------- */
#gFooter #contact #f_tel {
  width: 49%;
}
#gFooter #contact #f_tel a p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

/* Icon */
#gFooter #contact #f_tel .icon {
  width: 22px;
  margin-right: 5px;
}
#gFooter #contact #f_tel .icon img {
  display: block;
}

/* Phone Number */
#gFooter #contact #f_tel strong {
  width: calc(100% - 22px - 5px);
  font-size: 4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1;
}

/* Open Time */
#gFooter #contact #f_tel .time {
  font-size: 1.3rem;
  letter-spacing: .04em;
  display: block;
  padding-left: 27px;
  opacity: .8;
}

/* -------------------------------
		Mail Form
------------------------------- */
#gFooter #contact #f_mail {
  width: 49%;
}

/* Button */
#gFooter #contact #f_mail a {
  width: 100%;
  color: #182a56;
  background: #fff;
  border-radius: 3px;
  display: block;
  padding: 30px 0;
}
#gFooter #contact #f_mail a p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Icon */
#gFooter #contact #f_mail .icon {
  width: 16px;
  margin-right: 10px;
}
#gFooter #contact #f_mail .icon img {
  display: block;
}

/* Text */
#gFooter #contact #f_mail strong {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}

/* Hover */
#gFooter #contact #f_mail a:hover {
  background: #fdd000;
  opacity: 1;
}


/* ====================================================
		Footer - Navigation
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#fMenu {
  max-width: 1100px;
  margin: 140px auto 120px;
}

/* -------------------------------
		Information
------------------------------- */
#fMenu #f_information {
  width: 45%;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

/* Logo */
#fMenu #f_information #flogo {
  width: 314px;
  padding-bottom: 50px;
}

/* Company Name */
#fMenu #f_information .companyName {
  font-weight: 500;
  padding-bottom: 0.1em;
}

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

/* -------------------------------
		Menu
------------------------------- */
#fMenu #f_menulist {
  width: 55%;
}
#fMenu #f_menulist ul {
  width: 33%;
}
#fMenu #f_menulist ul li a {
  display: block;
  padding: 10px 0 20px;
  transition: .3s;
}
#fMenu #f_menulist ul li a strong,
#fMenu #f_menulist ul li a span {
  display: block;
  transition: .3s;
}

/* English */
#fMenu #f_menulist ul li a strong {
  color: #de3e21;
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1.4;
}

/* Japanese */
#fMenu #f_menulist ul li a span {
  font-size: 1.3rem;
}

/* Has-Child Menu */
#fMenu #f_menulist ul li.has-child ul {
  width: 100%;
}
#fMenu #f_menulist ul li.has-child ul li a {
  font-size: 1.4rem;
  position: relative;
  padding: 2px 0 2px 10px;
}
#fMenu #f_menulist ul li.has-child ul li a::before {
  content: '';
  width: 5px;
  height: 1px;
  background: #de3e21;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
}

/* Hover */
#fMenu #f_menulist ul li.has-child a:hover strong,
#fMenu #f_menulist ul li.has-child a:hover span,
#fMenu #f_menulist ul li a:hover {
  opacity: .6;
}


/* ====================================================
		Footer - End Block
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#endBlock {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 30px;
}

/* -------------------------------
		Copyright
------------------------------- */
#copyright {
  font-size: 1.1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: .05em;
	display: block;
  order: 1;
}

/* -------------------------------
		Privacy Policy
------------------------------- */
#endBlock ul {
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  order: 2;
}
#endBlock ul li a {
  position: relative;
}

/* Under Line */
#endBlock ul li a::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #262423;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  transition: .3s;
  opacity: .3;
}
#endBlock ul li a:hover::after {
  opacity: 0;
}


/* ====================================================
		WEB Font
==================================================== */
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.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;
}
.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.barlow-condensed-semibold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}












/* ////////////////////////////////////////////////////////////////////////

   TABLET

//////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 897px) and (max-width: 1299px) {
  .sp { display: none;}
  
  /* ====================================================
      Header
  ==================================================== */
  #gHeader {
    width: calc(100% - 20px - 20px);
    top: 10px;
  	left: 10px;
  }

  /* -------------------------------
      Logo
  ------------------------------- */
  #gHeader #logo {
    width: 200px;
    margin: auto 0 auto 10px;
  }
  
  /* -------------------------------
      Global Navigation
  ------------------------------- */
  #gNavi {
    width: calc(100% - 200px - 20px);
  }
  #gNavi ul li a {
    font-size: 1.2rem;
  }
  #gNavi ul li.g_contact {
    margin-left: 10px;
  }
  #gNavi ul li.g_contact a {
    padding: 16px 20px;
  }
  
  
  /* ====================================================
      Page Path
  ==================================================== */
  #pagePath {
    padding: 10px 0 0 20px;
  }
  
  
  /* ====================================================
      Contents
  ==================================================== */
  /* -------------------------------
      Page Title
  ------------------------------- */
  /* English */
  #contents h1 strong {
    font-size: 6rem;
  }

  /* Japanese */
  #contents h1 span {
    font-size: 1.8rem;
  }
  
  
  /* ====================================================
      Footer - Contact
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #gFooter #contact {
    padding: 80px 4%;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #gFooter #contact .title {
    width: 25%;
  }
  
  /* English */
  #gFooter #contact .title strong {
    font-size: 3rem;
  }

  /* Japanese */
  #gFooter #contact .title span {
    font-size: 1.3rem;
  }
  
  /* -------------------------------
      TEL & Mail
  ------------------------------- */
  #tel-mailBlock {
    width: 68%;
  }
  
  /* -------------------------------
      TEL
  ------------------------------- */
  /* Icon */
  #gFooter #contact #f_tel .icon {
    width: 16px;
  }

  /* Phone Number */
  #gFooter #contact #f_tel strong {
    width: calc(100% - 16px - 5px);
    font-size: 3.2rem;
  }

  /* Open Time */
  #gFooter #contact #f_tel .time {
    font-size: 1.2rem;
    padding-left: 23px;
  }

  
  /* ====================================================
      Footer - Navigation
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #fMenu {
    margin: 100px auto;
    padding: 0 4%;
  }
  
  /* -------------------------------
      Information
  ------------------------------- */
  #fMenu #f_information {
    font-size: 1.3rem;
  }

  /* Logo */
  #fMenu #f_information #flogo {
    width: 280px;
    padding-bottom: 40px;
  }
  
  
  /* ====================================================
      Footer - End Block
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #endBlock {
    padding: 0 4% 20px;
  }
  
  
  
  

  
  
}













/* ////////////////////////////////////////////////////////////////////////

   SMART PHONE

//////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 896px) {
  .sp { display: block;}
  .pc { display: none;}
  
  
  /* ====================================================
      Layout
  ==================================================== */
  .row {
    padding: 0 4%;
  }
  
  
  /* ====================================================
      Header
  ==================================================== */
	#gHeader {
    width: 100%;
    border-radius: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
	}
  
  /* -------------------------------
      Logo
  ------------------------------- */
	#gHeader #logo {
    width: 180px;
    margin: auto 0;
  }
  
  /* -------------------------------
      Global Navigation
  ------------------------------- */
  #gNavi {
    display: none;
  }
  
  /* -------------------------------
      Global Navigation - Hamburger
  ------------------------------- */
  .menu-trigger {
    top: 26px;
    right: 20px;
    width: 80px;
    height: 13px;
    cursor: pointer;
    z-index: 1000;
  }
  #gNaviHamburger div {
    width: 80%;
  }
  #gNaviHamburger ul {
    width: 100%;
  }
  
  /* List */
  #gNaviHamburger li a,
  #gNaviHamburger li a strong,
  #gNaviHamburger li a span {
    display: block;
  }
  #gNaviHamburger li a strong,
  #gNaviHamburger li a span {
    width: 100%;
  }
  #gNaviHamburger li a {
    font-size: .9rem;
    font-weight: 300;
    line-height: 1;
    padding: 12px 0 15px;
  }
  #gNaviHamburger li a span {
    font-size: 1.3rem;
    padding: 5px 0 0;
  }
  
  /* Hamburger Menu - Button */
  .openbtn {
    width: 40px;
    height: 40px;
    top: 5px;
    right: 5px;
  }
  
  /* 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;
  }
  

  /* ====================================================
      Contents
  ==================================================== */
  /* -------------------------------
      Page Title
  ------------------------------- */
  #contents h1 {
    margin: 0 auto 40px;
    padding: 0 4%;
  }
  
  /* English */
  #contents h1 strong {
    font-size: 3rem;
  }

  /* Japanese */
  #contents h1 span {
    font-size: 1.4rem;
  }
  
  /* -------------------------------
      Contents Title - Normal
  ------------------------------- */
  #contents .tit_normal {
    font-size: 1.6rem;
    padding: 12px 0 40px;
  }

  /* Red Line */
  #contents .tit_normal::before {
    width: 16px;
  }
  
  /* -------------------------------
      Button - Arrow
  ------------------------------- */
  #contents .btn_arrow a span {
    font-size: 1.2rem;
    text-align: right;
    padding-right: 30px;
  }
  
  /* Circle */
  #contents .btn_arrow a span::before {
    width: 20px;
    height: 20px;
  }
  
  /* Arrow */
  #contents .btn_arrow a span::after {
    width: 3px;
    height: 3px;
    right: 7px;
  }
  
  /* -------------------------------
      Button - Blank
  ------------------------------- */
  #contents .btn_blank a span {
    font-size: 1.2rem;
    text-align: right;
    padding-right: 30px;
  }
  
  /* Circle */
  #contents .btn_blank a span::before {
    width: 20px;
    height: 20px;
  }
  
  /* Arrow */
  #contents .btn_blank a span::after {
    width: 6px;
    height: 6px;
    background-size: 6px;
    right: 7px;
  }
  
  /* -------------------------------
      Button - Line White
  ------------------------------- */
  #contents .btn_line_white a {
    font-size: 1.2rem;
    padding: 14px 60px 14px 20px;
  }
  #contents .btn_line_white a::before {
    content: '';
    width: 3px;
    height: 3px;
    right: 20px;
  }
  
  /* -------------------------------
      Button - Normal
  ------------------------------- */
  #contents .btn_normal a {
    font-size: 1.2rem;
    padding: 14px 60px 14px 20px;
  }
  
  /* Circle */
  #contents .btn_normal a::before {
    width: 20px;
    height: 20px;
    right: 10px;
  }
  
  /* Arrow */
  #contents .btn_normal a::after {
    width: 3px;
    height: 3px;
    right: 18px;
  }
  
  
  /* ====================================================
      Footer
  ==================================================== */
  #gFooter {
    padding-top: 100px;
  }
  
  /* ====================================================
      Footer - Contact
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #gFooter #contact {
    padding: 40px 4%;
  }
  #gFooter #contact .flex {
    display: block;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #gFooter #contact .title {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  
  /* English */
  #gFooter #contact .title strong {
    font-size: 2.6rem;
  }

  /* Japanese */
  #gFooter #contact .title span {
    font-size: 1.2rem;
  }

  /* Right Line */
  #gFooter #contact .title::before {
    content: '';
    width: 60%;
    height: 1px;
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translate(-50%,0);
  }
  
  /* -------------------------------
      TEL & Mail
  ------------------------------- */
  #tel-mailBlock {
    width: 100%;
    display: block;
  }
  
  /* -------------------------------
      TEL
  ------------------------------- */
  #gFooter #contact #f_tel {
    width: 100%;
    text-align: center;
  }
  #gFooter #contact #f_tel a {
    display: inline-block;
    margin: 0 auto;
  }
  #gFooter #contact #f_tel a p {
    justify-content: center;
    align-items: center;
  }
  
  /* Icon */
  #gFooter #contact #f_tel .icon {
    width: 14px;
  }

  /* Phone Number */
  #gFooter #contact #f_tel strong {
    width: auto;
    font-size: 2.6rem;
  }

  /* Open Time */
  #gFooter #contact #f_tel .time {
    font-size: 1.2rem;
    padding-left: 0;
  }
  
  /* -------------------------------
      Mail Form
  ------------------------------- */
  #gFooter #contact #f_mail {
    width: 80%;
    margin: 20px auto 0;
  }

  /* Button */
  #gFooter #contact #f_mail a {
    padding: 20px 0;
  }
  
  /* Icon */
  #gFooter #contact #f_mail .icon {
    width: 14px;
    margin-right: 8px;
  }
  
  /* Text */
  #gFooter #contact #f_mail strong {
    font-size: 1.2rem;
  }
  
  
  /* ====================================================
      Footer - Navigation
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #fMenu {
    margin: 60px auto;
    padding: 0 4%;
  }
  
  /* -------------------------------
      Information
  ------------------------------- */
  #fMenu #f_information {
    width: 100%;
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 1.6;
  }
  
  /* Logo */
  #fMenu #f_information #flogo {
    width: 200px;
    padding-bottom: 20px;
  }
  
  /* Company Name */
  #fMenu #f_information .companyName {
    padding-bottom: 0.5em;
  }
  
  /* -------------------------------
      Menu
  ------------------------------- */
  #fMenu #f_menulist {
    padding: 30px 0 0;
  }
  #fMenu #f_menulist,
  #fMenu #f_menulist ul {
    width: 100%;
  }
  #fMenu #f_menulist ul li a {
    padding: 10px 0;
  }
  
  /* English */
  #fMenu #f_menulist ul li a strong {
    font-size: 1.8rem;
    line-height: 1;
  }

  /* Japanese */
  #fMenu #f_menulist ul li a span {
    font-size: 1.2rem;
  }
  
  /* Has-Child Menu */
  #fMenu #f_menulist ul li.has-child ul {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  #fMenu #f_menulist ul li.has-child ul li {
    width: 50%;
  }
  #fMenu #f_menulist ul li.has-child ul li a {
    font-size: 1.3rem;
  }
  
  
  /* ====================================================
      Footer - End Block
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #endBlock {
    padding: 0 4% 20px;
  }
  
  /* -------------------------------
      Copyright
  ------------------------------- */
  #copyright {
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.4;
    order: 2;
  }

  /* -------------------------------
      Privacy Policy
  ------------------------------- */
  #endBlock ul {
    font-size: 1.1rem;
    padding-bottom: 20px;
    order: 1;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  


}