@charset "utf-8";
/*共通 設定
---------------------------------------------------------*/
:root {
  --color-sub: #00889a;
  --color-red: #bd4c48;
  --color-gray: #F5F5F5;
  --color-black: #151F39;
  --grad-main: linear-gradient(90deg, #0064BE 0%,#80B1DE 100%);
  --font_calder_dark: "calder-dark", sans-serif;
  --font_calder_darkGrit: "calder-dark-grit", sans-serif;
  --font_calder_darkGritShadow: "calder-dark-grit-shadow", sans-serif;
}
.font_calder_dark{
    font-family: var(--font_calder_dark);
    font-weight: 400;
    line-height: 1;
}
.font_calder_darkGrit{
    font-family: var(--font_calder_darkGrit);
    font-weight: 400;
    line-height: .8;
}
.font_calder_darkGritShadow{
    font-family: var(--font_calder_darkGritShadow);
    font-weight: 400;
    line-height: .8;
}
.txtSet{
    line-height: 2;
    text-align: justify;
}
.clrSub{
  color: var(--color-sub)!important;
}
.bgSub{
  background-color: var(--color-sub)!important;
}
.clrBlack{
  color: var(--color-black)!important;
}
.bgBlack{
  background-color: var(--color-black)!important;
}


/*header
---------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: .2s;
  z-index: 999;
}
#subPage #header.scrollClass{
  background-color: #fff;
}
.headerWrap {
  width: 96%;
  max-width: 200rem;
  margin: 0 auto;
  padding: 3.2rem 0;
}
.hLogo a {
  font-size: 3.8rem;
}
.hNav{
  align-items: center;
  gap: 3.5rem;
}
.hNav ul{
  gap: 4.2rem;
}
.hNav li {
  text-align: left;
  position: relative;
}
.hNav li a {
  position: relative;
}
.hNav li a span{
  font-size: 2.4rem;
  margin-right: 1rem;
  display: inline-block;
}
.hBtn a{
  background-color: var(--color-black);
  color: #fff;
  width: 23rem;
  display: inline-block;
  border-radius: 3rem;
  padding: 1.6rem;
  font-size: 2rem;
}
.hLogo a:hover,
.hNav li a:hover{
  color: var(--color-sub);
}
.hBtn a:hover{
  background-color: var(--color-sub);
}


.menuIcon {
  display: none;
}



/*共通 パーツ
---------------------------------------------------------*/
.c_bg_sky{
  background: url("../img/sky.jpg") top center repeat-y;
  background-size: 100% auto;
}



/*アニメーション
---------------------------------------------------------*/
:root{
  --transition-opacity: opacity .8s .4s ease;
}
.yLoop{
  opacity: 0;
  transition: var(--transition-opacity);
  animation: yLoop 5s ease-in-out infinite;
}
.js-scroll .yLoop {
  opacity: 0;
}
.yLoop._02,
.yLoop._04,
.yLoop._09-2,
.yLoop._19-2{
  transition-delay: .7s;
  animation-delay: 1s;
}
.yLoop._03,
.yLoop._09-3,
.yLoop._19-3{
  transition-delay: 1s;
  animation-delay: 1.5s;
}
.js-scroll.active .yLoop {
  opacity: 1;
}

@keyframes yLoop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2rem);
  }
  100% {
    transform: translateY(0);
  }
}

.js-scroll ._fadeIn{
  opacity: 0;
  transition: var(--transition-opacity);
}
.js-scroll.active ._fadeIn{
  opacity: 1;
}

