@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  box-shadow: none;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: none;
  color: inherit;
  font-family: inherit;
  vertical-align: top;
}

option {
  color: black;
}

body {
  color: #644022;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  background: #E9F6E6;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.l-inner {
  padding-inline: 20px;
  margin-left: auto;
  margin-right: auto;
}

.l-header {
  padding-top: 13px;
  padding-bottom: 9px;
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  background: #E9F6E6;
}

.l-header_inner {
  max-width: 1226px;
  padding-left: 28px;
}

.p-header_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-header_logo a {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.p-header_logo a:hover {
  opacity: 0.7;
}
.p-header_logo img {
  width: 163px;
  aspect-ratio: 327/78;
}
@media screen and (min-width: 768px) {
  .p-header_logo img {
    width: 327px;
  }
}

.p-header_nav {
  display: none;
}
@media screen and (min-width: 1101px) {
  .p-header_nav {
    display: block;
  }
}

.p-header_nav-list {
  display: flex;
  align-items: stretch;
  gap: 28px;
}
.p-header_nav-list a:hover .p-header_nav-linkInner::after {
  transform: scaleX(1);
}

.p-header_nav-linkInner {
  padding: 10px;
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
}
.p-header_nav-linkInner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #F2879B;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.p-header_nav-linkInner p {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.p-header_navButton {
  width: 30px;
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .p-header_navButton {
    display: none;
  }
}
.p-header_navButton span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: #644022;
}
.p-header_navButton span:nth-child(1) {
  top: 0;
}
.p-header_navButton span:nth-child(2) {
  top: 13.5px;
}
.p-header_navButton span:nth-child(3) {
  top: 27px;
}
.p-header_navButton.is-checked span:nth-child(1) {
  top: 13.5px;
  transform: translateX(-50%) rotate(45deg);
}
.p-header_navButton.is-checked span:nth-child(2) {
  display: none;
}
.p-header_navButton.is-checked span:nth-child(3) {
  top: 13.5px;
  transform: translateX(-50%) rotate(-45deg);
}

.l-drawer {
  background: #B6E0AB;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  padding-top: 120px;
  transform: translateY(-100%);
  transition: transform 1s ease;
  z-index: 100;
}
@media screen and (min-width: 1101px) {
  .l-drawer {
    display: none;
  }
}
.l-drawer.is-checked {
  transform: translateY(0);
}

.p-drawer_nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.p-drawer_nav-list li {
  width: 100%;
}
.p-drawer_nav-list li a:hover .p-header_nav-linkInner::after {
  transform: scaleX(1);
}

.p-drawer_nav-linkInner {
  padding: 10px;
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
}
.p-drawer_nav-linkInner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #F2879B;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.p-drawer_nav-linkInner p {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.l-fv {
  position: fixed;
  z-index: 1;
  top: 100px;
  top: 61px;
  left: 0;
  width: 100%;
  height: calc(100vh - 61px);
  background: url(../img/hana-fvImg.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .l-fv {
    top: 100px;
    height: calc(100vh - 100px);
  }
}

.l-fv_inner {
  max-width: 1254px;
  height: 100%;
  position: relative;
}

.p-fv_contents {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  padding-bottom: 77px;
  width: 100%;
}

.p-fv_catchphrase {
  width: 100%;
}
.p-fv_catchphrase img {
  width: 100%;
  max-width: 465px;
  aspect-ratio: 465/126;
}

