<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*----------------------------------
  カラー
------------------------------------*/
/*----------------------------------
  ページ全体にかかるもの
------------------------------------*/
.main_wrapper {
  width: 100%;
}

body {
  min-width: 1200px;
  overflow-x: hidden;
}

@media (max-width: 1200px) {
  body {
    overflow-x: scroll;
  }
}
@media (max-width: 768px) {
  body {
    min-width: 0px;
    overflow-x: hidden;
  }
}
/*----------------------------------
  キーフレーム
------------------------------------*/
/*----------------------------------
  イージング
------------------------------------*/
/*----------------------------------
  loading
------------------------------------*/
#loading {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(164deg, rgb(27, 109, 85) -1.83%, rgb(29, 110, 86) 31.05%, rgb(28, 97, 112) 59.69%, rgb(21, 97, 159) 100%), url(../../../img/bg_top_news.png);
  background-repeat: no-repeat, repeat;
  position: fixed;
  z-index: 9999999;
}
#loading #animation_logo {
  width: 150px;
}

@media (max-width: 768px) {
  #animation_logo {
    width: 150px;
  }
}
/*----------------------------------
  fixed_nav
------------------------------------*/
.fixed_nav {
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 80px;
  display: block;
  opacity: 1;
  width: fit-content;
  height: fit-content;
  visibility: visible;
}
.fixed_nav a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
  margin-left: auto;
  margin-bottom: 14px;
  font-weight: 400;
  word-break: keep-all;
  white-space: nowrap;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #fff;
  filter: drop-shadow(0px 0px 4px rgb(14, 54, 37));
  border-bottom: 1px solid transparent;
  transform-origin: center right;
  transition: transform 0.2s cubic-bezier(0.81, 0.03, 0.19, 0.91);
}
.fixed_nav a:hover {
  transform: scale(0.98);
}
.fixed_nav::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 90%;
  background-color: #fff;
  right: -24px;
  top: 7px;
}
.fixed_nav .nav_ball {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  right: -32px;
  top: 2px;
  background: radial-gradient(circle, #79ffef 0%, rgba(121, 255, 239, 0.5) 30%, rgba(121, 255, 239, 0) 60%);
  filter: blur(2px);
}

@media (max-width: 768px) {
  .fixed_nav {
    display: none;
  }
}
/*----------------------------------
  bg
------------------------------------*/
#bg {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  min-height: 700px;
  overflow: hidden;
  position: fixed;
  z-index: -1;
}
#bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ccfff9;
  mix-blend-mode: overlay;
  z-index: 99;
  opacity: 0.1;
}
#bg .bg_movie {
  position: relative;
  width: 100%;
  height: 100%;
}
#bg .bg_movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  #bg {
    width: 100vw;
    min-height: 0;
  }
}
/*----------------------------------
  topmv
------------------------------------*/
.topmv {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  min-height: 700px;
  overflow: hidden;
  position: relative;
}

.topmv_copy {
  width: 390px;
  height: 260px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11.71875%;
  margin: auto;
}
.topmv_copy img {
  object-fit: contain;
  margin: auto;
  filter: drop-shadow(0px 0px 10px rgb(14, 54, 37));
}

