@charset "UTF-8";

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

.sp-only {
  display: none;
}

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

  .pc-only {
    display: none !important;
  }
}

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

.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: 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-company__message__pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 1450px;
  margin: 180px auto 0;
}

.p-company__message__sp {
  display: none;
}

.p-company__message__message {
  width: 45%;
  max-width: 570px;
}

.p-company__message__text {
  margin: 40px 0 0;
  line-height: 1.75;
}

.p-company__message__name {
  margin: 34px 0 0;
  text-align: right;
  font-size: 16px;
}

.p-company__message__name span {
  display: inline-block;
  margin: 0 0 0 20px;
  font-size: 24px;
}

.p-company__message__img {
  position: relative;
  width: 50%;
}

.p-company__message__img::before {
  display: block;
  padding: 72% 0 0;
  content: "";
}

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

.p-company__message__img::after {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: -1;
  width: calc(50vw - 40px);
  height: 100%;
  background-color: #f3efe8;
  content: "";
}

.p-company__philosophy {
  margin: 200px 0 0;
}

.p-company__philosophy dl {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 80px 0 0;
  padding: 0 20px;
}

.p-company__philosophy dl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 50%;
  background-color: #f3efe8;
  content: "";
}

.p-company__philosophy dl > div {
  position: relative;
  z-index: 1;
  max-width: 360px;
  padding: 62px 20px 60px;
  background-color: #fff;
  border-radius: 10px;
}

.p-company__philosophy dl > div + div {
  margin: 0 0 0 3%;
}

.p-company__philosophy dl > div:nth-of-type(1) dt {
  color: #ce302f;
}

.p-company__philosophy dl > div:nth-of-type(1) dt::before {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid #ce302f;
  font-size: 20px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
  content: "01";
}

.p-company__philosophy dl > div:nth-of-type(2) dt {
  color: #9cac61;
}

.p-company__philosophy dl > div:nth-of-type(2) dt::before {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid #9cac61;
  font-size: 20px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
  content: "02";
}

.p-company__philosophy dl > div:nth-of-type(3) dt {
  color: #e9c368;
}

.p-company__philosophy dl > div:nth-of-type(3) dt::before {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid #e9c368;
  font-size: 20px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
  content: "03";
}

.p-company__philosophy dt {
  position: relative;
  z-index: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  font-size: 24px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
  letter-spacing: 0.05em;
}

.p-company__philosophy dt span {
  color: #383838;
  font-size: 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 14px;
  color: #383838;
  writing-mode: vertical-rl;
  letter-spacing: 0.25em;
}
_::-webkit-full-page-media,
_:future,
:root .p-company__philosophy dt span {
  font-weight: 500;
}

.p-company__philosophy dd {
  margin: 20px 0 0;
  font-size: 16px;
  text-align: center;
}

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

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

.p-company__overview__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-company__overview__container > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.p-company__overview__container h2 {
  min-width: 164px;
}

.p-company__overview__table {
  width: 80%;
  max-width: 875px;
  margin: 0 0 0 3%;
}

.p-company__overview__table div {
  display: flex;
  justify-content: space-between;
  padding: 30px 10px;
  border-top: 1px solid #707070;
}

.p-company__overview__table div:last-child {
  border-bottom: 1px solid #707070;
}

.p-company__overview__table dt {
  width: 60px;
  margin: 0 5% 0 0;
  font-size: 18px;
  color: #1b5279;
}

.p-company__overview__table dd {
  width: 100%;
  max-width: calc(100% - 220px);
  font-size: 16px;
}

.p-company__overview__table dd span + span {
  display: inline-block;
  margin: 0 0 0 10px;
}

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

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

.p-company__history__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-company__history dl {
  width: 100%;
  max-width: 1140px;
  margin: 74px auto 0;
  padding: 0 60px;
}

.p-company__history dl div {
  width: calc(50% + 5px);
}

.p-company__history__rightList {
  margin: 0 0 0 auto;
  border-left: 10px solid #f3efe8;
}

.p-company__history__rightList dt {
  position: relative;
  padding: 0 0 0 15%;
  font-size: 28px;
}

