@charset "UTF-8";
/* reset css */
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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body {
  margin: 0;
  color: #3e3e3e;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

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

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

th,
td {
  vertical-align: top;
  font-weight: normal;
  text-align: left;
}

caption {
  text-align: left;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input,
textarea,
select {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       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,
input[type=button]::focus {
  outline-offset: -2px;
}

/* 調整用スタイル */
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

a {
  transition: 0.5s;
}

ul,
li {
  list-style: none;
}

h1 {
  font-weight: bold;
}

p {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 0.86rem;
  }
}

section {
  min-height: 100vh;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  section h2 {
    margin-bottom: 50px;
  }
}
section h2 span {
  font-size: 6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section h2 span {
    font-size: 8vw;
    font-weight: bold;
  }
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb200 {
  margin-bottom: 200px;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
@media print, screen and (min-width: 1281px) {
  .is-sp {
    display: none;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
@media print, screen and (min-width: 1281px) {
  .is-pc {
    display: none;
  }
}

.is-ws {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-ws {
    display: none;
  }
}
@media print, screen and (min-width: 1281px) {
  .is-ws {
    display: block;
  }
}

.container {
  display: none;
}
.container.displayed {
  display: block;
}

.wrapper {
  padding: 0 0 0 50px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 30px;
  }
}
@media print, screen and (min-width: 1281px) {
  .wrapper {
    padding: 0 70px 0 300px;
  }
}

/* FLEX BOX */
.flex-2c,
.flex-3c,
.flex-4c {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.flex-2c > p,
.flex-2c > div,
.flex-2c > img,
.flex-2c > li {
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  .flex-2c > p,
  .flex-2c > div,
  .flex-2c > img,
  .flex-2c > li {
    width: 100%;
  }
}

.flex-3c > p,
.flex-3c > div,
.flex-3c > img,
.flex-3c > li {
  width: calc(33.3% - 26px);
}
@media screen and (max-width: 768px) {
  .flex-3c > p,
  .flex-3c > div,
  .flex-3c > img,
  .flex-3c > li {
    width: 100%;
  }
}

.flex-4c > p,
.flex-4c > div,
.flex-4c > img,
.flex-4c > li {
  width: calc(25% - 30px);
}
@media screen and (max-width: 768px) {
  .flex-4c > p,
  .flex-4c > div,
  .flex-4c > img,
  .flex-4c > li {
    width: 100%;
  }
}

a.btn-blk {
  display: inline-block;
  padding: 10px 60px 10px 30px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  position: relative;
}
a.btn-blk:hover {
  background-color: #000;
  color: #fff;
}
a.btn-blk img {
  width: 14px;
  position: absolute;
  right: 15px;
  top: 15px;
}

/* スクロールアニメーション */
.btm-in {
  opacity: 0;
  transform: translateY(100px);
}
.btm-in.displayed {
  animation: fadeUp 0.7s forwards;
}

@media print, screen and (min-width: 769px) {
  .fade-list.flex-2c li:nth-child(2n).displayed {
    animation-delay: 0.2s;
  }
  .fade-list.flex-3c li:nth-child(3n+2).displayed {
    animation-delay: 0.2s;
  }
  .fade-list.flex-3c li:nth-child(3n).displayed {
    animation-delay: 0.4s;
  }
  .fade-list.flex-4c li:nth-child(4n+2).displayed {
    animation-delay: 0.2s;
  }
  .fade-list.flex-4c li:nth-child(4n+3).displayed {
    animation-delay: 0.4s;
  }
  .fade-list.flex-4c li:nth-child(4n).displayed {
    animation-delay: 0.6s;
  }
  #job .fade-list li:nth-child(3n+2).displayed {
    animation-delay: 0.2s;
  }
  #job .fade-list li:nth-child(3n).displayed {
    animation-delay: 0.4s;
  }
}
.fade-list li {
  opacity: 0;
  transform: scale(10%);
}

.fade-list li.displayed {
  animation: zoomIn 0.5s ease-in-out forwards;
}

#job .fade-list li {
  opacity: 0;
  transform: translateY(100px);
}

#job .fade-list li.displayed {
  animation: fadeUp 0.7s ease-in-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(90%);
  }
  70% {
    opacity: 0.7;
    transform: scale(103%);
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
.left-in {
  opacity: 0;
  transform: translateX(100px);
}
.left-in.displayed {
  animation: fadeRl 0.7s forwards;
}

@keyframes fadeRl {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
span.smoothText {
  overflow: hidden;
  display: block;
}

span.smoothTextTrigger {
  transition: 1.2s ease-in-out;
  transform: translate3d(0, 100%, 0) skewY(19deg);
  transform-origin: left;
  display: block;
}
span.smoothTextTrigger.displayed {
  transform: translate3d(0, 0, 0) skewY(0);
}

/* ヘッダー */
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  /* ナビゲーション */
  /* エントリーボタン */
}
@media screen and (max-width: 768px) {
  .header {
    width: 100vw;
    height: 60px;
    background-color: rgb(255, 255, 255);
  }
}
@media print, screen and (min-width: 1281px) {
  .header {
    width: 240px;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    text-align: center;
    background-color: rgb(255, 255, 255);
  }
}
.header__inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  /* ヘッダーロゴ部分 */
}
@media print, screen and (min-width: 1281px) {
  .header__inner {
    flex-wrap: wrap;
    display: block;
    height: 100vh;
  }
}
.header__inner h1 {
  width: 270px;
  height: 80px;
  text-align: right;
  padding: 15px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__inner h1 {
    width: 60%;
    height: 60px;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
  }
}
@media print, screen and (min-width: 1281px) {
  .header__inner h1 {
    width: 240px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 80px 0;
    text-align: center;
    flex-wrap: wrap;
  }
}
.header__logo {
  width: 50px;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 40px;
    margin: 5px 10px 5px 5px;
  }
}
@media print, screen and (min-width: 1281px) {
  .header__logo {
    width: 100%;
    text-align: center;
    margin: 0 0 10px;
  }
}
.header__logo img {
  width: 100%;
}
@media print, screen and (min-width: 1281px) {
  .header__logo img {
    width: 80px;
    margin: 0 auto;
  }
}
.header__title {
  width: 200px;
  text-align: left;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header__title {
    font-size: 0.9em;
    padding-bottom: 5px;
  }
}
@media print, screen and (min-width: 1281px) {
  .header__title {
    width: 100%;
    text-align: center;
    line-height: 1.4;
  }
}
.header__title span {
  font-size: 0.7em;
  font-weight: normal;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header__title span {
    font-size: 0.6em;
  }
}
.header__nav {
  position: static;
  transform: initial;
  background-color: inherit;
  height: inherit;
  width: calc(100% - 360px);
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    transform: translateX(100%);
    transition: ease 0.4s;
    background-color: rgb(255, 255, 255);
  }
}
@media print, screen and (min-width: 1281px) {
  .header__nav {
    transform: initial;
    background-color: inherit;
    height: inherit;
    width: 100%;
  }
}
.header__nav.active {
  transform: translateX(0);
}
.header__nav__items {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .header__nav__items {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: 0;
    width: 100%;
  }
}
@media print, screen and (min-width: 1281px) {
  .header__nav__items {
    flex-wrap: wrap;
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    padding: 0 0 0 20px;
    margin-top: 0;
  }
}
.header__nav__items li {
  font-size: 0.86rem;
  font-weight: bold;
  display: inline-flex;
  margin: 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header__nav__items li {
    width: 100%;
    font-size: 1.2em;
    margin: 10px 20px;
    opacity: 0;
    transform: translateY(100px);
  }
}
@media print, screen and (min-width: 1281px) {
  .header__nav__items li {
    width: 100%;
    position: relative;
    padding-left: 2em;
    margin: 0 0 30px;
  }
}
.header__nav__items li a {
  margin-bottom: 0;
  color: #000;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header__nav__items li a {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 24px;
    color: #000;
    font-size: 0.96rem;
  }
}
@media print, screen and (min-width: 1281px) {
  .header__nav__items li a {
    text-align: left;
  }
  .header__nav__items li a:hover {
    margin-left: 5px;
  }
}
.header__nav__items li:last-child a {
  margin-bottom: 0;
}
@media print, screen and (min-width: 1281px) {
  .header__nav__items li::before {
    content: "ー";
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
  }
}
.header__entry {
  display: block;
  width: 160px;
  height: 80px;
  line-height: 80px;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 1rem;
}
.header__entry:hover {
  background-color: #31a36f;
}
@media screen and (max-width: 768px) {
  .header__entry {
    width: calc(40% - 70px);
    padding: 0;
    height: 60px;
    line-height: 60px;
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 1281px) {
  .header__entry {
    width: 200px;
    position: fixed;
    left: calc(100vw - 216px);
    top: 0;
  }
}

/* 外部リンク */
.link-blank {
  width: 170px;
  position: fixed;
  right: 165px;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .link-blank {
    width: calc(100% - 100px);
    top: auto;
    left: 50px;
    bottom: 100px;
  }
}
@media print, screen and (min-width: 769px) {
  .link-blank {
    display: flex;
    width: 350px;
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 1281px) {
  .link-blank {
    display: block;
    width: calc(100% - 20px);
    top: auto;
    left: 10px;
    bottom: 20px;
  }
}
.link-blank li {
  margin-bottom: 10px;
}
.link-blank li a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  padding: 5px 20px 5px 0;
  color: #fff;
  background-color: #000;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .link-blank li a {
    font-size: 0.86rem;
    padding: 12px 20px 12px 0;
    border-radius: 30px;
  }
}
@media print, screen and (min-width: 769px) {
  .link-blank li a {
    width: 170px;
  }
}
@media print, screen and (min-width: 1281px) {
  .link-blank li a {
    width: 100%;
  }
}
.link-blank li a:hover {
  background-color: #31a36f;
}
.link-blank li a img {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 12px;
}
@media screen and (max-width: 768px) {
  .link-blank li a img {
    width: 18px;
    top: calc(50% - 9px);
    right: 15px;
  }
}

