@charset "UTF-8";

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

.sp-only {
  display: none;
}

#interview__miyagi,
#interview__yanagidukazunori,
#interview__suganohiroki,
#person__name__top {
  padding-top: 100px;
  margin-top: -100px;
}

@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: 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;
  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;
}

@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: 90px 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-person__name {
  width: 100%;
  margin: 70px 0 0;
  display: flex;
  justify-content: center;
  margin: 70px 0 140px;
}

.p-person__name ul {
  display: flex;
  height: 97px;
}

.p-person__message {
  margin: 160px auto 120px;
  width: calc(100% - 40px);
}

.p-person__text {
  text-align: center;
  line-height: 1.8em;
}

/* 内部リンク */
.p-person__name__01 {
  border: 1px solid #ce302f;
  padding: 27px 50px 40px;
  border-radius: 12px;
}

.p-person__name__02 {
  margin: 0 40px;
  border: 1px solid #9cac61;
  padding: 27px 50px 40px;
  border-radius: 12px;
}

.p-person__name__03 {
  border: 1px solid #e9c368;
  padding: 27px 50px 40px;
  border-radius: 12px;
}

.p-person__name__01 div p,
.p-person__name__02 div p,
.p-person__name__03 div p {
  font-size: 18px;
}

.p-person__name__01 div p span,
.p-person__name__02 div p span,
.p-person__name__03 div p span {
  font-size: 24px;
  margin-left: 20px;
}

.p-person__name__01::after,
.p-person__name__02::after,
.p-person__name__03::after {
  display: block;
  width: 15px;
  height: 7px;
  margin: 6px auto 0;
  background: no-repeat url(../../asset/img/png/arrow_down.webp);
  background-size: 100%;
  content: "";
  transition: all 0.4s;
  position: relative;
}

.p-person__name__01:hover::after,
.p-person__name__02:hover::after,
.p-person__name__03:hover::after {
  transform: translate(0, 5px);
}

/* インタビュー */
.p-person__interview__img01 {
  margin-bottom: 30px;
}

