@charset "UTF-8";
html {
  font-size: 1rem;
}

body {
  background-image: linear-gradient(#fffbec, #fcfca2 58%, #d9f9a0);
  font-size: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #6A3800;
  margin: 0;
}

main {
  position: relative;
}

h1,
h2,
h3 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin: 0;
}

h3 {
  color: #265D02;
  line-height: 45px;
  font-size: 2rem;
  font-weight: 400;
}

a {
  color: #6A3800;
}
a:link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
  outline: thin dotted;
  outline: none;
  outline-offset: 0;
}
a:hover, a:active, a:focus {
  color: #265D02;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

ul {
  list-style: none;
  margin-bottom: 0;
}

.flex {
  display: flex;
}

.view_pc {
  display: block;
}

.view_sp {
  display: none;
}

.page_wrap {
  max-width: 1100px;
  width: 80%;
  margin: 0 auto;
  margin-top: min(180px, 18%);
}

.page_ttl {
  position: relative;
  text-align: left;
  margin: 0 auto 50px;
}
.page_ttl > p {
  margin-left: 35px;
}
.page_ttl:before {
  content: "";
  background-image: url(../img/himawari02.png);
  background-size: contain;
  position: absolute;
  bottom: -375%;
  left: 74%;
  z-index: -10;
  max-width: 800px;
  max-height: 800px;
  min-width: 560px;
  min-height: 560px;
  width: 45vw;
  height: 45vw;
}

.page_ttl_en {
  margin-left: -10px;
  align-items: center;
}
.page_ttl_en > h2 {
  letter-spacing: 5px;
  color: #265D02;
  font-weight: normal;
}

.page_ttl_en_img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.section_ttl {
  align-items: center;
  margin: 0 auto 20px;
}
.section_ttl > h3 {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 3px;
}

.section_ttl_img {
  width: 20px;
  height: 25px;
  margin-right: 10px;
}

.fadeIn_up {
  opacity: 0;
  transform: translateY(200px);
  /* ← px にする */
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_trigger {
  height: 1px;
}

@media screen and (max-width: 768px) {
  .page_ttl:before {
    bottom: -196%;
    left: clamp(160px, 60%, 367px);
    max-width: 800px;
    max-height: 800px;
    min-width: 345px;
    min-height: 420px;
    width: 55vw;
    height: 60vw;
  }
  .page_wrap {
    width: 90%;
    margin-top: min(130px, 35%);
  }
  .view_pc {
    display: none;
  }
  .view_sp {
    display: block;
  }
  .section_ttl > h3 {
    font-size: 1.25rem;
    line-height: 30px;
  }
  .section_ttl_img {
    width: 15px;
    height: 30px;
  }
  .page_ttl_en {
    margin-left: -5px;
  }
  .page_ttl_en_img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .fadeIn_up {
    opacity: 0;
    transform: translate(0, 20%);
    transition: 2s;
  }
  .fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/*====================================

 　header.php 

==================================== */
#header-wrapper .header_wrap {
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.8);
  width: 90%;
  border-radius: 50px;
  padding: 15px 50px;
}
#header-wrapper .header_wrap > h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  font-size: min(2rem, 2.2vw);
  text-align: center;
}
#header-wrapper .header_wrap > h1 > a:hover {
  color: #265D02;
}
#header-wrapper .header_wrap > h1 span {
  font-size: min(1.125rem, 1.6vw);
}
#header-wrapper .header_nav {
  color: #6A3800;
}
#header-wrapper .nav_list {
  list-style: none;
  font-weight: 500;
  font-size: min(1rem, 1.8vw);
}
#header-wrapper .nav_list_item {
  margin-left: 40px;
}
#header-wrapper .nav_list_item > a:hover {
  color: #265D02;
  text-decoration: none;
}
#header-wrapper {
  /* ------- ハンバーガーアイコン ------- */
}
#header-wrapper .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 17px;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2000;
}
#header-wrapper .hamburger span {
  display: block;
  height: 2px;
  background-color: #6A3800;
  border-radius: 3px;
  transition: 0.4s;
}
#header-wrapper .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#header-wrapper .hamburger.active span:nth-child(2) {
  opacity: 0;
}
#header-wrapper .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
#header-wrapper .nav_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(3, 3, 3, 0.5);
  display: none;
}
@media screen and (max-width: 768px) {
  #header-wrapper .header_wrap {
    padding: 20px 30px;
  }
  #header-wrapper .header_wrap > h1 {
    font-size: min(1.5rem, 5vw);
  }
  #header-wrapper .header_wrap > h1 span {
    font-size: min(1.125rem, 3vw);
  }
  #header-wrapper .header_wrap {
    position: fixed;
    top: 3%;
    /* left: 50%; */
    right: 16px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 9999;
    transform: none;
    left: auto;
  }
  #header-wrapper .hamburger {
    display: flex;
    pointer-events: auto;
  }
  #header-wrapper .header_nav li {
    margin-left: 20px;
    align-items: center;
  }
  #header-wrapper .nav_img {
    width: 20px;
    height: 29px;
    margin-right: 7px;
    align-self: baseline;
  }
  #header-wrapper .nav_img > img {
    -o-object-position: 0 3px;
       object-position: 0 3px;
  }
  #header-wrapper .nav_list {
    display: block;
    font-size: min(1.25rem, 4.4vw);
    padding: 80px 10px 20px 10px;
    position: fixed;
    top: 0;
    right: -100%;
    /* top: -35px; */
    background-color: #FFFBEC;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 1000;
    pointer-events: none;
    width: 80%;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 40px 0 0 40px;
  }
  #header-wrapper .nav_list.active {
    right: 0px;
    max-height: 100dvh;
    height: 100dvh;
    pointer-events: auto;
  }
  #header-wrapper .nav_bg.active {
    display: block;
  }
  #header-wrapper .nav_list_item {
    margin-right: 20px;
  }
  #header-wrapper .nav_sublist_item {
    font-size: min(0.875rem, 3vw);
    margin-bottom: 5px;
  }
  #header-wrapper .nav_sublist_item > a {
    color: #B49B7F;
  }
  #header-wrapper .nav_list_item.view_sp {
    display: none;
  }
  #header-wrapper .border {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #B49B7F;
    margin: 20px 0;
  }
  #header-wrapper .nav_list_item {
    margin-bottom: 20px;
  }
  #header-wrapper .nav_list_item.view_sp {
    display: block;
  }
  #header-wrapper .header_contact_tel {
    text-align: center;
    align-content: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto 20px;
  }
  #header-wrapper .header_contact_tel > i {
    font-size: min(2rem, 5vw);
  }
  #header-wrapper .header_contact_tel > a {
    font-family: sans-serif;
    font-size: min(2.625rem, 6.2vw);
    font-weight: 700;
    color: #265D02;
    margin-left: 5px;
  }
  #header-wrapper .header_contact_tel > p {
    font-size: min(1rem, 3.2vw);
  }
  #header-wrapper .contact_contain > a {
    display: block;
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
  }
  #header-wrapper .form {
    position: relative;
    border: 2px solid #A3CF5F;
    border-radius: 10px;
    background-color: #fff;
    padding: 15px 20px;
  }
  #header-wrapper .form > span {
    color: #B49B7F;
    font-size: 0.75rem;
  }
  #header-wrapper .form > p {
    font-size: min(1.125rem, 4.2vw);
    font-weight: 500;
  }
  #header-wrapper .form:after {
    content: "\f0a9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 8%;
    top: 27px;
    font-size: min(1.5rem, 4.8vw);
    color: #A3CF5F;
  }
  #header-wrapper .form:hover {
    background-color: #A3CF5F;
  }
  #header-wrapper .form:hover > p {
    color: #fff;
  }
  #header-wrapper .form:hover:after {
    color: #fff;
  }
  #header-wrapper .contact_form {
    margin-bottom: 20px;
  }
  #header-wrapper .entry_form {
    margin-bottom: 10px;
  }
}

.mv {
  position: relative;
  max-height: 800px;
  height: 60vw;
  margin-bottom: 120px;
  overflow: hidden;
}
.mv > h2 {
  position: absolute;
  top: 47%;
  left: 15%;
  line-height: 200%;
  letter-spacing: 9px;
  font-size: min(2.625rem, 2.5vw);
  font-weight: 500;
}

