@charset "UTF-8";

/* system
--------------------------- */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 980px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
}

.js-target {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
  transition: 1s cubic-bezier(0.015, 0.54, 0.35, 1);
}

.js-target.fadeUp {
  transform: translate(0, 30px);
  opacity: 0;
  visibility: hidden;
}

/* ヘッダー

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 0 0 9%;
  background-color: #fff;
  transition: all 0.4s;
}

@media (max-width: 1300px) {
  .l-header {
    padding: 0 0 0 20px;
    font-size: 16px;
  }
}

.l-header h1 {
  width: 133px;
}

.l-header h1 img {
  width: 120px;
  height: auto;
}

.l-header__pcNav {
  height: 100%;
  margin: 0 0 0 auto;
}

.l-header__pcNav ul {
  display: flex;
  align-items: center;
  height: 100%;
}

.l-header__pcNav a {
  display: block;
  transition: all 0.4s;
}

.l-header__pcNav a:hover {
  opacity: 0.7;
}

.l-header__navList + .l-header__navList {
  margin: 0 0 0 40px;
}

@media (max-width: 1300px) {
  .l-header__navList + .l-header__navList {
    margin: 0 0 0 20px;
  }
}

.l-header__sns {
  width: 160px;
  height: 45px;
  margin: 0 0 0 30px;
}

.l-header__sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #f3efe8;
  color: #383838;
  border-radius: 100vh;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.l-header__sns img {
  width: 32px;
  height: 32px;
}

.l-header__sns div {
  margin: 0 0 0 12px;
  line-height: 1.2;
  text-align: center;
}

/* .l-header__sns {
  margin: 0 0 0 30px;
}

.l-header__sns a {
  width: 40px;
  height: 40px;
}

.l-header__sns+.l-header__sns {
  margin: 0 0 0 20px;
}

@media (max-width: 1300px) {
  .l-header__sns {
    margin: 0 0 0 20px;
  }
} */

.l-header__line {
  width: 200px;
  height: 100%;
  margin: 0 0 0 50px;
}

@media (max-width: 1300px) {
  .l-header__line {
    margin: 0 0 0 30px;
  }
}

.l-header__line a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #000;
  color: #fff;
}

.l-header__line img {
  width: 43px;
  height: 43px;
}

.l-header__line div {
  margin: 0 0 0 10px;
  line-height: 1.2;
  text-align: center;
}

.l-header__line span {
  display: block;
  font-size: 14px;
}

.l-header.change {
  box-shadow: 0 1px 5px rgba(56, 56, 56, 0.2);
}

.l-header__menuBtn {
  display: none;
}

@media (max-width: 980px) {
  .l-header {
    height: 60px;
  }

  .l-header h1 {
    width: 114px;
    height: 100%;
  }

  .l-header__pcNav {
    display: none;
  }

  .l-header__menuBtn {
    position: relative;
    z-index: 160;
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 0 0 auto;
    background-color: #383838;
    color: #fff;
    font-size: 10px;
  }

  .l-header__menuBtn.open .l-header__text.menu {
    opacity: 0;
    visibility: hidden;
  }

  .l-header__menuBtn.open .l-header__text.close {
    opacity: 1;
    visibility: visible;
  }

  .l-header__menuBtn.open .l-header__bar:nth-of-type(1) {
    transform: translate(0, -6px) rotate(45deg);
    width: 17px;
  }

  .l-header__menuBtn.open .l-header__bar:nth-of-type(2) {
    opacity: 0;
  }

  .l-header__menuBtn.open .l-header__bar:nth-of-type(3) {
    transform: translate(0, 6px) rotate(-45deg);
    width: 17px;
  }

  .l-header__text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    white-space: nowrap;
    transition: all 0.4s;
  }

  .l-header__text.open {
    opacity: 1;
    visibility: visible;
  }

  .l-header__text.close {
    opacity: 0;
    visibility: hidden;
  }

  .l-header__bar {
    position: absolute;
    top: calc((100% - 17px) / 2);
    left: calc(50% - 8px);
    z-index: 110;
    display: block;
    width: 16px;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
    transition: all 0.4s;
  }

  .l-header__bar:nth-of-type(1) {
    transform: translate(0, -6px);
    transform-origin: left;
  }

  .l-header__bar:nth-of-type(3) {
    transform: translate(0, 6px);
    transform-origin: left;
  }
}

