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

    COMMON SETTINGS

   ************************************************************************
   ************************************************************************ */
/* ------------------------------
    RESPONSIVE SETTINGS
  ------------------------------ */
/* ------------------------------
    FONT
  ------------------------------ */
@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/HelveticaNowDisplay-Medium.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/HelveticaNowDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/HelveticaNowDisplay-Black.woff2") format("woff2");
  font-weight: 900;
}
@font-face {
  font-family: "notosansjp";
  src: url("../fonts/notosansjp-regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "notosansjp";
  src: url("../fonts/notosansjp-bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "notosansjp";
  src: url("../fonts/notosansjp-black.woff") format("woff");
  font-weight: 900;
}
.t__min {
  font-family: serif !important;
}

/* ------------------------------
    COLOR SETTINGS
  ------------------------------ */
svg {
  fill: currentColor;
}

/* ------------------------------
    MIXIN
  ------------------------------ */
/* ------------------------------
    KEYFRAME
  ------------------------------ */
@keyframes scrollDown {
  0% {
    transform: translateY(0rem);
  }
  15% {
    transform: translateY(1rem);
  }
  30% {
    transform: translateY(0rem);
  }
  45% {
    transform: translateY(1rem);
  }
  60% {
    transform: translateY(0rem);
  }
  100% {
    transform: translateY(0rem);
  }
}
@keyframes scrAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top center;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top center;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom center;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom center;
  }
}
@keyframes loopCl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loopClRv {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
/* ------------------------------
    FONT SIZE
  ------------------------------ */
/* ------------------------------
    FORM RESET
  ------------------------------ */
input, select, textarea {
  outline: none;
}
input::focus, select::focus, textarea::focus {
  outline: none;
}

input[type=submit],
select,
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

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

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

button {
  background: none;
  color: inherit;
  border: none;
  outline: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  text-align: left;
}
button:focus {
  outline: none;
}

.slick-slide {
  outline: none !important;
}

button {
  cursor: pointer;
  outline: none;
  padding: 0;
}

/* ------------------------------
    DEFAULT BLOCK SETTINGS
  ------------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: #333;
  color: #FFF;
}

html {
  scroll-behavior: smooth;
  background: #FFF;
  color: #333;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-weight: 400;
  margin-top: 0 !important;
}
html::-webkit-scrollbar {
  display: none;
}
html.locked {
  overflow: hidden;
  touch-action: none;
}

body {
  font-family: "HelveticaNowDisplay", "notosansjp", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  background: #FFF;
  color: #333;
  line-height: 1.8;
}
body.__locked {
  overflow: hidden;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  font-weight: 700;
}

/* ------------------------------
    MEDIA SETTINGS
  ------------------------------ */
img {
  display: block;
  width: 100%;
  height: auto;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

.__imgLayer {
  position: relative;
}
.__imgLayer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------
    BLOCK SETTINGS
  ------------------------------ */
.ta__center {
  text-align: center;
}
.ta__center .flex__item {
  margin: 0 auto;
}

.ta__right {
  text-align: right;
}

.ta__left {
  text-align: left;
}

.__layerFull {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
}

/* ------------------------------
    TEXT SETTINGS
  ------------------------------ */
.is__description {
  line-height: 2;
  letter-spacing: 0.4px;
}
@media screen and (min-width: 320px) {
  .is__description {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 600px) {
  .is__description {
    font-size: 1.4vw;
  }
}
@media screen and (min-width: 1025px) {
  .is__description {
    font-size: 1.1vw;
  }
}

/* ------------------------------
    ANIMATION
  ------------------------------ */
.__loopblock {
  display: flex;
}
.__loopblock .line {
  display: flex;
  animation: loopCl 30000ms linear infinite both;
}

/* ------------------------------
    SCROLL TRANSITION
  ------------------------------ */
.is-inview .__hiddentext span {
  transform: translateY(0%);
}
.is-inview .__fadeobj {
  opacity: 1;
  transform: translateY(0);
}

.__hiddentext {
  overflow: hidden;
}
.__hiddentext span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 700ms ease;
}
.__hiddentext.__num1 span {
  transition-delay: 100ms;
}
.__hiddentext.__num2 span {
  transition-delay: 200ms;
}
.__hiddentext.__num3 span {
  transition-delay: 300ms;
}
.__hiddentext.__num4 span {
  transition-delay: 400ms;
}
.__hiddentext.__num5 span {
  transition-delay: 500ms;
}
.__hiddentext.__num6 span {
  transition-delay: 600ms;
}
.__hiddentext.__num7 span {
  transition-delay: 700ms;
}
.__hiddentext.__num8 span {
  transition-delay: 800ms;
}
.__hiddentext.__num9 span {
  transition-delay: 900ms;
}

.__fadeobj {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 700ms ease, transform 700ms ease;
}
.__fadeobj.__num1 {
  transition-delay: 100ms;
}
.__fadeobj.__num2 {
  transition-delay: 200ms;
}
.__fadeobj.__num3 {
  transition-delay: 300ms;
}
.__fadeobj.__num4 {
  transition-delay: 400ms;
}
.__fadeobj.__num5 {
  transition-delay: 500ms;
}
.__fadeobj.__num6 {
  transition-delay: 600ms;
}
.__fadeobj.__num7 {
  transition-delay: 700ms;
}
.__fadeobj.__num8 {
  transition-delay: 800ms;
}
.__fadeobj.__num9 {
  transition-delay: 900ms;
}

/* ------------------------------
    OTHER COMMON SETTINGS
  ------------------------------ */
.__fullscreen {
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* *************************
 *
 * BLOCK SIZING
 *
 * ************************* */
.__sectionInner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
@media screen and (min-width: 320px) {
  .__sectionInner {
    max-width: 90%;
  }
}
@media screen and (min-width: 600px) {
  .__sectionInner {
    max-width: 70%;
  }
}
@media screen and (min-width: 1025px) {
  .__sectionInner {
    max-width: 1200px;
  }
}

.__bgGray {
  background: #F7F7F7;
}

@media screen and (min-width: 320px) {
  br.sp {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  br.sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  br.sp {
    display: none;
  }
}

/* *************************
 *
 * SCROLL ANIMATION
 *
 * ************************* */
.is-inview .__sliderInX span {
  opacity: 1;
  transform: translateX(0rem);
}
.is-inview .__sliderInY {
  opacity: 1;
  transform: translateY(0rem);
}

.__sliderInX span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-1.5rem);
  transition: opacity 600ms ease, transform 600ms ease;
}
.__sliderInX span:nth-child(1) {
  transition-delay: 100ms;
}
.__sliderInX span:nth-child(2) {
  transition-delay: 200ms;
}
.__sliderInX span:nth-child(3) {
  transition-delay: 300ms;
}
.__sliderInX span:nth-child(4) {
  transition-delay: 400ms;
}
.__sliderInX span:nth-child(5) {
  transition-delay: 500ms;
}
.__sliderInX span:nth-child(6) {
  transition-delay: 600ms;
}
.__sliderInX span:nth-child(7) {
  transition-delay: 700ms;
}
.__sliderInX span:nth-child(8) {
  transition-delay: 800ms;
}
.__sliderInX span:nth-child(9) {
  transition-delay: 900ms;
}
.__sliderInX span:nth-child(10) {
  transition-delay: 1000ms;
}
.__sliderInX span:nth-child(11) {
  transition-delay: 1100ms;
}

.__sliderInY {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 600ms ease, transform 600ms ease;
}
.__sliderInY.__num1 {
  transition-delay: 100ms;
}
.__sliderInY.__num2 {
  transition-delay: 200ms;
}
.__sliderInY.__num3 {
  transition-delay: 300ms;
}
.__sliderInY.__num4 {
  transition-delay: 400ms;
}
.__sliderInY.__num5 {
  transition-delay: 500ms;
}
.__sliderInY.__num6 {
  transition-delay: 600ms;
}
.__sliderInY.__num7 {
  transition-delay: 700ms;
}
.__sliderInY.__num8 {
  transition-delay: 800ms;
}
.__sliderInY.__num9 {
  transition-delay: 900ms;
}

/* *************************
 *
 * HEADER
 *
 * ************************* */
#__globalHeader {
  position: fixed;
  z-index: 1000000;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background-color 400ms ease, backdrop-filter 400ms ease;
}
#__globalHeader.__view, #__globalHeader.__noFront {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
#__globalHeader.__view #__headerLogo, #__globalHeader.__view .trigger, #__globalHeader.__noFront #__headerLogo, #__globalHeader.__noFront .trigger {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 320px) {
  #__globalHeader.__view .contact, #__globalHeader.__noFront .contact {
    width: 30px;
  }
}
@media screen and (min-width: 600px) {
  #__globalHeader.__view .contact, #__globalHeader.__noFront .contact {
    width: 5vw;
  }
}
@media screen and (min-width: 1025px) {
  #__globalHeader.__view .contact, #__globalHeader.__noFront .contact {
    width: 45px;
  }
}
#__globalHeader #__headerLogo, #__globalHeader .trigger {
  position: relative;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease, visibility 400ms ease;
}
#__globalHeader a, #__globalHeader button {
  transition: opacity 400ms ease;
}
#__globalHeader a:hover, #__globalHeader button:hover {
  opacity: 0.5 !important;
}
#__globalHeader .trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 320px) {
  #__globalHeader .trigger {
    width: 7vw;
    height: 6vw;
  }
}
@media screen and (min-width: 600px) {
  #__globalHeader .trigger {
    width: 4.5vw;
    height: 3.5vw;
  }
}
@media screen and (min-width: 1025px) {
  #__globalHeader .trigger {
    width: 35px;
    height: 30px;
  }
}
#__globalHeader .trigger span {
  position: relative;
  top: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #FFF;
  transition: top 400ms ease 400ms, transform 400ms ease;
}
#__globalHeader .trigger span:nth-child(2), #__globalHeader .trigger span:nth-child(3) {
  transform: scaleX(0.7);
  transform-origin: left;
}
#__globalHeader .trigger.__view {
  z-index: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
