@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", HGMaruGothicMPRO, Meiryo, "Helvetica Neue", Arial, sans-serif;
  --fz-small: 18px;
  --fz-middle: 21px;
  --fz-big: 26px;
  --fz-exbig: 34px;
  --color-pink: #e4017f;
}

body,
figcaption,
figure,
h1,
h2,
h3,
header,
li,
p,
ul {
  margin: 0;
  padding: 0;
}

button {
  border: none;
  margin: 0;
  padding: 0;
}

a:link,
a:visited {
  color: inherit;
}

.center {
  text-align: center;
}

.sp_only {
  display: none;
}

.header {
  background: #56bced url("../images/sky.jpg") no-repeat top center/cover;
}
.header img {
  display: block;
  margin: 0 auto;
}

#gnav #trigger {
  position: fixed;
  z-index: 99;
  right: 20px;
  top: 20px;
  background: #fff;
  display: inline-block;
  height: 80px;
  width: 80px;
  padding-top: 14px;
  border-radius: 50%;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.1);
}
#gnav .hamburger {
  --bar-color: #666;
  --bg-color: #fff;
  appearance: none;
  background: none;
  width: 50px;
  padding-top: 10px;
}
#gnav .hamburger span {
  position: relative;
}
#gnav .hamburger span, #gnav .hamburger span::after, #gnav .hamburger span::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  transition: 0.2s;
  background: var(--bar-color);
}
#gnav .hamburger span::after, #gnav .hamburger span::before {
  position: absolute;
  left: 0;
  background: var(--bar-color);
}
#gnav .hamburger span::before {
  transform: translateY(-10px);
}
#gnav .hamburger span::after {
  transform: translateY(-20px);
}
#gnav .hamburger.open span {
  transform: rotate(45deg) translate(-7px, -7px);
}
#gnav .hamburger.open span::before {
  opacity: 0;
  transform: rotate(-45deg);
}
#gnav .hamburger.open span::after {
  transform: rotate(-90deg);
}
#gnav ul {
  padding: 2em 3em 2.5em 4em;
  border-radius: 21px 0 0 21px;
  position: fixed;
  right: 0;
  top: 110px;
  z-index: 99;
  background: #fff;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  transform: translateX(20px);
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
#gnav ul.open {
  transition: 0.2s;
  pointer-events: auto;
  transform: translateX(0);
  opacity: 1;
}
#gnav ul li {
  text-indent: -1.3em;
  padding: 0.8em 0;
}
#gnav ul a {
  position: relative;
  padding: 0.3em 0 0.3em 1.1em;
  text-decoration: none;
  white-space: nowrap;
  font-size: var(--fz-middle);
}
#gnav ul a:hover {
  text-decoration: underline;
}
#gnav ul a::before {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  width: 0.8em;
  height: 0.8em;
  background: #2da1e4;
  left: 0;
  top: 50%;
  transform: translateY(-0.4em);
}
#gnav ul a.ex {
  font-size: 0.9em;
}
#gnav ul a.ex::before {
  background: #fff299;
}
#gnav ul a.contact_link::before {
  background: var(--color-pink);
}

.sub_nav {
  padding: 0.5em 1em 1.8em;
  transition: opacity ease 0.2s;
}
.sub_nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  align-items: flex-end;
  gap: 16px;
}
.sub_nav ul.fixed {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
}
.sub_nav a {
  background: #fff;
  border-radius: 30px;
  padding: 0.5em 1.5em 0.5em 2.6em;
  text-decoration: none;
  font-size: var(--fz-small);
  box-shadow: 0 1px 15px #fff0aa, 0 1px 3px #fff0aa;
  position: relative;
  transition: 0.2s;
  white-space: nowrap;
}
.sub_nav a:hover {
  box-shadow: 0 1px 55px #fff0aa;
  background: #f1fbff;
  transition: 0.3s;
}
.sub_nav a::before {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  background: #2da1e4;
  left: 1em;
  top: 50%;
  transform: translateY(-0.5em);
}
.sub_nav a.ex {
  font-size: 0.9em;
}
.sub_nav a.ex::before {
  background: #fff299;
}

#job_list_back {
  text-align: center;
  background: url("https://www.botanyama-hikari.jp/wp-content/themes/botanyama/images/recruit/rec_back1.jpg");
  padding-top: 25px;
  padding-bottom: 70px;
  margin-bottom: 60px;
  position: relative;
}
#job_list_back .radius-box {
  max-width: 1020px;
  margin: 0 auto;
  padding: 65px;
  background: #fff;
  box-shadow: 0 1px 55px #fff0aa;
  border-radius: 30px;
}
#job_list_back .lead {
  margin: 1em 0;
  /*
  &::before { content: "＼";padding-right: 0.5em;}
  &::after { content: "／";padding-left: 0.5em;}
  */
}
#job_list_back .job_list {
  display: inline-block;
  text-align: left;
  list-style: disc;
  padding: 0 0 0 1em;
  margin: 0;
  font-size: var(--fz-middle);
  border-radius: 10px;
}
#job_list_back .job_list li {
  margin: 0.5em;
}
#job_list_back .title2 {
  margin: 2em 0 0.6em;
  color: var(--color-pink);
  font-size: var(--fz-middle);
}