nav.active .header__nav__items li {
  animation: fadeRl 0.7s forwards;
}
nav.active .header__nav__items li:nth-child(1) {
  animation-delay: 0.1s;
}
nav.active .header__nav__items li:nth-child(2) {
  animation-delay: 0.2s;
}
nav.active .header__nav__items li:nth-child(3) {
  animation-delay: 0.3s;
}
nav.active .header__nav__items li:nth-child(4) {
  animation-delay: 0.4s;
}
nav.active .header__nav__items li:nth-child(5) {
  animation-delay: 0.5s;
}

/* ハンバーガーメニュー */
.hamburger {
  width: 42px;
  height: 100%;
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    display: block;
  }
}
.hamburger span {
  width: 30px;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 10px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

footer {
  width: 100%;
  position: static;
  background-color: #fff;
  padding: 100px 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 50px 0;
  }
}
@media print, screen and (min-width: 1281px) {
  footer {
    height: 100vh;
    width: 70px;
    position: fixed;
    right: 0;
    top: 0;
    padding-top: 0;
  }
}
footer div {
  margin: auto;
}
footer div.s_copyright p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer div.s_copyright p {
    font-size: 0.6rem;
    text-align: left;
    padding: 20px;
  }
}
@media print, screen and (min-width: 1281px) {
  footer div.s_copyright p {
    text-align: center;
    transform: rotate(90deg);
    transform-origin: center top;
    font-size: 0.8rem;
    color: #000;
    position: fixed;
    right: -9em;
    top: 50%;
  }
}
footer div.s_pagetop {
  transform: rotate(90deg);
  position: fixed;
  right: -55px;
  bottom: 20px;
  font-size: 0.8rem;
  color: #000;
  width: 100px;
  height: 100px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  footer div.s_pagetop {
    right: -65px;
  }
}

