@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 + .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 h1 img {
    width: 100px;
    height: auto;
    margin: 8px 0 0 0;
  }

  .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;
  padding-bottom: 60px;
}

.l-footer__yamamoto__link {
  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__sns a:nth-of-type(1),
  .l-footer__sns a:nth-of-type(2) {
    display: none;
  } */

  .l-footer__privacy {
    position: unset;
    padding: 0;
    margin-right: 20px;
    margin-top: 20px;
  }

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

  .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;
}

.l-sectionTitle__company {
  left: 7%;
  position: relative;
}

_::-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: 30px;
  }
}

.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;
}

.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;
}

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

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

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

.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__dot::after {
    width: 5px;
    height: 5px;
  }
}

.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;
}

.l-recruit {
  position: relative;
}

.l-recruit__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1490px;
  margin: 210px auto 0;
  padding: 0 40px;
}

.l-recruit::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 18.2%;
  max-width: 350px;
  height: calc(100% + 120px);
  background-color: #f3efe8;
  content: "";
}

@media (max-width: 1300px) {
  .l-recruit::before {
    width: 19.5%;
    max-width: 130px;
  }
}

@media (max-width: 980px) {
  .l-recruit::before {
    width: 12%;
    max-width: 120px;
    height: calc(100% + 80px);
  }
}

.l-recruit__img {
  position: relative;
  width: 60%;
  max-width: 750px;
  height: 480px;
  border-radius: 10px;
}

.l-recruit__img img {
  object-fit: cover;
  border-radius: 10px;
}

.l-recruit__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 35%;
  max-width: 500px;
  min-width: 485px;
  margin: 0 0 0 30px;
}