#__globalHeader .trigger.__view span {
  transition: opacity 400ms ease, transform 400ms ease;
}
#__globalHeader .trigger.__view span:nth-child(1) {
  transform: scaleX(1) rotate(220deg);
  transform-origin: center center;
}
@media screen and (min-width: 320px) {
  #__globalHeader .trigger.__view span:nth-child(1) {
    top: calc(3vw - 1px);
  }
}
@media screen and (min-width: 600px) {
  #__globalHeader .trigger.__view span:nth-child(1) {
    top: calc(1.75vw - 1px);
  }
}
@media screen and (min-width: 1025px) {
  #__globalHeader .trigger.__view span:nth-child(1) {
    top: 14px;
  }
}
#__globalHeader .trigger.__view span:nth-child(2) {
  opacity: 0;
}
#__globalHeader .trigger.__view span:nth-child(3) {
  transform: scaleX(1) rotate(-220deg);
  transform-origin: center center;
}
@media screen and (min-width: 320px) {
  #__globalHeader .trigger.__view span:nth-child(3) {
    top: calc(-3vw + 1px);
  }
}
@media screen and (min-width: 600px) {
  #__globalHeader .trigger.__view span:nth-child(3) {
    top: calc(-1.75vw + 1px);
  }
}
@media screen and (min-width: 1025px) {
  #__globalHeader .trigger.__view span:nth-child(3) {
    top: -14px;
  }
}
#__globalHeader .contact {
  transition: all 500ms ease;
}
@media screen and (min-width: 320px) {
  #__globalHeader .contact {
    width: 45px;
  }
}
@media screen and (min-width: 600px) {
  #__globalHeader .contact {
    width: 5vw;
  }
}
@media screen and (min-width: 1025px) {
  #__globalHeader .contact {
    width: 70px;
  }
}
#__globalHeader .contact a, #__globalHeader .contact svg {
  display: block;
  width: 100%;
  height: auto;
}

#__headerNav {
  position: absolute;
  top: 0;
  left: 0;
  background: #444;
  color: #FFF;
  transform: translateX(-100%);
  transition: transform 400ms ease;
}
@media screen and (min-width: 320px) {
  #__headerNav {
    width: 140px;
    padding: 13vw 0 10vw 5vw;
  }
}
@media screen and (min-width: 600px) {
  #__headerNav {
    width: 250px;
    padding: 7vw 0 5vw 40PX;
  }
}
@media screen and (min-width: 1025px) {
  #__headerNav {
    width: 300px;
    padding: 5rem 0 3rem 40px;
  }
}
#__headerNav.__view {
  transform: translateX(0%);
}
#__headerNav li {
  padding: 0.5rem 0;
}
@media screen and (min-width: 320px) {
  #__headerNav li {
    font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  #__headerNav li {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  #__headerNav li {
    font-size: 15px;
  }
}

