/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}
/* Preferred box-sizing value */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}
/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}
/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}
/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}
/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}
/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}
/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}
/* preformatted text - use only for this feature */ :where(pre) {
  all: revert;
  box-sizing: border-box;
}
/* reset default text opacity of input placeholder */ ::placeholder {
  color: unset;
}
/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */ :where([hidden]) {
  display: none;
}
/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/ :where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}
/* apply back the draggable feature - exist only in Chromium and Safari */ :where([draggable="true"]) {
  -webkit-user-drag: element;
}
/* Revert Modal native behavior */ :where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}
/* Remove details summary webkit styles */ ::-webkit-details-marker {
  display: none;
}
/* header
-------------------------------------------------- */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 15px 20px;
  background: #0075c2;
  z-index: 4;
}
.header.nav-open {
  position: absolute;
  top: -100%;
  overflow: hidden;
  z-index: 15;
}
@media (max-width: 767px)/*sp*/ {
  .header {
    padding: 3.2vw 4vw;
    transition: transform .35s;
  }
  .header.hide {
    transform: translateY(-100%);
  }
  .header.stop {
    transform: translateY(0) !important;
  }
  }
.header .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .elem-wrap {
  display: flex;
  margin-left: auto;
}
.header .header-logo {
  width: 26.4vw;
}
@media (min-width: 768px) {
  .header .header-logo {
    max-width: 140px;
  }
}
.header .header-ttl {
    max-width: 26.4vw;
    margin-right: 45px;
    transform: translateY(4px);
  }
@media (min-width: 768px) {
  .header .header-ttl {
    max-width: 140px;
    margin-right: 80px;
  }
}
.header .btn-recruit {
        padding: 1.3333333333vw 0;
        border-radius: 3vw;
        font-size: 3.0333333333vw;
        line-height: 1.1818181818;
		display: block;
		width: 18vw;
		margin: auto 2vw;
		text-align: center;
		background-color: #3e3a39;
		color: #fff;
}
@media (min-width: 768px) {
.header .btn-recruit {
    max-width: 140px;
    font-size: 1em;
        border-radius: 5px;
        padding: 2.5% 3% 3%;
  }
.header .btn-recruit br {
display: none;
  }
}
@media (min-width: 768px) {
.header .btn-recruit {
    max-width: 140px;
    font-size: 1em;
        border-radius: 5px;
        padding: 2.5% 3% 3%;
  }
}

.header .btn-nav {
	position: absolute;
	right: 0;
	top: 50%;
	width: 40px;
	height: 40px;
	transform: translateY(-50%);
	cursor: pointer;
	text-align: center;
}
.header .btn-nav span {
  position: relative;
	display: block;
  width: 100%;
  height: 2px ;
	margin-top: 5px;
  background: #fff;
  transition: .2s ease-in-out;
}
.header .btn-nav::before,
.header .btn-nav::after {
  content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: .2s ease-in-out;
}
.header .btn-nav::before {
  top: 20px;
}
.header .btn-nav::after {
  top: 35px;
}
.header .btn-nav.close {
	position: fixed !important;
	right: 20px;
	top: 35px;
}
.header .btn-nav.close span {
  top : 16px;
	background: #fff;
  transform : rotate(-45deg);
}
.header .btn-nav.close::before,
.header .btn-nav.close::after {
  top: 21px;
	background: #fff;
  transform :rotate(45deg);
	}
@media (max-width: 767px)/*sp*/ {
	.header .btn-nav {
		top: 45%;
		width: 30px;
		height: 30px;
	}
	.header .btn-nav::before {
		top: 15px;
	}
	.header .btn-nav::after {
		top: 25px;
	}
	.header .btn-nav.close {
		right: 15px;
		top: 25px;
	}
	.header .btn-nav.close::before,
	.header .btn-nav.close::after {
		top: 21px;
	}
}
/* g-nav
-------------------------------------------------- */
.g-nav {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
  padding: 0 50px;
  background: #0075c2;
  transition: opacity .5s, visibility .5s, z-index .5s;
  visibility: hidden;
  overflow-y: scroll;
  opacity: 0;
  z-index: -1;
}
.g-nav.nav-open {
  visibility: visible;
  opacity: 1;
  z-index: 13;
}
.g-nav .inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 0 10px 0;
  position: relative;
}
@media (min-width: 767px) {
.g-nav .inner {
  padding: 50px 0 10px 0;
}
  }

