@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&display=swap');


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Reset
	- Reset form
# Utilities
	- Accessibility
	- Helper
# Base
	- Box sizing
	- Typography
	- Elements
	- Links
	- Forms
# Layouts
# Effects
# Components
	- Header
	- Navigation
	- Footer
	- Main
	- Loader
# Plugins
# Media
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Comment
--------------------------------------------------------------*/
/* - Comment
----------------------------------------------*/
/*---------- Comment ----------*/
/**
 * Comment.
 */

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* - Reset
----------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  box-sizing: content-box; /* Add the correct box sizing in Firefox. */
  height: 0; /* Add the correct box sizing in Firefox. */
  overflow: visible; /* Show the overflow in Edge and IE. */
}

img {
  border-style: none;
}

a {
  background-color: transparent;
}

/* - Reset form
----------------------------------------------*/
input,
select,
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  border-radius: 0;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none; /* Remove the style in Safari. */
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

input[type="radio"]:checked + label,
input[type="checkbox"]:checked + label {
}

textarea {
  resize: vertical;
  overflow: auto;
}

::-moz-selection,
::selection {
  background: #fff;
  text-shadow: none;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* - Accessibility
----------------------------------------------*/
.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* - Box sizing
----------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/* - Typography
----------------------------------------------*/
html {
  font-family: "BIZ UDPGothic", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-style: normal;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  color: #000000;
}

small {
  font-size: 80%;
}

big {
  font-size: 120%;
}

b, strong {
  font-weight: bolder;
}

em, i {
  font-style: normal;
}

sup, sub {
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

blockquote {
  padding: 10px;
  background: lightgrey;
}

cite, dfn {
  font-style: italic;
}

abbr, acronym {
  background: lightgrey;
}

mark {
  background-color: lightpink;
  text-decoration: none;
}

ins {
  background-color: lightyellow;
  text-decoration: none;
}


/* - Elements
----------------------------------------------*/
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

img,
svg {
  width: 100%;
  height: auto;
}

.autoImg {
  width: auto;
  max-width: 100%;
}

.js-tel {
  cursor: default;
}

.disp-pc {
  display: block;
}

.disp-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .disp-pc {
    display: none;
  }

  .disp-sp {
    display: block;
  }
}

/* - Links
----------------------------------------------*/
a {
  color: inherit;
}

a,
a:hover,
a:active {
  text-decoration: none;
  outline: 0;
}

:focus {
  outline: none;
}

/* - Forms
----------------------------------------------*/
input, textarea {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;

  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + label {
  background: #ff0000;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + label {
  background: #ff0000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
#page-wrapper {
  width: 100%;
  overflow: hidden;
}

.contents-wrapper{
  max-width: 800px;
  margin: 0 auto;
}

.flex-box{
  display: flex;
  flex-flow: row nowrap;
}

.type-comingsoon {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .contents-wrapper{
    width: 100%;
    padding: 0 15px 0 15px;
  }
}

@media only screen and (max-width: 767px) {

}

/*--------------------------------------------------------------
# Effects
--------------------------------------------------------------*/
#page-wrapper a {
  transition: all 300ms;
  opacity: 1;
}

@media (any-hover: hover) {
  #page-wrapper a:hover {
    opacity: .8;
  }
}

a.blank{
  position: relative;
}

a.blank:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  right: -22px;
  background: url("../img/icon_blank.svg") no-repeat center / contain;
}

html{scroll-padding-top:120px;}
@media (max-width:767px){html{scroll-padding-top:80px;}}

@media only screen and (max-width: 1024px) {
  a.blank:after {
    width: 12px;
    height: 12px;
    top: 2px;
    right: -18px;
  }
}

@media only screen and (max-width: 767px) {

}


/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* - Header
----------------------------------------------*/
#gHeader {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background: #fff;
}

#gHeader .gH-area{
  align-items: center;
  padding: 30px 30px 0 40px;
}

#gHeader .gH_logo {
  width: 164px;
  border-right: 2px solid #000;
  padding-right: 20px;
}

#gHeader .gh-site-area{
  max-width: 600px;
  gap: 0 20px;
  align-items: center;
}

#gHeader .gh-site-area .site_name{
  width: 111px;
}

#gHeader .gh-recruit-box{
  margin-left: 50px;
}

#gHeader .gh-recruit-box .gh-recruit-list{
  gap: 0 20px;
}

#gHeader .gh-recruit-box .gh-recruit-list li{
  width: 118px;
}