/*top
---------------------------------------------------------*/
/* 空からタイトル */
.p_top_sky{
  position: relative;
  z-index: 1;
  height: 100dvh;
  min-height: 70rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p_top_sky__ttl{
  position: relative;
}
.p_top_sky__ttl h1{
  font-size: 3.6rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}
.p_top_sky__ttl h2{
  font-size: 13.4rem;
  line-height: 1.05;
  letter-spacing: .08em;
}
.p_top_sky__ttl .img_cloud{
  z-index: -1;
}
.p_top_sky__ttl .img_cloud._01{
  position: absolute;
  top: -30rem;
  right: -37rem;
  width: 72rem;
  aspect-ratio: 760/385;
}
.p_top_sky__ttl .img_cloud._02{
  position: absolute;
  top: 20rem;
  left: -58rem;
  width: 85.6rem;
  aspect-ratio: 903/458;
}

/* 種落下 */
.p_top_fullscreen__seed{
  height: 5rem;
  position: relative;
}
.p_top_fullscreen__seed .img_seed{
  width: 8.4rem;
  z-index: 99;
  position: absolute;
  top: 20rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: none;
  aspect-ratio: 88/68;
}
.p_top_fullscreen__seed .img_seed.fixed {
  opacity: 1;
  position: fixed;
  transform: translateX(-50%);
}


/* 全画面 */
.p_top_fullscreen__body{
  position: relative;
  height: 100dvh;
}
.p_top_fullscreen__body .body_cont{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.p_top_fullscreen__body figure{
  position: absolute;
  opacity: 0;
  z-index: 11;
}
.p_top_fullscreen__body .img_soil{
  width: 80.2rem;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  margin-inline: auto;
  opacity: 1;
}
.p_top_fullscreen__body .ttlWrap {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 0;
  left: 0;
  right: 0;
}
.p_top_fullscreen__body .ttl{
  font-size: 4rem;
  position: absolute;
  opacity: 0;
  z-index: 200;
  letter-spacing: 0.15em;
  line-height: 1.6;
  font-feature-settings: "palt";
  padding-bottom: 25vw;
}
.p_top_fullscreen__body .clrWhite .ttl{
  color: #fff;
  text-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.5);
}
.p_top_fullscreen__body .ttl._topPosition{
  padding-bottom: 20vw;
}
.p_top_fullscreen__body_mountain .ttl{
  padding-bottom: 4vw;
}
.p_top_fullscreen__body_climb .ttl{
  padding-bottom: 2vw;
}

/* 種から開花 */
.p_top_fullscreen__body_bloom .img_shine{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.p_top_fullscreen__body_bloom .img_shine img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_top_fullscreen__body_bloom .img_wateringcan{
  width: 62.7rem;
  bottom: 26rem;
  right: -14rem;
}
.p_top_fullscreen__body_bloom .img_water{
  width: 63.2rem;
  bottom: 12rem;
  right: 50rem;
}
.p_top_fullscreen__body_bloom ._seedPosition{
  bottom: 7rem;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.p_top_fullscreen__body_bloom .img_germination{
  width: 9.2rem;
  right: 6rem;
}
.p_top_fullscreen__body_bloom .img_sprout{
  width: 24.9rem;
}
.p_top_fullscreen__body_bloom .img_bud{
  width: 20rem;
}
.p_top_fullscreen__body_bloom .img_flower01{
  width: 30rem;
}
.p_top_fullscreen__body_bloom .img_flower02{
  width: 32rem;
  bottom: 10rem;
  left: 40rem;
}
.p_top_fullscreen__body_bloom .img_flower03{
  width: 46.6rem;
  bottom: 10rem;
  right: 31rem;
}
.p_top_fullscreen__body_bloom .img_grassy{
  opacity: 0;
  background: url("../img/top/09_grassy.png") center bottom repeat-x;
  background-size: contain;
  height: 34.2rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 100;
}
.p_top_fullscreen__body_bloom .img_cloud{
  transition: none;
  z-index: 5;
}
.p_top_fullscreen__body_bloom .img_cloud._09-1{
  width: 71rem;
  top: 25%;
  left: -21rem;
}
.p_top_fullscreen__body_bloom .img_cloud._09-2{
  width: 57.3rem;
  top: 26%;
  right: -12rem;
}
.p_top_fullscreen__body_bloom .img_cloud._09-3{
  width: 31.4rem;
  top: 49%;
  right: 36rem;
}
.p_top_fullscreen__body_bloom .img_flower04{
  width: 35.7rem;
  bottom: 6rem;
  left: 4rem;
}
.p_top_fullscreen__body_bloom .img_flower05{
  width: 25rem;
  bottom: 10rem;
  right: 3rem;
}

/* 木が横に移動するところ */
.p_top_fullscreen__body_tree{
  z-index: 999;
}
.p_top_fullscreen__body_tree .img_tree{
  opacity: 0;
  background: url("../img/top/11_tree.png") left bottom repeat-x;
  background-size: auto 100%;
  height: 52rem;
  width: 800%;
  margin-top: -50rem;
  position: absolute;
  bottom: -40rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 100;
}
.p_top_fullscreen__body_tree .img_mountain{
  width: 100%;
  bottom: -40rem;
}
.p_top_fullscreen__body_tree .img_mountain img{
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  object-position: top center;
}
.p_top_fullscreen__body_tree .img_flower{
  opacity: 0;
  background: url("../img/top/12_tree_flower.png") left bottom repeat-x;
  background-size: auto 100%;
  height: 25rem;
  width: 1000%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 101;
}
.p_top_fullscreen__body_tree .img_seedWrap{
  height: 100%;
  gap: 20rem;
  z-index: 1000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10rem;
}
.p_top_fullscreen__body_tree .img_seed{
  position: relative;
}
.p_top_fullscreen__body_tree .img_seed._01{
  width: 27.8rem;
}
.p_top_fullscreen__body_tree .img_seed._02{
  width: 17.9rem;
}
.p_top_fullscreen__body_tree .img_seed._03{
  width: 25.0rem;
}
.p_top_fullscreen__body_tree .img_seed._04{
  width: 19rem;
}
.p_top_fullscreen__body_tree .img_seed figure{
  position: absolute;
  top: 0;
  left: 0;
}
.p_top_fullscreen__body_tree .img_seed._01 figure._before{
  top: 2rem;
}
.p_top_fullscreen__body_tree .img_seed._03 figure._before{
  top: 5rem;
}
.p_top_fullscreen__body_tree .img_seed._01 figure._after{
  top: -6rem;
  width: 110%;
}
.p_top_fullscreen__body_tree .img_seed._03 figure._after{
  top: -2rem;
  width: 110%;
}
.p_top_fullscreen__body_tree .img_seed._04 figure._after{
  width: 120%;
}
.p_top_fullscreen__body_tree .img_petalWrap{
  width: 100%;
  height: 100%;
  z-index: 100;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p_top_fullscreen__body_tree .img_petal{
  position: absolute;
  top: 0;
  left: 0;
}

/* 山 登る前 */
.p_top_fullscreen__body_mountain .img_mountain{
  bottom: 0;
  width: 100%;
  min-height: 70dvh;
  height: 82rem;
}
.p_top_fullscreen__body_mountain .img_mountain img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.p_top_fullscreen__body_mountain .ttlWrap{
  padding-bottom: 0;
  padding-top: 3vw;
}
@media screen and (min-width: 2000px) {
  .p_top_fullscreen__body_mountain .ttlWrap{
    padding-top: 0;
  }
}
.p_top_fullscreen__body_mountain .ttl{
  font-size: 4rem;
}
.p_top_fullscreen__body_mountain .img_human{
  bottom: 11rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 15.2rem;
}
.p_top_fullscreen__body_mountain .img_shine{
  top: -53rem;
  left: 0;
  right: 20rem;
  margin-inline: auto;
  width: 149.5rem;
}

/* 山 登頂 */
.p_top_fullscreen__body_climb .img_mountain{
  bottom: 0;
  width: 100%;
  max-height: 74rem;
}
.p_top_fullscreen__body_climb .img_mountain img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_top_fullscreen__body_climb .img_cloud{
  transition: none;
  z-index: 5;
}
.p_top_fullscreen__body_climb .img_cloud._19-1{
  width: 77.8rem;
  top: -4rem;
  left: -21rem;
}
.p_top_fullscreen__body_climb .img_cloud._19-2{
  width: 60.6rem;
  top: -3rem;
  right: -12rem;
}
.p_top_fullscreen__body_climb .img_cloud._19-3{
  width: 35.7rem;
  top: 30rem;
  right: 36rem;
}
.p_top_fullscreen__body_climb .ttl{
  bottom: 36vw;
  padding-left: 1.2em;
}
@media screen and (min-width: 2000px) {
  .p_top_fullscreen__body_climb .ttl{
    bottom: 38rem;
    color: #fff;
    text-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.5);
  }
}


/*footer
---------------------------------------------------------*/
.footer{
  padding: 8.4rem 0 0;
  overflow-x: clip;
  position: relative;
}
.footer_ttl{
  font-size: 2.4rem;
  margin-bottom: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.footer_logo{
  font-size: 7.8rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.footer_nav ul li{
  position: relative;
  flex: 1;
}
.footer_nav ul li:not(:last-child)::after{
  content: "";
  width: .1rem;
  height: 100%;
  background-color: var(--color-black);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.footer_nav ul li a{
  display: block;
  letter-spacing: 0.1em;
  padding: 1rem 0;
}
.footer_nav ul li a span{
  display: block;
}
.footer_nav ul li a .enTxt{
  font-size: 175%;
  margin-bottom: 0.4rem;
}
.footer_nav ul li a .more{
  font-size: 1rem;
  margin-top: 1.8rem;
}
.footer_nav ul li a .more::after{
  content: "";
  width: 0.8rem;
  height: auto;
  aspect-ratio: 1;
  background: url("../img/arrow_black.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 1rem;
}
.footer_nav ul li a:hover{
  transform: scale(1.05);
  color: var(--color-sub);
}
.footer_nav ul li a:hover .more::after{
  background-image: url("../img/arrow_sub.svg")
}
.footer_copyRight{
  margin: 4rem 0 2rem;
  font-size: 1rem;
}
#pageTop {
    position: absolute;
    bottom: 0;
    right: 2rem;
    font-size: 1.8rem;
}
#pageTop::after{
  content: "";
  width: 1.7rem;
  aspect-ratio: 1;
  background: url("../img/arrow_black.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
  transform: rotate(-90deg);
  margin-left: 0.8rem;
}
#pageTop:hover{
  transform: scale(1.05);
  color: var(--color-sub);
}
#pageTop:hover::after{
  background-image: url("../img/arrow_sub.svg")
}

/* top footer */
.p_top_fullscreen__body_climb .footer{
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: #fff;
  padding: 0;
  visibility: hidden;
}
.p_top_fullscreen__body_climb .footer::before{
  content: "";
  width: 100%;
  height: 33rem;
  background: linear-gradient(180deg, transparent 0%,#485b4b 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.7;
}
.p_top_fullscreen__body_climb .footer_logo::before{
  content: "";
  width: 57rem;
  height: 39rem;
  background: radial-gradient(#485b4b 0% 20%, transparent 70%);
  position: absolute;
  top: -7rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: -1;
  border-radius: 50%;
}
.p_top_fullscreen__body_climb .footer_nav ul li:not(:last-child)::after{
  background-color: #fff;
}
.p_top_fullscreen__body_climb .footer_nav ul li a{
  color: #fff;
}
.p_top_fullscreen__body_climb .footer_nav ul li a:hover{
  color: #fff;
}
.p_top_fullscreen__body_climb .footer_nav ul li a .more::after{
  background-image: url("../img/arrow_white.svg")!important;
}
.p_top_fullscreen__body_climb .footer #pageTop {
    color: #fff;
    bottom: 2rem;
    right: 18rem;
}
.p_top_fullscreen__body_climb .footer #pageTop::after{
  background-image: url("../img/arrow_white.svg")!important;
}
.p_top_fullscreen__body_climb .footer #pageTop:hover{
  color: #fff;
}
/* 自動スクロール */
.autoScroll{
  position:fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 99;
}
.autoScroll button{
  width: 10rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-black);
  color:#fff;
  font-size: 1.8rem;
  padding-top: 0.8rem;
}
.autoScroll button::after{
  content: "";
  width: 1.1rem;
  aspect-ratio: 11/9;
  background: url("../img/autoScroll_start.svg") center no-repeat;
  background-size: contain;
  display: block;
  margin-inline: auto;
  margin-top: 0.6rem;
}
.autoScroll button.is-auto::after{
  background-image: url("../img/autoScroll_stop.svg");
}
.autoScroll button:hover{
	background-color: var(--color-sub);
}



/*下層
---------------------------------------------------------*/
.lower_mv{
  height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 10rem;
}
#recruitPage .lower_mv{
  height: 45rem;
}
.lower_mv__ttl{
  font-size: 2rem;
  letter-spacing: .1em;
}
.lower_mv__ttl .fontEn{
  font-size: 7.2rem;
  display: block;
  margin-bottom: 1.2rem;
}

.bg_misty{
  position: relative;
  padding-top: 17rem;
}
.bg_misty::before{
  content: "";
  width: 100%;
  height: 19.4rem;
  background: url("../img/bg_misty.png") center top no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: -9rem;
  left: 0;
  z-index: 10;
}

.d-ct{
  display: contents!important;
}


/*about
---------------------------------------------------------*/
.p_about_profile .container{
  position: relative;
}
.p_about_profile dl{
  border-radius: 2rem;
  background-color: #fff;
  padding: 7rem 10rem 10rem;
  margin-bottom: 10rem;
  letter-spacing: .1em;
  position: relative;
  z-index: 1;
}
.p_about_profile dt,
.p_about_profile dd{
  padding: 2.6rem 3rem;
  text-align: left;
  width: 75%;
  border-bottom: .1rem solid #e6e6e6;
}
.p_about_profile dt{
  width: 25%;
  font-weight: 600;
}
.p_about_profile dd a:hover{
  color: var(--color-sub);
}
.p_about_profile .img_cloud._01{
  width: 59rem;
  position: absolute;
  top: 8rem;
  left: -50rem;
}
.p_about_profile .img_cloud._02{
  width: 30rem;
  position: absolute;
  top: 49rem;
  right: -46rem;
}
.p_about_profile .img_tree{
  width: 100%;
}
.p_about_profile .img_tree img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*採用情報
---------------------------------------------------------*/
#recruitPage {
  background: url("../img/recruit/sunset.jpg") center bottom no-repeat,
              url("../img/recruit/bg.jpg") center repeat;
  background-size: 100% auto, auto;
}
.p_recruit_msg{
  position: relative;
  padding: 4rem 0 46rem;
}
.p_recruit_msg__box{
  text-align: left;
  position: relative;
  z-index: 9;
}
.p_recruit_msg__box h2{
  font-size: 3.6rem;
  margin-bottom: 3rem;
  letter-spacing: .15em;
}
.p_recruit_msg__box p{
  line-height: 2.2;
  font-feature-settings: "palt";
  letter-spacing: .08em;
  font-weight: 600;
}
.p_recruit_msg__box p.mt{
  margin-top: 3rem;
}
.p_recruit_msg .img_human{
  width: 94.7rem;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: bottom right;
  transition: opacity .8s ease, transform 1s ease;
}
.p_recruit_msg .img_human.active {
  opacity: 1;
  transform: scale(1);
}
.p_recruit_msg .img_human img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_recruit_msg .img_flower{
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}