.l-header__spNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  height: 100vh;
  background-color: #383838;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.l-header__spNav > ul {
  width: 260px;
}

.l-header__spNav > ul ul li {
  margin: 10px 0 0 20px;
  font-size: 14px;
}

.l-header__spNav > ul:nth-of-type(1),
.l-header__spNav > ul:nth-of-type(2) {
  margin: 15% auto 0;
}

.l-header__spNav.open {
  opacity: 1;
  visibility: visible;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.l-header__spList + li {
  margin: 40px 0 0;
}

.l-header__spContact + li {
  margin: 20px 0 0;
}

.l-header__spContact a {
  display: flex;
  align-items: center;
}

.l-header__spContact img {
  width: 40px;
  height: 40px;
  margin: 0 20px 0 0;
}

.l-header__spPhone {
  font-size: 18px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
}

.l-header__spPhone span {
  display: block;
  color: #383838;
  font-size: 12px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
}

_::-webkit-full-page-media,
_:future,
:root .l-header__spPhone span {
  font-weight: 500;
}

.l-header__spNav > ul:nth-of-type(3) {
  margin: 10% auto 0;
}

.l-header__spSns {
  display: flex;
  margin: 3% 0;
}

.l-header__spSns div {
  margin: 6px 20px;
}

.l-header__spSns a {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
}

/* フッター

==================================================================================================*/
.l-footer {
  position: relative;
  background-color: #f3efe8;
  font-size: 16px;
}

.l-footer__button {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 83px 63px 83px;
  border-color: transparent transparent #f3efe8 transparent;
}

.l-footer__button span {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0 0;
  font-size: 12px;
}

.l-footer__button span::before {
  transform: rotate(-90deg);
  display: block;
  width: 8px;
  height: 20px;
  background: no-repeat url(../../asset/img/png/arrow_black.webp);
  background-size: 100%;
  content: "";
  transition: all 0.4s;
}

.l-footer__banner {
  display: flex;
  justify-content: center;
  gap: 20px 10px;
  margin: 20px 0;
}

.l-footer__banner img {
  width: 156px;
  height: auto;
  margin: 20px auto 0;
}

.l-footer__banner img:hover {
  opacity: 0.7;
}

@media screen and (min-width: 981px) {
  .l-footer__button:hover span::before {
    transform: rotate(-90deg) translate(5px, 0);
  }
}

.l-footer__container {
  width: 100%;
  max-width: 1490px;
  margin: 0 auto;
  padding: 64px 40px 50px;
}

.l-footer__logo {
  width: 160px;
  margin: 0 auto;
}

.l-footer address {
  margin: 12px 0 0;
  text-align: center;
}

.l-footer address span {
  display: inline-block;
  margin: 0 0 0 15px;
}

.l-footer__contact {
  margin: 12px 0 0;
  text-align: center;
}

.l-footer__contact span + span {
  display: inline-block;
  margin: 0 0 0 15px;
}

.l-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 50px 0 0;
}

.l-footer__sns a {
  transition: all 0.4s;
  display: block;
  margin: 0 5px;
}

.l-footer__sns a:hover {
  opacity: 0.7;
}

.l-footer__privacy {
  position: absolute;
  top: 55%;
  right: 0;
  transform: translate(0, -50%);
  text-decoration: underline;
}

.l-footer small {
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: #383838;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 980px) {
  .l-footer {
    font-size: 14px;
  }

  .l-footer__button {
    border-width: 0 60px 45px 60px;
    border-color: transparent transparent #f3efe8 transparent;
  }

  .l-footer__button span {
    margin: 15px 0 0;
    font-size: 10px;
  }

  .l-footer__container {
    padding: 30px 20px 40px;
  }

  .l-footer__logo {
    width: 130px;
  }

  .l-footer__contact span:nth-of-type(3) {
    display: block;
    margin: 8px 0 0;
  }

  .l-footer__sns {
    margin: 20px 0 0;
  }

  .l-footer__privacy {
    position: unset;
  }

  .l-footer small {
    padding: 6px 0;
    font-size: 10px;
  }

  .l-footer__banner {
    display: block;
  }
}

