@charset "UTF-8";
/*===========================================================*/
/*機能編 4-2-4　背景色が伸びる（左から右）　 */
/*===========================================================*/
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  text-align: center;
  background: #ccc;
  background: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20px;
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #333333;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#main_content {
  opacity: 0;
}

/*bodyにappearクラスがついたら出現*/
body.appear #main_content {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  top: 30px;
  /*全体の高さ*/
  height: 100px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #000;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
#humberger {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 2000;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn6 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*ボタン内側*/
.openbtn6 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #333;
}

.openbtn6 span:nth-of-type(1) {
  top: 15px;
  width: 45%;
}

.openbtn6 span:nth-of-type(2) {
  top: 23px;
  width: 35%;
}

.openbtn6 span:nth-of-type(3) {
  top: 31px;
  width: 20%;
}

/*activeクラスが付与されると線が回転して×になる*/
.openbtn6.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.openbtn6.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn6.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

/*========= メニュー画面 ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 1010;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6em 1.5em 0;
}
#g-nav .nav-menu {
  border-bottom: solid 1px #bfbfbf;
}
#g-nav .nav-menu a span.ja {
  font-size: 20px;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.05em;
  padding-right: 25px;
  vertical-align: middle;
}
#g-nav .nav-menu a span.en {
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
}
#g-nav .contact-btn {
  background: linear-gradient(-30deg, #5f5bcc, #ef3b48);
  color: #ffffff;
  padding: 1em 5em;
  text-align: center;
  border-radius: 50px;
}
#g-nav .contact-btn span {
  font-weight: 500;
}
#g-nav {
  /*ナビの高さ*/
  background: #fff;
  /*動き*/
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
}

/*==================================================
  　メインテキストアニメーション  
===================================*/
.animated-text-cover,
.animated-text {
  display: inline-block;
  opacity: 0;
}
.animated-text-cover.active, .animated-text-cover.active::after,
.animated-text.active,
.animated-text.active::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.animated-text-cover.active,
.animated-text.active {
  opacity: 1;
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  cursor: default;
}
.animated-text-cover.active::after,
.animated-text.active::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #92C562;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
/*==================================================
印象編 4 最低限おぼえておきたい動き
===================================*/
/*背景色が伸びて出現（左から）*/
.animatedBgLR {
  position: relative;
  display: inline-block;
  height: 100%;
}

.animatedBgLR.active::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 30px;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*中の要素*/
.animatedBgLR > * {
  opacity: 0;
}

.animatedBgLR.active > * {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 575.98px) {
  header img.logo {
    width: 75%;
  }
}
header .animated-line {
  padding: 0 0.5em 10px 0.5em;
  position: relative;
}
header .animated-line::before {
  background: #369360;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header .animated-line:hover::before,
header .animated-line.active::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
header .animated-line:hover,
header .animated-line.active {
  color: #369360;
}

/*==================================================
　サブカバー
===================================*/
.sub-cover .catch-copy {
  position: relative;
  color: #000000;
  padding-left: 170px;
  padding-bottom: 40px;
}
@media (max-width: 767.98px) {
  .sub-cover .catch-copy {
    padding-left: 20px;
    padding-bottom: 60px;
  }
}
.sub-cover .catch-copy::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: url("../images/sub-cover/image01.png") no-repeat;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .sub-cover .catch-copy::before {
    background-size: 80px;
  }
}
.sub-cover .catch-copy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/sub-cover/image02.png") no-repeat;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .sub-cover .catch-copy::after {
    background-size: 200px;
  }
}
.sub-cover .catch-copy .en {
  color: #369360;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  padding: 0 0.5em;
}
@media (max-width: 767.98px) {
  .sub-cover .catch-copy .en {
    font-size: 14px;
  }
}
.sub-cover .catch-copy .ja {
  font-size: 48px;
  font-weight: bold;
  color: #333333;
}
@media (max-width: 767.98px) {
  .sub-cover .catch-copy .ja {
    font-size: 28px;
  }
}

.my-primary-btn {
  display: flex;
  font-weight: 500;
  letter-spacing: 0.05em;
  align-items: center;
  justify-content: space-between;
  background: #369360;
  color: #ffffff;
  padding: 10px 10px 10px 30px;
  text-align: center;
  border-radius: 50px;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .my-primary-btn {
    padding: 0.5em 0.5em 0.5em 2em;
  }
}
.my-primary-btn.tonal {
  background: white;
  color: #369360;
  border: 1px solid #369360;
}
.my-primary-btn::after {
  display: inline-block;
  content: "\f138";
  font-family: "bootstrap-icons";
  width: 40px;
  height: 40px;
  background: white;
  color: #369360;
  border-radius: 50%;
  border: 4px solid #8CC257;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-primary-btn.transparent {
  background: transparent;
  color: #369360;
  gap: 15px;
}