/*経営理念
---------------------------------------------------------*/
.p_philosophy_mv{
  position: relative;
  padding-top: 24rem;
  overflow: hidden;
}
.p_philosophy_mv .container{
  position: relative;
}
.p_philosophy_mv__box{
  position: relative;
  z-index: 100;
}
.p_philosophy_mv__box h2{
  font-size: 3.6rem;
  margin: 10rem 0 4rem;
  letter-spacing: 0.15em;
}
.p_philosophy_mv__box .txt{
  line-height: 2.6;
  font-weight: 600;
}
.p_philosophy_mv .img_cloud{
  z-index: 1;
  position: absolute;
}
.p_philosophy_mv .img_cloud._01{
  width: 70.8rem;
  top: -41rem;
  left: 16rem;
  right: 0;
  margin-inline: auto;
}
.p_philosophy_mv .img_cloud._02{
  width: 70.8rem;
  top: 27rem;
  left: -57rem;
}
.p_philosophy_mv .img_cloud._03{
  width: 47rem;
  top: 30rem;
  right: -44rem;
}
.p_philosophy_mv .img_cloud._04{
  width: 30rem;
  top: 65rem;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.p_philosophy_mv .img_cloud._05{
  width: 32rem;
  top: 58rem;
  right: -5rem;
}
.p_philosophy_mv .img_tree{
  position: relative;
  z-index: 2;
  width: 100%;
}
.p_philosophy_mv .img_tree img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p_philosophy_mv .img_tree{
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: bottom;
  transition: opacity 2s .4s ease, transform 2s .4s ease;
}
.p_philosophy_mv .img_tree.active {
  opacity: 1;
  transform: scaleY(1);
}
.p_philosophy_mv .img_flower{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: bottom;
  transition: opacity 2s .4s ease, transform 2s .4s ease;
}
.p_philosophy_mv .img_flower.active {
  opacity: 1;
  transform: scaleY(1);
}
.p_philosophy_mv .img_flower img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.petalWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.petalWrap li {
  --x: 0;
  --fall: 10s;
  --sway: 3.2s;
  --dx: 20rem;
  --rotZ: -80deg;
  --rotX: 180deg;
  --sway-direction: alternate;
  --fall-delay: 0s;
  --sway-delay: var(--fall-delay);

  position: absolute;
  top: -10rem;
  left: calc(var(--x) * 1%);
  width: 4.8rem;
  z-index: 5;
  pointer-events: none;
  transform: translateX(0) rotate(0) rotateX(0);

  animation:
    fall var(--fall) linear var(--fall-delay) infinite both,
    sway var(--sway) ease-in-out var(--sway-delay) infinite var(--sway-direction) both;
}

@keyframes fall { to { top: 120%; } }
@keyframes sway {
  from { transform: translateX(0) rotate(0) rotateX(0); }
  to   { transform: translateX(var(--dx)) rotate(var(--rotZ)) rotateX(var(--rotX)); }
}

.petalWrap li:nth-child(1)  { --x:0;   --sway:3s;   --fall-delay: 4s;    }
.petalWrap li:nth-child(2)  { --x:5;   --sway:2.4s; --fall-delay: 1.4s;  }
.petalWrap li:nth-child(3)  { --x:10;  --sway:3.5s; --fall-delay: 0s;  }
.petalWrap li:nth-child(4)  { --x:15;  --sway:4s;   --rotZ:-45deg; --sway-direction:alternate-reverse; --fall-delay: 2.45s; }
.petalWrap li:nth-child(5)  { --x:20;  --sway:3.4s; --fall-delay: 6s;  }
.petalWrap li:nth-child(6)  { --x:25;  --sway:3s;   --rotZ:-45deg; --sway-direction:alternate-reverse; --fall-delay: 4.15s; }
.petalWrap li:nth-child(7)  { --x:30;  --sway:3.6s; --rotZ:-45deg; --sway-direction:alternate-reverse; --fall-delay: 7s; }
.petalWrap li:nth-child(8)  { --x:35;  --sway:3s;   --fall-delay: 2s;  }
.petalWrap li:nth-child(9)  { --x:40;  --sway:3s;   --fall-delay: 6s; }
.petalWrap li:nth-child(10) { --x:60;  --sway:2.2s; --fall-delay: 3s;  }
.petalWrap li:nth-child(11) { --x:65;  --sway:3.5s; --fall-delay: .8s;  }
.petalWrap li:nth-child(12) { --x:70;  --sway:4s;   --rotZ:-45deg; --sway-direction:alternate-reverse; --fall-delay: 7.84s; }
.petalWrap li:nth-child(13) { --x:75;  --sway:3.8s; --fall-delay: 1.8s;  }
.petalWrap li:nth-child(14) { --x:80;  --sway:3s;   --rotZ:-45deg; --sway-direction:alternate-reverse; --fall-delay: 4.25s; }
.petalWrap li:nth-child(15) { --x:85;  --sway:3.5s; --rotZ:-45deg; --sway-direction:alternate-reverse; --fall-delay: 2.62s; }
.petalWrap li:nth-child(16) { --x:90;  --sway:3s;   --fall-delay: 9s;  }
.petalWrap li:nth-child(17) { --x:95;  --sway:3s;   --fall-delay: 1.5s;  }
.petalWrap li:nth-child(18) { --x:100; --sway:3s;   --fall-delay: 7.41s;  }

.p_philosophy_cont{
  padding: 0 0 11rem;
}
.p_philosophy_cont.bg_misty::before{
  top: -4rem;
}
.p_philosophy_cont__row {
  gap: 13rem;
  align-items: center;
  padding-top: 17rem;
}
.p_philosophy_cont__row:nth-of-type(n+2){
  /* margin-top: 18rem; */
}
.p_philosophy_cont__box {
  flex:1;
  text-align: left;
}
.p_philosophy_cont__box .enTxt {
  font-size: 2rem;
  font-weight: 600;
}
.p_philosophy_cont__box h2 {
  font-size: 4.6rem;
  padding-bottom: 2rem;
  margin-top: -1.5rem;
  letter-spacing: .12em;
}
.p_philosophy_cont__box h2 .big{
  font-size: 156.5%;
  display: inline-flex;
  background: url("../img/philosophy/ttl_bg.png") left bottom no-repeat;
  background-size: 104% auto;
  letter-spacing: .18em;
  padding: 0 0 0.6rem 1rem;
}
.p_philosophy_cont__box h2 .big::before,
.p_philosophy_cont__box h2 .big::after{
  content: "";
  width: 2.3rem;
  height: auto;
  aspect-ratio: 23/18;
  background: url("../img/philosophy/quotation.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
  margin-bottom: 3rem;
}
.p_philosophy_cont__box h2 .big::after{
  transform: rotate(180deg);
  margin-left: -0.8rem;
}
.p_philosophy_cont__box h3 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  letter-spacing: .1em;
}
.p_philosophy_cont__box .txt {
  line-height: 2.7;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.p_philosophy_cont__row .img {
  width: 79.4rem;
  max-width: 100%;
  position: relative;
}
.p_philosophy_cont__row .img figure{
  opacity: 0;
  transform: scale(0.8);
  transition: opacity .8s ease, transform 1s ease;
}
.p_philosophy_cont__row .img figure.active {
  opacity: 1;
  transform: scale(1);
}
.p_philosophy_cont__row .img ._02{
  position: absolute;
  top: 0;
  left: 0;
}


.p_philosophy_messa{
  background: url("../img/philosophy/messa_bg.jpg") center no-repeat;
  background-size: cover;
}
.p_philosophy_messa .container{
  padding: 51rem 0 39rem;
  position: relative;
}
.p_philosophy_messa h2{
  font-size: 4.2rem;
  text-align: left;
  letter-spacing: .3em;
  font-feature-settings: "palt";
}
.p_philosophy_messa .img{
  width: 68.2rem;
  position: absolute;
  bottom: 0;
  right: 1rem;
}
.p_philosophy_messa .img {
  opacity: 0;
  transform: scale(0.8);
  transform-origin: bottom;
  transition: opacity 2s ease, transform 2s ease;
}
.p_philosophy_messa .img.active {
  opacity: 1;
  transform: scale(1);
}



/*contact
---------------------------------------------------------*/
.formArea {
  background-color: #fff;
  padding: 7.8rem 11rem;
  margin: 0 auto;
  border-radius: 2rem;
  position: relative;
  z-index: 9;
  margin-bottom: 22rem;
}
.formTxt {
  font-size: 115%;
  font-weight: 500;
  margin-bottom: 8rem;
  letter-spacing: 0.05em;
}
.formBox{
  letter-spacing: .05em;
}
.formBox dt,
.formBox dd {
  width: 33%;
  font-weight: 400;
  text-align: left;
  position: relative;
  margin-bottom: 6rem;
}
.formBox dd:last-of-type{
  margin-bottom: 0;
}
.formBox dt:last-of-type{
  align-content: flex-start;
  padding-top: 1rem;
}
.formBox dt::before {
  content: "任意";
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  display: inline-block;
  background: #808080;
  color: #fff;
  line-height: 0.9;
  margin-right: 1rem;
}
.formBox dt.req::before {
  content: "必須";
  background: var(--color-red);
}
.formBox dt {
  font-weight: 500;
  align-content: center;
}
.formBox dd {
  width: 67%;
  padding-left: 0;
}
.formBox input[type="text"],
.formBox input[type="tel"],
.formBox input[type="email"],
.formBox input[type="date"],
.formBox select,
.formBox textarea {
  width: 100%;
  padding: .575em 0.8em;
  border: 1px solid #ccc;
  color: #000;
  letter-spacing: .05em;
  line-height: 1.6;
  border-radius: 0.5rem;
}
.formBox input[type="text"],
.formBox input[type="tel"],
.formBox input[type="email"],
.formBox input[type="date"],
.formBox select,
.formBox textarea,
.formBox input[type="file"]{
  font-size: 1.6rem;
}
input::placeholder,
textarea::placeholder{
  color: #AAAAAA;
}
.formBox textarea {
  height: 19rem;
}
.formBox .radioWrap{
  gap: 8rem;
}
.formBox .radioWrap label{
  margin: 0;
}

.privacyCheck {
  margin: 4rem 0 3rem;
}
.privacyCheck a {
  text-decoration: underline;
}
.privacyCheck a:hover{
  color: var(--color-red);
}
.privacyBox{
  overflow: auto;
  width: 110rem;
  height: 66dvh;
  background-color: #fff;
  text-align: left;
  padding: 6rem;
  border-radius: 2rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  -webkit-overflow-scrolling: touch; /* iOS慣性 */
  overscroll-behavior: contain;
}
.privacyTxt h2{
  font-size: 2.2rem;
  margin-bottom: 3.4rem;
  text-align: center;
}
.privacyTxt h3{
  font-size:1.8rem;
  margin: 4rem 0 0.4rem;
}
.privacyTxt p{
  line-height: 2;
}
.privacyTxt .mt{
  margin-top: 2rem;
}
.privacyTxt .list{
  margin-top: 1rem;
  list-style: none;
  counter-reset: item;
}
.privacyTxt .list li{
  line-height: 2;
  text-indent: -1.6em;
  padding-left: 2.5em;
  counter-increment: item;
}
.privacyTxt .list li::before {
  content: "(" counter(item) ") ";
}
.privacyTxt .list._02 li{
  padding-left: 1.4em;
  text-indent: -1.2em;
}
.privacyTxt .list._02 li::before {
  content: counter(item)". ";
}
.lity{
  background: rgba(21,37,57,.5)!important;
}
.lity-container{
  margin-top: 12rem;
}
.lity-content:after{
  -webkit-box-shadow: 0 0 8px rgba(21,37,57, 0)!important;
  box-shadow: 0 0 8px rgba(21,37,57, 0)!important;
}
.lity .lity-close,
.lity .lity-close,
.lity .lity-close:hover {
  position: absolute;
  top: -8rem;
  right: 0;
  background: url("../img/close.svg") center right no-repeat;
  background-size: contain;
  width: 5rem;
  height: 7.4rem;
  display: block;
  font-size: 0;
}

.p_contact_form .note{
  font-size: 1.4rem;
}
.p_contact_form .note a{
  pointer-events: none
}
.formBtn {
  margin-top: 2rem;
}
.formArea input[type="submit"],
.formArea input[type="button"] {
  font-weight: 600;
  font-style: normal;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: .075em;
  text-indent: .075em;
  background: var(--color-black);
  min-width: 36rem;
  display: block;
  padding: 3rem 2rem;
  margin: 1rem;
  border: none;
  border-radius: 10rem;
  transition: .2s;
  cursor: pointer;
}
.formArea input[type="button"].btn_back{
  background: #999;
}
.formArea input[type="submit"]:hover,
.formArea input[type="button"]:hover{
  background-color: var(--color-sub)
}

.p_contact_form .container{
  position: relative;
}
.p_contact_form .img_cloud{
  position: absolute;
  z-index: 1;
}
.p_contact_form .img_cloud._01{
  width: 65rem;
  top: 4rem;
  left: -77rem;
}
.p_contact_form .img_cloud._02{
  width: 70rem;
  top: 30rem;
  right: -32rem;
}
.p_contact_form .img_cloud._03{
  width: 62rem;
  bottom: -25rem;
  left: -51rem;
}
.p_contact_form .img_cloud._04{
  width: 63rem;
  bottom: -25rem;
  right: -60rem;
}
.p_contact_form .img_cloud._05{
  width: 34rem;
  bottom: -40rem;
  right: -8rem;
}
.p_contact_form .img_mountain{
  width: 100%;
}
.p_contact_form .img_mountain img{
  width: 100%;
}


.thxBox {
  line-height: 1.8;
  padding: 4rem 1.5rem;
  border: 1px solid #999;
  background: #fff;
  color: #1a1a1a;
  margin-bottom: 9rem;
  position: relative;
  z-index: 9;
}
.thxBox h2{
  font-size: 2.2rem;
}



/*********************************/
/* スマートフォン用のスタイル記述 */
/*********************************/
@media screen and (max-width: 780px) {
/*全体レイアウト
---------------------------------------------------------*/
  html {
    font-size: 2.7777777vw;
  }
  body {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  body.active {
    overflow: hidden;
  }
  article > section {
    padding: 4rem 0;
  }

  /*header
  -------------------------------------------------------*/
  #subPage #header{
    position: absolute;
  }
  .hNav {
    display: none;
  }
  .headerWrap {
    width: 87%;
    max-width: 200rem;
    margin: 0 auto;
    padding: 2.3rem 0;
  }
  .hLogo a {
    font-size: 1.7rem;
  }


  /*nav
  -----------------------------------------------------*/
  .menuWrap {
    display: block;
    position: fixed;
    top: 1.6rem;
    right: 1.6rem;
    width: 5rem;
    height: 5rem;
    z-index: 999;
    border-radius: 50%;
    background-color: var(--color-black);
  }
  .menuIcon {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    margin: 0 auto;
    width: 2rem;
    height: 1.8rem;
    z-index: 99999;
    cursor: pointer;
    display: block;
  }
  .menuIcon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: .2rem;
    background: #fff;
    z-index: 10;
    transition: .2s;
  }
  .menuIcon span:nth-of-type(1) {top: 0;}
  .menuIcon span:nth-of-type(2) {top: .8rem;}
  .menuIcon span:nth-of-type(3) {bottom: 0;}
  .menuWrap.active span:nth-of-type(1) {
    -webkit-transform: translateY(.8rem) rotate(45deg);
    transform: translateY(.8rem) rotate(45deg);
  }
  .menuWrap.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menuWrap.active span:nth-of-type(3) {
    -webkit-transform: translateY(-.8rem) rotate(-45deg);
    transform: translateY(-.8rem) rotate(-45deg);
  }
  #nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: block;
    padding: 9rem 5% 4rem;
    visibility: hidden;
    opacity: 0;
  }
  #nav.active {
    right: 0;
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    z-index: 990;
  }
  .active #header.scrollClass{
    box-shadow:none;
  }
  .spMenu .img{
    mix-blend-mode: screen;
    width:80%;
    margin: 1rem auto 2rem;
    opacity: .8;
  }
  .spMenu li {
    padding: 2rem 1rem;
  }
  .spMenu li a {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    display: block;
    position: relative;
  }
  .spMenu ul li a span{
    display: inline-block;
    margin-right: 1rem;
    font-size: 175%;
  }