.__headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 320px) {
  .__headerInner {
    padding: 2.5% 5%;
  }
}
@media screen and (min-width: 600px) {
  .__headerInner {
    padding: 2% 5%;
  }
}
@media screen and (min-width: 1025px) {
  .__headerInner {
    padding: 1rem 40px;
  }
}

@media screen and (min-width: 320px) {
  #__headerLogo {
    width: 28%;
  }
}
@media screen and (min-width: 600px) {
  #__headerLogo {
    width: 20%;
  }
}
@media screen and (min-width: 1025px) {
  #__headerLogo {
    width: 130px;
  }
}
#__headerLogo a, #__headerLogo img {
  display: block;
  width: 100%;
  height: auto;
}

/* *************************
 *
 * FOOTER
 *
 * ************************* */
#__footNav {
  background: #000;
  color: #FFF;
  padding: 1.5rem 5%;
}
#__footNav .__navInner {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 320px) {
  #__footNav .__navInner {
    justify-content: center;
  }
}
@media screen and (min-width: 600px) {
  #__footNav .__navInner {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  #__footNav .__navInner {
    justify-content: space-between;
  }
}
@media screen and (min-width: 320px) {
  #__footNav .name {
    font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  #__footNav .name {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  #__footNav .name {
    font-size: 15px;
  }
}
@media screen and (min-width: 320px) {
  #__footNav ul {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #__footNav ul {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  #__footNav ul {
    display: flex;
  }
}
#__footNav li {
  margin-right: 1rem;
}
#__footNav li a {
  display: inline-block;
  transition: opacity 500ms ease;
}
@media screen and (min-width: 320px) {
  #__footNav li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 600px) {
  #__footNav li a {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  #__footNav li a {
    font-size: 18px;
  }
}
#__footNav li a:hover {
  opacity: 0.5;
}

/* *************************
 *
 * BUTTON
 *
 * ************************* */