.lead {
  font-size: var(--fz-small);
  font-weight: normal;
  margin: 1.5em 0;
}

.contact-btns {
  display: flex;
  justify-content: center;
  border-radius: 21px;
  max-width: 740px;
  margin: 0 auto;
  padding: 1em;
  gap: 1em;
}
.contact-btns a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  gap: 0.8em;
  font-weight: normal;
  font-size: var(--fz-small);
  text-decoration: none;
  text-align: left;
  border-radius: 3em;
  padding: 0.8em 3.5em 0.7em 1.5em;
  border: 6px solid rgba(228, 1, 127, 0.168627451);
  box-shadow: 2px 4px rgba(0, 0, 0, 0.05);
  color: inherit;
  line-height: 1.5;
  position: relative;
  transition: 0.3s ease;
}
.contact-btns a.btn::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 3px solid var(--color-pink);
  border-right: 3px solid var(--color-pink);
  transform: rotate(45deg) translateY(-13px);
  position: absolute;
  right: 34px;
  top: 50%;
}
.contact-btns a.btn.mirai img {
  transition: 0.5s;
  transform: rotate(-30deg);
}
.contact-btns a.btn:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0.03);
  opacity: 0.95;
}
.contact-btns a.btn:hover.hikari img {
  transform: rotate(90deg);
  transition: 0.3s ease;
}
.contact-btns a.btn:hover.mirai img {
  transform: rotate(0deg);
  transition: 0.3s ease;
}

#join-us {
  scroll-margin-top: 80px;
}

.select_contents {
  text-align: center;
}
.select_contents .title {
  margin-bottom: 2em;
}
.select_contents .lead {
  margin-bottom: 90px;
  line-height: 2;
  font-size: var(--fz-small);
}
.select_contents .anchor_links {
  text-align: center;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5em;
  font-size: var(--fz-middle);
  padding-bottom: 250px;
  margin-bottom: 3em;
  background: url("https://www.botanyama-hikari.jp/wp-content/themes/botanyama/images/top/top_back4.jpg") no-repeat center bottom;
  background-size: 1020px;
}
.select_contents .anchor_links a {
  position: relative;
  display: block;
}
.select_contents .anchor_links a:link {
  color: inherit;
  font-weight: bold;
  text-decoration: none;
}
.select_contents .anchor_links a:link:hover img {
  opacity: 0.85;
}
.select_contents .anchor_links a::after {
  content: "";
  position: absolute;
  right: -0.2em;
  bottom: 2.9em;
}
.select_contents .anchor_links a.mirai_menber::after {
  width: 118px;
  height: 81px;
  background: url(../images/mirai_icon.svg) no-repeat center/contain;
}
.select_contents .anchor_links a.hikari_menber::after {
  width: 78px;
  height: 78px;
  background: url(../images/hikari_icon.svg) no-repeat center/contain;
}
.select_contents .anchor_links .thum {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  margin: 0 auto;
}
.select_contents .anchor_links .thum img {
  transition: 0.3s;
  width: 100%;
  object-fit: cover;
}
.select_contents .anchor_links p small {
  display: block;
}

.interview {
  width: 1020px;
  margin: 0 auto 3em;
  background: url("https://www.botanyama-hikari.jp/wp-content/themes/botanyama/images/top/top_back4.jpg") no-repeat center bottom;
  background-size: 1020px;
  padding-bottom: 9em;
  position: relative;
}
.interview .first::after {
  content: "";
  position: absolute;
  top: 3em;
  background: no-repeat center/contain;
}
.interview:is(#sh, #ky) .first::after {
  left: 3em;
  width: 118px;
  height: 81px;
  background-image: url(../images/mirai_icon.svg);
}
.interview:is(#as, #kh) .first::after {
  right: 3em;
  width: 78px;
  height: 78px;
  background-image: url(../images/hikari_icon.svg);
}
.interview .photo {
  position: relative;
}
.interview .photo img {
  border-radius: 21px;
}
.interview .photo figcaption {
  position: absolute;
  text-align: right;
  right: 1em;
  bottom: 1em;
  font-size: var(--fz-middle);
  font-weight: bold;
  -webkit-text-stroke: 5px #fff;
}
.interview .photo figcaption span {
  -webkit-text-stroke: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}
