@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Layout
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.body--fixed {
  overflow: hidden;
}
.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.8s;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}
.header__logo {
  line-height: 0;
  pointer-events: auto;
}
.header__logo a {
  display: inline-block;
  padding: 66px 0 66px 16px;
  transition: 0.3s;
}
.header__logo img {
  height: 16px;
  width: 132px;
}
.header__navigation {
  display: none;
  pointer-events: auto;
}
.header__list {
  display: flex;
  gap: 32px;
  margin-bottom: 0;
  transition: 0.5s;
}
.header__list {
  margin-left: 8px;
  margin-right: 24px;
}
.header__list > li:nth-last-of-type(1) {
  display: none;
}
.header__list > li > a {
  color: #32282c;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 180%;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  padding: 50px 0;
  white-space: nowrap;
}
.header__list li:not(.open-sub-menu__blog) a:hover {
  color: #e73b64;
  opacity: 1;
  transition: 0.3s;
}

/* PC: サービス一覧ホバー時のサブメニュー */
@media screen and (min-width: 1000px) {
  .header__list .sub-menu {
    display: none;
  }
  .header__list .show-sub-menu {
    display: block;
    position: absolute;
    top: 85%;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    animation: hover-menu 0.5s ease;
  }
  .show-sub-menu a {
    white-space: nowrap;
  }

  .show-sub-menu__service,
  .show-sub-menu__blog {
    left: 50%;
    transform: translateX(-50%);
  }

  .open-sub-menu__service,
  .open-sub-menu__blog {
    position: relative;
  }
  .open-sub-menu__blog > a {
    cursor: default;
    opacity: 1;
  }
  .show-sub-menu::before {
    /* 吹き出しの三角 */
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    rotate: 45deg;
    background-color: #fff;
    display: block;
  }

  .show-sub-menu li a {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  .show-sub-menu li a:hover {
    color: #e73b64;
  }
  @keyframes hover-menu {
    0% {
      opacity: 0;
      transition: 0.3s;
    }
    100% {
      opacity: 1;
      transition: 0.3s;
    }
  }
}

.humberger {
  height: 48px;
  position: fixed;
  right: 16px;
  top: 50px;
  width: 48px;
  z-index: 5;
  transition: 0.3s;
}
.humberger span {
  background-color: white;
  border-radius: 10px;
  display: inline-block;
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s;
  width: 20px;
}
.humberger span:nth-of-type(1) {
  top: 16px;
}
.humberger span:nth-of-type(2) {
  top: 24px;
}
.humberger span:nth-of-type(3) {
  top: 32px;
}
.humberger__inner {
  background-color: #32282c;
  border-radius: 16px;
  height: 100%;
  transform: rotate(45deg);
  transition: 1s;
  width: 100%;
}
.header_sp-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 30px;
}
.humberger--clicked span {
  transition: 0.3s;
}
.humberger--clicked span:nth-of-type(1) {
  top: 25px;
  transform: translateX(-10px) rotate(-45deg);
}
.humberger--clicked span:nth-of-type(2) {
  opacity: 0;
}
.humberger--clicked span:nth-of-type(3) {
  top: 25px;
  transform: translateX(-10px) rotate(45deg);
}
.header__sp-navigation {
  bottom: 0;
  left: 0;
  overflow: scroll;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}
.header__sp-background {
  background: #32282c;
  border-radius: 100%;
  height: 70%;
  position: fixed;
  right: 50%;
  top: -70%;
  -webkit-transform: translateX(50%) scale(0);
  -ms-transform: translateX(50%) scale(0);
  transform: translateX(50%) scale(0);
  width: 70%;
}
.header__contact-flame {
  display: none;
  opacity: 0;
}

.header__sp-list {
  display: none;
  left: 0;
  margin: 0;
  margin: 0 auto;
  padding: 0;
  position: relative;
  top: 0;
  width: 80%;
  z-index: 2;
}
.header__sp-list li {
  display: block;
  margin-bottom: 7px;
  margin-top: 7px;
  opacity: 0;
}
.header__sp-list > li:nth-last-of-type(1) {
  display: none;
}
.header__sp-list li a {
  color: white;
  cursor: pointer;
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
}
.header__sp-navigation--show {
  z-index: 4;
}
.header__sp-navigation--show .header__contact-flame {
  display: inline-block;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: listAnimation;
  animation-name: listAnimation;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  margin-top: 20px;
}