.__btnCommon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #333;
  color: #FFF;
  padding: 1.5rem 0;
}
@media screen and (min-width: 320px) {
  .__btnCommon {
    font-size: 14px;
  }
}
@media screen and (min-width: 600px) {
  .__btnCommon {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  .__btnCommon {
    font-size: 18px;
  }
}
.__btnCommon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 600ms ease;
}
.__btnCommon:hover::before {
  transform: scaleX(1);
  transform-origin: center left;
}
.__btnCommon:hover .icon {
  transform: translateX(0.5rem);
}
.__btnCommon:hover .icon.__back {
  transform: translateX(-0.5rem);
}
.__btnCommon span, .__btnCommon .icon {
  z-index: 1;
}
.__btnCommon span {
  position: relative;
  line-height: 1;
  letter-spacing: 2px;
}
.__btnCommon span:nth-child(2) {
  font-size: 65% !important;
  margin: 0 0 1.5px 10px;
}
.__btnCommon .icon, .__btnCommon .icon2 {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  height: 100%;
}
.__btnCommon .icon {
  right: 0;
  transition: transform 500ms ease;
}
.__btnCommon .icon.__back {
  right: auto;
  left: 0;
}
.__btnCommon .icon.__back svg {
  transform: rotate(180deg);
}
.__btnCommon .icon2 {
  left: 0;
}
.__btnCommon .icon2 svg {
  width: 25%;
}
.__btnCommon svg {
  display: block;
  width: 15%;
  height: auto;
  fill: #FFF;
}
.__btnCommon.__contact {
  background: #666;
  align-items: center;
}
@media screen and (min-width: 320px) {
  .__btnCommon.__contact {
    flex-direction: column;
    padding: 2rem 5%;
    font-size: 20px;
  }
}
@media screen and (min-width: 600px) {
  .__btnCommon.__contact {
    flex-direction: row;
    padding: 5rem 5%;
    font-size: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .__btnCommon.__contact {
    flex-direction: row;
    padding: 5rem 5%;
    font-size: 40px;
  }
}
.__btnCommon.__contact::before {
  background-color: #333;
}
@media screen and (min-width: 320px) {
  .__btnCommon.__contact span {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 600px) {
  .__btnCommon.__contact span {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .__btnCommon.__contact span {
    margin-bottom: 0;
  }
}
.__btnCommon.__contact span:nth-child(2) {
  font-size: 55% !important;
}
@media screen and (min-width: 320px) {
  .__btnCommon.__contact span:nth-child(2) {
    margin: 0;
  }
}
@media screen and (min-width: 600px) {
  .__btnCommon.__contact span:nth-child(2) {
    margin: 0 0 0 20px;
  }
}
@media screen and (min-width: 1025px) {
  .__btnCommon.__contact span:nth-child(2) {
    margin: 0 0 0 30px;
  }
}
.__btnCommon.__contact .icon {
  justify-content: flex-end;
  right: 5%;
}
@media screen and (min-width: 320px) {
  .__btnCommon.__contact .icon {
    width: 6rem;
  }
}
@media screen and (min-width: 600px) {
  .__btnCommon.__contact .icon {
    width: 8rem;
  }
}
@media screen and (min-width: 1025px) {
  .__btnCommon.__contact .icon {
    width: 9rem;
  }
}
.__btnCommon.__contact .icon2 {
  justify-content: flex-start;
  left: 5%;
}
@media screen and (min-width: 320px) {
  .__btnCommon.__contact .icon2 {
    width: 10rem;
  }
}
@media screen and (min-width: 600px) {
  .__btnCommon.__contact .icon2 {
    width: 12rem;
  }
}
@media screen and (min-width: 1025px) {
  .__btnCommon.__contact .icon2 {
    width: 13rem;
  }
}

/* *************************
 *
 * HEAD
 *
 * ************************* */
.__headCommon {
  display: inline-flex;
  align-items: flex-end;
}
@media screen and (min-width: 320px) {
  .__headCommon {
    padding: 0.5rem 5vw;
    border-top: solid 4px #333;
    border-right: solid 4px #333;
    border-bottom: solid 4px #333;
  }
}
@media screen and (min-width: 600px) {
  .__headCommon {
    padding: 1rem 4rem;
    border-top: solid 5px #333;
    border-right: solid 5px #333;
    border-bottom: solid 5px #333;
  }
}
@media screen and (min-width: 1025px) {
  .__headCommon {
    padding: 1rem 4rem;
    border-top: solid 6px #333;
    border-right: solid 6px #333;
    border-bottom: solid 6px #333;
  }
}
.__headCommon .__headEng {
  margin-right: 1rem;
  line-height: 1;
}
@media screen and (min-width: 320px) {
  .__headCommon .__headEng {
    font-size: 25px;
    letter-spacing: 2.4px;
  }
}
@media screen and (min-width: 600px) {
  .__headCommon .__headEng {
    font-size: 35px;
    letter-spacing: 4.4px;
  }
}
@media screen and (min-width: 1025px) {
  .__headCommon .__headEng {
    font-size: 50px;
    letter-spacing: 6.4px;
  }
}
.__headCommon .__headJa {
  font-weight: 400;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 320px) {
  .__headCommon .__headJa {
    font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  .__headCommon .__headJa {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .__headCommon .__headJa {
    font-size: 15px;
  }
}

/* *************************
 *
 * NEWS
 *
 * ************************* */
.__newsBlock .__newsInner {
  cursor: pointer;
  display: block;
}
.__newsBlock .__newsWrapper {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #333;
}
@media screen and (min-width: 320px) {
  .__newsBlock .__newsWrapper {
    font-size: 12px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .__newsBlock .__newsWrapper {
    font-size: 15px;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .__newsBlock .__newsWrapper {
    font-size: 15px;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}
.__newsBlock .__newsWrapper:hover .__newsTitle {
  text-decoration: underline;
}
.__newsBlock .__newsTime {
  letter-spacing: 2.4px;
}
@media screen and (min-width: 320px) {
  .__newsBlock .__newsTime {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 600px) {
  .__newsBlock .__newsTime {
    width: 15%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .__newsBlock .__newsTime {
    width: 15%;
    margin-bottom: 0;
  }
}
.__newsBlock .__newsTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 320px) {
  .__newsBlock .__newsTitle {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .__newsBlock .__newsTitle {
    width: 80%;
  }
}
@media screen and (min-width: 1025px) {
  .__newsBlock .__newsTitle {
    width: 80%;
  }
}
@media screen and (min-width: 320px) {
  .__newsBlock .__newsTitle .title {
    width: 80%;
  }
}
@media screen and (min-width: 600px) {
  .__newsBlock .__newsTitle .title {
    width: 80%;
  }
}
@media screen and (min-width: 1025px) {
  .__newsBlock .__newsTitle .title {
    width: 80%;
  }
}
.__newsBlock .__newsTitle .icon {
  position: relative;
  border-radius: 50%;
  border: solid 2px #333;
}
@media screen and (min-width: 320px) {
  .__newsBlock .__newsTitle .icon {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (min-width: 600px) {
  .__newsBlock .__newsTitle .icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .__newsBlock .__newsTitle .icon {
    width: 3rem;
    height: 3rem;
  }
}
.__newsBlock .__newsTitle .icon span {
  position: absolute;
  top: calc(50% - 0.5px);
  left: 25%;
  display: block;
  width: 50%;
  height: 2px;
  background: #333;
  transition: transform 400ms ease;
}
.__newsBlock .__newsTitle .icon span:nth-child(2) {
  transform: rotate(90deg);
  transform: center center;
}
.__newsBlock .__newsContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 650ms cubic-bezier(0.86, 0, 0.07, 1), padding-top 650ms cubic-bezier(0.86, 0, 0.07, 1);
  will-change: max-height;
}
@media screen and (min-width: 320px) {
  .__newsBlock .__newsContent {
    padding: 0;
  }
}
@media screen and (min-width: 600px) {
  .__newsBlock .__newsContent {
    padding: 0 10% 0 20%;
  }
}
@media screen and (min-width: 1025px) {
  .__newsBlock .__newsContent {
    padding: 0 10% 0 20%;
  }
}
.__newsBlock .__newsContent .__newsContentInner {
  opacity: 0;
  transition: opacity 300ms ease;
}
@media screen and (min-width: 320px) {
  .__newsBlock .__newsContent .__newsContentInner {
    padding-top: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .__newsBlock .__newsContent .__newsContentInner {
    padding-top: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .__newsBlock .__newsContent .__newsContentInner {
    padding-top: 1rem;
  }
}
.__newsBlock .__newsContent P {
  margin-bottom: 0.5rem;
}
.__newsBlock .chk {
  display: none;
}
.__newsBlock .chk:checked + .__newsWrapper .__newsTitle .icon span {
  transform: rotate(360deg);
}
.__newsBlock .chk:checked + .__newsWrapper .__newsContent {
  max-height: 100vh;
}
.__newsBlock .chk:checked + .__newsWrapper .__newsContent .__newsContentInner {
  opacity: 1;
  transition: opacity 300ms ease 200ms;
}

/* *************************
 *
 * TOP PAGE
 *
 * ************************* */
#__topFv {
  color: #FFF;
}
#__topFv .inner {
  position: relative;
}
#__topFv .bg, #__topFv .__imgLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#__topFv .__imgLayer {
  overflow: hidden;
  opacity: 0;
  transition: opacity 3000ms ease;
}
#__topFv .__imgLayer.__current {
  opacity: 1;
}
#__topFv .__imgLayer.__current img {
  animation: zoomOut 5000ms;
}
#__topFv .scr, #__topFv .content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
#__topFv .content {
  position: relative;
}
@media screen and (min-width: 320px) {
  #__topFv .content {
    padding: 0;
  }
}
@media screen and (min-width: 600px) {
  #__topFv .content {
    padding: 0 5%;
  }
}
@media screen and (min-width: 1025px) {
  #__topFv .content {
    padding: 0 5%;
  }
}
#__topFv .scr {
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0 5%;
}
@media screen and (min-width: 320px) {
  #__topFv .scr {
    font-size: 8px;
  }
}
@media screen and (min-width: 600px) {
  #__topFv .scr {
    font-size: 10px;
  }
}
@media screen and (min-width: 1025px) {
  #__topFv .scr {
    font-size: 12px;
  }
}
#__topFv .scrbar {
  display: flex;
}
#__topFv .bar {
  width: 3px;
  height: 150px;
  margin-right: 3px;
  background: rgba(255, 255, 255, 0.3);
}
#__topFv .bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: #FFF;
  animation: scrAnim 2500ms ease infinite both;
}
#__topFv .text {
  writing-mode: vertical-lr;
}
@media screen and (min-width: 320px) {
  #__topFv .text {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #__topFv .text {
    display: inline-block;
  }
}
@media screen and (min-width: 1025px) {
  #__topFv .text {
    display: inline-block;
  }
}
#__topFv .content {
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 320px) {
  #__topFv .content {
    align-items: center;
  }
}
@media screen and (min-width: 600px) {
  #__topFv .content {
    align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  #__topFv .content {
    align-items: flex-start;
  }
}
@media screen and (min-width: 320px) {
  #__topFv .logo {
    width: 70%;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 600px) {
  #__topFv .logo {
    width: 45%;
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  #__topFv .logo {
    width: 420px;
    margin-bottom: 3%;
  }
}
#__topFv .menu {
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 320px) {
  #__topFv .menu {
    display: flex;
    font-size: 14px;
    padding-bottom: 45vw;
  }
}
@media screen and (min-width: 600px) {
  #__topFv .menu {
    display: flex;
    font-size: 20px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  #__topFv .menu {
    display: block;
    font-size: 22px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 320px) {
  #__topFv .menu li {
    margin: 0 1rem 0.5rem;
  }
}
@media screen and (min-width: 600px) {
  #__topFv .menu li {
    margin: 0 1rem 0.5rem;
  }
}
@media screen and (min-width: 1025px) {
  #__topFv .menu li {
    margin: 1.5rem 0;
  }
}
#__topFv .menu a {
  letter-spacing: 2.4px;
}