#page-top,
#page-scroll {
  position: fixed;
  right: 0;
  bottom: 0;
}
#page-top a,
#page-scroll a {
  color: #000;
}
#page-top::before,
#page-scroll::before {
  position: absolute;
  content: "";
  border-top: 1px solid #000;
  width: 50px;
  height: 1px;
  left: -60px;
  top: 10px;
}

#page-top {
  display: none;
}
@media screen and (max-width: 768px) {
  #page-top::before {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    transform: rotate(-45deg);
    width: 15px;
    height: 15px;
    left: -15px;
    top: 2px;
  }
}

/* メインビジュアル */
#hero {
  height: 100vh;
  background-color: #fff;
  padding: 0;
  overflow-x: hidden;
}

.hero-box {
  background-image: url("../images/hero_bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
  background-size: cover;
  width: 100%;
  height: 100vh;
  padding: 60vh 0 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero-box {
    padding: 55vh 0 0 0;
    background-image: url("../images/hero_bg-sp.jpg");
  }
}
.hero-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: inherit;
  filter: brightness(75%);
}
.hero-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: inherit;
  filter: brightness(200%);
  z-index: -1;
  animation: brightness_anime 1.5s ease-out forwards;
  animation-delay: 0.5s;
}
.hero-box .main-txt {
  width: 100%;
  padding-left: 30px;
  color: #fff;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.7);
  position: relative; /* オーバーレイの上に表示 */
  z-index: 2;
}
@media print, screen and (min-width: 1281px) {
  .hero-box .main-txt {
    padding-left: 300px;
  }
}
.hero-box .main-txt .main-copy {
  font-size: 3.6rem;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hero-box .main-txt .main-copy {
    font-size: 11vw;
    line-height: 1.3;
    margin-bottom: 0.2em;
  }
}
.hero-box .main-txt p {
  opacity: 0;
}
.hero-box .main-txt p .displayed {
  animation-delay: 1s;
}
@media screen and (max-width: 768px) {
  .hero-box .main-txt p {
    width: 80%;
  }
}