.interview .titles {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fffcd1;
  padding-top: 7em;
  position: relative;
}
.interview .titles .title {
  font-size: var(--fz-exbig);
  text-align: center;
  margin-bottom: 0.3em;
}
.interview .titles .lead {
  line-height: 1.85;
}
.interview .text {
  width: 486px;
  line-height: 1.85;
  padding-top: 1.5em;
}
.interview .text em {
  font-size: var(--fz-big);
  font-style: normal;
  display: block;
  line-height: 1.7;
  margin: 0.3em 0;
}
.interview .first,
.interview .second,
.interview .third {
  display: flex;
  justify-content: space-between;
  margin-top: 3em;
  position: relative;
}
.interview:nth-child(2n) .second {
  flex-direction: row-reverse;
}
.interview:nth-child(2n) .first,
.interview:nth-child(2n) .third {
  flex-direction: row;
}
.interview:nth-child(2n) .titles {
  clip-path: ellipse(52.5% 47% at 47%);
  padding-left: 0;
  padding-right: 1em;
}
.interview:nth-child(2n-1) .second {
  flex-direction: row;
}
.interview:nth-child(2n-1) .first,
.interview:nth-child(2n-1) .third {
  flex-direction: row-reverse;
}
.interview:nth-child(2n-1) .titles {
  clip-path: ellipse(52.5% 47% at 52.5%);
  padding-left: 1em;
  padding-right: 0;
}
.interview:nth-child(3n+1) .titles {
  background: #f9e9ef;
}
.interview:nth-child(3n+2) .titles {
  background: #fffcd1;
}
.interview:nth-child(3n+3) .titles {
  background: #ddeef8;
}

.float {
  position: absolute;
  display: block;
}

.relative {
  position: relative;
}

.img_a1 {
  bottom: 0;
  left: 33%;
}

.img_a2 {
  bottom: 80px;
  right: 6%;
}

.img_a3 {
  bottom: 30px;
  right: 0;
}

.img_b1 {
  right: 15%;
  bottom: 0;
}

.img_b2 {
  right: -50px;
  bottom: 5%;
}

.img_c1 {
  left: 35%;
  bottom: 0;
}

.img_c2 {
  left: 35%;
  bottom: 0;
}

.img_d1 {
  right: 0;
  bottom: 0;
}

.img_d2 {
  right: -5%;
  bottom: 0;
}

.img_d3 {
  right: 5%;
  bottom: 0;
}

.contacts {
  padding: 0.5em 0 3em;
  text-align: center;
  font-size: var(--fz-middle);
  font-weight: bold;
}
.contacts h2,
.contacts h3 {
  font-size: 1em;
}
.contacts h3 {
  margin: 2.8em 0 0.3em;
  color: var(--color-pink);
}
.contacts .inner {
  max-width: 960px;
  margin: 0 auto;
}

.img_e1 {
  left: 3%;
  top: -70px;
}
.img_e1 img {
  transform: scale(0.8) rotate(-30deg);
}

.img_e2 {
  right: -10%;
  top: -40px;
}
.img_e2 img {
  transform: scale(0.8);
}

footer {
  overflow: hidden;
  background: url("../images/sky.jpg") no-repeat center top #56bced;
  background-size: cover;
  padding: 3em 1em 2em;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1) inset, 1px 0 5px rgba(0, 0, 0, 0.1) inset;
}

.copy {
  color: #fff;
}