.mv_img {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-mask-image: url("../img/mask.png");
          mask-image: url("../img/mask.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: auto;
          mask-size: auto;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
.mv_img.mv01 {
  left: 64%;
  top: clamp(155px, 80%, 170px);
  width: 35%;
  -webkit-mask-size: min(480px, 82%);
          mask-size: min(480px, 82%);
  -webkit-mask-position: 27% 68%;
          mask-position: 27% 68%;
}
.mv_img.mv02 {
  top: 51%;
  left: 39%;
  width: 28%;
  -webkit-mask-size: 65%;
          mask-size: 65%;
  -webkit-mask-position: 88% 43%;
          mask-position: 88% 43%;
}
.mv_img.mv03 {
  bottom: 53%;
  left: 5%;
  width: 20%;
  -webkit-mask-size: 70%;
  mask-size: 70%;
  -webkit-mask-position: 45% 110%;
  mask-position: 45% 110%;
}

#Bubble {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -10;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  animation: bubbleUp linear forwards;
}

@keyframes bubbleUp {
  0% {
    transform: translateY(-10vh) scale(0.7);
    opacity: 0;
  }
  10% {
    opacity: 0.2;
  }
  40% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-180vh) scale(1.5);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0%);
  }
}
@media screen and (max-width: 768px) {
  .mv {
    max-height: 800px;
    height: 165vw;
    margin-bottom: 39px;
  }
  .mv > h2 {
    top: 17%;
    left: 6%;
    letter-spacing: 4px;
    font-size: min(2.625rem, 6vw);
    z-index: 1;
  }
  .mv_img.mv01 {
    left: auto;
    right: -13%;
    top: clamp(154px, 38%, 212px);
    width: 77%;
    max-width: 500px;
    min-width: 300px;
  }
  .mv_img.mv02 {
    top: 67%;
    left: 9%;
    width: 79%;
    max-width: 480px;
  }
  .mv_img.mv03 {
    bottom: 26%;
    left: -5%;
    width: 51%;
    max-width: 320px;
  }
}
/*====================================

 　page-top.php 

==================================== */
#top-wrapper section {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
#top-wrapper .section_ttl {
  position: relative;
  margin-bottom: 50px;
}
#top-wrapper .section_ttl h3 {
  letter-spacing: 8px;
}
#top-wrapper .section_ttl p {
  margin-left: 45px;
}
#top-wrapper .section_ttl_en {
  align-items: center;
  gap: 10px;
}
#top-wrapper .section_ttl_en_img {
  width: 35px;
  height: 35px;
}
#top-wrapper .more_btn {
  display: inline-block;
  position: relative;
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  border: solid 3px #A3CF5F;
  width: 240px;
  height: -moz-fit-content;
  height: fit-content;
  color: #6A3800;
  font-weight: 700;
}
#top-wrapper .more_btn:after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.25rem;
  position: absolute;
  top: 14%;
  right: 10%;
  color: #A3CF5F;
}
#top-wrapper .more_btn:hover, #top-wrapper .more_btn:active, #top-wrapper .more_btn:focus {
  color: #fff;
  background-color: #A3CF5F;
  text-decoration: none;
  opacity: 1;
}
#top-wrapper .more_btn:hover:after, #top-wrapper .more_btn:active:after, #top-wrapper .more_btn:focus:after {
  color: #fff;
}
#top-wrapper .section_wrap {
  margin-left: 45px;
}
#top-wrapper {
  /*-------------------------
  　ご挨拶
  -------------------------*/
}
#top-wrapper .about {
  position: relative;
  margin-bottom: 160px;
}
#top-wrapper .about:before {
  content: "";
  background-image: url(../img/himawari02.png);
  background-size: contain;
  max-width: 670px;
  max-height: 670px;
  width: 80vw;
  height: 80vw;
  position: absolute;
  transform: rotate(-18deg);
  left: -42%;
  bottom: -65%;
  z-index: -10;
}
#top-wrapper .about:after {
  content: "";
  background-image: url(../img/himawari02.png);
  background-size: contain;
  max-width: 600px;
  max-height: 600px;
  width: 50vw;
  height: 50vw;
  position: absolute;
  left: 86%;
  bottom: clamp(-300px, -39%, -403px);
  transform: rotate(-205deg);
  z-index: -10;
}
#top-wrapper .about_wrap {
  position: relative;
  justify-content: space-evenly;
  gap: 2%;
}
#top-wrapper .about_wrap > h3 {
  font-size: min(1.5rem, 2.4vw);
  font-weight: 700;
  line-height: 181%;
}
#top-wrapper .about_txt {
  width: 65%;
  font-size: min(1rem, 1.8vw);
  line-height: 200%;
}
#top-wrapper {
  /*-------------------------
  　サービス
  -------------------------*/
}
#top-wrapper .service {
  position: relative;
  margin-bottom: 120px;
}
#top-wrapper .service:before {
  content: "";
  background-image: url(../img/himawari01.png);
  background-size: contain;
  min-width: 200px;
  min-height: 200px;
  width: 18vw;
  height: 18vw;
  max-height: 240px;
  max-width: 240px;
  position: absolute;
  top: max(383px, 65%);
  left: 74%;
  transform: rotate(18deg);
  z-index: -10;
}
#top-wrapper .service .service_wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3%;
}
#top-wrapper .service .service_wrap > a {
  position: relative;
  flex: 0 0 30%;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
}
#top-wrapper .service .service_wrap > a:nth-of-type(odd) .service_num {
  background-color: #A3CF5F;
}
#top-wrapper .service .service_wrap > a:nth-of-type(odd) .service_img {
  border: 4px solid #A3CF5F;
}
#top-wrapper .service .service_wrap > a:nth-of-type(odd) .service_img:after {
  border-color: #A3CF5F;
}
#top-wrapper .service .service_wrap > a:nth-of-type(even) .service_num {
  background-color: #265D02;
}
#top-wrapper .service .service_wrap > a:nth-of-type(even) .service_img {
  border: 4px solid #265D02;
}
#top-wrapper .service .service_wrap > a:nth-of-type(even) .service_img:after {
  border-color: #265D02;
}
#top-wrapper .service .service_wrap > a:hover {
  text-decoration: none;
  color: #6A3800;
  opacity: 0.7;
  transition: 0.1ss;
}
#top-wrapper .service .service_wrap > a:last-child:hover {
  opacity: 1;
}
#top-wrapper .service .service_wrap .more_btn {
  text-align: left;
  align-self: flex-end;
  font-size: 1rem;
}
#top-wrapper .service .service_wrap .more_btn:hover {
  opacity: 1;
}
#top-wrapper .service .service_section_ttl {
  font-size: min(1.25rem, 2.6vw);
}
#top-wrapper .service .service_section_subttl {
  font-size: min(1rem, 1.8vw);
}
#top-wrapper .service .service_num {
  position: absolute;
  top: 0%;
  right: 64%;
  font-family: sans-serif;
  font-size: 1.5rem;
  color: #fff;
  border-radius: 50%;
  z-index: 1;
  aspect-ratio: 1/1;
  width: 60px;
  height: 60px;
  line-height: 60px;
}
#top-wrapper .service .service_img {
  position: relative;
  max-height: 190px;
  max-width: 190px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  aspect-ratio: 1/1;
  width: 80%;
}
#top-wrapper .service .service_img > img {
  -o-object-fit: cover;
     object-fit: cover;
}
#top-wrapper .service .service_img:after {
  content: "";
  position: absolute;
  left: 4%;
  top: 4%;
  max-width: 170px;
  max-height: 170px;
  border: solid 2px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 92%;
  height: 92%;
}
#top-wrapper .service .service_img.grouphome img {
  -o-object-position: -1px;
     object-position: -1px;
}
#top-wrapper {
  /*-------------------------
  　会社紹介
  -------------------------*/
}
#top-wrapper .company {
  margin-bottom: 120px;
}
#top-wrapper .company .company_contain {
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 3%;
}
#top-wrapper .company .company_contain table {
  border-color: inherit;
  text-indent: 0;
  border-spacing: 0 15px;
  border-collapse: separate;
}
#top-wrapper .company .company_contain th {
  vertical-align: baseline;
  text-align: right;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