@media screen and (min-width: 320px) {
  #__topAbout, #__topService, #__topNews, #__topCompany, #__topRecruit {
    padding: 16vw 0;
  }
}
@media screen and (min-width: 600px) {
  #__topAbout, #__topService, #__topNews, #__topCompany, #__topRecruit {
    padding: 10vw 0;
  }
}
@media screen and (min-width: 1025px) {
  #__topAbout, #__topService, #__topNews, #__topCompany, #__topRecruit {
    padding: 8vw 0;
  }
}
#__topAbout .content, #__topService .content, #__topNews .content, #__topCompany .content, #__topRecruit .content {
  text-align: center;
}
@media screen and (min-width: 320px) {
  #__topAbout .content, #__topService .content, #__topNews .content, #__topCompany .content, #__topRecruit .content {
    font-size: 14px;
    padding: 2rem 0;
    line-height: 2.6;
  }
}
@media screen and (min-width: 600px) {
  #__topAbout .content, #__topService .content, #__topNews .content, #__topCompany .content, #__topRecruit .content {
    font-size: 18px;
    padding: 4rem 0;
    line-height: 3;
  }
}
@media screen and (min-width: 1025px) {
  #__topAbout .content, #__topService .content, #__topNews .content, #__topCompany .content, #__topRecruit .content {
    font-size: 18px;
    padding: 4rem 0;
    line-height: 3.2;
  }
}
#__topAbout .content p img, #__topService .content p img, #__topNews .content p img, #__topCompany .content p img, #__topRecruit .content p img {
  display: inline-block;
}
@media screen and (min-width: 320px) {
  #__topAbout .content p img, #__topService .content p img, #__topNews .content p img, #__topCompany .content p img, #__topRecruit .content p img {
    width: 55%;
    margin: 1rem 0;
  }
}
@media screen and (min-width: 600px) {
  #__topAbout .content p img, #__topService .content p img, #__topNews .content p img, #__topCompany .content p img, #__topRecruit .content p img {
    width: 240px;
    margin: 0 0 1rem;
  }
}
@media screen and (min-width: 1025px) {
  #__topAbout .content p img, #__topService .content p img, #__topNews .content p img, #__topCompany .content p img, #__topRecruit .content p img {
    width: 240px;
    margin: 0 0 1rem;
  }
}

#__topAbout.__pageMV {
  position: relative;
  padding: 0;
}
#__topAbout.__pageMV .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#__topAbout.__pageMV .bg .img {
  width: 100%;
}
@media screen and (min-width: 320px) {
  #__topAbout.__pageMV .bg .img {
    height: auto;
  }
}
@media screen and (min-width: 600px) {
  #__topAbout.__pageMV .bg .img {
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  #__topAbout.__pageMV .bg .img {
    height: 500px;
  }
}
#__topAbout.__pageMV .bg img {
  object-fit: cover;
  object-position: center center;
}
@media screen and (min-width: 320px) {
  #__topAbout.__pageMV .bg img {
    height: auto;
  }
}
@media screen and (min-width: 600px) {
  #__topAbout.__pageMV .bg img {
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  #__topAbout.__pageMV .bg img {
    height: 100%;
  }
}
#__topAbout.__pageMV .inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 320px) {
  #__topAbout.__pageMV .inner {
    padding: 21vw 0 3rem;
  }
}
@media screen and (min-width: 600px) {
  #__topAbout.__pageMV .inner {
    padding: 15vw 0 3rem;
  }
}
@media screen and (min-width: 1025px) {
  #__topAbout.__pageMV .inner {
    padding: 8rem 0 3rem;
  }
}
#__topAbout.__pageMV .__headCommon {
  border-color: #FFF;
  color: #FFF;
}
#__topAbout.__pageMV .__headCommon.__bk {
  border-color: #333;
  color: #333;
}
#__topAbout.__pageMV .content {
  padding-bottom: 0;
}
@media screen and (min-width: 320px) {
  #__topAbout.__pageMV .content {
    padding-top: 48vw;
  }
}
@media screen and (min-width: 600px) {
  #__topAbout.__pageMV .content {
    padding-top: 35vw;
  }
}
@media screen and (min-width: 1025px) {
  #__topAbout.__pageMV .content {
    padding-top: 20rem;
  }
}
#__topAbout.__pageMV .btn {
  margin: 2rem auto 1rem;
}
@media screen and (min-width: 320px) {
  #__topAbout.__pageMV .btn {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #__topAbout.__pageMV .btn {
    width: 80%;
  }
}
@media screen and (min-width: 1025px) {
  #__topAbout.__pageMV .btn {
    width: 800px;
  }
}