@keyframes brightness_anime {
  0% {
    filter: brightness(200%);
  }
  100% {
    filter: brightness(100%);
  }
}
/* 会社紹介 */
#about {
  background-size: 100%;
  min-height: 100vh;
  padding-bottom: 100px;
  position: relative;
  overflow-x: hidden;
}
#about::before {
  content: "";
  display: block;
  position: fixed;
  width: 200vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("../images/about-bg.png");
  background-repeat: repeat-x;
  background-size: 100vw;
  background-position: left top;
  animation: scrollimg 50s infinite forwards linear;
  animation-timing-function: linear;
}
@media screen and (max-width: 1280px) {
  #about::before {
    width: 300vw;
    background-image: url("../images/about-bg.png");
    background-repeat: repeat-x;
    background-size: 150vw;
    animation: scrollimgTAB 65s infinite forwards linear;
  }
}
@media screen and (max-width: 768px) {
  #about::before {
    width: 500vw;
    background-image: url("../images/about-bg.png");
    background-repeat: repeat-x;
    background-size: 250vw;
    animation: scrollimgSP 75s infinite forwards linear;
  }
}

@keyframes scrollimg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100vw);
  }
}
@keyframes scrollimgTAB {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-150vw);
  }
}
@keyframes scrollimgSP {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-250vw);
  }
}
#about h2,
#about h3,
#about p {
  color: #fff;
}
#about h3 {
  margin-bottom: 50px;
  font-weight: normal;
}
#about h3 span {
  font-size: 3vw;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #about h3 span {
    font-size: 1.4em;
  }
}
#about ul.data {
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  #about ul.data {
    padding-right: 0;
  }
}
#about ul.data li {
  align-self: stretch;
  margin-bottom: 50px;
  padding: 30px;
  background: linear-gradient(-45deg, transparent 15px, #fff 0);
}
@media screen and (max-width: 768px) {
  #about ul.data li {
    margin-bottom: 20px;
    padding: 15px;
    min-height: auto;
  }
}
#about .flex-icon {
  display: flex;
  align-items: center;
}
#about .flex-icon img {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #about .flex-icon img {
    width: 40%;
  }
}
#about .flex-icon > div {
  width: 55%;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #about .flex-icon > div {
    width: 60%;
  }
}
#about .flex-icon > div h4 {
  margin-bottom: 10px;
}
#about .flex-icon > div span {
  font-size: 3.6em;
  line-height: 1;
  color: #31a36f;
}
@media screen and (max-width: 768px) {
  #about .flex-icon > div span {
    font-size: 2.6em;
  }
}
#about .flex-icon > div p {
  margin-top: 10px;
  font-size: 0.8em;
  color: #666;
  font-weight: normal;
}
#about .flex-icon-s {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#about .flex-icon-s img {
  width: 50%;
  margin: 0 25%;
}
@media screen and (max-width: 768px) {
  #about .flex-icon-s img {
    width: 40%;
    margin: 0;
  }
}
#about .flex-icon-s > div {
  width: 100%;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #about .flex-icon-s > div {
    width: 60%;
  }
}
#about .flex-icon-s > div h4 {
  margin-bottom: 10px;
}
#about .flex-icon-s > div span {
  font-size: 3em;
  line-height: 1;
  color: #31a36f;
}
@media screen and (max-width: 768px) {
  #about .flex-icon-s > div span {
    font-size: 2.6em;
  }
}
#about .flex-icon-s > div p {
  margin-top: 10px;
  font-size: 0.8em;
  color: #666;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  #about .flex-icon-s > div p {
    line-height: 1.2;
    font-size: 0.7em;
  }
}
@media screen and (max-width: 768px) {
  #about .flex-icon-s > div br.sp-none {
    display: none;
  }
}
#about .def-icon {
  text-align: center;
  font-weight: bold;
}
#about .def-icon img {
  width: 60%;
  margin: 0 20%;
}
@media screen and (max-width: 768px) {
  #about .def-icon img {
    width: 70%;
    margin: 0 15%;
  }
}
#about .def-icon > div h4 {
  margin-bottom: 10px;
}
#about .def-icon > div span {
  font-size: 2.6em;
  line-height: 1;
  color: #31a36f;
}
@media screen and (max-width: 768px) {
  #about .def-icon > div span {
    font-size: 1.8em;
  }
}
#about .def-icon > div p {
  margin-top: 10px;
  font-size: 0.8em;
  color: #666;
  font-weight: normal;
}