#top-wrapper .company .company_contain td {
  padding-left: 20px;
}
#top-wrapper .company .company_contain iframe {
  max-width: 500px;
}
#top-wrapper {
  /*-------------------------
  　コンベアスライドショー
  -------------------------*/
}
#top-wrapper .wrap {
  display: flex;
  align-items: center;
  height: 340px;
  overflow: hidden;
  margin-bottom: 120px;
}
#top-wrapper .slideshow {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: loop-slide1 40s linear infinite;
}
#top-wrapper .content {
  width: 270px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 20px;
}
#top-wrapper .slide_img {
  width: 100%;
  height: 100%;
}
#top-wrapper .slide_img > img {
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes loop-slide1 {
  from {
    transform: translateX(-30%);
  }
  to {
    transform: translateX(-130%);
  }
}
#top-wrapper {
  /*-------------------------
  　お問い合わせ
  -------------------------*/
}
#top-wrapper .contact {
  position: relative;
  margin-bottom: 120px;
}
#top-wrapper .contact:before {
  content: "";
  background-image: url(../img/himawari02.png);
  background-size: contain;
  position: absolute;
  bottom: -79%;
  left: 68%;
  max-width: 800px;
  max-height: 800px;
  min-width: 600px;
  min-height: 600px;
  width: 50vw;
  height: 50vw;
  z-index: -10;
}
#top-wrapper .contact_wrap {
  justify-content: space-between;
}
#top-wrapper .contact_contain {
  flex-direction: column;
  width: 40%;
  min-width: 290px;
}
#top-wrapper .contact_contain > p {
  font-size: min(1.25rem, 1.6vw);
  letter-spacing: 4px;
  margin-bottom: 50px;
}
#top-wrapper .contact_tel {
  border-top: double 4px #265D02;
  border-bottom: double 4px #265D02;
  padding: 10px 20px;
  text-align: center;
}
#top-wrapper .contact_tel > i {
  font-size: min(2rem, 2.5vw);
}
#top-wrapper .contact_tel > a {
  font-family: sans-serif;
  font-size: min(2.5rem, 3.6vw);
  font-weight: 700;
  color: #265D02;
  margin-left: 10px;
}
#top-wrapper .contact_tel > p {
  text-align: center;
}
#top-wrapper .border {
  height: auto;
  width: 1px;
  margin: 0 20px;
  background-color: #c7b197;
}
#top-wrapper .form_btn {
  display: inline-block;
  position: relative;
  border: 2px solid #A3CF5F;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px 25px;
  max-width: 370px;
  width: 35vw;
}
#top-wrapper .form_btn > span {
  color: #B49B7F;
  font-size: 0.875rem;
}
#top-wrapper .form_btn > p {
  font-size: min(1.125rem, 2vw);
  font-weight: 500;
}
#top-wrapper .form_btn:after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 8%;
  top: 30px;
  font-size: min(1.5rem, 2.5vw);
  color: #A3CF5F;
}
#top-wrapper .form_btn:hover {
  background-color: #A3CF5F;
}
#top-wrapper .form_btn:hover > p {
  color: #fff;
}
#top-wrapper .form_btn:hover:after {
  color: #fff;
}
#top-wrapper .contact_form_btn {
  margin-bottom: 20px;
}
#top-wrapper .entry_form_btn {
  margin-bottom: 10px;
}
#top-wrapper .jump_recruit {
  max-width: 165px;
  width: 55%;
  font-size: min(1rem, 1.8vw);
  margin-left: 8px;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}
#top-wrapper .jump_recruit > i {
  font-size: min(1.125rem, 2vw);
  color: #265D02;
  padding-left: 8px;
}
#top-wrapper .jump_recruit:hover {
  color: #265D02;
}
@media screen and (max-width: 1049px) {
  #top-wrapper .about:before {
    width: 60vw;
    height: 60vw;
    bottom: -45%;
    left: -48%;
  }
  #top-wrapper .about:after {
    width: 50vw;
    height: 50vw;
    left: 87%;
    bottom: -110%;
  }
}
@media screen and (max-width: 768px) {
  #top-wrapper .section_wrap {
    margin-left: 0;
    width: 85%;
    margin: 0 auto;
  }
  #top-wrapper .section_ttl_en_img {
    width: 30px;
    height: 30px;
  }
  #top-wrapper .about:before {
    content: "";
    background-image: url(../img/himawari02.png);
    background-size: contain;
    max-width: 670px;
    max-height: 670px;
    width: 55vw;
    height: 55vw;
    position: absolute;
    transform: rotate(-139deg);
    left: -40%;
    /* bottom: -22%; */
    z-index: -10;
    top: min(138px, -14%);
    opacity: 0.9;
  }
  #top-wrapper .about:after {
    content: "";
    background-image: url(../img/himawari02.png);
    background-size: contain;
    max-width: 460px;
    max-height: 460px;
    width: 70vw;
    height: 80vw;
    /* min-width: 380px; */
    min-height: 387px;
    position: absolute;
    left: 83%;
    bottom: -30%;
    transform: rotate(-61deg);
    z-index: -10;
    opacity: 0.8;
  }
  #top-wrapper .about_wrap {
    flex-direction: column;
  }
  #top-wrapper .about_wrap > h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  #top-wrapper .about_txt {
    width: 100%;
    font-size: 1rem;
  }
  #top-wrapper .service:before {
    content: none;
  }
  #top-wrapper .service .service_section_ttl {
    font-size: 1.25rem;
  }
  #top-wrapper .service .service_section_subttl {
    font-size: 1rem;
  }
  #top-wrapper .service .service_wrap {
    flex-direction: column;
    margin: 0 auto;
  }
  #top-wrapper .service .service_wrap > a {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 60px;
  }
  #top-wrapper .service .service_wrap .more_btn {
    width: 240px;
  }
  #top-wrapper .service .service_num {
    right: 64%;
  }
  #top-wrapper .service .service_img {
    max-height: 240px;
    max-width: 240px;
  }
  #top-wrapper .service .service_img:after {
    max-width: 260px;
    max-height: 260px;
  }
  #top-wrapper .more_btn {
    display: block;
    margin: 0 auto;
  }
  #top-wrapper .company .company_contain {
    flex-direction: column-reverse;
  }
  #top-wrapper .company .company_contain th,
  #top-wrapper .company .company_contain td {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
  }
  #top-wrapper .company .company_contain iframe {
    margin: 0 auto;
    max-width: 100%;
    max-height: 250px;
  }
  #top-wrapper .company th {
    margin-bottom: 5px;
  }
  #top-wrapper .wrap {
    height: -moz-fit-content;
    height: fit-content;
  }
  #top-wrapper .content {
    width: 220px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
  }
  #top-wrapper .contact {
    margin-bottom: 60px;
  }
  #top-wrapper .contact:before {
    content: "";
    background-image: url(../img/himawari02.png);
    background-size: contain;
    max-width: 800px;
    max-height: 800px;
    min-width: 360px;
    min-height: 360px;
    width: 80vw;
    height: 80vw;
    position: absolute;
    top: 68%;
    left: 58%;
    z-index: -10;
  }
  #top-wrapper .contact_wrap {
    flex-direction: column;
  }
  #top-wrapper .contact_contain {
    min-width: auto;
    width: auto;
    margin: 0 auto;
  }
  #top-wrapper .contact_contain > p {
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 30px;
  }
  #top-wrapper .contact_contain > a {
    display: block;
  }
  #top-wrapper .contact_tel {
    padding: 10px 20px;
    text-align: center;
  }
  #top-wrapper .contact_tel > i {
    font-size: 1.125rem;
  }
  #top-wrapper .contact_tel > a {
    margin-left: 5px;
    font-size: 1.5rem;
  }
  #top-wrapper .border {
    width: 100%;
    margin: 15px 0px;
  }
  #top-wrapper .form_btn {
    width: 80vw;
  }
  #top-wrapper .form_btn > p {
    font-size: 1rem;
  }
  #top-wrapper .form_btn:after {
    top: 35px;
    font-size: 1.25rem;
  }
  #top-wrapper .jump_recruit {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1rem;
  }
  #top-wrapper .jump_recruit > i {
    font-size: 1.125rem;
  }
}