#__topService {
  background: #F7F7F7;
}
@media screen and (min-width: 320px) {
  #__topService .list {
    padding: 0 5%;
  }
}
@media screen and (min-width: 600px) {
  #__topService .list {
    padding: 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  #__topService .list {
    padding: 0 10%;
  }
}
#__topService .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#__topService .list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 320px) {
  #__topService .list li {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 600px) {
  #__topService .list li {
    width: 31%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  #__topService .list li {
    width: 31%;
    margin-bottom: 0;
  }
}
#__topService .list .icon {
  width: 100%;
}
#__topService .list .icon span {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: #333;
  color: #FFF;
  line-height: 1;
  padding: 0.5rem;
}
@media screen and (min-width: 320px) {
  #__topService .list .icon span {
    font-size: 14px;
  }
}
@media screen and (min-width: 600px) {
  #__topService .list .icon span {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  #__topService .list .icon span {
    font-size: 18px;
  }
}
#__topService .list .img {
  position: relative;
  height: 0;
  background: #E0E0E0;
}
@media screen and (min-width: 320px) {
  #__topService .list .img {
    width: 48.5%;
    padding-bottom: 33.34375%;
    margin-top: -1rem;
  }
}
@media screen and (min-width: 600px) {
  #__topService .list .img {
    width: 100%;
    padding-bottom: 68.75%;
    margin-top: -1rem;
  }
}
@media screen and (min-width: 1025px) {
  #__topService .list .img {
    width: 100%;
    padding-bottom: 68.75%;
    margin-top: -1rem;
  }
}
#__topService .list .img .imginner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#__topService .list .img svg {
  display: block;
  height: 60%;
  width: auto;
}
#__topService .list p {
  line-height: 1.7;
}
@media screen and (min-width: 320px) {
  #__topService .list p {
    width: 48.5%;
    font-size: 80%;
    margin-top: -4vw;
  }
}
@media screen and (min-width: 600px) {
  #__topService .list p {
    width: 100%;
    font-size: 15px;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  #__topService .list p {
    width: 100%;
    font-size: 15px;
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 320px) {
  #__topNews .__newsBlock {
    padding: 5vw 0 !important;
  }
}
@media screen and (min-width: 600px) {
  #__topNews .__newsBlock {
    padding: 5rem 5% !important;
  }
}
@media screen and (min-width: 1025px) {
  #__topNews .__newsBlock {
    padding: 5rem 5% !important;
  }
}

#__topCompany {
  background: #F7F7F7;
}
#__topCompany .content {
  text-align: left;
}
@media screen and (min-width: 320px) {
  #__topCompany .content {
    padding: 0 5%;
    font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .content {
    padding: 0 10%;
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .content {
    padding: 0 10%;
    font-size: 15px;
  }
}
#__topCompany .outline {
  border-bottom: solid 1px #333;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
#__topCompany .outline .title {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  #__topCompany .outline .title {
    padding: 2rem 0 1rem;
    font-size: 16px;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .outline .title {
    padding: 5rem 0 1rem;
    font-size: 20px;
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .outline .title {
    padding: 5rem 0 1rem;
    font-size: 20px;
  }
}
#__topCompany .outline dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  letter-spacing: 1.4px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 320px) {
  #__topCompany .outline dl {
    line-height: 1.6;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .outline dl {
    line-height: 2;
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .outline dl {
    line-height: 2;
  }
}
#__topCompany .outline dt {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  #__topCompany .outline dt {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .outline dt {
    width: 180px;
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .outline dt {
    width: 180px;
  }
}
#__topCompany .outline dt::after {
  content: ":";
  font-weight: 700;
  margin-left: 10px;
}
@media screen and (min-width: 320px) {
  #__topCompany .outline dt::after {
    display: inline-block;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .outline dt::after {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .outline dt::after {
    display: none;
  }
}
@media screen and (min-width: 320px) {
  #__topCompany .outline dd {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .outline dd {
    width: calc(100% - 180px);
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .outline dd {
    width: calc(100% - 180px);
  }
}
#__topCompany .outline dd::before {
  content: ":";
  font-weight: 700;
  margin-right: 10px;
}
@media screen and (min-width: 320px) {
  #__topCompany .outline dd::before {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .outline dd::before {
    display: inline-block;
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .outline dd::before {
    display: inline-block;
  }
}
#__topCompany .map ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#__topCompany .map li {
  line-height: 2.2;
}
@media screen and (min-width: 320px) {
  #__topCompany .map li {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .map li {
    width: 47.5%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .map li {
    width: 47.5%;
    margin-bottom: 0;
  }
}
#__topCompany .map .title {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  #__topCompany .map .title {
    font-size: 14px;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .map .title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .map .title {
    font-size: 18px;
  }
}
@media screen and (min-width: 320px) {
  #__topCompany .map .img {
    margin: 0;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .map .img {
    margin: 2rem 0 1rem;
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .map .img {
    margin: 2rem 0 1rem;
  }
}
#__topCompany .map iframe {
  width: 100%;
  border: solid 1px #E0E0E0 !important;
  filter: grayscale(1);
}
@media screen and (min-width: 320px) {
  #__topCompany .map iframe {
    height: 55vw;
  }
}
@media screen and (min-width: 600px) {
  #__topCompany .map iframe {
    height: 35vw;
  }
}
@media screen and (min-width: 1025px) {
  #__topCompany .map iframe {
    height: 350px;
  }
}
#__topCompany .map .link {
  text-align: right;
}
#__topCompany .map .link a {
  text-decoration: underline;
}
#__topCompany .map .link a:hover {
  text-decoration: none;
}

#__topPara .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  #__topPara .img {
    height: auto;
  }
}
@media screen and (min-width: 600px) {
  #__topPara .img {
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  #__topPara .img {
    height: 0;
    padding-bottom: 42%;
  }
}
#__topPara .imgInner {
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  #__topPara .imgInner {
    position: relative;
    height: auto;
  }
}
@media screen and (min-width: 600px) {
  #__topPara .imgInner {
    position: relative;
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  #__topPara .imgInner {
    position: absolute;
    height: 100%;
    transform: scale(1.4);
  }
}
#__topPara img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
@media screen and (min-width: 320px) {
  #__topPara img {
    height: auto;
  }
}
@media screen and (min-width: 600px) {
  #__topPara img {
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  #__topPara img {
    height: 100%;
  }
}