.p-company__history__rightList dt .num {
  font-size: 57px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-company__history__rightList dd {
  padding: 0 0 0 15%;
}

.p-company__history__rightList.red dt {
  border-bottom: 1px solid #ce302f;
}

.p-company__history__rightList.red dt::before {
  position: absolute;
  bottom: 0;
  width: 27px;
  height: 27px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #ce302f;
  content: "";
  left: 0;
  transform: translate(calc(-50% - 5px), 50%);
  z-index: 50;
}

.p-company__history__rightList.red dt .num {
  color: #ce302f;
}

.p-company__history__rightList.orange dt {
  border-bottom: 1px solid #e9c368;
}

.p-company__history__rightList.orange dt::before {
  position: absolute;
  bottom: 0;
  width: 27px;
  height: 27px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #e9c368;
  content: "";
  left: 0;
  transform: translate(calc(-50% - 5px), 50%);
}

.p-company__history__rightList.orange dt .num {
  color: #e9c368;
}

.p-company__history__rightList:first-child {
  border-left: unset;
}

.p-company__history__rightList:first-child dt::before {
  transform: translate(calc(-50% + 5px), 50%);
}

.p-company__history__rightList:first-child dd {
  border-left: 10px solid #f3efe8;
}

.p-company__history__leftList {
  border-right: 10px solid #f3efe8;
}

.p-company__history__leftList dt {
  position: relative;
  padding: 0 0 0 5%;
  font-size: 28px;
}

.p-company__history__leftList dt .num {
  font-size: 57px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-company__history__leftList dd {
  padding: 0 0 0 5%;
}

.p-company__history__leftList.green dt {
  border-bottom: 1px solid #9cac61;
}

.p-company__history__leftList.green dt::before {
  position: absolute;
  bottom: 0;
  width: 27px;
  height: 27px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #9cac61;
  content: "";
  right: 0;
  transform: translate(calc(50% + 5px), 50%);
}

.p-company__history__leftList.green dt .num {
  color: #9cac61;
}

.p-company__history__leftList.blue dt {
  border-bottom: 1px solid #1b5279;
}

.p-company__history__leftList.blue dt::before {
  position: absolute;
  bottom: 0;
  width: 27px;
  height: 27px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #1b5279;
  content: "";
  right: 0;
  transform: translate(calc(50% + 5px), 50%);
}

.p-company__history__leftList.blue dt .num {
  color: #1b5279;
}

.p-company__history__year {
  font-size: 18px;
}

.p-company__history dd {
  margin: 5px 0 0;
  line-height: 1.75;
}

.p-company__history__feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 0;
}

.p-company__history__feature::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 60px;
  width: 10px;
  background-color: #f3efe8;
  content: "";
}

.p-company__history__feature p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 7px 0 0;
  background-color: #fff;
  border-radius: 50%;
  border: 7px solid #e9c368;
  color: #383838;
}

.p-company__history__feature p > span {
  display: flex;
  align-items: flex-end;
}

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

.p-company__history__feature p::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #9cac61;
  content: "";
}

.p-company__history__feature p::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  border-radius: 50%;
  border: 7px solid #ce302f;
  content: "";
}

.p-company__history__feature > span {
  margin: 27px 0 0;
  font-size: 24px;
  font-family: "JosefinSans-Bold";
  letter-spacing: 0.15em;
  color: #1b5279;
}

.p-company__history__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) {
  .p-company__history__dot {
    width: 5px;
    height: 5px;
  }
}

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

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

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

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

.p-company .l-recruit__container {
  margin: 120px 0;
}

.p-company .l-recruit::before {
  content: unset;
}

/* 0406 */