/*====================================

 　page-recruit.php 

==================================== */
#recruit-wrapper .page_ttl.recruit_ttl:after {
  content: "";
  background-image: url(../img/himawari02.png);
  background-size: contain;
  position: absolute;
  right: 79%;
  z-index: -10;
  max-width: 700px;
  max-height: 700px;
  min-width: 470px;
  min-height: 470px;
  width: 40vw;
  height: 40vw;
}
#recruit-wrapper .recruit_wrap {
  margin-top: min(180px, 18%);
}
#recruit-wrapper .recruit_greeting {
  margin: 0 auto 120px;
  text-align: center;
  line-height: 35px;
}
#recruit-wrapper .recruit_greeting > p {
  margin-bottom: 10px;
}
#recruit-wrapper {
  /*-------------------------
  　コンベアスライドショー
  -------------------------*/
}
#recruit-wrapper .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 120px;
}
#recruit-wrapper .slideshow {
  display: flex;
  list-style: none;
  animation: loop-slide2 40s infinite linear 0s both;
  gap: 20px;
}
#recruit-wrapper .content {
  width: 270px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
#recruit-wrapper .slide_img {
  width: 100%;
  height: 100%;
}
#recruit-wrapper .slide_img > img {
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes loop-slide2 {
  from {
    transform: translateX(-30%);
  }
  to {
    transform: translateX(-132%);
  }
}
#recruit-wrapper {
  /*-------------------------
  　募集要項
  -------------------------*/
}
#recruit-wrapper .recruit_info {
  margin-bottom: 160px;
}
#recruit-wrapper .recruit_info_accordion {
  margin-bottom: 60px;
}
#recruit-wrapper details {
  margin-bottom: 20px;
}
#recruit-wrapper summary {
  position: relative;
  list-style-type: none;
  background-color: #fff;
  border: 2px solid #A3CF5F;
  padding: 30px 50px;
  text-align: left;
  border-radius: 10px;
  font-weight: 500;
}
#recruit-wrapper summary:after {
  font-family: FontAwesome;
  content: "+";
  position: absolute;
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: #A3CF5F;
}
#recruit-wrapper details[open] summary {
  border: 2px solid #A3CF5F;
  border-bottom: 1px solid #A3CF5F;
  border-radius: 10px 10px 0 0;
}
#recruit-wrapper details[open] summary:after {
  font-family: FontAwesome;
  content: "\f068";
}
#recruit-wrapper .fulltime:before {
  content: "正社員";
  color: #fff;
  background-color: #A3CF5F;
  border-radius: 50px;
  padding: 5px 25px;
  margin-right: 40px;
}
#recruit-wrapper .parttime:before {
  content: "パート";
  color: #6A3800;
  background-color: #fff;
  border-radius: 50px;
  border: 2px solid #A3CF5F;
  padding: 5px 25px;
  margin-right: 40px;
}
#recruit-wrapper .recruit_info_accordion_table {
  background-color: #fff;
  border: 2px solid #A3CF5F;
  border-top: none;
  border-radius: 0 0 10px 10px;
}
#recruit-wrapper .recruit_info_accordion_table ul {
  list-style: disc;
  padding-left: 25px;
}
#recruit-wrapper table {
  border-color: inherit;
  text-indent: 0;
  border-spacing: 40px 16px;
  border-collapse: separate;
  /* width: 597px; */
  border-collapse: collapse;
  width: 90%;
  margin: 0 auto;
}
#recruit-wrapper td,
#recruit-wrapper th {
  border-bottom: 1px solid #e9e6e2;
  padding: 30px 0;
}
#recruit-wrapper th {
  width: 10%;
  min-width: 130px;
  font-weight: 500;
}
#recruit-wrapper table tr:last-child td,
#recruit-wrapper table tr:last-child th {
  border-bottom: none;
}
#recruit-wrapper .recruit_entry_btn {
  position: relative;
  color: #fff;
  background-color: #265D02;
  margin: 0 auto;
  display: block;
  width: 50%;
  text-align: center;
  border-radius: 50px;
  padding: 20px 50px;
}
#recruit-wrapper .recruit_entry_btn:before {
  content: "";
  background-image: url("../img/himawari01.png");
  background-size: contain;
  width: 170px;
  height: 120px;
  position: absolute;
  top: -57px;
  right: -45px;
  transform: rotate(22deg);
}
#recruit-wrapper .recruit_entry_btn:hover {
  background-color: #A3CF5F;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #recruit-wrapper .page_ttl.recruit_ttl:after {
    width: 40vw;
    height: 40vw;
    position: absolute;
    left: clamp(-258px, -29%, -250px);
    max-width: 700px;
    max-height: 700px;
    min-width: 360px;
    min-height: 360px;
    top: 400%;
  }
  #recruit-wrapper .recruit_wrap {
    margin-top: clamp(115px, 41%, 130px);
  }
  #recruit-wrapper .recruit_greeting,
  #recruit-wrapper .recruit_info {
    width: 100%;
  }
  #recruit-wrapper .recruit_greeting {
    margin: 0 auto 60px;
    text-align: left;
  }
  #recruit-wrapper .content {
    width: 220px;
  }
  #recruit-wrapper summary {
    padding: 15px;
    display: block;
    font-size: min(1.25rem, 4.5vw);
  }
  #recruit-wrapper .fulltime:before,
  #recruit-wrapper .parttime:before {
    font-size: min(1rem, 3vw);
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 14px;
  }
  #recruit-wrapper tr {
    display: block;
    padding: 10px 0;
  }
  #recruit-wrapper th,
  #recruit-wrapper td {
    display: block;
  }
  #recruit-wrapper th {
    border-bottom: none;
    padding: 5px 0;
  }
  #recruit-wrapper td {
    padding: 5px 0 20px 0;
    font-size: min(1rem, 4.2vw);
  }
  #recruit-wrapper .recruit_entry_btn {
    width: 100%;
    padding: 15px 50px;
  }
  #recruit-wrapper .recruit_entry_btn:before {
    width: 135px;
    height: 100px;
    top: -57px;
    right: -28px;
  }
}

/*====================================

 　page-service.php 

==================================== */
#service-wrapper .service_wrap {
  margin-bottom: 160px;
}
#service-wrapper .service_wrap h4 {
  color: #265D02;
  margin-bottom: 40px;
  font-size: 1.25rem;
}
#service-wrapper .service_nav {
  gap: 20px;
  margin-left: 40px;
  margin-bottom: 60px;
  font-size: min(1rem, 1.6vw);
  font-weight: 500;
}
#service-wrapper .service_nav > li {
  border-right: 1px solid #265D02;
  padding-right: 20px;
}
#service-wrapper .service_nav > li:last-child {
  border: none;
}
#service-wrapper .service_nav > li > a {
  color: #265D02;
}
#service-wrapper .service_nav > li > a:hover {
  text-decoration: underline;
  color: #265D02;
}
#service-wrapper .service_nav span {
  display: inline;
  margin-right: 5px;
}
#service-wrapper {
  /*-------------------------
  　就労支援
  -------------------------*/
}
#service-wrapper .employment {
  margin-bottom: 80px;
}
#service-wrapper .employment_wrap {
  background-color: #fff;
  padding: 40px 40px 60px 40px;
  border-radius: 10px;
}
#service-wrapper .employment_contain {
  border-bottom: 1px solid #6A3800;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