#__topRecruit .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}
@media screen and (min-width: 320px) {
  #__topRecruit .content {
    padding: 5%;
    font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  #__topRecruit .content {
    padding: 5% 10%;
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  #__topRecruit .content {
    padding: 5% 10%;
    font-size: 15px;
  }
}
#__topRecruit .block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 320px) {
  #__topRecruit .block {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #__topRecruit .block {
    width: 47.5%;
  }
}
@media screen and (min-width: 1025px) {
  #__topRecruit .block {
    width: 47.5%;
  }
}
#__topRecruit .block p {
  line-height: 1.8;
}
@media screen and (min-width: 320px) {
  #__topRecruit .block p {
    font-size: 12px;
    margin: 1rem 0;
  }
}
@media screen and (min-width: 600px) {
  #__topRecruit .block p {
    font-size: 15px;
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  #__topRecruit .block p {
    font-size: 15px;
    margin: 0;
  }
}
#__topRecruit.__page {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 320px) {
  #__topRecruit.__page .content {
    padding: 1.5rem 5% 3rem;
  }
}
@media screen and (min-width: 600px) {
  #__topRecruit.__page .content {
    padding: 3rem 5% 5rem;
  }
}
@media screen and (min-width: 1025px) {
  #__topRecruit.__page .content {
    padding: 3rem 5% 5rem;
  }
}
@media screen and (min-width: 320px) {
  #__topRecruit.__page .content.__rv .block:nth-child(2) {
    order: 3;
  }
}
@media screen and (min-width: 600px) {
  #__topRecruit.__page .content.__rv .block:nth-child(2) {
    order: 3;
  }
}
@media screen and (min-width: 1025px) {
  #__topRecruit.__page .content.__rv .block:nth-child(2) {
    order: 3;
  }
}
@media screen and (min-width: 320px) {
  #__topRecruit.__page .content.__rv .block:nth-child(3) {
    order: 2;
  }
}
@media screen and (min-width: 600px) {
  #__topRecruit.__page .content.__rv .block:nth-child(3) {
    order: 2;
  }
}
@media screen and (min-width: 1025px) {
  #__topRecruit.__page .content.__rv .block:nth-child(3) {
    order: 2;
  }
}
#__topRecruit.__page .__headSub {
  order: 1;
  width: 100%;
  text-align: center;
  font-weight: 400;
  letter-spacing: 3.4px;
  border-top: solid 1px #333;
}
@media screen and (min-width: 320px) {
  #__topRecruit.__page .__headSub {
    font-size: 20px;
    padding: 2rem 0 0;
  }
}
@media screen and (min-width: 600px) {
  #__topRecruit.__page .__headSub {
    font-size: 30px;
    padding: 3rem 0 1rem;
  }
}
@media screen and (min-width: 1025px) {
  #__topRecruit.__page .__headSub {
    font-size: 30px;
    padding: 3rem 0 1rem;
  }
}
#__topRecruit.__page .__headSub.__noBorder {
  border: none;
}
@media screen and (min-width: 320px) {
  #__topRecruit.__page .block {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #__topRecruit.__page .block {
    width: 40%;
  }
}
@media screen and (min-width: 1025px) {
  #__topRecruit.__page .block {
    width: 40%;
  }
}
#__topRecruit.__page .block:nth-child(2) {
  order: 2;
}
#__topRecruit.__page .block:nth-child(3) {
  order: 3;
}
@media screen and (min-width: 320px) {
  #__topRecruit.__page .block:nth-child(3) {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #__topRecruit.__page .block:nth-child(3) {
    width: 55%;
  }
}
@media screen and (min-width: 1025px) {
  #__topRecruit.__page .block:nth-child(3) {
    width: 55%;
  }
}

#__require, #__entry, .__simple {
  line-height: unset !important;
  background: #F7F7F7;
}
#__require .__headSub, #__entry .__headSub, .__simple .__headSub {
  order: unset !important;
}

.__requireContent {
  width: 100%;
  background: #FFF;
  margin-bottom: 3rem;
}

.__requireTitle {
  font-weight: 400;
  background: #999;
  color: #FFF;
}
@media screen and (min-width: 320px) {
  .__requireTitle {
    font-size: 14px;
    padding: 1rem 5%;
  }
}
@media screen and (min-width: 600px) {
  .__requireTitle {
    font-size: 20px;
    padding: 1.5rem 5%;
  }
}
@media screen and (min-width: 1025px) {
  .__requireTitle {
    font-size: 20px;
    padding: 1.5rem 3rem;
  }
}