/* セクションタイトル

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

.l-sectionTitle {
  display: inline-block;
  font-size: 44px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  text-align: center;
}

_::-webkit-full-page-media,
_:future,
:root .l-sectionTitle {
  font-weight: 500;
}

@media (max-width: 1300px) {
  .l-sectionTitle {
    font-size: 30px;
  }
}

@media (max-width: 980px) {
  .l-sectionTitle {
    font-size: 20px;
  }
}

.l-sectionTitle__sub {
  position: relative;
  display: block;
  margin: 18px 0 0;
  padding: 41px 0 0;
  color: #1b5279;
  font-size: 24px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
}

@media (max-width: 1300px) {
  .l-sectionTitle__sub {
    font-size: 15px;
  }
}

@media (max-width: 980px) {
  .l-sectionTitle__sub {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .l-sectionTitle__sub {
    font-size: 10px;
  }
}

.l-sectionTitle__sub span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 14px;
  height: 14px;
  background-color: #9cac61;
  border-radius: 50%;
}

.l-sectionTitle__sub span::before {
  position: absolute;
  top: 0;
  width: 14px;
  height: 14px;
  background-color: #e9c368;
  border-radius: 50%;
  content: "";
  left: -34px;
}

@media (max-width: 980px) {
  .l-sectionTitle__sub span::before {
    width: 7px;
    height: 7px;
  }
}

.l-sectionTitle__sub span::after {
  position: absolute;
  top: 0;
  width: 14px;
  height: 14px;
  background-color: #ce302f;
  border-radius: 50%;
  content: "";
  right: -34px;
}

@media (max-width: 980px) {
  .l-sectionTitle__sub span::after {
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 980px) {
  .l-sectionTitle__sub {
    margin: 6px 0 0;
    padding: 17px 0 0;
  }

  .l-sectionTitle__sub span {
    width: 7px;
    height: 7px;
  }

  .l-sectionTitle__sub span::before {
    left: -16px;
  }

  .l-sectionTitle__sub span::after {
    right: -16px;
  }
}

/* リンクボタン

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

.l-linkButton {
  position: relative;
  z-index: 2;
  width: 400px;
  height: 79px;
}

.l-linkButton a {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  margin: 0 auto;
  line-height: 70px;
  background-color: #383838;
  border-radius: 12px;
  color: #fff;
  font-size: 24px;
  text-align: center;
  transition: all 0.4s;
}

.l-linkButton a:hover {
  transform: translate(0, 9px);
}

.l-linkButton span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-linkButton span::after {
  display: block;
  width: 8px;
  height: 18px;
  margin: 0 0 0 40px;
  background: no-repeat url(../../asset/img/png/arrow_white.webp);
  background-size: 100%;
  content: "";
}

.l-linkButton::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  width: 100%;
  height: 70px;
  background-color: #d5d1c9;
  border-radius: 12px;
  content: "";
}

.l-linkButton.line {
  height: 109px;
}

.l-linkButton.line a {
  line-height: 100px;
}

.l-linkButton.line span::before {
  display: block;
  width: 55px;
  height: 55px;
  margin: 0 20px 0 0;
  background: no-repeat url(../../asset/img/png/line_icon.webp);
  background-size: 100%;
  content: "";
}

.l-linkButton.line span::after {
  margin: 0 0 0 20px;
}

.l-linkButton.contact {
  height: 109px;
}

.l-linkButton.contact a {
  line-height: 100px;
}

.l-linkButton.contact span::before {
  display: block;
  width: 42px;
  height: 35px;
  margin: 0 20px 0 0;
  background: no-repeat url(../../asset/img/png/mail_pc_icon.webp);
  background-size: 100%;
  content: "";
}

.l-linkButton.contact span::after {
  margin: 0 0 0 20px;
}

@media (max-width: 980px) {
  .l-linkButton {
    width: 262px;
    height: 55px;
  }

  .l-linkButton a {
    border-radius: 8px;
    font-size: 18px;
    line-height: 46px;
  }

  .l-linkButton span::after {
    width: 6px;
    height: 15px;
    margin: 0 0 0 20px;
  }

  .l-linkButton::after {
    height: 46px;
    border-radius: 8px;
  }

  .l-linkButton.line {
    height: 79px;
  }

  .l-linkButton.line a {
    font-size: 14px;
    line-height: 70px;
  }

  .l-linkButton.line span::before {
    width: 40px;
    height: 40px;
  }

  .l-linkButton.contact {
    height: 79px;
    margin: 25px 0 0;
  }

  .l-linkButton.contact a {
    font-size: 14px;
    line-height: 70px;
  }

  .l-linkButton.contact span::before {
    width: 36px;
    height: 29px;
  }

  .l-linkButton.phone {
    height: 79px;
    margin: 25px 0 0;
  }

  .l-linkButton.phone a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    height: 70px;
    background-color: #fff;
    border: 1px solid #383838;
  }

  .l-linkButton.phone a > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    font-family: "JosefinSans-Bold";
    letter-spacing: 0.15em;
    color: #383838;
    line-height: 1;
  }

  .l-linkButton.phone a > span span {
    display: block;
    color: #383838;
    font-size: 12px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: bold;
    color: #383838;
    line-height: 1;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .l-linkButton.phone a > span span {
    font-weight: 500;
  }

  .l-linkButton.phone a::before {
    display: block;
    width: 25px;
    height: 33px;
    margin: 0 20px 0 0;
    background: no-repeat url(../../asset/img/png/tel_pc_icon.webp);
    background-size: 100%;
    content: "";
  }

  .l-linkButton.phone a span::after {
    content: unset;
  }
}

@media (max-width: 560px) {
  .l-linkButton a {
    font-size: 14px;
  }
}

.l-linkText {
  display: flex;
  width: 130px;
  align-items: center;
  padding: 0 10px 5px;
  font-size: 16px;
  border-bottom: 1px solid #383838;
}

.l-linkText::after {
  display: block;
  width: 5px;
  height: 14px;
  margin: 2px 0 0 20px;
  background: no-repeat url(../../asset/img/png/arrow_black.webp);
  background-size: 100%;
  content: "";
  transition: all 0.4s;
}

.l-linkText:hover::after {
  transform: translate(5px, 0);
}

@media (max-width: 560px) {
  .l-linkText {
    width: 120px;
    font-size: 14px;
  }
}

/* ページトップデザイン

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

.l-lowerPageTop {
  width: 100%;
  padding: 0 0 40px;
}

.l-lowerPageTop__container {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 400px;
  padding: 0 0 20px;
  background-color: #f3efe8;
}

.l-lowerPageTop__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 48px;
}

.l-lowerPageTop__title span {
  margin: 10px 0 0;
  font-size: 14px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
  color: #1b5279;
}

.l-lowerPageTop__breadcrumbs {
  display: flex;
  width: calc(100% - 40px);
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 12px;
  color: #d5d1c9;
  font-family: JosefinSans-Bold;
}

.l-lowerPageTop__current {
  color: #1b5279;
}

.l-lowerPageTop li + li {
  margin: 0 0 0 10px;
}

.l-lowerPageTop li + li::before {
  display: inline-block;
  width: 4px;
  height: 10px;
  margin: 0 10px 0 0;
  background: no-repeat url(../../asset/img/png/arrow_black.webp);
  background-size: 100%;
  content: "";
}

.l-lowerPageTop__dot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background-color: #9cac61;
}

.l-lowerPageTop__dot::before {
  position: absolute;
  top: -33px;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background-color: #ce302f;
}

.l-lowerPageTop__dot::after {
  position: absolute;
  bottom: -33px;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background-color: #e9c368;
}

/* スマホ */