/*top
---------------------------------------------------------*/
/* 空からタイトル */
.p_top_sky{
  min-height: 40rem;
}
.p_top_sky__ttl h1{
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.p_top_sky__ttl h2{
  font-size: 4.6rem;
}
.p_top_sky__ttl .img_cloud._01{
  top: -14rem;
  right: -18rem;
  width: 33rem;
}
.p_top_sky__ttl .img_cloud._02{
  top: 16rem;
  left: -12rem;
  width: 25.6rem;
}

/* 種落下 */
.p_top_fullscreen__seed .img_seed{
  width: 4.4rem;
}
.p_top_fullscreen__seed .img_cloud._01{
  top: 2rem;
  right: -15rem;
  width: 30rem;
}
.p_top_fullscreen__seed .img_cloud._02{
  top: 31rem;
  left: -10rem;
  width: 25.6rem;
}

/* 全画面 */
.p_top_fullscreen__body .img_soil{
  width: 100%;
}
.p_top_fullscreen__body .ttl{
  font-size: 1.8rem;
  padding: 0 2rem;
  line-height: 1.6;
  top: 15rem;
}


/* 種から開花 */
.p_top_fullscreen__body_bloom .img_shine img{
  width: 100%;
  height: 100%;
}
.p_top_fullscreen__body_bloom .img_wateringcan{
  width: 20rem;
  bottom: 21rem;
  right: -7rem;
  transform: rotate(-34deg);
}
.p_top_fullscreen__body_bloom .img_water{
  width: 21.2rem;
  bottom: 7rem;
  right: 8rem;
  transform: rotate(-27deg);
}
.p_top_fullscreen__body_bloom ._seedPosition{
  bottom: 4rem;
}
.p_top_fullscreen__body_bloom .img_germination{
  width: 4.8rem;
  right: 2rem;
}
.p_top_fullscreen__body_bloom .img_sprout{
  width: 8rem;
}
.p_top_fullscreen__body_bloom .img_bud{
  width: 6rem;
}
.p_top_fullscreen__body_bloom .img_flower01{
  width: 10rem;
}
.p_top_fullscreen__body_bloom .img_flower02{
  width: 10rem;
  bottom: 3rem;
  left: 5rem;
}
.p_top_fullscreen__body_bloom .img_flower03{
  width: 12.2rem;
  bottom: 5rem;
  right: 4.6rem;
}
.p_top_fullscreen__body_bloom .img_grassy{
  height: 11rem;
  width: 100%;
  background-size: auto 100%;
}
.p_top_fullscreen__body_bloom .img_cloud._09-1{
  width: 22rem;
  top: 8rem;
  left: -4rem;
}
.p_top_fullscreen__body_bloom .img_cloud._09-2{
  width: 21.3rem;
  top: 17rem;
  right: -4rem;
}
.p_top_fullscreen__body_bloom .img_cloud._09-3{
  width: 16.4rem;
  top: 28rem;
  right: 14rem;
}
.p_top_fullscreen__body_bloom .img_flower04{
  width: 8.7rem;
  bottom: 4rem;
  left: 0rem;
}
.p_top_fullscreen__body_bloom .img_flower05{
  width: 8rem;
  bottom: 3rem;
  right: -1rem;
}

/* 木が横に移動するところ */
.p_top_fullscreen__body_tree .img_tree{
  height: 23rem;
  width: 1200%;
  bottom: -16rem;
}
.p_top_fullscreen__body_tree .img_mountain{
  width: 196%;
    bottom: -16rem;
}
.p_top_fullscreen__body_tree .img_mountain img{
  width: 100%;
  max-height: none;
}
.p_top_fullscreen__body_tree .img_flower{
  height: 11rem;
  width: 1200%;
}
.p_top_fullscreen__body_tree .img_seedWrap{
  gap: 1.6rem;
  padding: 0 1.4rem;
}
.p_top_fullscreen__body_tree .img_seed._01{
  width: 8.8rem;
}
.p_top_fullscreen__body_tree .img_seed._02{
  width: 6.6rem;
}
.p_top_fullscreen__body_tree .img_seed._03{
  width: 8.2rem;
}
.p_top_fullscreen__body_tree .img_seed._04{
  width: 7.5rem;
}
.p_top_fullscreen__body_tree .img_seed._01 figure._before{
  top: 1rem;
}
.p_top_fullscreen__body_tree .img_seed._03 figure._before{
  top: 1.4rem;
}
.p_top_fullscreen__body_tree .img_seed._01 figure._after{
  top: -1rem;
  width: 105%;
}
.p_top_fullscreen__body_tree .img_seed._03 figure._after{
  top: -1rem;
  width: 105%;
}
.p_top_fullscreen__body_tree .img_seed._04 figure._after{
  width: 110%;
}
.p_top_fullscreen__body_tree .img_petalWrap{
  width: 140%;
}
.p_top_fullscreen__body_tree .img_petal{
  height: 100%;
}
.p_top_fullscreen__body_tree .img_petal img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}
.p_top_fullscreen__body_tree .img_petal._14_02_after img{
  object-position: 50% center;
}