.upLeft {
  animation-name: upLeft;
  animation-duration: 6.5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes upLeft {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(20px, 20px);
  }
}
.upRight {
  animation-name: upRight;
  animation-duration: 6.5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes upRight {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(20px, -20px);
  }
}
.rightLeft {
  animation-name: rightLeft;
  animation-duration: 7.5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes rightLeft {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}
.rightLeft2 {
  animation-name: rightLeft2;
  animation-duration: 6s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes rightLeft2 {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(20px);
  }
}
.leftRight {
  animation-name: leftRight;
  animation-duration: 7.5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes leftRight {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-10px);
  }
}
.slideRoll {
  animation-name: slideRoll;
  animation-duration: 7s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes slideRoll {
  0% {
    transform: translateX(-20px) rotate(-45deg);
  }
  100% {
    transform: translateX(20px) rotate(45deg);
  }
}
.upDown {
  animation-name: upDown;
  animation-duration: 6.5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.upDown.-faster {
  animation-duration: 4s;
}

@keyframes upDown {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(20px);
  }
}
@keyframes upDownSp {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
.upDown2 {
  animation-name: upDown2;
  animation-duration: 6.5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes upDown2 {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.swing {
  animation-name: swing;
  animation-duration: 5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes swing {
  0% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
.swing2 {
  animation-name: swing2;
  animation-duration: 5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes swing2 {
  0% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(-8deg);
  }
}
.swingB {
  animation-name: swingB;
  animation-duration: 5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes swingB {
  0% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(32deg);
  }
}
.swingB2 {
  animation-name: swingB2;
  animation-duration: 5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes swingB2 {
  0% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(-32deg);
  }
}

@media screen and (max-width: 767.98px){
  body {
    --fz-small: 14px;
    --fz-middle: 16px;
    --fz-big: 18px;
    --fz-exbig: 21px;
  }
  body img {
    max-width: 100%;
    height: auto;
  }
  .sp_only {
    display: block;
  }
  #gnav #trigger {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }
  #gnav #trigger.show {
    opacity: 1;
    pointer-events: auto;
  }
  #gnav .hamburger span, #gnav .hamburger span::after, #gnav .hamburger span::before {
    width: 30px;
  }
  #gnav ul {
    top: 70px;
  }
  .sub_nav {
    padding-bottom: 1em;
  }
  .sub_nav ul {
    gap: 0.3em;
  }
  .sub_nav a {
    padding: 0.5em 0.8em 0.5em 1.4em;
    font-size: 12px;
  }
  .sub_nav a::before {
    width: 0.5em;
    height: 0.5em;
    left: 0.6em;
    transform: translateY(-0.25em);
  }
  .sub_nav a.ex {
    display: none;
  }
  #job_list_back {
    padding: 0.5em 0.5em 3em;
  }
  #job_list_back .radius-box {
    width: auto;
    padding: 2em 1em 1em;
    border-radius: 21px;
  }
  .contact-btns {
    flex-wrap: wrap;
  }
  .select_contents {
    padding: 0 1em;
  }
  .select_contents .title {
    margin-bottom: 1em;
  }
  .select_contents .lead {
    margin-bottom: 2em;
  }
  .select_contents .anchor_links {
    font-size: var(--fz-small);
    gap: 2em;
    flex-wrap: wrap;
    padding: 0 0 5em;
    background-size: 100%;
  }
  .select_contents .anchor_links a.mirai_menber::after {
    width: 59px;
    height: 40px;
  }
  .select_contents .anchor_links a.hikari_menber::after {
    width: 39px;
    height: 39px;
  }
  .select_contents .anchor_links .thum {
    width: 30vw;
    height: 30vw;
  }
  .interview {
    width: auto;
    background-size: calc(100% - 1em);
    padding: 0 1em 4em;
  }
  .interview .first::after {
    z-index: 1;
    top: -1em;
  }
  .interview:is(#sh, #ky) .first::after {
    left: 4em;
    width: 59px;
    height: 40px;
  }
  .interview:is(#as, #kh) .first::after {
    right: 4em;
    width: 39px;
    height: 39px;
  }
  .interview .first .photo {
    width: 50vw;
    margin: 0 auto -2em;
    z-index: 1;
  }
  .interview .photo figcaption {
    bottom: 0.2em;
    font-size: var(--fz-small);
  }
  .interview .titles {
    padding-top: 2.5em;
  }
  .interview .titles .lead {
    margin-top: 0;
    padding-bottom: 3.5em;
    padding-left: 0.5em;
  }
  .interview .text {
    width: auto;
  }
  .interview .first,
  .interview .second,
  .interview .third {
    display: block;
    margin-top: 2em;
  }
  .interview:nth-child(2n) .titles {
    padding-right: 0;
    clip-path: ellipse(50% 49.99%);
  }
  .interview:nth-child(2n-1) .titles {
    clip-path: ellipse(50% 49.99%);
    padding-left: 0;
  }
  .float {
    width: 20vw;
  }
  .img_a1 {
    left: auto;
    right: 16vw;
    bottom: -1em;
  }
  .img_a2 {
    bottom: 23.5em;
    right: 5%;
  }
  .img_a3 {
    width: 14vw;
    right: 2.2em;
    bottom: 20em;
  }
  .img_b1 {
    width: 26vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -0.5em;
  }
  .img_b2 {
    right: 1em;
    bottom: 1.5em;
  }
  .img_c1 {
    left: auto;
    right: 8vw;
    width: 23vw;
  }
  .img_c2 {
    width: 9vw;
    left: auto;
    right: 23vw;
  }
  .img_d1 {
    right: 3vw;
    width: 23vw;
  }
  .img_d2 {
    display: none;
    width: 18vw;
    bottom: -2.5em;
    right: 0;
  }
  .img_d3 {
    display: none;
    width: 16vw;
    bottom: -2.5em;
    right: 17vw;
  }
  .contacts {
    padding-bottom: 2em;
  }
  .contacts h3 {
    margin-bottom: 0;
  }
  .img_e1 {
    width: 22vw;
    top: -7.5em;
    left: 3vw;
  }
  .img_e2 {
    right: 2.5vw;
    width: 42vw;
    top: -3em;
  }
  footer {
    padding-top: 1em;
    background-position: 10%;
  }
  .upDown {
    animation-name: upDownSp;
  }
}/*# sourceMappingURL=style.css.map */