@media (max-width: 560px) {
  .l-lowerPageTop__container {
    align-items: flex-start;
    height: 200px;
  }

  .l-lowerPageTop__breadcrumbs {
    margin-top: 10px;
    width: calc(100% - 0px);
    font-size: 10px;
  }

  .l-lowerPageTop__title {
    font-size: 22px;
  }

  .l-lowerPageTop__title span {
    font-size: 10px;
    margin: 0;
  }

  .l-lowerPageTop__dot {
    width: 8px;
    height: 8px;
  }

  .l-lowerPageTop__dot::before {
    top: -17px;
    width: 8px;
    height: 8px;
  }

  .l-lowerPageTop__dot::after {
    bottom: -17px;
    width: 8px;
    height: 8px;
  }
}

/* ページタイトル

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

.l-lowerPageTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 40px;
}

.l-lowerPageTitle span {
  margin: 8px 0 0;
  font-size: 14px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
  color: #1b5279;
}

/* タブレット */
@media (max-width: 980px) {
  .l-lowerPageTitle {
    font-size: 30px;
  }
}

/* スマホ */
@media (max-width: 560px) {
  .l-lowerPageTitle {
    font-size: 18px;
    font-weight: 900;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .l-lowerPageTitle {
    font-weight: 500;
  }

  .l-lowerPageTitle span {
    font-size: 8px;
  }
}

/* 固定　お問い合わせ */

.l-contact {
  padding: 120px 40px;
  background-color: #d5d1c9;
}

.l-contact__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
  padding: 80px 40px;
  border-radius: 20px;
  background-color: #fff;
}