/* 仕事紹介 */
#job {
  min-height: 100vh;
  padding-bottom: 100px;
  background-color: #fff;
}
#job h2 {
  color: #000;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  #job h2 {
    margin-bottom: 80px;
  }
}
#job ul {
  display: flex;
  flex-wrap: wrap;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  #job ul {
    padding-right: 0;
  }
}
#job ul li {
  width: calc(33.3% - 33px);
  background-color: #fff;
  position: relative;
  margin-bottom: 100px;
  margin-right: 49px;
}
@media screen and (max-width: 768px) {
  #job ul li {
    width: calc(100% - 60px);
    margin: 0 30px 60px;
  }
}
#job ul li:nth-child(3n) {
  margin-right: 0;
}
#job ul li span {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  left: 0;
  top: -7rem;
  line-height: 10rem;
  font-size: 10rem;
  color: rgba(0, 0, 0, 0.1);
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-style: italic;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #job ul li span {
    top: -6rem;
    font-size: 5rem;
  }
}
#job ul li img {
  width: 100%;
  filter: brightness(70%);
  border-radius: 15px;
}
#job ul li .job-content {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #job ul li .job-content {
    padding: 20px 0 50px;
  }
}
#job ul li h3 {
  font-weight: bold;
  border-bottom: 1px solid #eee;
  margin-bottom: 1em;
  padding-bottom: 1em;
}

/* 先輩社員インタビュー */
#interview {
  background-color: #f0f0f0;
  min-height: 100vh;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #interview .wrapper {
    padding-right: 0;
  }
  #interview h2 {
    margin-bottom: 20px;
  }
}

/* swiper */
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  width: 100%;
}