#service-wrapper .employment_box {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
  margin-bottom: 30px;
}
#service-wrapper .employment_box_img {
  /* max-width: 345px; */
  width: 40%;
}
#service-wrapper .employment_box_txt {
  width: 55%;
  line-height: 35px;
}
#service-wrapper .employment_flow_day {
  width: 55%;
}
#service-wrapper .employment_flow_day_inner {
  margin-bottom: 10px;
  padding: 20px 30px 10px 30px;
  border: 2px solid #A3CF5F;
  border-radius: 10px;
}
#service-wrapper .employment_flow_day_inner > p {
  font-weight: bold;
  color: #265D02;
  margin-bottom: 20px;
}
#service-wrapper .employment_flow_day_item {
  align-items: center;
  border-bottom: 2px dotted #6A3800;
  padding: 10px;
  gap: 10%;
}
#service-wrapper .employment_flow_day_item:last-child {
  border: none;
}
#service-wrapper .employment_flow_day_time {
  font-family: sans-serif;
  font-size: 0.875rem;
  width: 20%;
}
#service-wrapper .employment_access {
  margin-top: 80px;
}
#service-wrapper .employment_access h5 {
  font-size: 1.125rem;
  margin-bottom: 30px;
}
#service-wrapper .employment_access h5:before {
  content: "\f3c5";
  font-family: FontAwesome;
  color: #A3CF5F;
  margin-right: 10px;
}
#service-wrapper .employment_access_wrap {
  justify-content: space-between;
  gap: 3%;
}
#service-wrapper .employment_access_wrap table {
  display: block;
  border-color: inherit;
  text-indent: 0;
  border-spacing: 0px 20px;
  border-collapse: separate;
}
#service-wrapper .employment_access_wrap table th {
  text-align: right;
  padding-right: 30px;
  align-content: baseline;
  font-weight: 500;
}
#service-wrapper .employment_access_wrap iframe {
  width: 55%;
  max-height: 300px;
}
#service-wrapper .employment_access_wrap_txt > p {
  color: #265D02;
  font-weight: bold;
}
#service-wrapper .employment_lunchbox {
  transform: rotate(180deg);
  justify-content: flex-end;
  gap: 20px;
}
#service-wrapper {
  /*-------------------------
  　ケアプランセンター
  　障がい相談室
  -------------------------*/
}
#service-wrapper .careplan_wrap,
#service-wrapper .counseling_wrap {
  background-color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  margin-bottom: 80px;
  gap: 3%;
}
#service-wrapper .careplan_img,
#service-wrapper .counseling_img {
  width: 40%;
}
#service-wrapper .careplan_txt,
#service-wrapper .counseling_txt {
  width: 55%;
  line-height: 35px;
}
#service-wrapper {
  /*-------------------------
  　訪問介護
  -------------------------*/
}
#service-wrapper .nursingcare_wrap {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 40px;
  margin-bottom: 80px;
}
#service-wrapper .nursingcare_wrap > p {
  margin-bottom: 20px;
}
#service-wrapper .nursingcare_contain {
  background-color: #FFFBEC;
  border-radius: 10px;
  padding: 20px;
}
#service-wrapper .nursingcare_contain > h4 {
  margin-bottom: 20px;
}
#service-wrapper .nursingcare_contain_list {
  list-style: disc;
  padding-left: 25px;
}
#service-wrapper .nursingcare_contain_list .flex {
  gap: 3%;
  margin-bottom: 5px;
}
#service-wrapper .nursingcare_contain_list_h {
  width: 40%;
  max-width: 135px;
  font-weight: 500;
}
#service-wrapper .nursingcare_contain_list_txt {
  width: 100%;
}
#service-wrapper {
  /*-------------------------
  　グループホーム
  -------------------------*/
}
#service-wrapper .grouphome_wrap {
  background-color: #fff;
  padding: 20px 40px 0 40px;
  border-radius: 10px;
}
#service-wrapper .grouphome_wrap > h4 {
  margin-bottom: 20px;
}
#service-wrapper .grouphome_txt {
  margin-bottom: 40px;
  line-height: 35px;
}
#service-wrapper .grouphome_contain {
  flex-wrap: wrap;
  gap: 3%;
}
#service-wrapper .grouphome_box {
  flex-direction: column;
  width: 31.3333333333%;
  margin-bottom: 40px;
}
#service-wrapper .grouphome_box > h5 {
  color: #265D02;
  font-size: 1rem;
}
#service-wrapper .grouphome_box > a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  position: relative;
  text-decoration: underline;
  font-size: min(1rem, 1.6vw);
}
#service-wrapper .grouphome_box > a:after {
  font-family: FontAwesome;
  content: "\f0a9";
  text-decoration: none;
  margin-left: 5px;
  font-size: 1rem;
  color: #265D02;
  position: absolute;
}
#service-wrapper .grouphome_box > a:hover {
  color: #A3CF5F;
}
#service-wrapper .grouphome_box > a:hover:after {
  color: #A3CF5F;
}
#service-wrapper .grouphome_box_img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
#service-wrapper .grouphome_box_img > img {
  -o-object-fit: cover;
     object-fit: cover;
}
#service-wrapper .grouphome_address {
  margin-bottom: 10px;
  font-size: min(1rem, 1.8vw);
}
#service-wrapper {
  /*-------------------------
  　ご利用の流れ
  -------------------------*/
}
#service-wrapper .arrow {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 65px;
  margin: 0 19.5px;
  border-radius: 9999px;
  background-color: #6A3800;
}
#service-wrapper .arrow::before,
#service-wrapper .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 9px;
  border-radius: 9999px;
  background-color: #6A3800;
  transform-origin: 50% calc(100% - 0.5px);
}
#service-wrapper .arrow::before {
  transform: rotate(45deg);
}
#service-wrapper .arrow::after {
  transform: rotate(-45deg);
}
#service-wrapper .employment_flow_use {
  background-color: #FFFBEC;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 30px;
}
#service-wrapper .employment_flow_ttl {
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
#service-wrapper .employment_flow_ttl > h4 {
  color: #265D02;
  font-size: min(1.25rem, 2.8vw);
  margin-top: 0;
  margin-bottom: 10px;
}
#service-wrapper .employment_flow_ttl > p {
  margin-bottom: 10px;
}
#service-wrapper .employment_flow_item {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 3%;
}
#service-wrapper .employment_flow_item_h {
  align-items: center;
  max-width: 280px;
  width: 55%;
  font-weight: 500;
}
#service-wrapper .employment_flow_item_num {
  background-color: #A3CF5F;
  color: #fff;
  font-weight: bold;
  width: 40px;
  height: 40px;
  text-align: center;
  align-content: center;
  border-radius: 50%;
  margin-right: 10px;
  padding: 5px;
}
#service-wrapper .employment_flow_item_txt {
  width: 65%;
}
#service-wrapper .employment_attention > h4 {
  margin-bottom: 20px;
}
#service-wrapper .employment_attention_contain {
  gap: 3%;
  margin-bottom: 10px;
}
#service-wrapper .employment_attention_h {
  max-width: 115px;
  width: 50%;
}
#service-wrapper .employment_attention_txt {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #service-wrapper .service_ttl {
    margin: 0 auto 20px;
  }
  #service-wrapper .service_wrap h4 {
    margin-bottom: 20px;
    font-size: 1.125rem;
  }
  #service-wrapper .service_nav {
    gap: 10px;
    margin-left: 0px;
    font-size: min(0.875rem, 4vw);
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #service-wrapper .service_nav > li {
    padding-right: 10px;
  }
  #service-wrapper {
    /*-------------------------
    　就労支援
    -------------------------*/
  }
  #service-wrapper .employment_wrap {
    padding: 20px;
  }
  #service-wrapper .employment_wrap.fadeIn_up {
    opacity: 0;
    transform: translate(0, 5%);
    transition: 2s;
  }
  #service-wrapper .employment_wrap.fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
  }
  #service-wrapper .employment_contain {
    margin-bottom: 30px;
  }
  #service-wrapper .employment_box {
    flex-direction: column;
  }
  #service-wrapper .employment_box_img,
  #service-wrapper .employment_box_txt {
    width: 100%;
  }
  #service-wrapper .employment_box_img {
    margin-bottom: 10px;
  }
  #service-wrapper .employment_box_txt {
    line-height: 30px;
  }
  #service-wrapper .employment_flow_day {
    width: 100%;
  }
  #service-wrapper .employment_flow_day > p {
    font-size: 0.75rem;
  }
  #service-wrapper .employment_flow_day_inner {
    padding: 20px;
  }
  #service-wrapper .employment_flow_day_inner > p {
    margin-bottom: 10px;
  }
  #service-wrapper .employment_access {
    margin-top: 50px;
  }
  #service-wrapper .employment_access > h5 {
    margin-bottom: 0;
  }
  #service-wrapper .employment_access_wrap {
    flex-direction: column;
  }
  #service-wrapper .employment_access_wrap table {
    border-spacing: 0px 20px;
  }
  #service-wrapper .employment_access_wrap table th,
  #service-wrapper .employment_access_wrap table td {
    display: block;
  }
  #service-wrapper .employment_access_wrap table th {
    text-align: left;
    padding-right: 0;
  }
  #service-wrapper .employment_access_wrap iframe {
    max-height: 270px;
    max-width: auto;
    width: 100%;
  }
  #service-wrapper .employment_access_wrap_txt > p {
    margin-top: 20px;
  }
  #service-wrapper .employment_flow_ttl {
    font-size: 0.75rem;
    margin-bottom: 30px;
  }
  #service-wrapper .employment_flow_ttl > h4 {
    margin-bottom: 5px;
  }
  #service-wrapper .employment_flow_item,
  #service-wrapper .employment_attention_contain {
    flex-direction: column;
    align-items: flex-start;
  }
  #service-wrapper .employment_flow_item {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  #service-wrapper .employment_attention_contain {
    margin-bottom: 20px;
  }
  #service-wrapper .employment_flow_item_h,
  #service-wrapper .employment_flow_item_txt,
  #service-wrapper .employment_attention_h {
    max-width: none;
    width: 100%;
  }
  #service-wrapper .employment_flow_item_h,
  #service-wrapper .employment_attention_h {
    margin-bottom: 10px;
  }
  #service-wrapper .employment_attention_h {
    margin-bottom: 5px;
    font-weight: bold;
  }
  #service-wrapper .employment_flow_item_num {
    width: 30px;
    height: 30px;
    padding: 0;
  }
  #service-wrapper .arrow {
    height: 50px;
    margin: 0 11px;
  }
  #service-wrapper {
    /*-------------------------
    　ケアプランセンター
    　障がい相談室
    -------------------------*/
  }
  #service-wrapper .careplan_wrap,
  #service-wrapper .counseling_wrap {
    flex-direction: column;
    padding: 20px 25px;
  }
  #service-wrapper .careplan_img,
  #service-wrapper .counseling_img,
  #service-wrapper .careplan_txt,
  #service-wrapper .counseling_txt {
    width: 100%;
    line-height: 30px;
  }
  #service-wrapper .careplan_img,
  #service-wrapper .counseling_img {
    margin-bottom: 10px;
  }
  #service-wrapper {
    /*-------------------------
    　訪問介護
    -------------------------*/
  }
  #service-wrapper .nursingcare .section_ttl {
    align-items: flex-start;
  }
  #service-wrapper .nursingcare_wrap {
    padding: 20px 25px;
  }
  #service-wrapper .nursingcare_contain {
    padding: 20px 15px;
  }
  #service-wrapper .nursingcare_contain_list > li {
    flex-direction: column;
    margin-bottom: 20px;
  }
  #service-wrapper .nursingcare_contain_list .flex {
    flex-direction: column;
  }
  #service-wrapper .nursingcare_contain_list_h {
    width: 100%;
  }
  #service-wrapper {
    /*-------------------------
    　グループホーム
    -------------------------*/
  }
  #service-wrapper .grouphome_wrap {
    padding: 20px 25px;
  }
  #service-wrapper .grouphome_wrap.fadeIn_up {
    opacity: 0;
    transform: translate(0, 5%);
    transition: 2s;
  }
  #service-wrapper .grouphome_wrap.fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
  }
  #service-wrapper .grouphome_contain {
    flex-direction: column;
  }
  #service-wrapper .grouphome_box {
    width: 100%;
  }
  #service-wrapper .grouphome_box > a {
    font-size: 1rem;
  }
  #service-wrapper .grouphome_txt {
    line-height: 30px;
  }
  #service-wrapper .grouphome_address {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  #service-wrapper .employment_flow_use {
    padding: 10px;
  }
}