/* 山 登る前 */
.p_top_fullscreen__body_mountain .img_mountain{
  width: 250%;
  min-height: auto;
  height: auto;
}
.p_top_fullscreen__body_mountain .ttlWrap {
    padding-top: 0
}
.p_top_fullscreen__body_mountain .ttlWrap .ttl{
  top: auto;
  bottom: 19rem;
}
.p_top_fullscreen__body_mountain .img_human{
  bottom: 4.6rem;
  width: 6.6rem;
}
.p_top_fullscreen__body_mountain .img_shine{
  top: 0;
  width: 32rem;
}

/* 山 登頂 */
.p_top_fullscreen__body_climb .img_mountain{
  width: 222%;
}
.p_top_fullscreen__body_climb .img_cloud._19-1{
  width: 17.8rem;
  top: 9rem;
  left: -1rem;
}
.p_top_fullscreen__body_climb .img_cloud._19-2{
  width: 30.6rem;
  top: -3rem;
  right: -12rem;
}
.p_top_fullscreen__body_climb .img_cloud._19-3{
  width: 15.7rem;
  top: 15rem;
  right: 4rem;
}
.p_top_fullscreen__body_climb .ttl{
  top: auto;
  bottom: 30rem;
  padding-left: 2.4em;
}


/*footer
---------------------------------------------------------*/
.footer{
  padding: 2rem 0 0;
}
.footer_ttl{
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.footer_logo{
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
.footer_nav{
  display: none;
}
.footer_copyRight{
  margin: 5rem auto 1.5rem;
}
#pageTop {
    right: 0.7rem;
    font-size: 1.4rem;
}
#pageTop::after{
  width: 1.2rem;
  margin-left: 0.4rem;
}