.l-contact ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 940px;
  margin: 20px 0 0;
}

.l-contact li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.l-contact li:nth-of-type(3) {
  display: none;
}

.l-contact__comment {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding: 10px 0 0;
  font-size: 16px;
}

.l-contact__comment span {
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  background-color: #ce302f;
  border-radius: 50%;
  content: "";
  right: 5px;
}

@media (max-width: 560px) {
  .l-contact__comment span {
    width: 5px;
    height: 5px;
  }
}

.l-contact__comment span::before {
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  background-color: #e9c368;
  border-radius: 50%;
  content: "";
  right: 34px;
}

@media (max-width: 560px) {
  .l-contact__comment span::before {
    width: 5px;
    height: 5px;
  }
}

.l-contact__comment span::after {
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  background-color: #9cac61;
  border-radius: 50%;
  content: "";
  right: 17px;
}

@media (max-width: 560px) {
  .l-contact__comment span::after {
    width: 5px;
    height: 5px;
  }
}

.l-contact__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 70px 0 0;
  width: 400px;
  padding: 30px 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

.l-contact__phone span:nth-of-type(1) {
  display: flex;
  align-items: center;
  font-size: 30px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
}

.l-contact__phone span:nth-of-type(1)::before {
  display: block;
  width: 25px;
  height: 33px;
  margin: 0 20px 0 0;
  background: no-repeat url(../../asset/img/png/tel_pc_icon.webp);
  background-size: 100%;
  content: "";
}

@media (max-width: 980px) {
  .l-contact {
    margin: 0;
    padding: 40px 20px 53px;
  }

  .l-contact__container {
    padding: 40px 0;
  }

  .l-contact ul {
    flex-direction: column;
    align-items: center;
    margin: 40px 0 0;
  }

  .l-contact ul li:nth-of-type(3) {
    display: block;
  }

  .l-contact__phone {
    display: none;
  }
}

@media (max-width: 560px) {
  .l-contact {
    margin: 0;
  }
}

/* 採用情報

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

.p-recruit__message__message {
  margin: 120px 0;
  text-align: center;
}

.p-recruit__message__text {
  margin: 80px 0 160px;
  line-height: 1.8em;
  font-size: 24px;
}

.p-recruit__01 {
  position: relative;
  z-index: 1;
  background-color: #f3efe8;
}

/* 吹き出し① */
.p-recruit__01__title {
  width: 620px;
  height: 150px;
  padding: 28px 55px;
  font-size: 40px;
  background-image: url(../../asset/img/png/hukidasi_recruit_1.webp);
  background-size: cover;
  background-repeat: no-repeat, no-repeat;
  position: absolute;
  top: -60px;
  left: 5%;
  z-index: 1;
}

.p-recruit__01__title span {
  font-size: 44px;
  color: #1b5279;
}

.p-recruit__01__container {
  position: relative;
  padding: 130px 80px 120px 80px;
}

.p-recruit__01__container::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: calc(100vw - 60px);
  max-width: 1800px;
  height: 100%;
  background-color: #fff;
  content: "";
}

.p-recruit__01__container > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.p-recruit__01__text {
  margin-top: 0px;
  line-height: 2;
  margin-right: 100px;
  width: 50%;
}

.p-recruit__01__img {
  max-width: 612px;
  border-radius: 10px;
  width: 50%;
  align-self: flex-start;
}

/* スマホ＆タブレット */
@media (max-width: 980px) {
  .p-recruit__message__message {
    margin: 40px 0;
  }

  .p-recruit__01__title {
    width: 308px;
    height: 74px;
    padding: 12px 33px;
    font-size: 18px;
    top: -40px;
    left: 5%;
  }

  .p-recruit__01__title span {
    font-size: 24px;
  }

  .p-recruit__01__text {
    margin: 40px 0;
    font-size: 14px;
    width: 100%;
  }

  .p-recruit__01__container {
    padding: 0px 30px;
  }

  .p-recruit__01__container::before {
    width: calc(100vw - 10px);
  }

  .p-recruit__01__container > div {
    flex-direction: column-reverse;
    max-width: 571px;
  }

  .p-recruit__message__text {
    text-align: left;
    display: inline-block;
    font-size: 16px;
    margin: 40px 30px;
  }

  .p-recruit__01__img {
    max-width: 612px;
    border-radius: 10px;
    width: 100%;
    margin: auto;
    padding-top: 10%;
  }
}