#gHeader .gh-nav-box{
  margin-left: auto;
  margin-right: 30px;
}

#gHeader .gh-nav-list{
  gap: 0 20px;
}

#gHeader .gh-nav-list a{
  display: block;
  width: 127px;
  text-align: center;
  padding: 12px 0;
}

#gHeader .gh-nav-list img{
  width: 100px;
}

#gHeader .gh-nav-list li{
  background: #dc000c;
  border-radius: 50px;
}

#gHeader .gh-nav-list li:last-of-type{
  background: #000;
}

#drawer .gh-nav-box{
  display: none;
}

@media only screen and (max-width: 1024px) {
  #gHeader {
    height: 80px;
  }
  
  #gHeader .gH-area{
    padding: 20px 30px 0 20px;
  }

  #gHeader .gH_logo {
    width: 130px;
    padding-right: 10px;
  }

  #gHeader .gh-site-area{
    gap: 0 10px;
  }

  #gHeader .gh-site-area .site_name{
    width: 90px;
  }

  #gHeader .gh-recruit-box{
    margin-left: 30px;
  }

  #gHeader .gh-recruit-box .gh-recruit-list{
    gap: 0 10px;
  }

  #gHeader .gh-recruit-box .gh-recruit-list li{
    width: 100px;
  }
  
  #gHeader .gh-nav-box{
    margin-right: 10px;
  }

  
  #gHeader .gh-nav-list{
    gap: 0 10px;
  }

  #gHeader .gh-nav-list a{
    width: 100px;
  }

  #gHeader .gh-nav-list img{
    width: 80px;
  }
}

@media only screen and (max-width: 767px) {
  #gHeader {
    width: 100%;
    height: 55px;
  }

  #gHeader .gH-area{
    padding: 5px 3px 0 10px;
    justify-content: space-between;
  }

  #gHeader .gH_logo {
    width: 22vw;
    padding-right: 5px;
    border-right: 1px solid #000;
  }
  
  #gHeader .gh-site-area{
    gap: 0 5px;
  }

  #gHeader .gh-site-area .site_name{
    width: 18vw;
  }

  #gHeader .gh-recruit-box{
    margin-left: 10px;
  }

  #gHeader .gh-recruit-box .gh-recruit-list{
    gap: 0 5px;
  }

  #gHeader .gh-recruit-box .gh-recruit-list li{
    width: 19vw;
  }

  #gHeader .gh-nav-box{
    margin-left: auto;
    margin-right: 25px;
  }
  
  #gHeader .gh-nav-box{
    display:  none;
  }

  #drawer .gh-nav-box{
    padding: 10px 0;
    display: block;
  }
  
  #drawer .gh-nav-box .gh-nav-list{
    gap: 0 30px;
    justify-content: center;
  }
  
  #drawer .gh-nav-box .gh-nav-list li{
    background: #dc000c;
    border-radius: 50px;
    text-align: center;
  }

  #drawer .gh-nav-box .gh-nav-list li:last-of-type{
    background: #000;
  }

  #drawer .gh-nav-box .gh-nav-list a{
    display: block;
    width: 30vw;
    margin: 0 auto;
    padding: 7px 20px;
  }
  
  #drawer .gh-nav-box .gh-nav-list img{
    width: 100%;
  }
}

/* - Navigation
----------------------------------------------*/
/*---------- drawerSwitch ----------*/
.drawerSwitch {
  display: block;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.drawerSwitch,
.drawerSwitch *,
.drawerSwitch *:before,
.drawerSwitch *:after {
  transition: all 300ms;
}

.drawerSwitch_border {
  display: block;
  width: 35px;
  height: 25px;
  margin: auto auto;
  position: relative;
}

.drawerSwitch_border span {
  display: block;
  width: 35px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
}

.drawerSwitch_border span:nth-child(1) {
  top: 0;
}

.drawerSwitch_border span:nth-child(2) {
  top: 12px;
}

.drawerSwitch_border span:nth-child(3) {
  bottom: 0;
}

/* active */
.drawerSwitch[aria-expanded="true"] {
  background: transparent;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span {
  background: #000;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(2) {
  opacity: 0;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

@media only screen and (max-width: 767px) {
  .drawerSwitch_border {
    width: 25px;
    height: 20px;
    margin-top: 0;
  }

  .drawerSwitch_border span {
    width: 30px;
    height: 3px;
  }
  
  .drawerSwitch_border span:nth-child(2) {
    top: 9px;
  }

  .drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(1) {
    top: 10px;
  }
  
  .drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(3) {
    bottom: 7px;
  }

}

/*---------- drawerNav ----------*/
#drawer {
  width: 100%;
  height: 100%;
  /*! background: #FFF; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  /*! overflow-y: scroll; */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
}

#drawer[aria-expanded] {
  transition: all 400ms;
}

#drawer[aria-expanded="false"] {
  transform: translateY(-100%);
  visibility: hidden;
}