/*====================================

 　page-company.php 

==================================== */
#company-wrapper .company_wrap {
  margin-bottom: 160px;
}
#company-wrapper {
  /*-------------------------
  　会社理念
  -------------------------*/
}
#company-wrapper .philosophy {
  margin-bottom: 120px;
}
#company-wrapper .philosophy > p {
  font-size: 1.125rem;
}
#company-wrapper {
  /*-------------------------
  　代表挨拶
  -------------------------*/
}
#company-wrapper .message {
  margin-bottom: 160px;
}
#company-wrapper .message_wrap {
  position: relative;
  box-shadow: 2px 2px 4px rgba(106, 56, 0, 0.2784313725);
}
#company-wrapper .message_contain {
  background-color: #FFFBEC;
  padding: 30px;
  width: 70%;
  z-index: 0;
}
#company-wrapper .message_contain > h4 {
  color: #265D02;
  font-size: 1.25rem;
  margin-bottom: 30px;
}
#company-wrapper .message_contain:before {
  content: "";
  background-image: url("../img/himawari03.png");
  background-size: contain;
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 250px;
  height: 250px;
  z-index: -1;
}
#company-wrapper .message_contain_txt {
  font-size: clamp(0.8125rem, 1.6vw, 1rem);
  margin-bottom: 20px;
}
#company-wrapper .message_contain_name {
  margin-top: 40px;
}
#company-wrapper .message_contain_name > p:first-child {
  font-size: 0.875rem;
}
#company-wrapper .message_img {
  width: 30%;
}
#company-wrapper .message_img > img {
  -o-object-fit: cover;
     object-fit: cover;
}
#company-wrapper {
  /*-------------------------
  　会社概要
  -------------------------*/
}
#company-wrapper .company_wrap a {
  text-decoration: underline;
}
#company-wrapper .company_wrap a:hover {
  color: #265D02;
}
#company-wrapper .company_contain {
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 2%;
}
#company-wrapper .company_contain table {
  border-color: inherit;
  text-indent: 0;
  border-spacing: 0 15px;
  border-collapse: separate;
}
#company-wrapper .company_contain th {
  vertical-align: baseline;
  text-align: right;
  font-weight: 500;
}
#company-wrapper .company_contain td {
  padding-left: 20px;
}
#company-wrapper .company_contain iframe {
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #company-wrapper .company_contain {
    /*-------------------------
    　代表挨拶
    -------------------------*/
  }
  #company-wrapper .company_contain .message {
    margin-bottom: 120px;
  }
  #company-wrapper .company_contain .message_wrap {
    flex-direction: column;
  }
  #company-wrapper .company_contain .message_img {
    width: 100%;
    height: 100%;
  }
  #company-wrapper .company_contain .message_img > img {
    -o-object-position: center;
       object-position: center;
  }
  #company-wrapper .company_contain .message_contain {
    position: relative;
    width: 100%;
    padding: 20px;
    margin-bottom: 0;
  }
  #company-wrapper .company_contain .message_contain > h4 {
    font-size: min(1.5rem, 4.8vw);
  }
  #company-wrapper .company_contain .message_contain:before {
    width: 210px;
    height: 220px;
    bottom: -36px;
  }
  #company-wrapper .company_contain .message_contain_txt {
    font-size: 1rem;
  }
  #company-wrapper .company_contain {
    /*-------------------------
    　  会社概要
        -------------------------*/
  }
  #company-wrapper .company_contain .company_contain {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
  #company-wrapper .company_contain .company_contain th,
  #company-wrapper .company_contain .company_contain td {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
  }
  #company-wrapper .company_contain .company_contain th {
    margin-bottom: 5px;
  }
  #company-wrapper .company_contain .company_contain iframe {
    max-height: 270px;
    max-width: auto;
    width: 100%;
  }
}