/* どんなキャリアを描いていく？ */

.p-recruit__02 {
  position: relative;
  z-index: 1;
  padding: 120px 0 0;
  background-color: #f3efe8;
}

/* 吹き出し② */
.p-recruit__02__title {
  width: 615px;
  height: 135px;
  margin: 0 0 0 auto;
  padding: 20px 67px;
  font-size: 40px;
  background-image: url("../../asset/img/png/hukidasi_recruit_2.webp");
  background-size: cover;
  background-repeat: no-repeat, no-repeat;
  position: absolute;
  z-index: 2;
  top: -50px;
}

.p-recruit__02__title span {
  font-size: 44px;
  color: #1b5279;
}

.p-recruit__02__container {
  position: relative;
  padding: 120px 80px;
}

.p-recruit__02__container::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: calc(100vw - 60px);
  max-width: 1800px;
  height: 100%;
  background-color: #fff;
  content: "";
}

.p-recruit__02__container > div {
  display: flex;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.p-recruit__02__text {
  max-width: 50%;
  padding-left: 100px;
}

.p-recruit__02__head {
  font-size: 16px;
  line-height: 2;
  padding: 30px 0;
}

.p-recruit__02__sub {
  line-height: 2;
  margin: 0 12%;
}

.p-recruit__02__img {
  max-width: 612px;
  border-radius: 10px;
  width: 50%;
}

@media (max-width: 1180px) {
  .p-recruit__02__head {
    font-size: 18px;
  }

  .p-recruit__02__sub {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .p-recruit__02 {
    padding: 80px 0 0;
  }

  .p-recruit__02__container {
    padding: 40px 30px;
  }

  .p-recruit__02__container::before {
    width: calc(100vw - 10px);
  }

  .p-recruit__02__container > div {
    flex-direction: column-reverse;
    max-width: 571px;
  }

  .p-recruit__02__img {
    border-radius: 10px;
    width: 100%;
    margin: auto;
  }

  .p-recruit__02__title {
    width: 300px;
    height: 64px;
    padding: 8px 35px;
    font-size: 18px;
    top: -40px;
    right: 5%;
  }

  .p-recruit__02__title span {
    font-size: 24px;
  }

  .p-recruit__02__text {
    max-width: 100%;
    padding-left: 0;
    margin: 0 auto;
    display: grid;
    text-align: center;
  }

  .p-recruit__02__head {
    display: inline-block;
    text-align: left;
    padding: 30px 0 10px;
    font-size: 14px;
  }

  .p-recruit__02__sub {
    display: inline-block;
    text-align: left;
    padding: 0 10px;
    margin: 0 auto;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .p-recruit__02__title {
    padding: 8px 36px;
  }
}

/* 岩見組の仕事のココが面白い？ */

.p-recruit__03 {
  position: relative;
  z-index: 1;
  background-color: #f3efe8;
  padding: 120px 0 0px;
}

/* 吹き出し③ */
.p-recruit__03__title {
  width: 665px;
  height: 150px;
  padding: 28px 42px;
  font-size: 40px;
  background-image: url(../../asset/img/png/hukidasi_recruit_3.webp);
  background-size: cover;
  background-repeat: no-repeat, no-repeat;
  position: absolute;
  top: 60px;
  left: 5%;
}

.p-recruit__03__title span {
  font-size: 44px;
  color: #1b5279;
}

.p-recruit__03__container {
  position: relative;
  padding: 120px 80px;
}

.p-recruit__03__container::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: calc(100vw - 60px);
  max-width: 1800px;
  height: 100%;
  background-color: #fff;
  content: "";
}

.p-recruit__03__flex {
  display: flex;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.p-recruit__03__text {
  max-width: 50%;
  margin-left: 60px;
}

.p-recruit__03__name {
  margin-top: 20px;
}

.p-recruit__03__name span {
  font-size: 24px;
}

.p-recruit__03__text-detail {
  margin-top: 50px;
  margin-bottom: 40px;
  line-height: 2;
}

.l-linkText {
  display: flex;
  width: 130px;
  align-items: center;
  padding: 0 10px 5px;
  font-size: 16px;
  border-bottom: 1px solid #383838;
  margin: 0 0 0 auto;
  white-space: nowrap;
}

.p-recruit__03__link a::after {
  display: block;
  width: 8px;
  height: 18px;
  margin: 0 0 0 40px;
  background: no-repeat url(../../asset/img/png/arrow_black.webp);
  background-size: 100%;
  content: "";
}

.p-recruit__03__img {
  max-width: 580px;
  border-radius: 10px;
  width: 50%;
  max-height: 370px;
  object-fit: cover;
  object-position: 0px -70px;
}

.l-linkButton.recruit01 {
  width: 570px;
  height: 110px;
  margin: 0 auto;
}

.l-linkButton.recruit01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  height: 100px;
  background-color: #383838;
}

@media (max-width: 1180px) {
  .p-recruit__03__name {
    font-size: 14px;
  }

  .p-recruit__03__name span {
    font-size: 18px;
  }

  .p-recruit__03__text-detail {
    font-size: 14px;
    margin: 20px 0;
  }
}

@media (max-width: 980px) {
  .p-recruit__03 {
    padding: 80px 0 0;
  }

  .p-recruit__03__flex {
    flex-direction: column-reverse;
    max-width: 571px;
    padding: 0 30px 40px;
  }

  .p-recruit__03__text {
    max-width: 100%;
    padding-left: 0;
    margin: 0 auto;
  }

  .p-recruit__03__container {
    padding: 50px 0;
  }

  .p-recruit__03__container::before {
    width: calc(100vw - 10px);
  }

  .p-recruit__03__img {
    max-width: 612px;
    border-radius: 10px;
    width: 100%;
    margin: auto;
    max-height: 370px;
    object-fit: cover;
    object-position: 50% 20%;
  }

  .l-lowerPageTitle.l-lowerPageTitle02 {
    padding-top: 0px;
  }

  .l-linkButton.recruit01 {
    width: 316px;
    height: 79px;
  }

  .l-linkButton.recruit01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    height: 70px;
    background-color: #383838;
  }

  .p-recruit__03__title {
    width: 338px;
    height: 74px;
    padding: 12px 25px;
    font-size: 18px;
    top: 50px;
    right: 5%;
  }

  .p-recruit__03__title span {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .p-recruit__03__title {
    width: 305px;
    height: 65px;
    padding: 9px 15px;
  }

  .l-linkButton.recruit01 {
    left: 0;
    display: block;
    width: 274px;
    margin: 0 auto;
  }

  .p-recruit__03__img {
    max-height: 220px;
  }
}

/* 募集要項 */

.l-lowerPageTitle02 {
  padding-top: 120px;
  margin-top: 0px;
  margin-bottom: 40px;
}

.p-work__01 {
  background-color: #f3efe8;
  padding: 0px 0 120px 0;
}

.p-work__01 {
  margin: 0;
}

/* アコーディオンメニュー */

.acd-check {
  display: none;
}

.acd-label {
  width: 50%;
  margin: 0 auto 5px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  background-color: #f3efe8;
  border-bottom: solid 1px #000;
  cursor: pointer;
  transition: 0.2s;
  font-size: 24px;
}

.acd-label::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background: no-repeat url(../../asset/img/png/arrow_down.webp);
  background-size: contain;
  transition: all 0.3s;
  box-sizing: border-box;
  margin-top: 15px;
}

.acd-content {
  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: 0.5s;
  visibility: hidden;
  width: 50%;
  margin: 0 auto;
  background-color: #fff;
  margin-top: -4px;
}

.acd-check:checked + .acd-label + .acd-content {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.acd-check:checked + .acd-label::after {
  background: no-repeat url(../../asset/img/png/arrow_up.webp);
  background-size: contain;
}

.acd-content p {
  width: 95%;
}

dl {
  width: 95%;
  display: flex;
  /* flex-wrap: wrap; */
  padding: 30px 4%;
  border-bottom: solid 1px #000;
  margin: auto;
}

dl dt {
  width: 35%;
  color: #1b5279;
}

_::-webkit-full-page-media,
_:future,
:root dl dt {
  font-weight: 500;
}

dl dd {
  width: 70%;
}

.acd-content ol {
  padding-left: 25px;
}

.l-linkButton_wrapper {
  position: relative;
  margin: auto;
  margin-top: 120px;
}

span.l-recruit__comment {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
}

span.l-recruit__comment span {
  color: #1b5279;
  font-size: 28px;
}

span.l-recruit__comment::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 20px;
  background: no-repeat url(../../asset/img/png/button_top_highlight.webp);
  background-size: contain;
}

span.l-recruit__comment::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 20px;
  background: no-repeat url(../../asset/img/png/button_top_highlight.webp);
  background-size: contain;
  transform: scale(-1, 1);
}