#drawer[aria-expanded="true"] {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.gNav {
  display: block;
  width: 100%;
  padding: 100px 0;
  position: relative;
  background: #fff;
}

.gNav_list-1st {
  margin: 25px auto 0 auto;
  max-width: 800px;
}

.gNav_list-1st > li{
  padding: 30px 0;
}

.gNav_list-1st > li img {
  height: 26px;
  width: auto;
}

.gNav_item-1st {
  display: flex;
  position: relative;
}

.gNav_2nd {
  display: none;
}

.gNav_list-2nd {
  flex-flow: row wrap;
  gap: 30px 0;
  margin: 20px 0 30px 0;
}

.gNav_list-2nd li {
    width: 45%;
}

.gNav_list-2nd li a{
  display: block;
}

.gNav_item-2nd {
  font-size: 1.2rem;
  line-height: 1.6;
  position: relative;
}

.gNav_item-2nd span{
  font-size: 1.8rem;
}

.gNav_item.type-accordionTrg {
  cursor: pointer;
}

.gNav_item.type-accordionTrg span{
  background: #000;
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 6px;
  margin: 0 0 0 auto;
}

.gNav_item.type-accordionTrg:before,
.gNav_item.type-accordionTrg:after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
}

.gNav_item.type-accordionTrg:after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 300ms;
}

.gNav_item.type-accordionTrg.is-open:after {
  transform: translateY(-50%) rotate(0);
}

.gNav_2nd-area .gNav_list-2nd-item{
  margin-top: 20px;
  display: flex;
  gap: 0 30px;
}

.gNav_2nd-area .gNav_list-2nd-item li{
   position: relative;
}

.gNav_2nd-area .gNav_list-2nd-item li:after{
  content: "/";
  position: absolute;
  font-size: 20px;
  right: -20px;
  top: 5px;
}

.gNav_2nd-area .gNav_list-2nd-item li:last-of-type:after{
  content: none;
}

.gNav_2nd-area .gNav_list-2nd-item .gNav_item-2nd img{
  height: 16px;
  width: auto;
}

@media only screen and (max-width: 1024px) {
  .gNav {
    padding: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .gNav {
    display: block;
    width: 100%;
    padding: 70px 0;
  }
  
  .gNav_list-1st {
    margin: 0 auto;
    max-width: 800px;
}

  .gNav_list-1st > li{
    padding: 20px 15px;
  }

  .gNav_list-1st > li img {
    height: 6vw;
  }

  .gNav_item.type-accordionTrg span{
    height: 32px;
    width: 32px;
    border-radius:5px;
    margin: -3px 13px 0 auto;
  }

  .gNav_item.type-accordionTrg:before,
  .gNav_item.type-accordionTrg:after {
    width: 15px;
    height: 2px;
    top: 46%;
    right: 21px;
  }

  .gNav_2nd-area .gNav_list-2nd-item{
    gap: 5px 20px;
    margin: 10px 0 0 5px;
    flex-flow: wrap;
  }

  .gNav_2nd-area .gNav_list-2nd-item li:after{
    top: 0.3vw;
    right: -13px;
  }

  .gNav_2nd-area .gNav_list-2nd-item .gNav_item-2nd img{
    height: 3.5vw;
  }
}


/* - Footer
----------------------------------------------*/
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
#gFooter {
  background: #f2f2f2;
  padding: 30px 0;
  position: relative;
}

#gFooter .footer-wrapper{
  max-width: 1086px;
  margin: 0 auto;
}

#gFooter .f-nav-area{
  font-size: 1.6rem;
  line-height: 1.6;
  gap:0 40px;
}

#gFooter .f-nav-area .f-nav-box{
  width: 20%;
  border-right: 1px solid #000;
}

#gFooter .f-nav-area .f-nav-box:last-of-type{
  border: none;
}

#gFooter .f-nav-area .f-nav-box-inner + .f-nav-box-inner{
  margin-top: 30px;
}