.p-person__interview__img01,
.p-person__interview__img02 {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.p-person__interview__container {
  display: flex;
  padding: 0 80px 0 120px;
  justify-content: center;
}

.p-person__interview__img__warp {
  width: 40%;
  max-width: 350px;
  height: 730px;
  overflow: hidden;
}

.p-person__interview__img {
  width: 100%;
  max-width: 350px;
  height: auto;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.p-person__interview__img::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.interview__01 {
  background-image: url(../img/jpg/0427-107.webp);
  background-position: 0px -40px;
}

.interview__02 {
  background-image: url(../img/jpg/0427-265.webp);
  margin-top: 30px;
}

.interview__03 {
  background-image: url(../img/jpg/0427-067.webp);
  background-position: 0px -40px;
}

.interview__04 {
  background-image: url(../img/jpg/0427-183.webp);
  margin-top: 30px;
}

.interview__05 {
  background-image: url(../img/jpg/1112-kanako-1.webp);
  background-position: -70px 0px;
}

.interview__06 {
  background-image: url(../img/jpg/1112-kanako-2.webp);
  margin-top: 30px;
}

.p-person__interview__name {
  margin-bottom: 65px;
}

h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.p-h2__red {
  background: linear-gradient(transparent 60%, #fbeeee 60%);
  display: inline;
}

.p-h2__green {
  background: linear-gradient(transparent 60%, #ecefe0 60%);
  display: inline;
}

.p-h2__yellow {
  background: linear-gradient(transparent 60%, #fbf3e0 60%);
  display: inline;
}

.p-person__interview__name p {
  font-size: 16px;
}

.p-person__interview__name p span {
  font-size: 24px;
  margin-left: 30px;
}

h4 {
  font-size: 16px;
  color: #1b5279;
  margin: 40px 0 10px;
}

.p-person__interview__text {
  width: 60%;
  margin-left: 70px;
}

.p-person__interview__text p {
  font-size: 16px;
}

.p-person__interview__dot__wrap {
  display: unset;
  width: 100%;
}

.p-person__interview__dot__wrap02 {
  display: unset;
  width: 100%;
  position: relative;
  left: 20px;
  margin-left: 82px;
}
.p-person__interview__dot__wrap0102 {
  margin-bottom: 120px;
}
/* .p-person__interview__dot__wrap02 {
  display: block;
  width: 100%;
  position: relative;
  left: 20px;
  margin-left: 82px;
} */

.p-person__interview__dot {
  transform: translate(-50%, 50%);
  display: unset;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background-color: #9cac61;
  left: 14px;
  position: absolute;
  left: 0px;
  margin: 0px 80px;
}

.p-person__interview__dot::before {
  position: absolute;
  left: 68px;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background-color: #ce302f;
}

.p-person__interview__dot::after {
  position: absolute;
  left: 34px;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background-color: #e9c368;
}

.p-toplinkText {
  display: block;
  width: 88px;
  align-items: center;
  padding: 0 0px 5px;
  font-size: 16px;
  border-bottom: 1px solid #383838;
  margin-top: 60px;
  position: relative;
  margin-left: auto;
  margin-bottom: 60px;
}

.p-toplinkText::after {
  display: block;
  width: 15px;
  height: 6px;
  /* margin: 4px 0 0 0px; */
  background: no-repeat url(../../asset/img/png/arrow_up.webp);
  background-size: 100%;
  content: "";
  transition: all 0.4s;
  position: absolute;
  top: -9px;
  left: 43%;
}

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

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

@media (max-width: 1180px) {
  .p-person__name__01 div p,
  .p-person__name__02 div p,
  .p-person__name__03 div p {
    font-size: 14px;
  }

  .p-person__name__01 div p span,
  .p-person__name__02 div p span,
  .p-person__name__03 div p span {
    font-size: 20px;
  }
}

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

  .pc-only {
    display: none;
  }

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

  .p-person__interview__container {
    padding: 0 20px 60px;
  }

  .p-person__interview__dot {
    margin: 0px 30px;
  }

  .p-person__message {
    margin: 40px auto 60px;
  }

  .p-person__text {
    text-align: left;
  }

  /* .p-person__name__01, .p-person__name__02, .p-person__name__03 {
  padding: 15px 40px 40px !important;
} */
  .p-person__name ul {
    padding: 0 20px;
  }

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

  .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: 1000px) {
  .p-person__name__01 div p,
  .p-person__name__02 div p,
  .p-person__name__03 div p {
    text-align: center;
  }

  .p-person__name__01 div p span,
  .p-person__name__02 div p span,
  .p-person__name__03 div p span {
    display: block;
    margin: 0;
    text-align: center;
  }

  .p-person__name__01,
  .p-person__name__02,
  .p-person__name__03 {
    padding: 15px 40px 40px;
  }

  .tab-only {
    display: block;
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .p-person__interview__container {
    flex-wrap: wrap;
  }

  .p-person__interview__img__warp {
    width: 100%;
    margin-bottom: 50px;
  }

  .p-person__interview__text {
    margin: 0;
    width: 100%;
  }
  .p-person__name {
    margin: 70px 0 80px;
  }
}

/* SP

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

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

  /* top */
  .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;
    width: 100%;
  }

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

  #interview__miyagi,
  #interview__yanagidukazunori,
  #interview__suganohiroki,
  #person__name__top {
    padding-top: 70px;
    margin-top: -70px;
  }

  /* メッセージ */
  .p-person__text {
    font-size: 16px;
    text-align: left;
  }

  .p-person__name {
    margin: 20px 0 60px;
  }

  .p-person__message {
    margin: 40px auto 20px;
    width: calc(100% - 40px);
  }

  /* 内部リンク */
  .p-person__name__01,
  .p-person__name__02,
  .p-person__name__03 {
    margin: 0 3px;
    padding: 12px 10px 10px;
    border-radius: 12px;
  }

  .p-person__name__01 div p,
  .p-person__name__02 div p,
  .p-person__name__03 div p {
    text-align: center;
    font-size: 12px;
  }

  .p-person__name__01 div p span,
  .p-person__name__02 div p span,
  .p-person__name__03 div p span {
    text-align: center;
    font-size: 14px;
    display: block;
    margin: 0;
  }

  .p-person__name__01::after,
  .p-person__name__02::after,
  .p-person__name__03::after {
    margin: 7px auto 0;
    width: 10px;
    height: 5px;
  }

  .p-person__name ul {
    height: 74px;
    padding: 0 0px;
  }

  /* インタビュー */
  .p-person__interview__container {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 44px;
  }

  .p-person__interview__img__warp {
    width: 100%;
  }

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

  .p-person__interview__name p span {
    font-size: 16px;
    margin-left: 10px;
  }

  .p-person__interview__name {
    margin-bottom: 20px;
  }

  .p-person__interview__text {
    margin: 0;
    width: 100%;
  }
  .p-person__interview__text a {
    width: 100%;
  }

  .p-person__interview__img__warp {
    margin: 0;
    margin: 0;
    height: auto;
    margin-bottom: 30px;
  }

  h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  h4 {
    font-size: 14px;
    margin: 30px 0 10px;
  }

  .p-toplinkText {
    margin-bottom: 0;
    font-size: 14px;
    max-width: 80px;
    padding: 0 0 0;
    margin-top: 50px;
    width: 100%;
  }

  .p-person__interview__dot {
    width: 8px;
    height: 8px;
    margin: 0px 20px;
  }

  .p-person__interview__dot__wrap02 {
    margin-left: 32px;
  }

  .p-person__interview__dot::before {
    width: 8px;
    height: 8px;
    left: 34px;
  }

  .p-person__interview__dot::after {
    width: 8px;
    height: 8px;
    left: 16px;
  }

  .p-person__interview__dot__wrap0102 {
    margin-bottom: 60px;
  }

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

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

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

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

/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/*--------------------------------------*
 * layout
 *--------------------------------------*/
/*--------------------------------------*
 * pages
 *--------------------------------------*/
/*# sourceMappingURL=company.css.map */