.l-linkButton.recruit02 {
  width: 570px;
  height: 110px;
  margin: 100px auto 0;
}

.l-linkButton.recruit02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  height: 100px;
  background-color: #383838;
}

.l-linkButton.recruit02 a::before {
  display: block;
  width: 55px;
  height: 55px;
  margin: 0 20px 0 0;
  background: no-repeat url(../../asset/img/png/line_icon.webp);
  background-size: 100%;
  content: "";
}

@media screen and (max-width: 980px) {
  .p-work__01 {
    background-color: #f3efe8;
    padding: 40px 0;
  }

  .acd-label {
    width: 90%;
  }

  .acd-content {
    width: 90%;
  }

  .acd-content p {
    margin: 10px auto 15px;
  }

  span.l-recruit__comment span {
    font-size: 16px;
  }

  span.l-recruit__comment {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  span.l-recruit__comment::before {
    width: 15px;
    height: 15px;
    padding-right: 20px;
  }

  span.l-recruit__comment::after {
    width: 15px;
    height: 15px;
    padding-left: 10px;
  }

  .l-linkButton_wrapper {
    margin-top: 80px;
  }

  .l-linkButton.recruit02 {
    width: 316px;
    height: 79px;
  }

  .l-linkButton.recruit02 a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    height: 70px;
    background-color: #383838;
  }

  .l-linkButton.recruit02 a::before {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
    background: no-repeat url(../../asset/img/png/line_icon.webp);
    background-size: 100%;
    content: "";
  }

  .l-linkButton span::after {
    width: 6px;
    height: 15px;
    margin: 0 0 0 10px;
  }
}