#gFooter .f-nav-area .f-nav-list{
  margin-top: 5px;
}

#gFooter .f-nav-area .f-nav-list li + li{
  margin-top: 5px;
}

.copyright {
  font-size: 1.1rem;
  text-align: center;
  margin: 80px 0 0 0;
}

@media only screen and (max-width: 1024px) {
   #gFooter {
    padding: 30px 0 10px 0;
  }
  
  #gFooter .footer-wrapper{
    max-width: 90%;
  }
  
  #gFooter .f-nav-area{
    font-size: 12px;
    gap: 0 15px;
  }
  
  #gFooter .f-nav-area .f-nav-box{
    width: 20%;
    margin: 0 0 65px 0;
  }
}

@media only screen and (max-width: 767px) {
  #gFooter {
    padding: 30px 0;
  }
  
  #gFooter .footer-wrapper{
    max-width: 100%;
  }

  #gFooter .f-nav-area{
    font-size: 3.3vw;
    line-height: 1.6;
    flex-flow:  row wrap;
    gap: 0;
    height: 140vw;
    padding: 15px;
    position: relative;
  }
  
  #gFooter .f-nav-area:after{
    content: "";
    position: absolute;
    background: #000;
    width: 1px;
    height: 114vw;
    left: 50%;
  }

  #gFooter .f-nav-area .f-nav-box{
    width: auto;
    padding: 0 10px 0 0;
  }
    
  #gFooter .f-nav-area .f-nav-box.f-box-2{
    position: absolute;
    left: 21%;
    border-right: none;
  }
  
  #gFooter .f-nav-area .f-nav-box.f-box-3{
    position: absolute;
    left: 21%;
    top: 73vw;
    border-right: none;
  }
  
  #gFooter .f-nav-area .f-nav-box.f-box-4{
    position: absolute;
    left: 53%;
    border-right: none;
  }
  
  #gFooter .f-nav-area .f-nav-box.f-box-5{
    position: absolute;
    right: 40px;
    top: 120px;
  }

  #gFooter .f-nav-area .f-nav-box-inner + .f-nav-box-inner{
    margin-top: 10px;
  }

  #gFooter .f-nav-area .f-nav-list{
    margin-top: 5px;
  }

  #gFooter .f-nav-area .f-nav-list li + li{
    margin-top: 5px;
  }
  
  .copyright {
    margin: 30px 0 0 0;
  }
}

/* - Main
----------------------------------------------*/
/* ====================
   .hero
   ==================== */
.hero {
	width: 100%;
	padding: 100px 0 125px 0;
}

@media only screen and (max-width: 1024px) {
	.hero {
		padding: 80px 0 60px 0;
	}
}

@media only screen and (max-width: 767px) {
	.hero {
		padding: 55px 0 92vw 0;
	}
}

/* ====================
   .common
   ==================== */
.fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: all 600ms cubic-bezier(0.33, 1, 0.68, 1);
}

.fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.lead-text{
	font-size: 2.1rem;
	line-height: 2;
}

.l-text{
	font-size: 2rem;
	line-height: 1.8;
}

.m-text{
	font-size: 1.5rem;
	line-height: 1.6;
}

.text{
	font-size: 1.2rem;
	line-height: 1.6;
}

.s-text{
	font-size: 1rem;
	line-height: 1.6;
}

.note{
	font-size: 0.9rem;
	line-height: 1.4;
	font-weight: 400;
}

.indent{
	padding-left:1rem;
	text-indent:-1rem;
}

@media screen and (max-width: 1024px) {
	.lead-text{
		font-size: 1.7rem;
	}

	.l-text{
	  font-size: 1.3rem;
	}

	.m-text{
	  font-size: 1rem;
	}

	.text{
	  font-size: 0.9rem;
	}
  
  .s-text{
    font-size: 0.9rem;
    line-height: 1.6;
  }

	.note{
	  font-size: 0.7rem;
	}
}

@media only screen and (max-width: 767px) {
	.lead-text{
		font-size: 3.1vw;
		line-height: 2;
	}
	
	.l-text{
	  font-size: 1.3rem;
	}

	.m-text{
	  font-size: 0.9rem;
	  line-height: 1.6;
	}
  
  .s-text{
	  font-size: 0.9rem;
	  line-height: 1.4;
	}

	.text{
	  font-size: 0.9rem;
	  line-height: 1.4;
	}

	.note{
	  font-size: 0.6rem;
	}
}