/* top footer */
.p_top_fullscreen__body_climb .footer{
  bottom: 0;
  left: 0;
  right: 0;
}
.p_top_fullscreen__body_climb .footer::before{
  width: 100%;
  height: 7rem;
  bottom: 0;
  left: 0;
}
.p_top_fullscreen__body_climb .footer_logo{
  margin-bottom: 2rem;
}
.p_top_fullscreen__body_climb .footer_logo::before{
  width: 22rem;
  height: 17rem;
  top: -4rem;
}
.footer #pageTop {
    bottom: 2.6rem;
    right: 0!important;
    left: 0!important;
}
.p_top_fullscreen__body_climb .footer #pageTop{
    bottom: 3.8rem;
}

/* 自動スクロール */
.autoScroll{
  right: 0.5rem;
  bottom: 0.5rem;
}
.autoScroll button{
  width: 6rem;
  font-size: 1.2rem;
  padding-top: 0.4rem;
}
.autoScroll button::after{
  width: 0.7rem;
  margin-top: 0.3rem;
}
.autoScroll button:hover{
	background-color: var(--color-black);
}

/*下層
---------------------------------------------------------*/
.lower_mv{
  height: 21rem!important;
  padding-top: 6rem;
}
.lower_mv__ttl{
  font-size: 1.6rem;
}
.lower_mv__ttl .fontEn{
  font-size: 3.6rem;
  margin-bottom: 1.2rem;
}