@media screen and (max-width: 560px) {
  .l-lowerPageTitle02 {
    margin-top: 0px;
  }

  .acd-label {
    padding: 20px;
    font-size: 16px;
  }

  dl {
    display: block;
    padding: 20px 3%;
  }

  dl dd {
    width: 100%;
  }

  dd {
    margin-top: 8px;
  }

  .l-linkButton.recruit02 {
    display: block;
    width: 274px;
    margin: 0 auto;
  }

  .l-linkButton.recruit02 a::before {
    width: 35px;
    height: 35px;
    margin: 0 5px 0 0;
  }

  span.l-recruit__comment {
    width: 200px;
    white-space: nowrap;
  }

  .l-header h1 img {
    width: 100px;
    height: auto;
    margin-top: 9px;
  }
}

/* footer */

.l-footer__container {
  padding: 30px 20px 40px;
}

.l-footer__logo img {
  width: 110px;
  height: auto;
}

.l-linkButton::after {
  bottom: 2px;
}

/* プライバシーポリシー */
.l-footer__privacy {
  position: absolute;
  top: 55%;
  right: 0;
  transform: translate(0, -50%);
  text-decoration: underline;
  padding-bottom: 60px;
}

.l-footer__yamamoto__link {
  position: absolute;
  top: 55%;
  right: 0;
  transform: translate(0, -50%);
  text-decoration: underline;
}

.l-footer__yamamoto__link {
  position: absolute;
  top: 55%;
  right: 0;
  transform: translate(0, -50%);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .l-footer__privacy {
    position: unset;
    padding: 0;
    margin-right: 20px;
    margin-top: 20px;
  }

  .l-footer__yamamoto__link {
    position: unset;
    margin-top: 20px;
  }
}

@media (max-width: 560px) {
  .l-footer__sns {
    flex-wrap: wrap;
  }
}

/* インスタアカウント作成したら表示する */
.insta_account {
  display: none !important;
}
/* インスタアカウント作成したら表示する */