@media (max-width: 767px) {
	.g-nav {
		align-items: flex-start;
		justify-content: center;
		height: 100%;
		padding: 0;
		transform: translate3d(0,0,0);
	}
	.g-nav .inner {
		width: 100%;
		height: 100vh;
		padding: 5.3333vw 4vw 10.6666vw;
		overflow: auto;
		overflow-x: hidden;
		transform: translate3d(0,0,0);
	}
	.g-nav .inner::-webkit-scrollbar {
		display: none;
	}
}
.g-nav .nav-ttl {
    width: 32vw;
  }
@media (min-width: 768px) {
  .g-nav .nav-ttl {
    width: 100%;
    margin-bottom: 2.5%;
  }
 .g-nav .nav-ttl img {
    width: 17.3333%;
  }
  }
@media (max-width: 767px) {
  .g-nav .nav-ttl {
    width: 35.3333vw;
  }
  }

.g-nav .nav-list {
  display: -webkit-flex;
  display: flex;
   flex-wrap:wrap;
   align-items: flex-start;/*子要素を上部で揃える指定*/
       -webkit-justify-content: center;
    justify-content: center;
	margin-bottom: 20px;
}
.g-nav .nav-list li {
  position: relative;
  text-align: center;
  margin-top: 30px;
  width: 100%;
}
.g-nav .nav-list li span {
display: block;
}
@media (min-width: 768px) {
  .g-nav .nav-list {
    column-gap: 2%;
  }
  .g-nav .nav-list li {
  margin-top: 50px;
	width: 28%;
  }
}
.g-nav .nav-list li .en {
  background-color: #fff;
  color: #0075c2;
  padding: 4px 10px 6px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 18px
}
.g-nav .nav-list li .ja {
   color: #fff;
   font-size: 0.9em;
}

@media (min-width: 767px) {
.g-nav .nav-list li .en {
  font-size: 20px
}
}
@media (max-width: 375px) {

}
/* footer
-------------------------------------------------- */
.footer {
  padding: 0 20px;
  background: #f8f16e;
  text-align: center;
}
.footer .inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0 80px;
}
.footer small {
  font-size: 1.2em;
  margin-top: 32px;
  display: block;
}
@media (max-width: 767px) {
  .footer {
    padding: 0 2.6666vw;
  }
  .footer .inner {
    padding: 13.3333vw 0 6vw;
  }
  .footer small {
    width: 100%;
    margin-top: 13.3333vw;
    font-size: 2.6666vw;
  }
}
/* sns */
.sns-btn {
  display: -webkit-flex;
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 0.9em;
}
.sns-btn li {
  height: 30px;
  margin-left: 10px;
  margin-right: 10px;
}
.sns-btn li.youtube {
  height: 25px;
}
/*========= ページトップのためのCSS ===============
-------------------------------------------------------------*/
.pagetop {
  /* 位置　下記で調整*/
  margin-right: -688px;
  right: 50%;
  bottom: 30px;
  cursor: pointer;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: .3s;
  color: #fff;
  background: #0075c2;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.4);
  /* デフォルトは非表示 */
  opacity: 0;
  z-index:100;
}
@media only screen and (max-width:1528px) {
  .pagetop {
    margin-right: 0;
    right: 15px;
    bottom: 15px;
  }
}
@media print {
  .pagetop {
    display: none !important;
  }
}
.pagetop::before {
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  content: "";
  display: block;
  height: 17px;
  left: 16px;
  position: absolute;
  top: 21px;
  transform: rotate(-45deg);
  width: 17px;
}
.pagetop_text {
  border: 0;
  height: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 0;
}