@media (max-width: 980px) {
  .p-company__overview__container h2 {
    margin: 0 0 30px 20px;
    width: 100%;
    align-items: flex-start;
  }
  .p-company__overview__table {
    width: 100%;
  }
  .p-company__overview__container::before,
  .p-company__history__container::before {
    width: calc(100vw - 10px);
  }

  .p-company__message__pc {
    display: none;
  }

  .p-company__message__sp {
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 1450px;
    margin: 40px auto 0;
    display: flex;
  }
  .p-company__philosophy {
    margin: 80px 0 0;
  }
  .p-company__overview {
    padding: 40px 0 0;
  }
  .p-company__history {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .p-company__history__container {
    padding: 50px 30px;
  }
  .p-company .l-recruit__container {
    margin: 60px 0 40px 0;
  }
  .p-company__message__message {
    width: 100%;
    max-width: none;
  }

  .p-company__message__img {
    width: 80%;
    height: 350px;
    margin: 40px auto;
  }
  .p-company__message__img::after {
    width: 90vw;
  }
  .p-company__message__text {
    margin: 60px auto 0;
  }
  .p-company__overview__container > div {
    flex-wrap: wrap;
  }

  .l-lowerPageTitle {
    font-size: 30px;
  }
}

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

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

  .p-company__message {
    margin: 40px auto 0;
  }

  .l-lowerPageTitle {
    font-size: 18px;
  }

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

  .p-company__message__message {
    width: 100%;
  }

  .p-company__message__img {
    width: 100%;
    height: 220px;
    margin-top: 40px;
  }

  .p-company__message__img::after {
    width: 100%;
    top: 20px;
    left: 20px;
  }

  .p-company__message__name {
    font-size: 14px;
    margin-top: 20px;
  }

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

  /* philosophy */
  .p-company__philosophy {
    margin: 80px 0 0;
  }

  .p-company__philosophy dl {
    flex-wrap: wrap;
    margin: 0px 0 0;
  }

  .p-company__philosophy dl > div:nth-of-type(1) dt::before,
  .p-company__philosophy dl > div:nth-of-type(2) dt::before,
  .p-company__philosophy dl > div:nth-of-type(3) dt::before {
    width: 53px;
    height: 53px;
    font-size: 18px;
    top: -42px;
  }

  .p-company__philosophy dt span {
    font-size: 18px;
    margin: 0 0 10px;
  }

  .p-company__philosophy dt {
    font-size: 18px;
  }

  .p-company__philosophy dd {
    text-align: start;
  }

  .p-company__philosophy dl > div {
    padding: 70px 20px 30px;
    margin: 0 0 20px 0;
    width: 100%;
  }

  .p-company__philosophy dl > div + div {
    margin: 0 0 20px;
  }

  .p-company__philosophy dl::after {
    height: 90%;
  }

  /* company__overview */
  .p-company__overview {
    padding: 40px 0 0;
  }

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

  .p-company__overview__container {
    padding: 50px 30px;
  }

  .p-company__overview__container > div {
    flex-wrap: wrap;
  }

  .p-company__overview__container h2 {
    align-items: start;
    margin: 0 0 30px 10px;
  }

  .p-company__overview__table div {
    display: block;
    padding: 10px 10px;
  }

  .p-company__overview__table dd {
    max-width: none;
    font-size: 14px;
  }

  .p-company__overview__table {
    margin: 10px 0 0 0;
    width: 100%;
  }

  .p-company__overview__table dt {
    font-size: 16px;
  }
  _::-webkit-full-page-media,
  _:future,
  :root .p-company__overview__table dt {
    font-weight: 500;
  }

  /* history */
  .p-company__history {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .p-company__history__container {
    padding: 50px 30px;
  }
  .p-company__history__container::before {
    width: calc(100vw - 10px);
  }
  .p-company__history dl {
    margin: 40px auto 0;
    padding: 0;
  }
  .p-company__history dl div {
    width: 100%;
    margin: 0 0 0 auto;
    border-left: 10px solid #f3efe8;
  }
  .p-company__history__rightList.red dt,
  .p-company__history__leftList.green dt,
  .p-company__history__rightList.orange dt,
  .p-company__history__leftList.blue dt {
    padding-left: 28px;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .p-company__history__rightList.red dt,
  .p-company__history__leftList.green dt,
  .p-company__history__rightList.orange dt,
  .p-company__history__leftList.blue dt {
    font-weight: 500;
  }

  .p-company__history__rightList dt .num,
  .p-company__history__leftList dt .num {
    font-size: 30px;
  }
  .p-company__history__rightList.red dt::before,
  .p-company__history__leftList.green dt::before,
  .p-company__history__rightList.orange dt::before,
  .p-company__history__leftList.blue dt::before {
    width: 18px;
    height: 18px;
  }
  .p-company__history__rightList dt {
    font-size: 18px;
  }
  .p-company__history__year {
    font-size: 14px;
  }
  .p-company__history__leftList.green dt::before,
  .p-company__history__leftList.blue dt::before {
    left: -28px;
  }

  .p-company__history__leftList {
    border-right: none;
  }
  .p-company__history dd {
    padding-left: 20px;
    padding-bottom: 20px;
    padding-top: 6px;
  }
  .p-company__history__feature p {
    width: 70px;
    height: 70px;
  }
  .p-company__history__feature p::after {
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    border: 4px solid #ce302f;
  }
  .p-company__history__feature p {
    width: 70px;
    height: 70px;
  }
  .p-company__history__feature p > span {
    font-size: 8px;
  }
  .p-company__history__feature p > span span {
    font-size: 14px;
  }
  .p-company__history__feature > span {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 1;
  }
  .p-company__history__feature {
    padding-top: 50px;
  }
  .p-company__history__feature::before {
    height: 0;
  }
  .p-company__history__dot,
  .p-company__history__dot::before,
  .p-company__history__dot::after {
    width: 8px;
    height: 8px;
  }
  .p-company__history__dot::before {
    top: -18px;
  }
  .p-company__history__dot::after {
    bottom: -18px;
  }
  .p-company .l-recruit__container {
    margin: 60px 0 40px 0;
  }
  .p-company__sp__lastlist {
    height: 40px;
  }

  .red-padding {
    padding-left: 10px;
  }

  .p-company__history__leftList dt {
    font-size: 18px;
  }
}
/* プライバシーポリシー */
.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;
}
.p-company__message__name .iwami_sign_pc {
  width: 120px;
  height: auto;
  display: inline-block;
  margin-left: 10px;
}

@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;
  }
  .l-linkButton::after {
    bottom: 2px;
  }
  .l-footer__logo img {
    width: 110px;
    height: auto;
  }
  .p-company__message__name .iwami_sign_pc {
    width: 100px;
  }
}

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

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