.header__sp-navigation--show .header__sp-background {
  -webkit-transform: translateX(50%) scale(3.6);
  -ms-transform: translateX(50%) scale(3.6);
  transform: translateX(50%) scale(3.6);
  width: 70%;
  height: 75%;
  height: 75dvh;
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  transition: 1.2s;
}
.header__sp-navigation--show .header__sp-list {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 50px;
}
.header__sp-navigation--show .header__sp-list li {
  width: 100%;
  text-align: left;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: listAnimation;
  animation-name: listAnimation;
}
.header__sp-navigation--show .header__sp-list li:nth-of-type(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.header__sp-navigation--show .header__sp-list li:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.header__sp-navigation--show .header__sp-list li:nth-of-type(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.header__sp-navigation--show .header__sp-list li:nth-of-type(4) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.header__sp-navigation--show .header__sp-list li:nth-of-type(5) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.header__sp-navigation--show .header__sp-list li:nth-of-type(6) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.header__sp-navigation--show .header__sp-list li:nth-of-type(7) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.header__sp-navigation--show .header__sp-list li:nth-of-type(8) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.header__sp-navigation--show .header__sp-list li:nth-of-type(9) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.header__sp-navigation--show .header__sp-list li:nth-of-type(10) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* SP: サービス一覧、ブログ一覧のアコーディオンメニュー */
@media screen and (max-width: 1000px) {
  /*　
  　プラス・マイナス アイコン
    2: 提供サービス、6: ブログ
  */
  .header__sp-list > .menu-item:nth-child(2)::before,
  .header__sp-list > .menu-item:nth-child(2)::after,
  .header__sp-list > .menu-item:nth-child(6)::before,
  .header__sp-list > .menu-item:nth-child(6)::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 3%;
    width: 2px;
    height: 12px;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 8px;
  }
  .header__sp-list .menu-item:nth-child(2)::after,
  .header__sp-list .menu-item:nth-child(6)::after {
    transform: rotate(90deg);
  }
  .header__sp-list .menu-item.toggle-icon:nth-child(2)::before,
  .header__sp-list .menu-item.toggle-icon:nth-child(6)::before {
    transform: rotate(90deg);
  }
  .header__sp-list .menu-item.toggle-icon:nth-child(2)::after,
  .header__sp-list .menu-item.toggle-icon:nth-child(6)::after {
    opacity: 0;
  }

  .header__sp-list .sub-menu {
    display: none;
  }
  .header__sp-list .sub-menu li {
    padding-left: 24px;
    margin: 8px 0;
  }
  .header__sp-list .sub-menu li:first-child {
    margin-top: 16px;
  }
  .header__sp-list .sub-menu li a {
    font-size: 16px;
  }
}

.header__contact-button {
  background: #e73b64;
  border-radius: 8px;
  margin-bottom: 0;
}
.header__contact-button:nth-child(1) {
  margin-bottom: 10px;
}
.header__contact-button a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 15px 24px 15px 24px;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.header__contact-button a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.header__contact-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

.header__contact-title {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 2.4rem;
}
.header__contact-subtitle {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.header--fix {
  background-color: rgba(247, 244, 239, 0.95);
  box-shadow: 20px 0px 0px #eeede9;
  transition: 0.5s;
}
.header--fix .header__logo a {
  padding: 30px 0 30px 32px;
  transition: 0.5s;
}
.header--fix .header__list {
  transition: 0.5s;
}

.humberger--fix {
  top: 20px;
  transition: 0.5s;
}

.header--fix .header__list > li > a {
  padding: 30px 0;
  transition: 0.5s;
}
.header__logo {
  transition: 0.5s;
}
.header__logo a {
  padding: 50px 0 50px 32px;
}
.header__logo img {
  height: 24px;
  width: 194px;
}

@-webkit-keyframes listAnimation {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes listAnimation {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media screen and (min-width: 769px) {
  .header__contact-button {
    width: 45%;
  }
  .header__contact-button:nth-child(1) {
    margin-bottom: 0px;
  }
  .header__sp-navigation--show .header__contact-flame {
    flex-direction: row;
    justify-content: flex-start;
    gap: 30px;
  }
  .header__sp-list > li {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .header__sp-navigation--show .header__sp-list {
    padding-top: 20px;
  }
  .header__sp-navigation--show .header__contact-flame {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1000px) {
  .header__navigation {
    position: relative;
    display: inline-block;
  }
  .humberger {
    display: none;
  }
  .header__sp-navigation {
    display: none;
  }
  .header__list > li:nth-last-of-type(1) {
    display: inline-block;
    margin-right: 0;
  }
}
.footer {
  position: relative;
  background-color: #f7f4ef;
  color: #32282c;
  font-weight: 400;
  padding-bottom: 40px;
  padding-left: 21px;
  padding-right: 21px;
  padding-top: 82px;
}
.footer__scroll-top {
  position: absolute;
  top: 20px;
  right: 20px;
}
.footer__button {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 20px;
  background-color: #32282c;
  cursor: pointer;
  border: none;
  outline: none;
  transform: rotate(45deg);
}
.footer__button:before {
  content: "";
  display: inline-block;
  background-image: url("../libs/slick/img/carousel-next.svg");
  background-size: cover;
  width: 10px;
  height: 16px;
  opacity: 0.75;
  transform: rotate(-135deg);
}
.footer__button:hover:before {
  opacity: 1;
}
.footer__button-allow {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.footer__button-allow > span {
  position: absolute;
  left: -1000000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.footer__tertiary {
  display: none;
}
.footer__logo {
  margin-right: 3%;
}
.footer__icons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 36px;
}
.footer__sns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
.footer__sns li a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.footer__privacymark-sp a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.footer__privacymark-sp a img {
  height: 64px;
  width: 64px;
}
.footer__address {
  font-style: normal;
}
.footer__address-container dt {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer__address-container dd {
  font-size: 1.6rem;
}
.footer__navs {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.footer__nav {
}
.footer__nav-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 0;
}
.footer__nav-item .menu-item a {
  color: #32282c;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}
.footer__nav-item .menu-item a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.footer__nav-item .footer__no-link > a {
  pointer-events: none;
}
.footer__nav-item .sub-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin-bottom: 0;
}
.footer__nav-item .sub-menu a {
  font-weight: 400;
}
.copyright {
  font-size: 1.4rem;
  margin-top: 18px;
}
.footer__privacymark-pc {
  text-align: right;
}
.footer__privacymark-pc a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.footer__privacymark-pc a img {
  height: 88px;
  width: 88px;
}
@media screen and (min-width: 769px) {
  .footer {
    padding-inline: 24px;
  }
  .footer__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1024px;
    margin: 0 auto;
  }
  .footer__primary {
    width: 23%;
  }
  .footer__secondary {
    padding-left: 24px;
    padding-right: 24px;
    flex: 1;
  }
  .footer__tertiary {
    display: block;
    width: 88px;
  }

  .footer__navs {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }
  .footer__logo img {
    height: 100%;
    width: 100%;
  }
  .footer__icons {
    display: block;
  }
  .footer__sns {
    gap: 24px;
    margin-top: 0;
  }
  .footer__privacymark-sp {
    display: none;
  }
}

/* wrap */

/* トップページの装飾 */
.wrap {
  overflow: hidden;
  background-image: url(../img/bg-top1.svg), url(../img/bg-top2.svg);
  background-position: right 7px top 71px, 9px 714px;
  background-size: 272px, 89px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .wrap {
    background-image: url(../img/bg-top1.svg), url(../img/bg-top2.svg);
    background-position: top 50px left -50px, right 25px top 523px;
    background-size: 462px, 164px;
    background-repeat: no-repeat, no-repeat;
  }
}

/* 島根事業所採用ページの装飾 */
.wrap--type3 {
  background: none;
}

/* トップページ以外の装飾 */
.wrap--type2 {
  background-image: url(../img/bg-top1.svg);
  background-position: right -14px top 82px;
  background-size: 206px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .wrap--type2 {
    background-image: url(../img/bg-top1.svg);
    background-position: right -57px top 90px;
    background-size: 559px;
    background-repeat: no-repeat;
  }
}

/* カラムブロックのブレークポイントを調整 */
@media screen and (min-width: 769px) {
  .wp-block-columns {
    flex-wrap: nowrap !important;
  }
}
