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

#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;
  }
}
.scroll_down_area {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.scroll_down {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.scroll_down span.text {
  font-size: 12px;
  color: #fff;
  opacity: 0.8;
  line-height: 1;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
.scroll_down span.line {
  position: relative;
  display: inline-block;
  width: 2px;
  height: 100px;
}
.scroll_down span.line:before,
.scroll_down span.line:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.scroll_down span.line:before {
  background: #fff;
}
.scroll_down span.line:after {
  background: #ccc;
}

.scroll_down.recruit {
  opacity: 0.7;
}
.scroll_down.recruit span.text {
  color: #000;
}
.scroll_down.recruit span.line:before {
  background: #000;
}
.scroll_down.recruit span.line:after {
  background: #ccc;
}

#type01 span.line:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*==================================================
　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;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
  padding-top: 5vh;
  padding-bottom: 5vh;
}
#g-nav .navigation {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 90%;
}
#g-nav .navigation-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
}
#g-nav .navigation-item a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 10px 0;
}
#g-nav .navigation-item .accordion {
  position: relative;
  display: flex;
  flex-direction: column;
}
#g-nav .navigation-item .accordion-toggle {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
#g-nav .navigation-item .accordion-toggle::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
#g-nav .navigation-item .accordion-toggle.active::after {
  transform: translateY(-50%) rotate(45deg);
}
#g-nav .navigation-item .accordion-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0;
  margin: 0;
  list-style: none;
  transform-origin: top;
}
#g-nav .navigation-item .accordion-menu.open {
  max-height: 500px;
  padding-left: 15px;
  padding-bottom: 15px;
}
#g-nav .navigation-item .accordion-menu.open li {
  position: relative;
}
#g-nav .navigation-item .accordion-menu.open li::after {
  content: "\f285";
  font-family: "bootstrap-icons";
  color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-140%, -50%);
  font-size: 0.4rem;
}
#g-nav .navigation-item .accordion-menu a {
  display: block;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  padding: 5px 0;
  white-space: nowrap;
}
#g-nav .navigation-item .en {
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.5;
}
#g-nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #50976E 0%, #093f20 100%);
  filter: url(#noiseFilter);
  z-index: 1;
}

/*アクティブクラスがついたら位置を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: #f0f3f6;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}
.animated-text-cover.a-white.active::after,
.animated-text.a-white.active::after {
  background-color: #f0f3f6;
}
.animated-text-cover.a-transparent.active::after,
.animated-text.a-transparent.active::after {
  background-color: #f0f3f6;
}

@keyframes clip-text {
  from {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            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: #f0f3f6;
  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;
  }
}
/* .block-content 直下の要素にサイト幅を指定 */
.block-content > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* .block-content 直下の .alignwide の場合 */
.block-content > .alignwide {
  max-width: 1400px;
}

/* .block-content 直下の .alignfull の場合 */
.block-content > .alignfull {
  max-width: 100%;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 20px;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  header {
    padding: 15px 0 0 10px;
  }
  header img.logo {
    width: 240px;
  }
}
header .nav-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991.98px) {
  header .nav-items {
    display: none;
  }
}
header .nav-items .nav-item {
  padding: 5px 15px;
  letter-spacing: 0.05em;
}
header .nav-items .nav-item > a {
  font-weight: 400;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
header .dropdown-menu {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: none;
  transition: transform 0.4s ease-out;
}
header .dropdown-menu .d-item {
  padding: 5px 15px;
}
header .dropdown-menu .d-item > a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
header .dropdown-menu .d-item > a img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
header .dropdown-menu .d-item > a:hover {
  background: rgba(255, 255, 255, 0.8);
}

footer {
  background: #121212;
  padding: 100px 0 0;
}
@media (max-width: 575.98px) {
  footer {
    padding: 60px 0 0;
  }
}
footer .logo {
  text-align: center;
}
footer .company-info {
  color: #fefefe;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  footer .company-info {
    margin-top: 30px;
  }
}
footer .company-info .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
footer .company-info .address,
footer .company-info .tel {
  font-size: 14px;
}
footer .company-info .item {
  width: 400px;
}
footer .company-info .item:nth-child(1), footer .company-info .item:nth-child(2) {
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  footer .company-info .item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
footer .tel span {
  font-size: 0.8em;
  margin-right: 10px;
}

.main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding: 20px 80px;
  background-color: #50976e;
  color: #ffffff;
  border-radius: 50px;
  letter-spacing: 0.2em;
}

body {
  font-family: "Noto Sans JP", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #333333;
  line-height: 1.6;
}

.en {
  font-family: "Hind", sans-serif;
  font-weight: 700;
}

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

/*==================================================
　サブカバー
===================================*/
.sub-cover {
  position: relative;
  width: 100%;
  height: 500px;
  background: url("/wp-content/themes/main/images/common/sub_cover.webp") no-repeat top center;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .sub-cover {
    width: 100%;
    height: 260px;
  }
}
.sub-cover .title-area {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .sub-cover .title-area {
    top: 60%;
    left: 3%;
  }
}
.sub-cover .title-area .en-title {
  font-size: 72px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
}
@media (max-width: 991.98px) {
  .sub-cover .title-area .en-title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 10px;
  }
}
.sub-cover .title-area .ja-title {
  font-size: 20px;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .sub-cover .title-area .ja-title {
    font-size: 16px;
    line-height: 1;
    display: block;
  }
}

/*==================================================
　見出しsub-title
===================================*/
h2.sub-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
  font-weight: bold;
}

h2.sub-title:after {
  content: "";
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #50976E;
  border-radius: 2px;
}

/*==================================================
　ページトップ
===================================*/
.page-top {
  position: fixed;
  bottom: 1em;
  right: 1em;
}/*# sourceMappingURL=common.css.map */