.bg_misty{
  padding-top: 10.4rem;
}
.bg_misty::before{
  height: 10.4rem;
  top: -1rem;
}

.d-ct{
  display: block!important;
}


/*about
---------------------------------------------------------*/
.p_about_profile dl{
  border-radius: 2rem;
  padding: 1.2rem 2rem 2rem;
  margin-bottom: 4rem;
}
.p_about_profile dt,
.p_about_profile dd{
  padding: 1.6rem 1rem;
  width: 70%;
}
.p_about_profile dt{
  width: 30%;
}
.p_about_profile .img_cloud._01{
  width: 15rem;
  top: -5rem;
  left: -6rem;
}
.p_about_profile .img_cloud._02{
  width: 12rem;
  top: 43rem;
  right: -5rem;
}
.p_about_profile .img_tree {
    width: 200%;
    margin-left: -100%;
}


/*採用情報
---------------------------------------------------------*/
#recruitPage {
  background-image: url("../img/recruit/sunset_sp.jpg"),
              url("../img/recruit/bg.jpg");
}
.p_recruit_msg{
  padding: 1rem 1rem 47rem;
}
.p_recruit_msg__box h2{
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  letter-spacing: .15em;
}
.p_recruit_msg__box p{
  line-height: 2.4;
  font-size: 1.3rem;
  letter-spacing: .05em;
}
.p_recruit_msg .img_human{
  width: 100%;
  bottom: 0;
  right: 0;
}
.p_recruit_msg .img_flower{
  width: 100%;
  bottom: 0;
  right: 0;
}