@media screen and (min-width: 320px) {
  .__requireInner {
    padding: 2rem 5%;
  }
}
@media screen and (min-width: 600px) {
  .__requireInner {
    padding: 3rem 5%;
  }
}
@media screen and (min-width: 1025px) {
  .__requireInner {
    padding: 3rem 5rem;
  }
}
.__requireInner .btn {
  margin: 0 auto;
}
@media screen and (min-width: 320px) {
  .__requireInner .btn {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .__requireInner .btn {
    width: 80%;
  }
}
@media screen and (min-width: 1025px) {
  .__requireInner .btn {
    width: 800px;
  }
}
.__requireInner .btn a, .__requireInner .btn button {
  width: 100%;
}
.__requireInner dl, .__requireInner .dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: solid 1px;
}
@media screen and (min-width: 320px) {
  .__requireInner dl, .__requireInner .dl {
    font-size: 12px;
    padding: 1.5rem 0;
  }
}
@media screen and (min-width: 600px) {
  .__requireInner dl, .__requireInner .dl {
    font-size: 15px;
    padding: 2rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .__requireInner dl, .__requireInner .dl {
    font-size: 15px;
    padding: 2rem 0;
  }
}
.__requireInner dl:last-child, .__requireInner .dl:last-child {
  border-bottom: solid 1px;
}
.__requireInner dl.__inp, .__requireInner .dl.__inp {
  align-items: center;
}
.__requireInner dl.__last, .__requireInner .dl.__last {
  border-bottom: solid 1px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 320px) {
  .__requireInner dl.__small input, .__requireInner .dl.__small input {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .__requireInner dl.__small input, .__requireInner .dl.__small input {
    width: 70%;
  }
}
@media screen and (min-width: 1025px) {
  .__requireInner dl.__small input, .__requireInner .dl.__small input {
    width: 70%;
  }
}
.__requireInner dt, .__requireInner .dt {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .__requireInner dt, .__requireInner .dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 600px) {
  .__requireInner dt, .__requireInner .dt {
    width: 170px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .__requireInner dt, .__requireInner .dt {
    width: 200px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 320px) {
  .__requireInner dd, .__requireInner .dd {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .__requireInner dd, .__requireInner .dd {
    width: calc(100% - 170px);
  }
}
@media screen and (min-width: 1025px) {
  .__requireInner dd, .__requireInner .dd {
    width: calc(100% - 200px);
  }
}
.__requireInner input, .__requireInner textarea {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  background: #E6E6E6;
  padding: 0.75rem 1.25rem;
}
.__requireInner input:focus, .__requireInner textarea:focus {
  background: #333;
  color: #FFF;
}
.__requireInner textarea {
  height: 200px;
}
.__requireInner .check {
  display: flex;
  align-items: center;
}
.__requireInner .check .item {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 1rem;
}
.__requireInner .check input {
  display: none;
}
.__requireInner .check input:checked + .icon::after {
  transform: scale(0.65);
  opacity: 1;
}
.__requireInner .check .icon {
  position: relative;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #E6E6E6;
  margin-right: 5px;
}
.__requireInner .check .icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.25);
  transform-origin: center center;
  transition: opacity 300ms ease, transform 300ms ease;
}

.__requireTel {
  display: flex;
  justify-content: center;
  line-height: 1;
  width: 100%;
  padding: 1.5rem 0;
  border-top: solid 1px;
  border-bottom: solid 1px;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
@media screen and (min-width: 320px) {
  .__requireTel {
    flex-direction: column;
    align-items: center;
    font-size: 16px;
  }
}
@media screen and (min-width: 600px) {
  .__requireTel {
    flex-direction: row;
    align-items: flex-end;
    font-size: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .__requireTel {
    flex-direction: row;
    align-items: flex-end;
    font-size: 20px;
  }
}
.__requireTel small {
  font-size: 70%;
}
@media screen and (min-width: 320px) {
  .__requireTel small {
    margin: 1rem 0 0;
  }
}
@media screen and (min-width: 600px) {
  .__requireTel small {
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .__requireTel small {
    margin: 0 0 0 2rem;
  }
}

@media screen and (min-width: 320px) {
  .__requireBikou {
    font-size: 12px;
    padding: 1.5rem 5%;
  }
}
@media screen and (min-width: 600px) {
  .__requireBikou {
    font-size: 15px;
    padding: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .__requireBikou {
    font-size: 15px;
    padding: 3rem;
  }
}
.__requireBikou dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.__requireBikou dt {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 320px) {
  .__requireBikou dt {
    justify-content: flex-start;
    width: 100%;
    border-bottom: solid 1px;
    border-right: none;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .__requireBikou dt {
    justify-content: center;
    width: 30%;
    border-bottom: none;
    border-right: solid 1px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .__requireBikou dt {
    justify-content: center;
    width: 30%;
    border-bottom: none;
    border-right: solid 1px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 320px) {
  .__requireBikou dd {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .__requireBikou dd {
    width: 65%;
  }
}
@media screen and (min-width: 1025px) {
  .__requireBikou dd {
    width: 65%;
  }
}

#__entry {
  background: #FFF;
}

.__entryInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .__entryInner {
    font-size: 14px;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner {
    font-size: 18px;
  }
}
.__entryInner .desc {
  text-align: center;
}
@media screen and (min-width: 320px) {
  .__entryInner .desc {
    padding: 0 0 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .desc {
    padding: 2rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .desc {
    padding: 2rem 0;
  }
}
.__entryInner dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border: solid 1px;
}
@media screen and (min-width: 320px) {
  .__entryInner dl {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner dl {
    width: 90vw;
    padding: 1rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner dl {
    width: 850px;
    padding: 1.5rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 320px) {
  .__entryInner dl dt {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px;
    text-align: center;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner dl dt {
    width: 170px;
    border-right: solid 1px;
    border-bottom: none;
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner dl dt {
    width: 170px;
    border-right: solid 1px;
    border-bottom: none;
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 320px) {
  .__entryInner dl dd {
    width: 100%;
    padding: 0;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner dl dd {
    width: calc(100% - 170px);
    padding: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner dl dd {
    width: calc(100% - 170px);
    padding: 0 0 0 2rem;
  }
}
.__entryInner .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.__entryInner .list li {
  position: relative;
}
@media screen and (min-width: 320px) {
  .__entryInner .list li {
    width: 47.5%;
    margin-bottom: 10%;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .list li {
    width: 23%;
    margin-bottom: 5%;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .list li {
    width: 23%;
    margin-bottom: 5%;
  }
}
.__entryInner .list .num {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  color: #FFF;
  line-height: 1;
}
@media screen and (min-width: 320px) {
  .__entryInner .list .num {
    font-size: 14px;
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .list .num {
    font-size: 20px;
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .list .num {
    font-size: 20px;
    width: 2rem;
    height: 2rem;
  }
}
.__entryInner .list .title {
  font-weight: 400;
  padding: 1rem 0;
}
@media screen and (min-width: 320px) {
  .__entryInner .list .title {
    font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .list .title {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .list .title {
    font-size: 15px;
  }
}
.__entryInner .list .desc {
  padding: 0;
  text-align: left;
}
@media screen and (min-width: 320px) {
  .__entryInner .list .desc {
    font-size: 11px;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .list .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .list .desc {
    font-size: 14px;
  }
}
.__entryInner .simpledesc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.__entryInner .simpledesc.__multi {
  margin-bottom: 3rem;
}
.__entryInner .simpledesc .img {
  display: flex;
  justify-content: center;
  background-color: #E6E6E6;
}
@media screen and (min-width: 320px) {
  .__entryInner .simpledesc .img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .simpledesc .img {
    width: 30%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .simpledesc .img {
    width: 30%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 320px) {
  .__entryInner .simpledesc .img img {
    width: 90%;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .simpledesc .img img {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .simpledesc .img img {
    width: 100%;
  }
}
.__entryInner .simpledesc .text {
  filter: opacity(0.85);
}
@media screen and (min-width: 320px) {
  .__entryInner .simpledesc .text {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .simpledesc .text {
    width: 65%;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .simpledesc .text {
    width: 65%;
  }
}
.__entryInner .simpledesc .text h3 {
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (min-width: 320px) {
  .__entryInner .simpledesc .text h3 {
    font-size: 14px;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .simpledesc .text h3 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .simpledesc .text h3 {
    font-size: 18px;
  }
}
@media screen and (min-width: 320px) {
  .__entryInner .simpledesc .text p {
    font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .simpledesc .text p {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .simpledesc .text p {
    font-size: 15px;
  }
}
.__entryInner .atten {
  border: solid 1px #E0E0E0;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
  margin: 2rem 0;
}
@media screen and (min-width: 320px) {
  .__entryInner .atten {
    padding: 1rem;
    font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .atten {
    padding: 2rem 3rem;
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .atten {
    padding: 2rem 3rem;
    font-size: 15px;
  }
}
@media screen and (min-width: 320px) {
  .__entryInner .__btnCommon {
    width: 90vw;
  }
}
@media screen and (min-width: 600px) {
  .__entryInner .__btnCommon {
    width: 80vw;
  }
}
@media screen and (min-width: 1025px) {
  .__entryInner .__btnCommon {
    width: 850px;
  }
}

.__simple {
  background: #FFF !important;
}/*# sourceMappingURL=style.css.map */