.p-fv_links {
  margin-top: 39px;
  padding-left: 7px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.p-fv_linkInner {
  width: 276px;
  aspect-ratio: 276/91;
  border-radius: 30px;
  border: 3px solid #F2879B;
  background: #FFF;
  display: grid;
  place-items: center;
}
.p-fv_linkInner p {
  font-size: 24px;
  font-weight: 500;
}

.p-fv_line {
  position: absolute;
  bottom: -43px;
  left: 4.51388vw;
  width: 2px;
  height: 87px;
  background: #F2879B;
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
  animation: upDownEffect 3s ease-in-out infinite;
}

@keyframes upDownEffect {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.l-headArea {
  margin-top: 100vh;
  padding-top: 76px;
  padding-bottom: 172px;
  background: rgba(233, 246, 230, 0.9);
}

.l-headArea_inner {
  max-width: 1240px;
}

.p-headArea_movie {
  width: 100%;
  max-width: 468px;
  aspect-ratio: 468/263;
}
.p-headArea_movie iframe {
  width: 100%;
}

.p-headArea_heading {
  margin-top: 94px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-headArea_heading p {
  color: #F2879B;
  font-size: 24px;
}
.p-headArea_heading strong {
  color: #F2879B;
  font-size: 36px;
}

.p-headArea_script {
  margin-top: 34px;
}
.p-headArea_script p {
  line-height: 1.8;
  letter-spacing: 1.6px;
}
.p-headArea_script p span {
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.6px;
}

.p-headArea_listArea {
  margin-top: 59px;
}

@media screen and (min-width: 768px) {
  .p-headArea_listHead {
    padding-left: 119px;
  }
}
.p-headArea_listHead p {
  color: #F2879B;
  font-size: 20px;
}

.p-headArea_list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-headArea_list {
    padding-left: 67px;
  }
}

.p-headArea_item {
  padding: 11px 24px 13px 61px;
  border-radius: 10px;
  background: #F2879B;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-headArea_item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 17px;
  width: 29px;
  aspect-ratio: 1/1;
  background: url(../img/checkBox-icon.svg) no-repeat center center/contain;
}
.p-headArea_item p {
  color: #FFF;
}
.p-headArea_item p span {
  position: relative;
}
.p-headArea_item p span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.p-headArea_item p .circle::after {
  top: 0;
  width: 68px;
  aspect-ratio: 68/35;
  background: url(../img/circle-icon.svg) no-repeat center center/contain;
}
.p-headArea_item p .underLine::after {
  bottom: 0;
  width: 79.733px;
  aspect-ratio: 79.733/9.778;
  background: url(../img/underline-icon.svg) no-repeat center center/contain;
}
.p-headArea_item p .triangle::after {
  top: 0;
  width: 53px;
  aspect-ratio: 53/39;
  background: url(../img/triangle-icon.svg) no-repeat center center/contain;
}

.p-headArea_text {
  margin-top: 75px;
}
.p-headArea_text p {
  line-height: 1.8;
  letter-spacing: 1.6px;
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s ease-out 0.5s;
}
.u-fadeIn.show {
  opacity: 1;
  transform: translateY(0);
}

main,
footer {
  position: relative;
  z-index: 10;
}

.l-eb {
  padding-top: 236px;
  background: #DBF0D6;
}

.l-eb_inner {
  max-width: 1211px;
}

.p-eb_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.p-eb_title::before, .p-eb_title::after {
  position: absolute;
  display: grid;
  place-items: center;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.6px;
  padding-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .p-eb_title::before, .p-eb_title::after {
    font-size: 16px;
  }
}
.p-eb_title::before {
  content: "長く働きたい！と思える心地よさがほしい";
  top: -180px;
  left: 0;
  width: 280px;
  aspect-ratio: 412/106;
  background: url(../img/eb-commentBg1.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-eb_title::before {
    top: -126px;
    left: auto;
    right: 125px;
    width: 412px;
  }
}
.p-eb_title::after {
  content: "裏でコソコソしない人間関係";
  top: -95px;
  right: 0;
  width: 240px;
  aspect-ratio: 296/100;
  background: url(../img/eb-commentBg2.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-eb_title::after {
    top: -125px;
    right: auto;
    left: 242px;
    width: 296px;
  }
}
.p-eb_title p {
  line-height: 1.8;
  letter-spacing: 1.6px;
}
.p-eb_title h2 {
  font-size: 24px;
}

.p-eb_list {
  margin-top: 89px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 93px 12px;
}

.p-eb_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}
.p-eb_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 143px;
  aspect-ratio: 1/1;
}
.p-eb_item:nth-child(1)::before {
  background: url(../img/eb-listIcon1.svg) no-repeat center center/contain;
}
.p-eb_item:nth-child(2)::before {
  background: url(../img/eb-listIcon2.svg) no-repeat center center/contain;
}
.p-eb_item:nth-child(3)::before {
  background: url(../img/eb-listIcon3.svg) no-repeat center center/contain;
}
.p-eb_item:nth-child(4)::before {
  background: url(../img/eb-listIcon4.svg) no-repeat center center/contain;
}
.p-eb_item:nth-child(5)::before {
  background: url(../img/eb-listIcon5.svg) no-repeat center center/contain;
}
.p-eb_item:nth-child(6)::before {
  background: url(../img/eb-listIcon6.svg) no-repeat center center/contain;
}
.p-eb_item:nth-child(7)::before {
  background: url(../img/eb-listIcon7.svg) no-repeat center center/contain;
}
.p-eb_item:nth-child(8)::before {
  background: url(../img/eb-listIcon8.svg) no-repeat center center/contain;
}

.p-eb_itemHead h3 {
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.6px;
}

.p-eb_itemText p {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 1.6px;
}