.iv-slider {
  overflow: hidden;
}
.iv-slider .swiper {
  overflow: visible;
}
.iv-slider .swiper-controller {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-end;
  margin: 0 30px 50px 0;
}
@media screen and (max-width: 768px) {
  .iv-slider .swiper-controller {
    gap: 1rem;
    margin: 0 20px 20px 0;
  }
}
.iv-slider .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 0.3rem;
  justify-content: flex-start;
  margin: 0 auto 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .iv-slider .swiper-pagination {
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.iv-slider .swiper-pagination-bullet {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  transition: var(--transition);
  vertical-align: bottom;
  background-color: #ccc;
}
@media screen and (max-width: 768px) {
  .iv-slider .swiper-pagination-bullet {
    width: 4px;
    height: 1rem;
    transition: var(--transition);
  }
}
.iv-slider .swiper-pagination-bullet-active {
  width: 2.6rem;
  background-color: #31a36f;
}
@media screen and (max-width: 768px) {
  .iv-slider .swiper-pagination-bullet-active {
    width: 4px;
    height: 1.6rem;
  }
}

/* 前へ / 次へ / 一時停止ボタン */
.iv-slider .swiper-button-prev,
.iv-slider .swiper-button-next,
.iv-slider .swiper_pause {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  display: grid;
  place-content: center;
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .iv-slider .swiper-button-prev,
  .iv-slider .swiper-button-next,
  .iv-slider .swiper_pause {
    width: 2rem;
    height: 2rem;
  }
}
@media print, screen and (min-width: 1281px) {
  .iv-slider .swiper-button-prev:hover::before,
  .iv-slider .swiper-button-next:hover::before,
  .iv-slider .swiper_pause:hover::before {
    background-color: #000;
  }
}
.iv-slider .swiper-button-prev::before,
.iv-slider .swiper-button-next::before,
.iv-slider .swiper_pause::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: #fff;
}
@media print, screen and (min-width: 1281px) {
  .iv-slider .swiper-button-prev::before,
  .iv-slider .swiper-button-next::before,
  .iv-slider .swiper_pause::before {
    transition: var(--transition);
  }
}
.iv-slider .swiper-button-prev:focus::before,
.iv-slider .swiper-button-next:focus::before,
.iv-slider .swiper_pause:focus::before {
  border: 2px solid #000;
}
.iv-slider .swiper-button-prev::after,
.iv-slider .swiper-button-next::after {
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  border: solid #ccc;
  border-width: 3px 3px 0 0;
}
@media screen and (max-width: 768px) {
  .iv-slider .swiper-button-prev::after,
  .iv-slider .swiper-button-next::after {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.iv-slider .swiper_pause::after {
  width: 1rem;
  height: 1rem;
  content: "";
  background: url("../images/swiper-pause.svg") left top no-repeat;
  z-index: 5;
}
.iv-slider .swiper_pause.paused::after {
  background: url("../images/swiper-play.svg") left top no-repeat;
}
.iv-slider .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.iv-slider .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.iv-slider .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.iv-slider .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}
.iv-slider .swiper-slide {
  width: -moz-max-content;
  width: max-content;
  height: auto;
  background: linear-gradient(-45deg, transparent 30px, #fff 0);
  padding-bottom: 30px;
}
.iv-slider .slide {
  overflow: hidden;
  width: 18rem;
}
@media screen and (max-width: 768px) {
  .iv-slider .slide {
    width: 16rem;
  }
}
.iv-slider .slide img {
  transition: 0.5s;
}
.iv-slider .swiper-slide:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .iv-slider .swiper-slide:hover img {
    transform: none;
  }
}
@media print, screen and (min-width: 1281px) {
  .iv-slider .swiper-slide:hover img {
    transform: scale(1.1);
  }
}
.iv-slider .slide-content {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 1.2rem;
  text-align: left;
}
.iv-slider .slide-content p {
  font-weight: bold;
  color: #000;
}
.iv-slider .slide-date {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  color: var(--color-theme);
}
.iv-slider .slide-title {
  font-weight: 100;
  font-size: 0.8rem;
  margin-bottom: 30px;
  color: #000;
}

/* インタビュー詳細 */
div[class^=iv-set_] {
  display: none;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  div[class^=iv-set_] {
    padding: 50px 0 100px;
  }
}
div[class^=iv-set_].displayed {
  display: block;
}

.iv-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
.iv-head > div {
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  .iv-head > div {
    width: 100%;
  }
}
.iv-head > div:nth-child(1) {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .iv-head > div:nth-child(1) {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.iv-head > div img {
  width: 100%;
}
.iv-head h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
}
.iv-head div.clip {
  position: relative;
}
.iv-head div.clip::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  animation: clipMask 0.5s ease-in forwards;
}

@keyframes clipMask {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.iv-body {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .iv-body {
    margin-right: 40px;
  }
}
.iv-body h3 {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .iv-body h3 {
    font-size: 1.2em;
  }
}
.iv-body p {
  margin-bottom: 50px;
}

.iv-schedule {
  background-color: #fff;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .iv-schedule {
    padding: 25px;
  }
}
.iv-schedule h3 {
  width: 30%;
  line-height: 1.2;
  font-size: 2.4em;
}
@media screen and (max-width: 768px) {
  .iv-schedule h3 {
    width: 100%;
  }
}
.iv-schedule h3 span {
  font-size: 0.4em;
  font-weight: normal;
}
.iv-schedule dl {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .iv-schedule dl {
    width: 100%;
  }
}
.iv-schedule dl dt {
  width: 6em;
  text-align: right;
  padding: 15px;
  font-weight: bold;
  border-right: 2px solid #31a36f;
}
@media screen and (max-width: 768px) {
  .iv-schedule dl dt {
    width: 4em;
  }
}
.iv-schedule dl dd {
  width: calc(100% - 6em);
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .iv-schedule dl dd {
    width: calc(100% - 4em);
  }
}

/* エントリー */
#entry {
  background: #333 url("../images/entry-bg-txt.png") right bottom no-repeat;
  padding: 100px 50px 100px 0;
}
@media screen and (max-width: 768px) {
  #entry {
    padding: 100px 0 100px;
    background: #333 url("../images/entry-bg-txt.png") right bottom no-repeat;
    background-size: 30%;
  }
}
@media print, screen and (min-width: 1281px) {
  #entry {
    background: #333 url("../images/entry-bg-txt.png") right 80px bottom no-repeat;
  }
}
#entry h2 {
  color: #fff;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #entry h2 {
    margin-bottom: 50px;
  }
}
#entry h3 {
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
  font-size: 1.6em;
  font-weight: bold;
}
#entry a img.blk-icon {
  width: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
}
#entry #career {
  margin-bottom: 80px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #entry #career {
    padding-top: 80px;
  }
}
#entry #career .career-tel {
  font-weight: bold;
  letter-spacing: 2px;
}
#entry #career .career-tel span {
  color: #fff;
  font-size: 1.4em;
}
#entry .link-box {
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid #666;
  align-items: baseline;
}
#entry #career ul.entry-box li, #entry #pa ul.entry-box li {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #entry #career ul.entry-box li, #entry #pa ul.entry-box li {
    width: 100%;
  }
}
#entry #career ul.entry-box li:nth-child(2n-1), #entry #pa ul.entry-box li:nth-child(2n-1) {
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  #entry #career ul.entry-box li:nth-child(2n-1), #entry #pa ul.entry-box li:nth-child(2n-1) {
    margin: 0 0 30px 0;
  }
}
#entry #career a, #entry #pa a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 20px;
  text-align: center;
  background-color: #fff;
  color: #333;
  font-size: 1.1em;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  #entry #career a, #entry #pa a {
    padding: 30px 15px;
    font-size: 1.6em;
  }
}
@media print, screen and (min-width: 1281px) {
  #entry #career a, #entry #pa a {
    padding: 30px;
    font-size: 1.4em;
  }
}
#entry #career a div, #entry #pa a div {
  width: 15%;
}
@media screen and (max-width: 768px) {
  #entry #career a div, #entry #pa a div {
    width: 100%;
  }
}
#entry #career a div img, #entry #pa a div img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #entry #career a div img, #entry #pa a div img {
    width: 50%;
    max-width: 100px;
  }
}
#entry #career a p, #entry #pa a p {
  width: 85%;
  font-size: 1em;
  transition: all 0.5s;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #entry #career a p, #entry #pa a p {
    width: 100%;
    font-size: 0.7em;
  }
}
#entry #career a:hover p, #entry #pa a:hover p {
  transform: scale(1.05);
}
#entry #pa {
  color: #fff;
}
#entry .tx-g {
  color: #999;
}
#entry .entry-link li {
  margin-bottom: 10px;
}
#entry .entry-link a {
  display: inline-block;
  padding: 0 30px 0 0;
  font-size: 0.86rem;
  color: #ccc;
  font-weight: 100;
}
#entry .entry-link a:hover {
  color: #fff;
}
#entry .entry-link a img {
  width: 12px;
  margin-left: 6px;
}