/*経営理念
---------------------------------------------------------*/
.p_philosophy_mv{
  padding-top: 12rem;
}
.p_philosophy_mv__box h2{
  font-size: 2.2rem;
  margin: 3rem 0 1rem;
}
.p_philosophy_mv__box .txt {
  line-height: 2.2;
}
.p_philosophy_mv .img_cloud._01{
  width: 20.8rem;
  top: -12rem;
}
.p_philosophy_mv .img_cloud._02{
  width: 17.8rem;
  top: 7rem;
  left: -7rem;
}
.p_philosophy_mv .img_cloud._03{
  width: 21rem;
  top: 15rem;
  right: -14rem;
}
.p_philosophy_mv .img_cloud._04{
  width: 13rem;
  top: 35rem;
  left: -30rem;
}
.p_philosophy_mv .img_cloud._05{
  width: 22rem;
  top: 52rem;
  right: -12rem;
}
.p_philosophy_mv .img_tree{
  width: 180%;
  margin-left: -40%;
  margin-top: -3rem;
}
.p_philosophy_mv .img_flower{
  left: -29%;
  width: 160%;
}
.petalWrap li {
  width: 2.4rem;
}
.p_philosophy_cont{
  padding: 0 0 8rem;
}
.p_philosophy_cont.bg_misty::before{
  top: -1.8rem;
}
.p_philosophy_cont__row {
  gap: 1rem;
  flex-direction: column;
  padding-top: 3rem;
}
.p_philosophy_cont__row:nth-of-type(n+2){
  margin-top: 10rem;
}
.p_philosophy_cont__box .enTxt {
  font-size: 1.6rem;
}
.p_philosophy_cont__box h2 {
  font-size: 2.6rem;
  padding-bottom: 0;
  margin-top: -2.4rem;
}
.p_philosophy_cont__box h2 .big{
  padding: 0 0 0 0.6rem;
  line-height: 2.4;
  font-size: 140%;
  background-size: 94% auto;
  background-position: left 0.5rem bottom 1.2rem;
}
.p_philosophy_cont__box h2 .big::before,
.p_philosophy_cont__box h2 .big::after{
  width: 1.6rem;
}
.p_philosophy_cont__box h2 .big::after{
  margin-left: -0.8rem;
}
.p_philosophy_cont__box h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  margin-top: -1rem;
  line-height: 1.4;
}
.p_philosophy_cont__box .txt{
  font-size: 1.3rem;
  line-height: 1.8;
}
.p_philosophy_cont__row .img {
  width: 90%;
}
.p_philosophy_messa .container{
  padding: 11rem 0 29rem;
}
.p_philosophy_messa h2{
  font-size: 2.8rem;
  text-align: center;
}
.p_philosophy_messa .img{
  width: 29.2rem;
  right: 0;
}



/*contact
---------------------------------------------------------*/
.formArea {
  padding: 3.2rem 2rem;
  margin-bottom: 6rem;
}
.formTxt {
  margin-bottom: 3rem;
}
.formBox dt,
.formBox dd {
  width: 100%;
  margin-bottom: 1rem;
}
.formBox dt:last-of-type{
  padding-top: 1rem;
}
.formBox dt::before {
  content: "任意";
  font-size: 1.2rem;
  padding: 0.4rem 0.6rem;
  margin-right: 1rem;
}
.formBox dt.req::before {
  content: "必須";
}
.formBox dd {
  width: 100%;
  margin-bottom: 3rem;
}
.formBox input[type="text"],
.formBox input[type="tel"],
.formBox input[type="email"],
.formBox input[type="date"],
.formBox select,
.formBox textarea {
  width: 100%;
  padding: .575em 0.8em;
}
.formBox input[type="text"],
.formBox input[type="tel"],
.formBox input[type="email"],
.formBox input[type="date"],
.formBox select,
.formBox textarea,
.formBox input[type="file"]{
  font-size: 1.4rem;
}
.formBox .radioWrap{
  gap: 2rem;
}
.formBox .radioWrap label{
  margin: 0;
}
.privacyCheck {
  margin: 2rem 0 1rem;
}
.privacyBox{
  width: 90%;
  padding: 2.6rem 2rem;
  margin-inline: auto;
  height: 75dvh;
}
.privacyTxt h2{
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
.privacyTxt h3{
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}
.privacyTxt p {
  line-height: 1.8;
}
.privacyTxt .mt{
  margin-top: 1rem;
}
.privacyTxt .list li{
  line-height: 1.6;
  padding-left: 1.5em;
}

.lity{
  background: rgba(21,37,57,.8)!important;
}
.lity-container{
  margin-top: 6rem;
}
.lity-content:after{
  -webkit-box-shadow: 0 0 8px rgba(21,37,57, 0)!important;
  box-shadow: 0 0 8px rgba(21,37,57, 0)!important;
}
.lity .lity-close,
.lity .lity-close,
.lity .lity-close:hover {
  top: -7rem;
  right: 2rem;
  width: 3.6rem;
}
.p_contact_form .note {
  font-size: 1.2rem;
  text-align: left;
}
.p_contact_form .note a{
  pointer-events: auto;
  text-decoration: underline;
}
.formBtn {
  margin-top: 3rem;
  gap: 1.4rem;
  flex-direction: column-reverse;
}
.formArea input[type="submit"],
.formArea input[type="button"] {
  font-size: 1.6rem;
  min-width: 24rem;
  padding: 2rem 2rem;
  margin: 0;
}
.p_contact_form .img_cloud._01{
  width: 15rem;
  top: -5rem;
  left: -4rem;
}
.p_contact_form .img_cloud._02{
  width: 13rem;
  top: 14rem;
  right: -11rem;
}
.p_contact_form .img_cloud._03{
  width: 12rem;
  bottom: 50%;
  left: -6rem;
}
.p_contact_form .img_cloud._04{
  width: 9rem;
  bottom: -15rem;
  right: auto;
  left: 0rem;
}
.p_contact_form .img_cloud._05{
  width: 12rem;
  bottom: -12rem;
  right: -0.4rem;
}
.p_contact_form .img_mountain{
  width: 200%;
  margin-left: -50%;
}
#request-thx.bg_misty {
  padding-top: 7rem;
}
.thxBox {
  padding: 2.5rem 1.5rem;
  margin-bottom: 5rem;
}
.thxBox h2{
  font-size: 1.6rem;
}
.thxBox p.mt10{
  text-align: left;
}

}