/*====================================

 　page-contact.php 

==================================== */
#form-wrapper .form_wrap:after {
  content: "";
  background-image: url(../img/himawari02.png);
  background-size: contain;
  max-width: 600px;
  max-height: 600px;
  min-width: 560px;
  min-height: 560px;
  width: 35vw;
  height: 35vw;
  position: absolute;
  bottom: 68%;
  right: 75%;
  z-index: -10;
  transform: rotate(204deg);
}
#form-wrapper .contact_wrap:before {
  content: "";
  background-image: url("../img/himawari02.png");
  background-size: contain;
  max-width: 900px;
  max-height: 900px;
  width: 70vw;
  height: 70vw;
  position: absolute;
  bottom: 9%;
  left: -14%;
  z-index: -10;
  transform: rotate(204deg);
}
#form-wrapper .form_txt {
  margin: 0 auto 20px;
  text-align: center;
}
#form-wrapper .form_tel {
  background-color: #FFFBEC;
  border: 2px dotted #265D02;
  border-radius: 10px;
  margin: 0 auto 60px;
  padding: 10px;
  text-align: center;
  min-width: 420px;
  width: 50%;
}
#form-wrapper .form_tel > i {
  font-size: 1.75rem;
  margin-right: 10px;
}
#form-wrapper .form_tel > a {
  font-family: sans-serif;
  color: #265D02;
  font-size: 2rem;
  font-weight: 700;
}
#form-wrapper .form_contain {
  background-color: #fff;
  padding: 20px 60px 40px 60px;
  border-radius: 10px;
  margin-bottom: 120px;
}
#form-wrapper .form_contain:before {
  content: "";
  background-image: url(../img/himawari02.png);
  background-size: contain;
  position: absolute;
  bottom: 38%;
  left: 81%;
  z-index: -10;
  width: 550px;
  height: 550px;
}
#form-wrapper .form_required {
  background-color: #D50000;
  color: #fff;
  border-radius: 50px;
  /* width: 30px; */
  font-size: 0.875rem;
  margin-left: 5px;
  padding: 2px 20px;
  font-weight: 500;
}
#form-wrapper .form_item {
  margin-bottom: 20px;
}
#form-wrapper .form_label {
  text-align: left;
  margin-bottom: 10px;
  font-weight: 700;
}
#form-wrapper .service .wpcf7-list-item {
  display: block;
}
#form-wrapper .service .wpcf7-list-item-label {
  font-weight: 400;
}
#form-wrapper .form_privacy {
  text-align: center;
  font-weight: 400;
  margin-bottom: 40px;
}
#form-wrapper .form_privacy a {
  font-weight: 400;
}
#form-wrapper .form_privacy a:hover {
  color: #265D02;
}
#form-wrapper .form_next {
  background-color: #265D02;
  color: #fff;
  width: 350px;
  border-radius: 50px;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  font-weight: 500;
}
#form-wrapper .form_next input {
  border: none;
}
#form-wrapper .form_next:hover {
  background-color: #A3CF5F;
}
#form-wrapper .wpcf7-spinner {
  display: none;
}
#form-wrapper .wpcf7 form .wpcf7-response-output {
  border: none;
}
#form-wrapper .wpcf7 form.invalid .wpcf7-response-output, #form-wrapper .wpcf7 form.unaccepted .wpcf7-response-output, #form-wrapper .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: rgba(255, 255, 255, 0);
  text-align: center;
}
#form-wrapper table {
  border-color: inherit;
  text-indent: 0;
  border-spacing: 0 40px;
  border-collapse: separate;
  width: 100%;
}
#form-wrapper td,
#form-wrapper th {
  display: block;
}
#form-wrapper textarea {
  width: 100%;
}
#form-wrapper button,
#form-wrapper input,
#form-wrapper select,
#form-wrapper textarea {
  outline: none;
  border: 1px solid #6A3800;
  border-radius: 5px;
  padding: 9px;
  width: 100%;
}
#form-wrapper input[type=checkbox],
#form-wrapper input[type=radio] {
  width: auto;
}
@media screen and (max-width: 768px) {
  #form-wrapper .form_wrap:before {
    bottom: 22%;
    left: -37%;
    width: 110vw;
    height: 110vw;
    max-width: 660px;
    max-height: 660px;
  }
  #form-wrapper .form_wrap:after {
    content: none;
  }
  #form-wrapper .form_tel {
    min-width: auto;
    width: auto;
  }
  #form-wrapper .form_tel > i {
    font-size: 1.375rem;
  }
  #form-wrapper .form_tel > a {
    font-size: 1.5rem;
  }
  #form-wrapper .form_contain {
    padding: 0 20px 20px 20px;
  }
  #form-wrapper .form_contain:before {
    content: none;
  }
  #form-wrapper .wpcf7-list-item {
    margin: 0;
  }
  #form-wrapper .form_next {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 420px) {
  #form-wrapper .form_privacy .form_required {
    display: block;
    width: 75px;
    margin: 0 auto;
  }
}

/*====================================

 　page-confirm.php 

==================================== */
#confirm-wrapper .form_wrap:before {
  content: "";
  position: absolute;
  bottom: 9%;
  left: -14%;
  background-image: url("../img/himawari02.png");
  background-size: contain;
  max-width: 900px;
  max-height: 900px;
  width: 70vw;
  height: 70vw;
  z-index: -10;
  transform: rotate(204deg);
}
#confirm-wrapper table {
  border-color: inherit;
  text-indent: 0;
  border-spacing: 0 40px;
  border-collapse: separate;
  width: 100%;
  margin-bottom: 30px;
}
#confirm-wrapper td,
#confirm-wrapper th {
  display: block;
}
#confirm-wrapper textarea {
  width: 100%;
}
#confirm-wrapper input {
  width: 100%;
}
#confirm-wrapper .form_contain {
  background-color: #fff;
  padding: 20px 60px 40px 60px;
  border-radius: 10px;
  margin-bottom: 120px;
}
#confirm-wrapper .form_item {
  margin-bottom: 20px;
}
#confirm-wrapper .form_label {
  text-align: left;
  margin-bottom: 10px;
}
#confirm-wrapper .form_field {
  border-radius: 5px;
  padding: 9px;
  width: 100%;
}
#confirm-wrapper .form_complete {
  background-color: #265D02;
  color: #fff;
  width: 30%;
  border-radius: 50px;
  text-align: center;
  padding: 10px;
  font-weight: 500;
}
#confirm-wrapper .form_complete:hover {
  background-color: #A3CF5F;
}
#confirm-wrapper .form_back {
  background-color: #fff;
  color: #6A3800;
  width: 30%;
  border: 1px solid #265D02;
  border-radius: 50px;
  text-align: center;
  padding: 10px;
  font-weight: 500;
}
#confirm-wrapper .form_back:hover {
  color: #fff;
  background-color: #A3CF5F;
  border-color: #A3CF5F;
}
#confirm-wrapper .form_submit {
  justify-content: center;
  gap: 3%;
}
#confirm-wrapper .wpcf7-spinner {
  display: none;
}
#confirm-wrapper .wpcf7 form .wpcf7-response-output {
  display: none;
}
@media screen and (max-width: 768px) {
  #confirm-wrapper .form_wrap:before {
    bottom: 30%;
    left: -37%;
    width: 110vw;
    height: 110vw;
    max-width: 660px;
    max-height: 660px;
  }
  #confirm-wrapper .form_wrap:after {
    content: none;
  }
  #confirm-wrapper .form_contain {
    padding: 0 20px 20px 20px;
  }
  #confirm-wrapper .form_field {
    padding: 0;
  }
  #confirm-wrapper .form_submit {
    flex-direction: column-reverse;
  }
  #confirm-wrapper .form_back,
  #confirm-wrapper .form_complete {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 10px;
  }
}

/*====================================

 　page-complete.php 

==================================== */
#complete-wrapper .form_wrap:before {
  content: "";
  background-image: url("../img/himawari02.png");
  background-size: contain;
  max-width: 600px;
  max-height: 600px;
  width: 55vw;
  height: 55vw;
  position: absolute;
  bottom: 9%;
  left: -14%;
  z-index: -10;
  transform: rotate(204deg);
}
#complete-wrapper .complete_txt {
  text-align: center;
  margin-bottom: 60px;
}
#complete-wrapper .complete_txt_notes {
  margin-top: 20px;
  font-size: 0.875rem;
}
#complete-wrapper .complete_txt_notes a {
  text-decoration: underline;
}
#complete-wrapper .complete_txt_notes a:hover {
  color: #265D02;
}
@media screen and (max-width: 768px) {
  #complete-wrapper .form_wrap:before {
    bottom: 50%;
    left: min(-170px, -33%);
    max-width: 430px;
    max-height: 430px;
    width: 90vw;
    height: 90vw;
  }
  #complete-wrapper .form_wrap:after {
    content: none;
  }
}

/*====================================

 　page-privacypolicy.php 

==================================== */
#privacy-wrapper .privacy_contain {
  background-color: #fff;
  padding: 20px 60px 40px 60px;
  border-radius: 10px;
  margin-bottom: 120px;
}
#privacy-wrapper .privacy_txt {
  margin-bottom: 30px;
}
#privacy-wrapper .privacy_txt ol {
  padding-left: 20px;
}
#privacy-wrapper .privacy_txt_ttl {
  font-size: 1.25rem;
  font-weight: bold;
  color: #6A3800;
  border-left: 3px solid #A3CF5F;
  margin-bottom: 10px;
  padding-left: 20px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  #privacy-wrapper .privacy_contain {
    padding: 20px;
  }
}