#new-g p {
  color: #fff;
  margin-bottom: 40px;
}
#new-g ul.entry-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #new-g ul.entry-box {
    margin-bottom: 0;
  }
}
#new-g ul.entry-box li {
  width: calc(50% - 30px);
}
@media screen and (max-width: 768px) {
  #new-g ul.entry-box li {
    width: 100%;
  }
}
#new-g ul.entry-box li:nth-child(2n-1) {
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  #new-g ul.entry-box li:nth-child(2n-1) {
    margin: 0 0 30px 0;
  }
}
#new-g ul.entry-box li a {
  display: block;
  padding: 40px 60px;
  min-height: 10vw;
  position: relative;
  background-color: #fff;
  text-align: center;
}
#new-g ul.entry-box li a img.navi-logo {
  width: 100%;
  transition: all 0.5s;
  transform: scale(0.9);
}
#new-g ul.entry-box li a:hover img.navi-logo {
  transform: scale(1);
}

/* エントリー2（中途リンクVer.） */
#entry2 {
  background: #333 url("../images/entry-bg-txt.png") right bottom no-repeat;
  padding: 100px 50px 100px 0;
}
@media screen and (max-width: 768px) {
  #entry2 {
    padding: 100px 0 100px;
    background: #333 url("../images/entry-bg-txt.png") right bottom no-repeat;
    background-size: 30%;
  }
}
@media print, screen and (min-width: 1281px) {
  #entry2 {
    background: #333 url("../images/entry-bg-txt.png") right 80px bottom no-repeat;
  }
}
#entry2 h2 {
  color: #fff;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #entry2 h2 {
    margin-bottom: 50px;
  }
}
#entry2.entry-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#entry2.mynavi-bnr {
  padding: 50px;
  color: #666;
  width: 60%;
  margin-bottom: 50px;
  height: 20vw;
  border-bottom: 1px solid #aaa;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #entry2.mynavi-bnr {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    padding: 30px;
    text-align: center;
    display: block;
  }
}
#entry2.mynavi-bnr:hover {
  background-color: #000;
  color: #fff;
  transition: 0.5s;
}
#entry2.mynavi-bnr img.mynavi-logo {
  max-width: 250px;
  margin: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  #entry2.mynavi-bnr img.mynavi-logo {
    max-width: 100%;
    margin: 0 auto 15px auto;
  }
}
#entry2.mynavi-bnr img.blk-icon {
  width: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
}
#entry2.mynavi-bnr p {
  width: calc(100% - 230px);
  text-align: left;
}
@media screen and (max-width: 768px) {
  #entry2.mynavi-bnr p {
    text-align: left;
    width: 100%;
  }
}
#entry2.recop-bnr {
  margin-bottom: 50px;
  border-left: 1px solid #aaa;
  padding: 0;
  width: 40%;
}
@media screen and (max-width: 768px) {
  #entry2.recop-bnr {
    width: 100%;
  }
}
#entry2.recop-bnr li {
  border-bottom: 1px solid #aaa;
  width: 100%;
  height: 10vw;
  position: relative;
  transition: all 0.3s;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #entry2.recop-bnr li {
    height: auto;
    padding: 30px 0;
    font-size: 0.86rem;
  }
}
#entry2.recop-bnr li:hover {
  background-color: #000;
}
#entry2.recop-bnr li a {
  display: block;
  text-align: center;
  color: #666;
  height: 100%;
  line-height: 10vw;
}
#entry2.recop-bnr li a:hover {
  color: #fff;
  transition: 0.5s;
}
#entry2.recop-bnr li a img.blk-icon {
  width: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
}
#entry2 .tx-g {
  color: #999;
}
#entry2 .entry-link li {
  margin-bottom: 10px;
}
#entry2 .entry-link a {
  display: inline-block;
  padding: 0 30px 0 0;
  font-size: 0.86rem;
  color: #ccc;
  font-weight: 100;
}
#entry2 .entry-link a:hover {
  color: #fff;
}
#entry2 .entry-link a img {
  width: 12px;
  margin-left: 6px;
}/*# sourceMappingURL=style.css.map */