.l-recruit__text p {
  margin: 120px 0 140px;
  font-size: 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

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

@media (max-width: 1300px) {
  .l-recruit__text p {
    font-size: 24px;
  }
}

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

@media (max-width: 560px) {
  .l-recruit__text p {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .l-recruit__container {
    flex-direction: column;
    margin: 80px 0 0;
    padding: 0 20px;
  }

  .l-recruit__img {
    position: relative;
    width: 100%;
    height: auto;
    max-width: unset;
    margin: 20px 0 0;
    order: 2;
  }

  .l-recruit__img::after {
    display: block;
    padding: 64% 0 0;
    content: "";
  }

  .l-recruit__img img {
    position: absolute;
    top: 0;
    left: 0;
  }

  .l-recruit__text {
    width: 100%;
    max-width: unset;
    min-width: unset;
    margin: 0;
    order: 1;
  }

  .l-recruit__text p {
    margin: 40px 0 0;
  }

  .l-recruit .l-linkButton {
    margin: 40px auto 0;
    order: 3;
  }
}

.l-contact {
  margin: 120px 0 0;
  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: 80px 0 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;
  }
}

.p-index__top {
  width: 100%;
  height: calc(100vh - 70px);
}

/* .p-index__top__container {
  position: relative;
  width: 100%;
  height: 100%;
} */
.p-index__top__container {
  position: relative;
  width: 100%;
  height: 97%;
  background-image: url(../img/jpg/iwamigumi_headder.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-index__top__text {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-index__top h1 {
  width: 540px;
  margin: 0 auto;
  font-size: 34px;
  line-height: 68px;
  background-color: #fff;
  text-align: center;
}

/* @media (max-width: 1300px) {
  .p-index__top h1 {
    width: 700px;
    font-size: 40px;
    line-height: 80px;
  }
} */

.p-index__top__pcTitle {
  width: 959px;
  margin: 30px auto 0;
  font-size: 24px;
  line-height: 78px;
  background-color: #fff;
  text-align: center;
}

@media (max-width: 1300px) {
  .p-index__top__pcTitle {
    width: 859px;
    font-size: 20px;
    line-height: 60px;
  }
}

.p-index__company {
  position: relative;
}

.p-index__company::before {
  position: absolute;
  top: 500px;
  left: 0;
  z-index: -1;
  width: 19.5%;
  max-width: 390px;
  height: 2000px;
  background-color: #f3efe8;
  content: "";
}

@media (max-width: 1300px) {
  .p-index__company::before {
    width: 19.5%;
    max-width: 130px;
    height: 1800px;
  }
}

@media (max-width: 980px) {
  .p-index__company::before {
    top: 300px;
    width: 12%;
    max-width: 120px;
    height: 970px;
  }
}

@media (max-width: 560px) {
  .p-index__company::before {
    height: 730px;
  }
}

.p-index__company__container {
  width: 90%;
  margin: 320px 0 0;
  padding: 0 40px 0 0;
}

@media (max-width: 1300px) {
  .p-index__company__container {
    width: 97%;
  }
}

.p-index__company__title {
  display: flex;
  justify-content: flex-end;
}

.p-index__company__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px 0 0;
}

@media (max-width: 1300px) {
  .p-index__company__content {
    align-items: flex-start;
  }
}

.p-index__company__content > div {
  width: 70%;
}

.p-index__company__content > div img {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.p-index__company__content h4 {
  position: relative;
  width: 322px;
  height: 650px;
  font-size: 40px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
}

_::-webkit-full-page-media,
_:future,
:root .p-index__company__content h4 {
  font-weight: 500;
}

@media (max-width: 1300px) {
  .p-index__company__content h4 {
    font-size: 27px;
  }
}

@media (max-width: 980px) {
  .p-index__company__content h4 {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .p-index__company__content h4 {
    font-size: 18px;
  }
}

@media (max-width: 1300px) {
  .p-index__company__content h4 {
    width: 216px;
    height: 480px;
  }
}

.p-index__company__content h4 div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}

.p-index__company__content h4 span.line {
  position: relative;
  display: block;
  text-indent: 3.4em;
}

.p-index__company__content h4 span.line::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 60px;
  background-color: #383838;
  content: "";
}

.p-index__company__content h4 span.blue {
  color: #1b5279;
  font-size: 48px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
}

_::-webkit-full-page-media,
_:future,
:root .p-index__company__content h4 span.blue {
  font-weight: 500;
}

@media (max-width: 1300px) {
  .p-index__company__content h4 span.blue {
    font-size: 36px;
  }
}

@media (max-width: 980px) {
  .p-index__company__content h4 span.blue {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .p-index__company__content h4 span.blue {
    font-size: 22px;
  }
}

.p-index__company__content p {
  width: 100%;
  margin: 60px auto 0;
  padding: 0 10px 0 40px;
}

.p-index__company__content p span {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 0 0 auto;
  font-size: 24px;
  line-height: 2;
}

.p-index__company .l-linkButton {
  margin: 60px auto 0;
}

.p-index__work {
  position: relative;
  margin: 200px auto 0;
  padding: 0 40px;
}

.p-index__work::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 19.5%;
  max-width: 390px;
  height: 1350px;
  background-color: #f3efe8;
  content: "";
}

@media (max-width: 1300px) {
  .p-index__work::after {
    width: 19.5%;
    max-width: 130px;
    height: 1082px;
  }
}

@media (max-width: 980px) {
  .p-index__work::after {
    width: 12%;
    max-width: 120px;
    height: 850px;
  }
}

@media (max-width: 560px) {
  .p-index__work::after {
    height: 650px;
  }
}

.p-index__work__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-index__work__text {
  width: 80%;
  max-width: 960px;
  margin: 80px auto 100px;
  line-height: 2;
}

.p-index__work__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
}

@media (max-width: 1300px) {
  .p-index__work__content {
    align-items: flex-start;
  }
}

.p-index__work__content h4 {
  position: relative;
  width: 269px;
  height: 980px;
  margin: 0 54px 0 0;
  font-size: 40px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
}

_::-webkit-full-page-media,
_:future,
:root .p-index__work__content h4 {
  font-weight: 500;
}

@media (max-width: 1300px) {
  .p-index__work__content h4 {
    font-size: 27px;
  }
}

@media (max-width: 980px) {
  .p-index__work__content h4 {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .p-index__work__content h4 {
    font-size: 18px;
  }
}

@media (max-width: 1300px) {
  .p-index__work__content h4 {
    width: 216px;
    height: 780px;
  }
}

.p-index__work__content h4 div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}

.p-index__work__content h4 span.line {
  position: relative;
  display: block;
  text-indent: 5em;
}

.p-index__work__content h4 span.blue {
  color: #1b5279;
  font-size: 48px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
}

_::-webkit-full-page-media,
_:future,
:root .p-index__work__content h4 span.blue {
  font-weight: 500;
}

@media (max-width: 1300px) {
  .p-index__work__content h4 span.blue {
    font-size: 36px;
  }
}

@media (max-width: 980px) {
  .p-index__work__content h4 span.blue {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .p-index__work__content h4 span.blue {
    font-size: 22px;
  }
}

.p-index__work__content h4 span.number {
  display: inline-block;
  transform: rotate(-90deg);
  letter-spacing: 0;
}

.p-index__work__content > div {
  width: 75%;
}

.p-index__work__article {
  position: relative;
  z-index: 0;
  padding: 0 0 30px;
  pointer-events: none;
}

.p-index__work__article div {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: block;
  width: 496px;
}

.p-index__work__article + article {
  margin: 30px 0 0;
}

.p-index__work__article:hover .p-index__work__img img {
  opacity: 0.7;
  transform: scale(1.1);
}

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

.p-index__work__detail dt {
  display: inline-block;
  padding: 20px 40px 4px 37px;
  background-color: #fff;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-size: 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

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

@media (max-width: 1300px) {
  .p-index__work__detail dt {
    font-size: 24px;
  }
}

@media (max-width: 980px) {
  .p-index__work__detail dt {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .p-index__work__detail dt {
    font-size: 16px;
  }
}

.p-index__work__detail dd:nth-of-type(1) {
  padding: 20px 40px 18px 37px;
  border-top-right-radius: 10px;
  font-size: 16px;
  line-height: 1.7;
}

.p-index__work__detail dd:nth-of-type(2) {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0 40px 16px 0;
  background-color: #fff;
}

.p-index__work__detail dd {
  background-color: #fff;
}

.p-index__work__img {
  display: block;
  width: 100%;
  max-width: 690px;
  margin: 0 0 0 auto;
  height: 510px;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: auto;
}

.p-index__work__img img {
  width: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.p-index__work__img:hover img {
  opacity: 0.7;
  transform: scale(1.01);
}

.p-index__work__about {
  display: block;
  pointer-events: auto;
  cursor: pointer;
}

.p-index__work__about::after {
  position: absolute;
  top: 0;
  left: -54px;
  transform: translate(0, -65%);
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 108px;
  height: 108px;
  background-color: #fff;
  border: 1px solid #9cac61;
  border-radius: 50%;
  color: #9cac61;
  font-size: 16px;
  content: "まちづくり";
}

@media (max-width: 980px) {
  .p-index__work__about::after {
    left: -20px;
    width: 60px;
    height: 60px;
    font-size: 10px;
  }
}

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

.p-index__work__challenge {
  display: block;
  pointer-events: auto;
  cursor: pointer;
}

.p-index__work__challenge::after {
  position: absolute;
  top: 0;
  left: -54px;
  transform: translate(0, -65%);
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 108px;
  height: 108px;
  background-color: #fff;
  border: 1px solid #ce302f;
  border-radius: 50%;
  color: #ce302f;
  font-size: 16px;
  content: "チャレンジ";
}

@media (max-width: 980px) {
  .p-index__work__challenge::after {
    left: -20px;
    width: 60px;
    height: 60px;
    font-size: 10px;
  }
}

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

.p-index__work .l-linkButton {
  margin: 120px auto 0;
}

.p-index__person {
  position: relative;
  margin: 200px 0 0;
}

.p-index__person::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 18.2%;
  max-width: 350px;
  height: 1000px;
  background-color: #f3efe8;
  content: "";
}

@media (max-width: 1300px) {
  .p-index__person::before {
    width: 19.5%;
    max-width: 130px;
    height: 670px;
  }
}

@media (max-width: 980px) {
  .p-index__person::before {
    width: 12%;
    max-width: 120px;
    height: 450px;
  }
}

@media (max-width: 560px) {
  .p-index__person::before {
    height: 350px;
  }
}

.p-index__person::after {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0, 70%);
  z-index: -1;
  width: 18.2%;
  max-width: 350px;
  height: 1400px;
  background-color: #f3efe8;
  content: "";
}

@media (max-width: 1300px) {
  .p-index__person::after {
    width: 19.5%;
    max-width: 130px;
    height: 1350px;
  }
}

@media (max-width: 980px) {
  .p-index__person::after {
    transform: translate(0, 60%);
    width: 12%;
    max-width: 120px;
    height: 500px;
  }
}

@media (max-width: 560px) {
  .p-index__person::after {
    height: 450px;
  }
}

.p-index__person__title {
  display: flex;
  justify-content: center;
  width: 100%;
}

.l-sectionTitle {
  width: 100%;
}

.p-index__person__text {
  width: 80%;
  max-width: 960px;
  padding: 0 20px;
  margin: 80px auto;
  line-height: 2;
}

.p-index__person > ul {
  margin: 100px 0 0;
}

.p-index__person__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1000px;
  margin: 0 0 20px;
  height: 665px;
  padding: 80px;
  border-radius: 20px;
  box-shadow: 0px 3px 16px #00000029;
  background-color: #fff;
}

@media (max-width: 1300px) {
  .p-index__person__list {
    width: calc(100% - 100px);
  }
}

.p-index__person__list.list01 {
  border: 1px solid #ce302f;
}

.p-index__person__list.list01::after {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 1;
  color: #fbeeee;
  font-size: 194px;
  font-family: "JosefinSans-Bold";
  line-height: 1;
  letter-spacing: 0.05em;
  content: "01";
}

@media (max-width: 980px) {
  .p-index__person__list.list01::after {
    top: 73%;
    right: 10px;
    z-index: -1;
    font-size: 94px;
  }
}

@media (max-width: 560px) {
  .p-index__person__list.list01::after {
    top: 63%;
  }
}

.p-index__person__list.list02 {
  border: 1px solid #9cac61;
}

.p-index__person__list.list02::after {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 1;
  color: #ecefe0;
  font-size: 194px;
  font-family: "JosefinSans-Bold";
  line-height: 1;
  letter-spacing: 0.05em;
  content: "02";
}

@media (max-width: 980px) {
  .p-index__person__list.list02::after {
    top: 73%;
    right: 10px;
    z-index: -1;
    font-size: 94px;
  }
}

@media (max-width: 560px) {
  .p-index__person__list.list02::after {
    top: 63%;
  }
}

.p-index__person__list.list03 {
  border: 1px solid #e9c368;
}

.p-index__person__list.list03::after {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 1;
  color: #fbf3e0;
  font-size: 194px;
  font-family: "JosefinSans-Bold";
  line-height: 1;
  letter-spacing: 0.05em;
  content: "03";
}

@media (max-width: 980px) {
  .p-index__person__list.list03::after {
    top: 73%;
    right: 10px;
    z-index: -1;
    font-size: 94px;
  }
}

@media (max-width: 560px) {
  .p-index__person__list.list03::after {
    top: 63%;
  }
}

.p-index__person__img {
  width: 50%;
  height: 100%;
}

.p-index__person__img img {
  object-fit: cover;
}

.p-index__person__detail {
  width: calc(50% - 60px);
}

.p-index__person__name {
  font-size: 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  line-height: 1.25;
}

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

@media (max-width: 1300px) {
  .p-index__person__name {
    font-size: 24px;
  }
}

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

@media (max-width: 560px) {
  .p-index__person__name {
    font-size: 16px;
  }
}

.p-index__person__name span {
  display: block;
  font-size: 16px;
  font-weight: normal;
}

.p-index__person__comment {
  margin: 65px 0 60px;
  font-size: 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

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

@media (max-width: 1300px) {
  .p-index__person__comment {
    font-size: 24px;
  }
}

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

@media (max-width: 560px) {
  .p-index__person__comment {
    font-size: 16px;
  }
}

.p-index__person .l-linkText {
  margin: 0 0 0 auto;
}

.p-index__person .swiper {
  position: relative;
}

.p-index__person .swiper-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%);
  width: 100%;
  max-width: 1060px;
  padding: 0 20px;
}

.p-index__person .swiper-button-prev {
  width: 68px;
  height: 68px;
  background-color: #383838;
}

.p-index__person .swiper-button-prev::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 7px;
  height: 15px;
  background: no-repeat url(../../asset/img/png/arrow_white.webp);
  background-size: 100%;
  content: "";
}

.p-index__person .swiper-button-prev::after {
  content: unset;
}

.p-index__person .swiper-button-next {
  width: 68px;
  height: 68px;
  background-color: #383838;
}

.p-index__person .swiper-button-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 15px;
  background: no-repeat url(../../asset/img/png/arrow_white.webp);
  background-size: 100%;
  content: "";
}