.goto-job-btn {
  background: linear-gradient(-30deg, #5f5bcc, #ef3b48);
  color: #ffffff;
  padding: 1em 5em;
  text-align: center;
  border-radius: 50px;
}
@media (max-width: 767.98px) {
  .goto-job-btn {
    padding: 0.5em 5em;
  }
}

.btn-light {
  color: #369360;
  border-radius: 0;
  position: relative;
  min-width: 300px;
  padding: 1em 3em;
  font-size: 0.9em;
  border: 1px solid #369360;
}
.btn-light::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #369360;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.btn-light:hover {
  background: #369360;
  color: #ffffff;
}

.section-title {
  color: #369360;
  font-weight: bold;
}
.section-title .ja {
  font-size: 46px;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .section-title .ja {
    display: block;
    font-size: 30px;
    margin-bottom: 0;
  }
}
.section-title .en {
  font-size: 18px;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  .section-title .en {
    font-size: 16px;
  }
}

footer {
  background-color: #fff;
  padding: 50px 0 30px;
}
@media (max-width: 767.98px) {
  footer {
    padding: 40px 0 20px;
  }
}
footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  footer .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  footer .footer__info {
    margin-bottom: 30px;
  }
}
footer .footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  footer .footer__logo-wrap {
    justify-content: center;
  }
}
footer .footer__logo {
  height: 50px;
  width: auto;
}
footer .footer__badge {
  display: inline-block;
  background-color: #369360;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 20px;
}
footer .footer__address {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.8;
}
footer .footer__map-link {
  color: #369360;
  text-decoration: none;
  margin-left: 10px;
  font-size: 14px;
}
footer .footer__map-link i {
  margin-left: 3px;
  color: #369360;
}
footer .footer__map-link .footer:hover {
  text-decoration: underline;
}
footer .footer__tel {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #333;
}
@media (max-width: 991.98px) {
  footer .footer__tel {
    justify-content: center;
    flex-wrap: wrap;
  }
}
footer .footer__tel i {
  color: #369360;
  font-size: 18px;
}
footer .footer__tel a {
  font-size: 28px;
  font-weight: 700;
  color: #369360;
  text-decoration: none;
  letter-spacing: 0.05em;
}
footer .footer__tel a .footer:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  footer .footer__tel a {
    font-size: 24px;
  }
}
footer .footer__tel-time {
  font-size: 14px;
  color: #666;
  margin-left: 15px;
}
@media (max-width: 767.98px) {
  footer .footer__tel-time {
    margin-left: 0;
    width: 100%;
    margin-top: 5px;
  }
}
footer .footer__nav {
  padding-top: 20px;
}
footer .footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
}
footer .footer__nav-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer__nav-list a {
  font-size: 15px;
  color: #333;
  text-decoration: none;
}
footer .footer__nav-list a .footer:hover {
  color: #369360;
}
footer .footer__nav-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #8CC257;
  border-radius: 50%;
}
footer .footer__copyright {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin: 0;
  padding-top: 20px;
  border-top: none;
}

.footer_bnr {
  position: fixed;
  z-index: 500;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 575.98px) {
  .footer_bnr {
    gap: 10px;
  }
}
.footer_bnr .btn {
  font-size: 18px;
  padding: 5px 30px;
}
@media (max-width: 575.98px) {
  .footer_bnr .btn {
    font-size: 14px;
    padding: 5px 10px;
  }
}
.footer_bnr .btn.tonal {
  background: white;
  color: #369360 !important;
  border: 1px solid #369360;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  background-color: #FBF8F2;
}

a {
  text-decoration: none;
  color: #000000;
}

/*==================================================
　ページトップ
===================================*/
.page-top {
  position: fixed;
  bottom: 70px;
  right: 1em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(214, 213, 213, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .page-top {
    bottom: 55px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/*==================================================
　フッター
===================================*/
.footer-contact {
  background: #434343;
}
.footer-contact .index {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .footer-contact .index {
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .footer-contact p {
    text-align: center;
  }
}
.footer-contact .tel {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
}
.footer-contact .tel span {
  font-size: 20px;
  padding-right: 10px;
}
.footer-contact .mail {
  text-align: center;
  font-size: 20px;
}

.interview .box {
  position: relative;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}
.interview .photo {
  width: 100%;
  height: 270px;
  border-radius: 10px;
  width: 100%;
  height: auto;
}
.interview .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.interview .text .cat span {
  font-size: 14px;
  background: #655ac6;
  display: inline-block;
  padding: 3px 15px;
}
.interview .text .name {
  font-size: 20px;
}
.interview .text .name span {
  font-size: 14px;
  color: #6c757d;
  padding-left: 20px;
}