@media (max-width: 768px) {
  .topmv {
    min-height: 0;
  }
  .topmv .topmv_copy {
    width: 300px;
    height: 200px;
    position: absolute;
    inset: 0;
    margin: auto;
  }
}
/*----------------------------------
  news
------------------------------------*/
.news {
  padding: 160px 15px 190px;
  margin-top: -37px;
  position: relative;
}
.news .news_bg {
  width: 100%;
  height: 100%;
  background-color: #bcd7cd;
  background-image: url(../../../img/bg_top_news.png);
  background-repeat: repeat;
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}
.news svg {
  position: absolute;
  inset: 0;
}
.news #news_rect {
  width: 100vw;
  height: 600px;
  filter: blur(15px);
  transform-origin: center center;
  transform: translateY(30px) scaleX(110%);
}
.news .news_bg {
  mask: url(#news_mask);
}
.news .news_inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.news .news_leftcontainer .btn_viewmore {
  margin-top: 36px;
}
.news .news_rightcontainer {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.news .news_rightcontainer .news_item {
  width: 618px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 4px 20px 0px rgba(255, 255, 255, 0.8) inset;
  transform-origin: center center;
  transition: all 0.2s cubic-bezier(0.81, 0.03, 0.19, 0.91);
}
.news .news_rightcontainer .news_item:hover {
  transform: scale(0.98);
}
.news .news_rightcontainer .news_item time {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 24px;
}
.news .news_rightcontainer .news_item time span {
  display: block;
  color: #213f36;
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
.news .news_rightcontainer .news_item time span:last-of-type {
  font-size: 2.6rem;
}
.news .news_rightcontainer .news_textcontainer .news_cat {
  width: fit-content;
  padding: 2px 10px;
  background-color: #e3ebe6;
  border-radius: 20px;
  color: #213f36;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.news .news_rightcontainer .news_textcontainer .news_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #213f36;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .news {
    padding: 120px 16px 100px;
    margin-top: -37px;
    position: relative;
  }
  .news svg {
    position: absolute;
    inset: 0;
  }
  .news #news_rect {
    width: 100vw;
    height: 600px;
    transform-origin: center center;
    transform: translateY(30px) scaleX(100%);
  }
  .news .news_bg {
    mask: url(#news_mask);
  }
  .news .news_inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
  }
  .news .news_leftcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .news .news_leftcontainer .btn_viewmore {
    margin-top: 0;
  }
  .news .news_rightcontainer {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 40px;
  }
  .news .news_rightcontainer .news_item {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 5px 4px 20px 0px rgba(255, 255, 255, 0.8) inset;
  }
  .news .news_rightcontainer .news_item time {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 24px;
  }
  .news .news_rightcontainer .news_item time span {
    display: block;
    color: #213f36;
    font-family: "Barlow", sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1;
  }
  .news .news_rightcontainer .news_item time span:last-of-type {
    font-size: 2.4rem;
  }
  .news .news_rightcontainer .news_textcontainer .news_cat {
    width: fit-content;
    padding: 2px 8px;
    background-color: #e3ebe6;
    border-radius: 20px;
    color: #213f36;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .news .news_rightcontainer .news_textcontainer .news_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #213f36;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-top: 8px;
  }
}
/*----------------------------------
  job
------------------------------------*/
.job {
  padding: 160px 15px 190px;
  margin-top: -60px;
  position: relative;
  background: linear-gradient(164deg, rgba(27, 109, 85, 0.6) -1.83%, rgba(29, 110, 86, 0.6) 31.05%, rgba(28, 97, 112, 0.6) 59.69%, rgba(21, 97, 159, 0.6) 100%), url(../../../img/bg_top_news.png);
  background-repeat: no-repeat, repeat;
  border-radius: 50px 50px 0 0;
}
.job .job_inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.job .job_headcontainer {
  display: flex;
  align-items: flex-end;
}
.job .job_headcontainer .h2_main {
  line-height: 1;
  font-size: 10.6rem;
}
.job .job_headcontainer .follow_h2_main {
  line-height: 1.7;
  margin-left: 16px;
}
.job .lead_main {
  margin-top: 36px;
}
.job .job_jobtype {
  margin-top: 90px;
  width: 100%;
}
.job .job_jobtype .job_jobtype_titlecontainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.job .job_jobtype .job_jobtype_titlecontainer .h3_jobtype {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
}
.job .job_jobtype .job_jobtype_titlecontainer .h3_jobtype img {
  width: auto;
  height: 65px;
  object-fit: contain;
  margin-right: 8px;
}
.job .job_jobtype .job_jobtype_swiper {
  display: none;
}
.job .job_jobtype .job_jobtype_itemcontainer {
  margin-top: 48px;
  display: flex;
  justify-content: flex-start;
  gap: 56px;
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item {
  display: block;
  box-sizing: border-box;
  width: 248px;
  height: 360px;
  position: relative;
  filter: grayscale(1);
  transition: all 0.2s;
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #63daff;
  border-radius: 200px;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
  filter: blur(15px);
  transform-origin: center;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.81, 0.03, 0.19, 0.91);
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item:hover::before {
  transform: scale(1);
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item .job_jobtype_pic {
  width: 100%;
  height: 100%;
  border-radius: 248px;
  overflow: hidden;
  position: relative;
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item .job_jobtype_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: all 0.4s ease;
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item .job_jobtype_pic::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(1deg, #051e16 0.91%, rgba(18, 79, 61, 0) 31.87%);
  mix-blend-mode: multiply;
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item .job_jobtype_textcontainer {
  position: absolute;
  top: 264px;
  left: -12px;
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item .job_jobtype_textcontainer .h4_job_jobtype {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #fff;
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item .job_jobtype_textcontainer .job_jobtype_tagcloud {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item .job_jobtype_textcontainer .job_jobtype_tagcloud .job_jobtype_tag {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #fff;
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item .job_jobtype_textcontainer .job_jobtype_textbox {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 16px;
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item:hover {
  filter: grayscale(0);
}
.job .job_jobtype .job_jobtype_itemcontainer .job_jobtype_item:hover .job_jobtype_pic img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .job {
    overflow: hidden;
    padding: 80px 0 80px;
    margin-top: -30px;
    position: relative;
    background: linear-gradient(164deg, rgba(27, 109, 85, 0.6) -1.83%, rgba(29, 110, 86, 0.6) 31.05%, rgba(28, 97, 112, 0.6) 59.69%, rgba(21, 97, 159, 0.6) 100%), url(../../../img/bg_top_news.png);
    background-repeat: no-repeat, repeat;
    border-radius: 20px 20px 0 0;
  }
  .job .job_inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .job .job_headcontainer {
    display: block;
    padding: 0 16px;
  }
  .job .job_headcontainer .h2_main {
    line-height: 1;
    font-size: 6rem;
  }
  .job .job_headcontainer .follow_h2_main {
    line-height: 1.7;
    margin-left: 0;
    margin-top: 4px;
  }
  .job .lead_main {
    margin-top: 36px;
    padding: 0 16px;
  }
  .job .job_jobtype {
    margin-top: 90px;
    width: 100%;
  }
  .job .job_jobtype .job_jobtype_titlecontainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .job .job_jobtype .job_jobtype_titlecontainer .h3_jobtype {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .job .job_jobtype .job_jobtype_titlecontainer .h3_jobtype img {
    width: auto;
    height: 48px;
    object-fit: contain;
    margin-right: 7px;
  }
  .job .job_jobtype .job_jobtype_titlecontainer .btn_viewmore {
    display: none;
  }
  .job .job_jobtype .job_jobtype_itemcontainer {
    display: none;
  }
  .job .job_jobtype .job_jobtype_swiper {
    display: block;
    width: 100%;
  }
  .job .job_jobtype .job_jobtype_swiper .swiper-wrapper {
    align-items: flex-end;
  }
  .job .job_jobtype .job_jobtype_swiper .swiper-slide {
    width: fit-content;
    padding-top: 32px;
    padding-bottom: 60px;
  }
  .job .job_jobtype .job_jobtype_swiper .job_jobtype_item {
    display: block;
    box-sizing: border-box;
    width: 250px;
    height: 360px;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s;
    z-index: 9;
  }
  .job .job_jobtype .job_jobtype_swiper .job_jobtype_item::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #63daff;
    border-radius: 200px;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: -1;
    filter: blur(15px);
    transform: scale(0.5);
    transition: all 0.3s;
  }
  .job .job_jobtype .job_jobtype_swiper .job_jobtype_item .job_jobtype_pic {
    width: 100%;
    height: 100%;
    width: 250px;
    border-radius: 200px;
    overflow: hidden;
    position: relative;
    filter: grayscale(1);
    transition: all 0.3s;
  }
  .job .job_jobtype .job_jobtype_swiper .job_jobtype_item .job_jobtype_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .job .job_jobtype .job_jobtype_swiper .job_jobtype_item .job_jobtype_pic::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(1deg, #051e16 0.91%, rgba(18, 79, 61, 0) 31.87%);
    mix-blend-mode: multiply;
  }
  .job .job_jobtype .job_jobtype_swiper .job_jobtype_item .job_jobtype_textcontainer {
    opacity: 0;
    position: absolute;
    top: 264px;
    left: -12px;
    transition: all 0.2s;
  }
  .job .job_jobtype .job_jobtype_swiper .job_jobtype_item .job_jobtype_textcontainer .h4_job_jobtype {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .job .job_jobtype .job_jobtype_swiper .job_jobtype_item .job_jobtype_textcontainer .job_jobtype_tagcloud {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
  }
  .job .job_jobtype .job_jobtype_swiper .job_jobtype_item .job_jobtype_textcontainer .job_jobtype_tagcloud .job_jobtype_tag {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .job .job_jobtype .job_jobtype_swiper .job_jobtype_item .job_jobtype_textcontainer .job_jobtype_textbox {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #fff;
    margin-top: 16px;
  }
  .job .job_jobtype .job_jobtype_swiper .swiper-slide-active .job_jobtype_item {
    transform: scale(1);
    z-index: 99;
  }
  .job .job_jobtype .job_jobtype_swiper .swiper-slide-active .job_jobtype_item::before {
    transform: none;
  }
  .job .job_jobtype .job_jobtype_swiper .swiper-slide-active .job_jobtype_textcontainer {
    opacity: 1;
  }
  .job .job_jobtype .job_jobtype_swiper .swiper-slide-active .job_jobtype_pic {
    filter: grayscale(0);
  }
  .job .job_jobtype:first-of-type .job_jobtype_titlecontainer .h3_jobtype {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .job .job_jobtype:first-of-type .job_jobtype_titlecontainer .h3_jobtype img {
    width: auto;
    height: 48px;
    object-fit: contain;
    margin-right: 0;
    margin-bottom: 13px;
  }
}
/*----------------------------------
  culfu
------------------------------------*/
.culfu {
  padding: 160px 15px 190px;
  margin-top: -60px;
  position: relative;
  background: url(../../../img/bg_top_news.png), rgba(210, 235, 255, 0.3);
  background-repeat: repeat;
  border-radius: 50px 50px 0 0;
}
.culfu .culfu_inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.culfu .culfu_headcontainer {
  position: relative;
  width: fit-content;
}
.culfu .culfu_headcontainer .h2_main {
  width: fit-content;
  line-height: 0.9;
}
.culfu .culfu_headcontainer .follow_h2_main {
  position: absolute;
  right: -10px;
  bottom: 4px;
}
.culfu .lead_main {
  margin-top: 40px;
}
.culfu .culfu_itemcontainer {
  display: flex;
  gap: 14px;
  margin-top: 72px;
}
.culfu .culfu_item_leftcontainer {
  width: 100%;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.culfu .culfu_item_rightcontainer {
  width: fit-content;
}
.culfu .culfu_item_rightcontainer .culfu_bnr {
  width: 352px;
  display: block;
  box-sizing: border-box;
  border-radius: 20px;
  overflow: hidden;
  transform-origin: center center;
  transition: transform 0.2s cubic-bezier(0.81, 0.03, 0.19, 0.91);
}
.culfu .culfu_item_rightcontainer .culfu_bnr:hover {
  transform: scale(0.98);
}
.culfu .culfu_item {
  padding: 18px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56) 2.68%, rgba(255, 255, 255, 0.25) 95.64%);
  stroke-width: 1px;
  stroke: rgba(255, 255, 255, 0.49);
  transform-origin: center center;
  transition: transform 0.2s cubic-bezier(0.81, 0.03, 0.19, 0.91);
}
.culfu .culfu_item:hover {
  transform: scale(0.98);
}
.culfu .culfu_item .culfu_illust {
  width: 34px;
  height: 34px;
}
.culfu .culfu_item .culfu_illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.culfu .culfu_item .h3_culfu {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.47;
  letter-spacing: 0.1em;
  text-align: center;
}
.culfu .culfu_item .culfu_ico {
  width: 20px;
  height: 20px;
}
.culfu .culfu_item .culfu_ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .culfu {
    padding: 100px 16px 100px;
    margin-top: -60px;
    position: relative;
    background: url(../../../img/bg_top_news.png), rgba(210, 235, 255, 0.3);
    background-repeat: repeat;
    border-radius: 20px 20px 0 0;
  }
  .culfu .culfu_inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .culfu .culfu_headcontainer {
    position: relative;
    width: fit-content;
  }
  .culfu .culfu_headcontainer .h2_main {
    width: fit-content;
    font-size: 6.4rem;
    line-height: 0.9;
  }
  .culfu .culfu_headcontainer .follow_h2_main {
    position: absolute;
    right: -10px;
    bottom: 4px;
  }
  .culfu .lead_main {
    margin-top: 40px;
  }
  .culfu .culfu_itemcontainer {
    display: block;
    margin-top: 40px;
  }
  .culfu .culfu_item_leftcontainer {
    width: 100%;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
  .culfu .culfu_item_rightcontainer {
    width: fit-content;
    margin-top: 14px;
  }
  .culfu .culfu_item_rightcontainer .culfu_bnr {
    width: 100%;
    display: block;
    box-sizing: border-box;
    border-radius: 16px;
    overflow: hidden;
  }
  .culfu .culfu_item {
    padding: 18px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.56) 2.68%, rgba(255, 255, 255, 0.25) 95.64%);
    stroke-width: 1px;
    stroke: rgba(255, 255, 255, 0.49);
  }
  .culfu .culfu_item .culfu_illust {
    width: 34px;
    height: 34px;
  }
  .culfu .culfu_item .culfu_illust img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .culfu .culfu_item .h3_culfu {
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 13px;
    margin-bottom: 20px;
  }
  .culfu .culfu_item .culfu_ico {
    width: 20px;
    height: 20px;
  }
  .culfu .culfu_item .culfu_ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
/*----------------------------------
  recruit
------------------------------------*/
.recruit {
  padding: 160px 15px 190px;
  margin-top: -60px;
  position: relative;
  background: url(../../../img/bg_top_news.png), rgba(66, 75, 72, 0.8);
  background-repeat: repeat;
  border-radius: 50px 50px 0 0;
}
.recruit .recruit_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.recruit .recruit_maincontainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
.recruit .recruit_leftcontainer {
  width: 200px;
  height: 100%;
  position: sticky;
  top: 100px;
}
.recruit .recruit_leftcontainer .recruit_titlecontainer {
  height: 200px;
}
.recruit .recruit_leftcontainer .recruit_titlecontainer .h2_main {
  width: fit-content;
}
.recruit .recruit_leftcontainer .recruit_titlecontainer .follow_h2_main {
  margin-top: 8px;
}
.recruit .recruit_leftcontainer nav {
  width: 100%;
}
.recruit .recruit_leftcontainer .recruit_navlist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.recruit .recruit_leftcontainer .recruit_navlist li {
  width: 100%;
}
.recruit .recruit_leftcontainer .recruit_navlist li a {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 4px;
}
.recruit .recruit_leftcontainer .recruit_navlist li span {
  display: block;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #79ffef 0%, rgba(121, 255, 239, 0.5) 30%, rgba(121, 255, 239, 0) 60%);
  filter: blur(2px);
}
.recruit .recruit_leftcontainer .recruit_navlist li p {
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: border 0.2s cubic-bezier(0.81, 0.03, 0.19, 0.91);
}
.recruit .recruit_leftcontainer .recruit_navlist li p:hover {
  border-bottom: 1px solid #fff;
}
.recruit .recruit_rightcontainer {
  width: 100%;
}
.recruit .recruit_rightcontainer .recruit_viewmorecontainer {
  padding-top: 32px;
  height: 200px;
}
.recruit .recruit_rightcontainer .recruit_viewmorecontainer .btn_viewmore {
  margin-left: auto;
}
.recruit .recruit_rightcontainer .recruit_jobtype {
  width: 100%;
  margin-bottom: 48px;
}
.recruit .recruit_rightcontainer .recruit_jobtype h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
}
.recruit .recruit_rightcontainer .recruit_jobtype h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, #79ffef 0%, rgba(121, 255, 239, 0.5) 30%, rgba(121, 255, 239, 0) 60%);
  filter: blur(2px);
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 4px 4px 32px 0px rgba(0, 44, 79, 0.04), 4px 4px 28px 0px rgba(255, 255, 255, 0.34) inset;
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item::after {
  position: absolute;
  bottom: 16px;
  right: 16px;
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  background-image: url(../../../img/ico_arrow_green_round.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item .recruit_item_pic {
  width: 100%;
  overflow: hidden;
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item .recruit_item_pic img {
  width: 100%;
  transform-origin: center center;
  transition: all 0.3s;
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item .recruit_item_headcontainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 7px;
  padding: 18px;
  transition: all 0.3s;
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item .recruit_item_headcontainer .h4_recruit {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #213f36;
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item .recruit_item_headcontainer .h4_recruit span {
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #213f36;
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item .recruit_item_headcontainer .recruit_now {
  display: block;
  padding: 2px 5px;
  background-color: #269373;
  border-radius: 20px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 6px;
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item .recruit_textbox {
  margin-top: 12px;
  margin-right: 33px;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.05em;
  color: #213f36;
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item:hover .recruit_item_pic img {
  transform: scale(1.08);
}
.recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item:hover .recruit_item_headcontainer {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .recruit {
    padding: 100px 16px 100px;
    margin-top: -60px;
    position: relative;
    background: url(../../../img/bg_top_news.png), rgba(66, 75, 72, 0.8);
    background-repeat: repeat;
    border-radius: 20px 20px 0 0;
  }
  .recruit .recruit_inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .recruit .recruit_maincontainer {
    width: 100%;
    display: block;
  }
  .recruit .recruit_leftcontainer {
    width: 100%;
    height: auto;
    position: static;
  }
  .recruit .recruit_leftcontainer .recruit_titlecontainer {
    height: auto;
  }
  .recruit .recruit_leftcontainer .recruit_titlecontainer .h2_main {
    width: fit-content;
  }
  .recruit .recruit_leftcontainer .recruit_titlecontainer .follow_h2_main {
    margin-top: 8px;
  }
  .recruit .recruit_leftcontainer nav {
    display: none;
  }
  .recruit .recruit_rightcontainer {
    width: 100%;
  }
  .recruit .recruit_rightcontainer .recruit_viewmorecontainer {
    display: none;
  }
  .recruit .recruit_rightcontainer .recruit_jobtype {
    width: 100%;
    margin-bottom: 48px;
    margin-top: 40px;
  }
  .recruit .recruit_rightcontainer .recruit_jobtype h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.08em;
    color: #fff;
  }
  .recruit .recruit_rightcontainer .recruit_jobtype h3::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: radial-gradient(circle, #79ffef 0%, rgba(121, 255, 239, 0.5) 30%, rgba(121, 255, 239, 0) 60%);
    filter: blur(2px);
  }
  .recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
  }
  .recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item {
    position: relative;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 4px 4px 32px 0px rgba(0, 44, 79, 0.04), 4px 4px 28px 0px rgba(255, 255, 255, 0.34) inset;
  }
  .recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item::after {
    position: absolute;
    bottom: 10px;
    right: 10px;
    content: "";
    display: block;
    width: 27px;
    height: 27px;
    background-image: url(../../../img/ico_arrow_green_round.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item_headcontainer {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 7px;
    padding: 12px;
  }
  .recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item_headcontainer .h4_recruit {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.05em;
    color: #213f36;
  }
  .recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item_headcontainer .h4_recruit span {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.05em;
    color: #213f36;
  }
  .recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_item_headcontainer .recruit_now {
    display: block;
    padding: 2px 5px;
    background-color: #269373;
    border-radius: 20px;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    margin-top: 6px;
  }
  .recruit .recruit_rightcontainer .recruit_jobtype .recruit_itemcontainer .recruit_textbox {
    margin-top: 12px;
    margin-right: 33px;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: 0.05em;
    color: #213f36;
  }
}
/*----------------------------------
  about
------------------------------------*/
.picslider {
  display: none;
  position: relative;
  z-index: 99;
}
.picslider .picslider_item {
  width: 320px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 12px;
}

.about {
  padding: 300px 15px 190px;
  margin-top: -191px;
  position: relative;
  background: url(../../../img/bg_top_news.png), rgba(84, 105, 97, 0.85);
  background-repeat: repeat;
  border-radius: 50px 50px 0 0;
}
.about .about_inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.about .about_headcontainer .h2_main {
  line-height: 1;
}
.about .about_headcontainer .follow_h2_main {
  line-height: 1.7;
  margin-top: 8px;
}
.about .lead_main {
  margin-top: 36px;
}
.about .about_itemcontainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}
.about .about_item {
  display: block;
  box-sizing: border-box;
  width: 272px;
  height: 272px;
  border-radius: 272px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 4px 4px 32px 0px rgba(0, 44, 79, 0.04), 4px 6px 28px 5px rgba(255, 255, 255, 0.5) inset;
  transform-origin: center center;
  transition: transform 0.2s cubic-bezier(0.81, 0.03, 0.19, 0.91);
}
.about .about_item:hover {
  transform: scale(0.98);
}
.about .about_item:first-of-type {
  background-image: url(../../../img/illust_about_item1.png);
}
.about .about_item:nth-of-type(2) {
  background-image: url(../../../img/illust_about_item2.png);
}
.about .about_item:last-of-type {
  background-image: url(../../../img/illust_about_item3.png);
}
.about .about_item .follow_h3_about {
  color: #213f36;
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 30px;
}
.about .about_item .h3_about {
  color: #213f36;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .picslider {
    display: none;
    position: relative;
    z-index: 99;
  }
  .picslider .picslider_item {
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 12px;
  }
  .about {
    padding: 200px 16px 100px;
    margin-top: -120px;
    position: relative;
    background: url(../../../img/bg_top_news.png), rgba(84, 105, 97, 0.85);
    background-repeat: repeat;
    border-radius: 20px 20px 0 0;
  }
  .about .about_inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .about .about_headcontainer .h2_main {
    line-height: 1;
  }
  .about .about_headcontainer .follow_h2_main {
    line-height: 1.7;
    margin-top: 8px;
  }
  .about .lead_main {
    margin-top: 36px;
  }
  .about .about_itemcontainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
    margin-top: 48px;
  }
  .about .about_item {
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 370px;
    height: auto;
    min-height: 100px;
    border-radius: 272px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: none;
  }
  .about .about_item:first-of-type {
    background-image: url(../../../img/illust_about_item1_sp.png);
  }
  .about .about_item:nth-of-type(2) {
    background-image: url(../../../img/illust_about_item2_sp.png);
  }
  .about .about_item:last-of-type {
    background-image: url(../../../img/illust_about_item3_sp.png);
  }
  .about .about_item .follow_h3_about {
    color: #213f36;
    text-align: left;
    font-family: "Barlow", sans-serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-top: 0;
  }
  .about .about_item .h3_about {
    color: #213f36;
    text-align: left;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 4px;
  }
}
/*----------------------------------
  sns
------------------------------------*/
.sns {
  padding: 160px 15px 190px;
  margin-top: -60px;
  position: relative;
  background: url(../../../img/bg_top_news.png), rgba(255, 255, 255, 0.55);
  background-repeat: repeat;
  border-radius: 50px;
  /* Chrome, Safari 対応 */
}
.sns .sns_inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.sns .sns_headcontainer .h2_main {
  line-height: 1;
  color: #213f36;
}
.sns .sns_headcontainer .follow_h2_main {
  line-height: 1.7;
  margin-top: 8px;
  color: #213f36;
}
.sns .lead_main {
  margin-top: 36px;
  color: #213f36;
}
.sns .sns_itemcontainer {
  width: 100vw;
  margin: 0 calc(450px - 50vw);
  padding: 0 calc(50vw - 450px);
  overflow: scroll;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 48px;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}
.sns::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .sns {
    padding: 160px 15px 190px;
    margin-top: -60px;
    position: relative;
    background: url(../../../img/bg_top_news.png), rgba(255, 255, 255, 0.55);
    background-repeat: repeat;
    border-radius: 50px;
    overflow: hidden;
    /* Chrome, Safari 対応 */
  }
  .sns .sns_inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .sns .sns_headcontainer .h2_main {
    line-height: 1;
    color: #213f36;
  }
  .sns .sns_headcontainer .follow_h2_main {
    line-height: 1.7;
    margin-top: 8px;
    color: #213f36;
  }
  .sns .lead_main {
    margin-top: 36px;
    color: #213f36;
  }
  .sns .sns_itemcontainer {
    width: 100vw;
    margin: 0;
    padding: 0 32px 0 0;
    overflow: scroll;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 48px;
    /* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
  }
  .sns::-webkit-scrollbar {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>