.p-index__person .swiper-button-next::after {
  content: unset;
}

.p-index__person .l-linkButton {
  margin: 100px auto 0;
}

.p-index__news {
  margin: 210px 0 0;
}

.p-index__news__title {
  display: flex;
  justify-content: center;
}

.p-index__news ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1490px;
  margin: 80px auto 0;
  padding: 0 40px;
}

.p-index__news__error {
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.p-index__news__list {
  width: calc((100% - 90px) / 4);
}

.p-index__news__list + li {
  margin: 0 0 0 30px;
}

.p-index__news__list a {
  display: block;
  transition: all 0.4s;
}

.p-index__news__list a:hover {
  opacity: 0.7;
}

.p-index__news__img {
  position: relative;
  width: 100%;
  border-radius: 10px;
}

.p-index__news__img::before {
  display: block;
  width: 100%;
  padding: 81% 0 0;
  content: "";
}

.p-index__news__img img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
}

.p-index__news__text {
  margin: 20px 0 0;
}

.p-index__news__text dt {
  font-size: 14px;
}

.p-index__news__text dd {
  width: 100%;
  height: 70px;
  margin: 10px 0 0;
  font-size: 16px;
  display: -webkit-box;
  overflow-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.p-index__news .l-linkButton {
  margin: 120px auto 0;
}

@media (max-width: 980px) {
  /* .p-index__top {
    height: calc(100vh - 60px);
  } */
  .p-index__top {
    height: auto;
    margin-bottom: 100px;
  }

  /* .p-index__top__container {
    height: calc(100% - 136px);
  } */
  .p-index__top__container {
    position: relative;
    width: 100%;
    background-image: url(../img/jpg/iwamigumi_headder.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    height: 34vh;
    background-size: contain;
  }

  .p-index__top h1 {
    width: 293px;
    line-height: 44px;
    font-size: 18px;
  }

  .p-index__top__spTitle {
    padding: 40px 0;
    text-align: center;
    line-height: 1.75;
    font-size: 14px !important;
  }

  .p-index__company__container {
    width: 100%;
    margin: 80px 0 0;
    padding: 0;
  }

  .p-index__company__title {
    justify-content: center;
  }

  .p-index__company__content {
    align-items: flex-start;
    margin: 30px 0 0;
  }

  .p-index__company__content > div {
    width: 75%;
    margin: 20px 0 0;
  }

  .p-index__company__content h4 {
    width: 25%;
    height: 650px;
  }

  .p-index__company__content h4 span.line {
    display: inline-block;
    text-indent: 0em;
  }

  .p-index__company__content h4 span.line::before {
    bottom: -40px;
    height: 33px;
  }

  .p-index__company__content p {
    margin: 20px 0 0;
    padding: 0 0 0 20px;
  }

  .p-index__company__content p span {
    font-size: 16px;
  }

  .p-index__company__content p br.sp-only {
    display: none;
  }

  .p-index__company .l-linkButton {
    margin: 40px auto 0;
  }

  .p-index__work {
    margin: 80px 0 0;
    padding: 0;
  }

  .p-index__work__title {
    justify-content: center;
  }

  .p-index__work__text {
    display: block;
    margin: 40px 0px 20px;
    width: 100%;
    padding: 0 20px;
  }

  .p-index__work__content {
    margin: 40px 0 0;
    padding: 0 20px 0 0;
    align-items: flex-start;
  }

  .p-index__work__content h4 {
    width: 25%;
    height: 700px;
    margin: 0;
  }

  .p-index__work__content h4 div {
    top: 0;
    transform: translate(-50%, 0);
    height: 710px;
  }

  .p-index__work__content h4 span.line {
    display: inline;
    text-indent: 0em;
  }

  .p-index__work__content > div {
    width: 70%;
  }

  .p-index__work__article {
    padding: 0 0 150px;
  }

  .p-index__work__article div {
    width: auto;
    left: -10px;
    padding: 0;
  }

  .p-index__work__detail dt {
    padding: 20px 40px 4px 10px;
  }

  .p-index__work__detail dd:nth-of-type(1) {
    border-top-right-radius: 0px;
    padding: 16px 20px 16px 10px;
  }

  .p-index__work__img {
    position: relative;
    height: auto;
  }

  .p-index__work__img::before {
    display: block;
    padding: 74% 0 0;
    content: "";
  }

  .p-index__work__img img {
    position: absolute;
    top: 0;
    left: 0;
  }

  .p-index__work .l-linkButton {
    margin: 60px auto 0;
  }

  .p-index__person {
    margin: 80px 0 0;
  }

  .p-index__person__text {
    width: 100%;
    margin: 40px 0;
  }

  .p-index__person__list {
    flex-direction: column;
    align-items: center;
    width: calc(100% - 60px);
    height: auto;
    padding: 20px 30px;
  }

  .p-index__person__img {
    width: 100%;
  }

  .p-index__person__img img {
    max-height: 430px;
    object-position: 50% 17%;
    object-fit: cover;
    width: 90%;
    margin: 0 auto;
  }

  .p-index__person__detail {
    width: 100%;
    margin: 20px 0 0;
  }

  .p-index__person__name {
    display: flex;
    align-items: center;
  }

  .p-index__person__name span {
    margin: 0 20px 0 0;
  }

  .p-index__person__comment {
    margin: 20px 0;
    height: 72px;
  }

  .p-index__person .l-linkButton {
    margin: 40px auto 0;
  }

  .p-index__person .swiper-buttons {
    width: 100%;
    padding: 0;
  }

  .p-index__person .swiper-button-prev {
    left: 0;
    width: 45px;
    height: 45px;
  }

  .p-index__person .swiper-button-next {
    right: 0;
    width: 45px;
    height: 45px;
  }

  .p-index__news {
    margin: 80px 0 0;
  }

  .p-index__news ul {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0 0;
    padding: 0 20px;
  }

  .p-index__news__list {
    width: calc((100% - 30px) / 2);
    margin: 0 0 20px;
  }

  .p-index__news__list + li {
    margin: 0 0 20px;
  }

  .p-index__news__text {
    margin: 10px 0 0;
  }

  .p-index__news__text dd {
    margin: 8px 0 0;
  }

  .p-index__news .l-linkButton {
    margin: 40px auto 0;
  }
}

@media (max-width: 560px) {
  .p-index__top h1 {
    width: 293px;
    line-height: 44px;
    font-size: 18px;
  }

  .p-index__company__content h4 {
    height: 480px;
  }

  .p-index__company__content p span {
    font-size: 14px;
  }

  .p-index__company__content p br.sp-only {
    display: block;
  }

  .p-index__work__content h4 {
    height: 520px;
  }

  .p-index__work__article {
    padding: 0 0 calc(245px - 11%);
  }

  .text-box-margin {
    padding: 0 0 calc(245px - 2%) !important;
  }

  .p-index__work__article .l-linkText {
    margin: 0 0 0 auto;
  }

  .p-index__work__detail dt {
    padding: 10px 40px 0px 10px;
  }

  .p-index__work__detail dd:nth-of-type(1) {
    padding: 16px 0px 16px 10px;
    font-size: 14px;
  }

  .p-index__work__detail dd:nth-of-type(2) {
    padding: 0 0 16px;
  }

  .p-index__person__img img {
    max-height: 290px;
    width: 100%;
  }

  .p-index__news__text dt {
    font-size: 12px;
  }

  .p-index__news__text dd {
    font-size: 14px;
    height: 65px;
  }
}

/* 0405 */

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

/* インスタアカウント作成したら表示する */

.top_illust_pc {
  width: 100%;
  height: auto;
}

.p-index__top__spTitle {
  padding: 40px 0 0;
  text-align: center;
  line-height: 2;
  font-size: 24px;
}

@media (max-width: 560px) {
  /* header */
  .l-header h1 img {
    width: 100px;
    height: auto;
    margin-top: 9px;
  }

  .p-index__top__text {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* TOP */
  /* .p-index__top {
    height: calc(100vh - 260px);
  } */
  .p-index__company__container {
    margin-top: -40px;
  }

  .p-index__top__container {
    position: relative;
    width: 100%;
    height: 62vh;
    background-image: url(../img/jpg/phone.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }

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

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

  .l-footer__sns {
    flex-wrap: wrap;
  }
}

main {
  margin: 44px 0 0;
}

.facebook_btn {
  width: 36px;
  height: auto;
  margin: 0 0 3px 14px;
}

@media (max-width: 980px) {
  main {
    margin: 39px 0 0;
  }

  .l-sectionTitle__company {
    left: 0;
    position: relative;
  }

  .facebook_btn {
    width: 26px;
  }

  .work__about__adjustment {
    bottom: 24px !important;
  }
}

@media (max-width: 420px) {
  .p-index__top__container {
    height: 44vh;
    background-position: bottom;
    background-size: cover;
  }
}

@media (max-width: 400px) {
  .p-index__top__container {
    height: 44vh;
    background-size: cover;
    background-position: bottom;
  }
}

@media (max-width: 375px) {
  .p-index__top__container {
    height: 50vh;
    background-size: cover;
    background-position: bottom;
  }
}

@media (max-width: 321px) {
  .text-box-margin {
    padding: 0 0 calc(245px - -9%) !important;
  }

  .p-index__work__detail dt {
    padding: 10px 20px 0px 10px;
  }

  .p-index__top {
    margin-bottom: 70px;
  }
}

/*--------------------------------------*
 * layout
 *--------------------------------------*/
/*--------------------------------------*
 * pages
 *--------------------------------------*/
/*# sourceMappingURL=index.css.map */