#error-wrapper .error {
  margin: min(180px, 18%) auto 100px;
  width: 82%;
}
#error-wrapper .error_ttl {
  margin-bottom: 30px;
}

/*====================================

 　footer.php 

==================================== */
#footer-wrapper .footer_contact {
  position: relative;
  max-width: 1100px;
  width: 80%;
  margin: 0 auto 100px;
  text-align: center;
}
#footer-wrapper .footer_contact:before {
  content: "";
  background-image: url("../img/himawari02.png");
  background-size: contain;
  max-width: 900px;
  max-height: 900px;
  width: 70vw;
  height: 70vw;
  position: absolute;
  bottom: -68%;
  left: -54%;
  z-index: -10;
  transform: rotate(204deg);
}
#footer-wrapper .footer_contact_txt {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #265D02;
}
#footer-wrapper .footer_contact_ttl {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  z-index: 1;
}
#footer-wrapper .footer_contact_ttl h3 {
  font-size: 2rem;
  letter-spacing: 5px;
}
#footer-wrapper .footer_contact_ttl h3:before {
  content: "";
  background-image: url(../img/yellow_heart.png);
  background-size: contain;
  max-width: 100px;
  max-height: 100px;
  width: 80px;
  height: 80px;
  position: absolute;
  right: clamp(211px, 57%, 628px);
  top: -20%;
  z-index: -1;
  transform: rotate(-17deg);
}
#footer-wrapper .footer_contact_wrap {
  background-color: #FFFBEC;
  border: 2px dotted #6A3800;
  border-radius: 20px;
  margin: 0 auto;
  padding: 40px 10px 20px 10px;
}
#footer-wrapper .footer_contact_contain {
  justify-content: space-around;
  position: relative;
  padding: 20px 0;
  width: 100%;
  margin: 0 auto;
}
#footer-wrapper .footer_contact_tel {
  text-align: center;
  align-content: center;
  max-width: 400px;
  width: 30vw;
}
#footer-wrapper .footer_contact_tel i {
  font-size: min(2rem, 2.5vw);
}
#footer-wrapper .footer_contact_tel a {
  font-family: sans-serif;
  font-size: min(3rem, 3.2vw);
  font-weight: 700;
  color: #265D02;
  margin-left: 10px;
}
#footer-wrapper .border {
  position: absolute;
  top: 15px;
  left: auto;
  width: 1px;
  height: 80%;
  margin: 0 20px;
  background-color: #c7b197;
}
#footer-wrapper .footer_contact_form > p {
  margin-bottom: 10px;
}
#footer-wrapper .footer_contact_form_btn {
  display: inline-block;
  position: relative;
  border: 2px solid #A3CF5F;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px 25px;
  max-width: 400px;
  width: 30vw;
  text-align: left;
}
#footer-wrapper .footer_contact_form_btn > span {
  color: #B49B7F;
  font-size: 0.875rem;
}
#footer-wrapper .footer_contact_form_btn > p {
  font-size: min(1.125rem, 2vw);
  font-weight: 500;
}
#footer-wrapper .footer_contact_form_btn:after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 8%;
  top: 30px;
  font-size: min(24px, 2.5vw);
  color: #A3CF5F;
}
#footer-wrapper .footer_contact_form_btn:hover {
  background-color: #A3CF5F;
}
#footer-wrapper .footer_contact_form_btn:hover > p {
  color: #fff;
}
#footer-wrapper .footer_contact_form_btn:hover:after {
  color: #fff;
}
#footer-wrapper .footer_wave_img {
  line-height: 0;
}
#footer-wrapper .footer_wrap {
  position: relative;
  background-color: #A3CF5F;
}
#footer-wrapper .footer_wrap:before {
  content: "";
  background-image: url("../img/himawari_solid.png");
  background-size: contain;
  max-width: 170px;
  max-height: 170px;
  width: 30vw;
  height: 30vw;
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 1;
}
#footer-wrapper .footer_contain {
  justify-content: space-around;
  padding: 50px 30px;
  line-height: 25px;
}
#footer-wrapper .footer_box > h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: min(1.5rem, 2vw);
  margin-bottom: 20px;
}
#footer-wrapper .footer_box > p {
  font-size: min(1rem, 1.6vw);
}
#footer-wrapper .footer_box > a {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
#footer-wrapper .footer_box:first-child {
  padding-left: 3%;
  width: 30%;
}
#footer-wrapper .footer_box:last-child {
  width: 70%;
}
#footer-wrapper .footer_box_address {
  margin-bottom: 10px;
}
#footer-wrapper .footer_sns_img {
  width: 30px;
  height: 30px;
}
#footer-wrapper .footer_nav {
  gap: 4%;
  justify-content: center;
}
#footer-wrapper .footer_nav > li {
  position: relative;
  font-weight: 500;
  font-size: min(1rem, 1.6vw);
}
#footer-wrapper .footer_nav a:hover {
  text-decoration: none;
  color: #265D02;
}
#footer-wrapper .footer_nav_nest {
  position: absolute;
  top: 30px;
  left: 0;
  font-size: min(0.875rem, 1.4vw);
  font-weight: 400;
  min-width: 200px;
}
#footer-wrapper .copylight {
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #footer-wrapper .footer_contact {
    width: 90%;
  }
  #footer-wrapper .footer_contact:before {
    max-width: 580px;
    max-height: 580px;
    width: 100vw;
    height: 100vw;
    position: absolute;
    bottom: -40%;
    left: -53%;
  }
  #footer-wrapper .footer_contact_wrap {
    padding: 40px 20px 20px 20px;
  }
  #footer-wrapper .footer_contact_contain {
    flex-direction: column;
  }
  #footer-wrapper .footer_contact_ttl h3:before {
    width: 60px;
    height: 60px;
    right: clamp(194px, 67%, 355px);
    top: -6%;
  }
  #footer-wrapper .footer_contact_txt {
    font-size: 1.125rem;
  }
  #footer-wrapper .footer_contact_tel {
    width: 100%;
    margin: 0 auto;
  }
  #footer-wrapper .footer_contact_tel i {
    font-size: min(2rem, 5.5vw);
  }
  #footer-wrapper .footer_contact_tel a {
    font-size: min(3rem, 7vw);
  }
  #footer-wrapper .footer_contact_tel p {
    font-size: min(1rem, 3.8vw);
  }
  #footer-wrapper .border {
    position: static;
    width: 100%;
    height: 1px;
    margin: 20px 0;
  }
  #footer-wrapper .footer_contact_form_btn {
    width: 100%;
  }
  #footer-wrapper .footer_contact_form_btn > span {
    font-size: 0.875rem;
  }
  #footer-wrapper .footer_contact_form_btn > p {
    font-size: min(1.125rem, 4.2vw);
  }
  #footer-wrapper .footer_contact_form_btn:after {
    top: 30px;
    font-size: min(1.5rem, 6.1vw);
  }
  #footer-wrapper .footer_wrap:before {
    max-width: 300px;
    max-height: 300px;
    width: 60vw;
    height: 60vw;
    right: -60px;
  }
  #footer-wrapper .footer_contain {
    flex-direction: column;
    gap: 10px;
    padding: 50px 20px 0 20px;
  }
  #footer-wrapper .footer_box {
    margin-bottom: 20px;
  }
  #footer-wrapper .footer_box:first-child, #footer-wrapper .footer_box:last-child {
    width: 100%;
  }
  #footer-wrapper .footer_box:first-child {
    padding-left: 0;
  }
  #footer-wrapper .footer_box > h2 {
    font-size: min(1.5rem, 5vw);
  }
  #footer-wrapper .footer_box > p {
    font-size: min(1.125rem, 4vw);
  }
  #footer-wrapper .footer_nav {
    flex-direction: column;
  }
  #footer-wrapper .footer_nav > li {
    padding: 0;
    font-size: min(1.125rem, 4vw);
    margin-bottom: 3%;
  }
  #footer-wrapper .footer_nav_nest {
    position: static;
    font-size: min(1rem, 3.2vw);
    margin-top: 5px;
  }
  #footer-wrapper .footer_nav_nest > li {
    margin-bottom: 5px;
    padding-left: 10px;
  }
}/*# sourceMappingURL=style.css.map */