@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
body {
  font-family: "Noto Sans Japanese", sans-serif;
  min-width: auto !important;
}

/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */
/**
 * Display
 */
/*==================================
* media
==================================*/
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}

/**
 * margin
 */
.u-mr-5 {
  margin-right: 5px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

/**
 * Padding
 */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pd-0 {
  padding: 0 !important;
}

/**
 * Text
 */
/*==================================
* color
==================================*/
.u-fc-dark {
  color: #343a40 !important;
}

.u-fc-red {
  color: #dc3545 !important;
}

.u-fc-orange {
  color: #FF8C00 !important;
}

/*==================================
* font-weight
==================================*/
.u-fw-bold {
  font-weight: bold !important;
}

/*==================================
* align
==================================*/
.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

@media screen and (min-width: 768px) {
  .u-text-pc-center {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .u-text-sp-center {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .u-text-sp-left {
    text-align: left !important;
  }
}

/*==================================
* マーカー
==================================*/
.u-text-marker {
  background: linear-gradient(transparent 70%, #FFF799 70%);
}

/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */
/**
 * Block
 */
/*==================================
* コンテナ
==================================*/
.c-block {
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .c-block {
    max-width: 1140px;
  }
}
/**
 * Button
 */
/*==================================
* 標準
==================================*/
.c-button-container {
  padding: 30px 0 0 0;
  text-align: center;
}

/*==================================
* 標準ボタン
==================================*/
.c-button {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 12px 5px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #012a68;
  background-color: #FFF;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.c-button,
.c-button:link,
.c-button:visited {
  text-decoration: none;
  color: #012a68;
  font-weight: bold;
}

.c-button::after {
  background: #012a68;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.c-button:hover {
  color: #FFF;
}

.c-button:hover::after {
  transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
  .c-button {
    width: 40%;
    padding: 15px 10px;
    font-size: 17px;
  }
}
/*
　プライマリボタン
================================*/
.c-button--primary {
  position: relative;
  display: block;
  width: 90%;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #012a68;
  text-decoration: none;
  text-align: center;
}

.c-button--primary::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  transform: rotate(45deg);
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
  text-decoration: none;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .c-button--primary {
    width: 380px;
    font-size: 17px;
  }
  .c-button--primary:hover {
    color: #ffffff;
    opacity: 0.8;
  }
}
/*
　アウトラインボタン
================================*/
.c-button--outline {
  position: relative;
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 20px 10px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #012a68;
  border: solid 1px #012a68;
}

.c-button--outline::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 6px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: solid 3px #012a68;
  border-right: solid 3px #012a68;
  transform: rotate(45deg);
}

.c-button--outline,
.c-button--outline:link,
.c-button--outline:visited {
  text-decoration: none;
  color: #012a68;
}

@media screen and (min-width: 768px) {
  .c-button--outline {
    width: 380px;
    font-size: 17px;
  }
  .c-button--outline:hover {
    color: #ffffff;
    background-color: #012a68;
  }
  .c-button--outline:hover::after {
    border-top-color: #ffffff;
    border-right-color: #ffffff;
  }
}
/*
　システム標準-H2
================================*/
h2.tit {
  width: 95%;
  margin: 30px auto 20px auto;
  padding: 8px 10px 10px 0px;
  font-size: 24px;
  font-weight: 700;
  color: #012a68;
  background-color: #ffffff !important;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.tit {
    width: 100%;
    max-width: 1140px;
    margin: 50px auto;
    padding: 0;
    font-size: 32px;
    border-bottom: 2px dotted #333;
  }
}
/*
　システム標準-H3
================================*/
h3.tit {
  position: relative;
  border-bottom: 4px solid #ccc;
  margin: 0 0 20px 0;
  padding: 15px 10px 15px 0;
  font-size: 1.1rem;
  background: transparent;
  text-shadow: none;
  border-top: none;
}

h3.tit:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 4px;
  background-color: #012a68;
}

/* PC */
@media screen and (min-width: 768px) {
  h3.tit {
    max-width: 1140px;
    margin: 0 auto 40px auto;
    padding: 0 0 10px 0;
    font-size: 1.3rem;
  }
}
/*
　下線付き-01
================================*/
.c-title-border-01 {
  position: relative;
  width: 90%;
  margin: 0 auto 50px auto;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  color: #333;
}

.c-title-border-01::after {
  content: "";
  display: block;
  position: absolute;
  width: 46px;
  left: calc(50% - 23px);
  bottom: -15px;
  border: 2px solid #012a68;
  border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-border-01 {
    width: 100%;
    margin: 0 auto 70px auto;
    font-size: 2.3rem;
    line-height: 1.4;
  }
}
/*
　物件情報-01
================================*/
.c-estate-list-col3-01 li,
.c-estate-list-col3-01--gray li {
  position: relative;
  margin-bottom: 50px;
}

/* テキスト部分の背景：白色 */
.c-estate-list-col3-01 li {
  background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.c-estate-list-col3-01--gray li {
  background-color: #f5f5f5;
}

.c-estate-list-col3-01 a,
.c-estate-list-col3-01--gray a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #333;
}

.c-estate-list-col3-01__image {
  position: relative;
}

.c-estate-list-col3-01__image img:last-of-type {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-estate-list-col3-01__label {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}

.c-estate-list-col3-01__price {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.c-estate-list-col3-01__price span {
  margin-left: 2px;
  font-size: 17px;
}

.c-estate-list-col3-01__textarea {
  padding: 20px;
}

.c-estate-list-col3-01__type {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  line-height: 1.6;
  font-size: 14px;
  color: #FFF;
  background-color: #012a68;
}

.c-estate-list-col3-01__type[data-type*=賃貸] {
  background: #2867db;
}

.c-estate-list-col3-01__address {
  margin-bottom: 10px;
  font-weight: bold;
}

.c-estate-list-col3-01__access {
  margin-bottom: 10px;
  font-size: 15px;
}

.c-estate-list-col3-01__catchcopy {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: left;
  font-size: 15px;
  color: #012a68;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-estate-list-col3-01,
  .c-estate-list-col3-01--gray {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 8px;
  }
  .c-estate-list-col3-01::after,
  .c-estate-list-col3-01--gray::after {
    content: "";
    display: block;
    width: 30%;
  }
  .c-estate-list-col3-01 li,
  .c-estate-list-col3-01--gray li {
    width: 30%;
    margin: 0 0 50px 0;
  }
  .c-estate-list-col3-01 a:hover,
  .c-estate-list-col3-01--gray a:hover {
    opacity: 0.6;
  }
  .c-estate-list-col3-01__price {
    font-size: 22px;
  }
  .c-estate-list-col3-01__price span {
    font-size: 18px;
  }
}
/*
　特徴（３カラム）-06
================================*/
.c-feature-col3-06 {
  width: 95%;
  margin: 0 auto;
}

.c-feature-col3-06 ul {
  display: flex;
  flex-direction: column;
}

.c-feature-col3-06 li {
  margin-bottom: 50px;
}

.c-feature-col3-06 li:last-child {
  margin-bottom: 0;
}

.c-feature-col3-06__image {
  border: 1px solid #B6BBC4;
  background-color: #FFF;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 7px;
  box-sizing: border-box;
  filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.7));
  font-size: 0;
}

.c-feature-col3-06__image img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-col3-06 h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3.2552083333vw, 30px);
  font-weight: bold;
  color: #012a68;
  text-align: center;
}

.c-feature-col3-06 p {
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-col3-06 {
    width: 100%;
  }
  .c-feature-col3-06 ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .c-feature-col3-06 li {
    width: 30%;
    margin-bottom: 0;
  }
  .c-feature-col3-06 h3 {
    font-size: clamp(25px, 2.1929824561vw, 28px);
  }
}
/*
　お知らせ-01
================================*/
.c-news-list-01__title h2 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}

.c-news-list-01__list {
  padding: 0 10px;
}

.c-news-list-01__list li {
  position: relative;
  padding: 10px 0;
  border-bottom: solid 1px #dddddd;
}

.c-news-list-01__list li:first-child {
  border-top: solid 1px #dddddd;
}

.c-news-list-01__list li::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 2px;
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
}

.c-news-list-01__list a {
  display: block;
  color: #333;
  text-decoration: none;
}

.c-news-list-01__list__data {
  margin-bottom: 5px;
  font-size: 14px;
}

.c-news-list-01__list__text {
  width: 90%;
}

.c-news-list-01__button__pc {
  display: none;
}

.c-news-list-01__button__sp {
  padding: 30px 0 0 0;
  text-align: center;
}

.c-news-list-01__button__sp a {
  position: relative;
  display: block;
  width: 90%;
  padding: 20px 10px;
  margin: 0 auto;
  color: #ffffff;
  background-color: #012a68;
  text-decoration: none;
  text-align: center;
}

.c-news-list-01__button__sp a,
.c-news-list-01__button__sp a:link,
.c-news-list-01__button__sp a:visited {
  text-decoration: none;
  color: #FFF;
}

.c-news-list-01__button__sp .fa {
  margin-left: 20px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-news-list-01 {
    max-width: 1140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .c-news-list-01__title {
    width: 30%;
  }
  .c-news-list-01__title h2 {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
  .c-news-list-01__list {
    width: 70%;
  }
  .c-news-list-01__list li {
    padding: 15px 10px;
    border-bottom: solid 1px #000;
  }
  .c-news-list-01__list li::after {
    display: none;
  }
  .c-news-list-01__list li:first-child {
    border-top: none;
  }
  .c-news-list-01__list li:last-child {
    border-bottom: none;
  }
  .c-news-list-01__list li a {
    display: flex;
    box-sizing: border-box;
  }
  .c-news-list-01__list li a:hover {
    color: #012a68;
    text-decoration: underline;
  }
  .c-news-list-01__list__data {
    width: 25%;
    font-size: 16px;
  }
  .c-news-list-01__list__text {
    width: 75%;
  }
  .c-news-list-01__button__pc {
    display: block;
  }
  .c-news-list-01__button__pc a {
    position: relative;
    display: block;
    width: 130px;
    margin: 0 auto;
    padding: 10px;
    color: #ffffff;
    background-color: #012a68;
    text-decoration: none;
    text-align: center;
  }
  .c-news-list-01__button__pc a,
  .c-news-list-01__button__pc a:link,
  .c-news-list-01__button__pc a:visited {
    text-decoration: none;
    color: #FFF;
  }
  .c-news-list-01__button__pc a:hover {
    background-color: #2867db;
  }
  .c-news-list-01__button__pc .fa {
    margin-left: 10px;
  }
  .c-news-list-01__button__sp {
    display: none;
  }
}
/*
　会社概要-02
================================*/
.c-company-02__detail__list {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.c-company-02__detail__list:nth-child(even) {
  background: #FFF;
}

.c-company-02__detail__list dt {
  width: 25%;
  padding-left: 2%;
  box-sizing: border-box;
}

.c-company-02__detail__list dd {
  width: 75%;
  padding-right: 2%;
  box-sizing: border-box;
}

.c-company-02__detail__list dt,
.c-company-02__detail__list dd {
  font-size: 14px;
}

.c-company-02__detail__feature {
  display: flex;
  flex-wrap: wrap;
}

.c-company-02__detail__feature li {
  margin: 0 5px 5px 0;
  padding: 2px 5px;
  font-size: 14px;
  background-color: #012a68;
  border-radius: 3px;
  color: #FFF;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-company-02__detail__list {
    padding: 20px 0;
  }
  .c-company-02__detail__list dt {
    width: 19%;
  }
  .c-company-02__detail__list dd {
    width: 81%;
  }
  .c-company-02__detail__list dt,
  .c-company-02__detail__list dd {
    font-size: 16px;
  }
  .c-company-02__detail__feature li {
    margin: 0 7px 5px 0;
    padding: 2px 10px 4px 10px;
    font-size: 16px;
  }
}
/*
　会社概要-06
================================*/
.c-company-06 {
  margin: 0 auto 10px auto;
}

.c-company-06__body {
  margin-bottom: 30px;
}

.c-company-06__body__detail {
  margin-bottom: 20px;
}

.c-company-06__body__detail dl > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 13px 10px;
  font-weight: bold;
  border-bottom: dotted 1px #908a6a;
  box-sizing: border-box;
}

.c-company-06__body__detail dl > div:last-child {
  border-bottom: none;
}

.c-company-06__body__detail dt {
  width: 30%;
  text-align: center;
}

.c-company-06__body__detail dd {
  width: 65%;
}

.c-company-06__body__map {
  height: 250px;
}

.c-company-06__foot__image {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.c-company-06__foot__image img {
  display: block;
  width: 49%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 7px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-company-06 {
    margin: 0 auto 30px auto;
    padding: 0 8px;
  }
  .c-company-06__body {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  .c-company-06__body__detail {
    width: 55%;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .c-company-06__body__detail dt {
    width: 20%;
    text-align: center;
  }
  .c-company-06__body__detail dd {
    width: 75%;
  }
  .c-company-06__body__map {
    width: 45%;
    height: 330px;
  }
  .c-company-06__foot__image {
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
  }
  .c-company-06__foot__image img {
    width: 23%;
    margin: 0 11px 10px 11px;
  }
}
/*
　特徴（１カラム）-02
================================*/
.c-feature-col1-02__unit {
  margin-bottom: 50px;
  padding: 25px 20px 30px 20px;
  background-color: #fff;
}

.c-feature-col1-02__title {
  margin-bottom: 20px;
  font-size: 22px;
}

.c-feature-col1-02__title::first-letter {
  font-size: 26px;
  color: #012a68;
}

.c-feature-col1-02__image {
  margin-bottom: 20px;
}

.c-feature-col1-02__image img {
  display: block;
  width: 100%;
}

.c-feature-col1-02__image iframe {
  width: 100%;
}

.c-feature-col1-02__text {
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-col1-02__unit {
    margin-bottom: 80px;
    padding: 50px 50px 60px 50px;
  }
  .c-feature-col1-02__unit:last-child {
    margin-bottom: 0;
  }
  .c-feature-col1-02__title {
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: bold;
  }
  .c-feature-col1-02__title::first-letter {
    font-size: 36px;
  }
  .c-feature-col1-02__inner {
    display: flex;
    justify-content: space-between;
  }
  .c-feature-col1-02__image {
    width: 47%;
    margin-bottom: 0;
  }
  .c-feature-col1-02__text {
    width: 50%;
    font-size: 18px;
  }
  .c-feature-col1-02__unit:nth-child(even) .c-feature-col1-02__image {
    order: 2;
  }
  .c-feature-col1-02__unit:nth-child(even) .c-feature-col1-02__text {
    order: 1;
  }
}
/*
　ページタイトル-10
================================*/
.c-page-title-10 {
  position: relative;
  width: 100%;
  height: 180px;
  border-bottom: 1px solid #333;
}

.c-page-title-10__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.c-page-title-10__inner p {
  margin-bottom: 5px;
  font-size: clamp(35px, 4.5572916667vw, 45px);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #333;
}

.c-page-title-10__inner h2 {
  font-size: clamp(18px, 2.34375vw, 27px);
  font-weight: normal;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-page-title-10 {
    height: clamp(180px, 17.5438596491vw, 200px);
  }
  .c-page-title-10__inner p {
    margin-bottom: 0;
    font-size: clamp(45px, 3.9473684211vw, 55px);
  }
  .c-page-title-10__inner h2 {
    font-size: clamp(20px, 1.7543859649vw, 23px);
  }
}

/*
　物件検索-06
================================*/
.c-estate-search-06 {
    width: 95%;
    margin: 0 auto 40px auto;
}

.c-estate-search-06 ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.c-estate-search-06 li {
    position: relative;
    width: 47.5%;
    background: #fff;
}

.c-estate-search-06 li:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.c-estate-search-06 li a {
    display: block;
    padding: 18px 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    border-radius: 4px;
    border: 1px solid #333;
    box-sizing: border-box;
}

.c-estate-search-06__arrow {
    position: absolute;
    display: inline-block;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: #fff;
    font-size: 16px;
    background: transparent;
    border-radius: 50%;
    border: 0.05em solid #000;
}

.c-estate-search-06__arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 5px;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border: 0.3em solid transparent;
    border-left: 0.4em solid #000;
    box-sizing: border-box;
}

.c-estate-search-06 li a:hover {
    color: #012a68;
    border: 1px solid #012a68;
    box-shadow: 0 0 15px rgba(4, 72, 148, 0.2);
    transition: all 0.3s;
    opacity: 1.0;
}

.c-estate-search-06 li a:hover .c-estate-search-06__arrow {
    color: #012a68;
    background: #012a68;
    border: 0.05em solid #012a68;
}

.c-estate-search-06 li a:hover .c-estate-search-06__arrow::before {
    border-left: 0.4em solid #fff;
}

@media screen and (min-width: 768px) {
    .c-estate-search-06 {
        width: 100%;
        margin-bottom: 50px;
    }

    .c-estate-search-06 ul {
        gap: 40px;
    }

    .c-estate-search-06 li {
        width: 24%;
    }

    .c-estate-search-06 li a {
        padding: 20px;
        font-size: clamp(16px, 18 / 1140 * 100vw, 18px);
    }

    .c-estate-search-06__arrow {
        top: 51%;
        right: 21px;
        font-size: 17px;
    }

    .c-estate-search-06__arrow::before {
        left: 6px;
    }
}

/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=================================

* ヘッダー-08

=================================*/
header {
  margin-bottom: 0;
}

.l-header-08 {
  position: relative;
  width: 100%;
  height: 73px;
  margin: 0;
}

.l-header-08__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 73px;
  background-color: #fff;
  z-index: 60;
}

.l-header-08__title {
  padding: 5px;
  background-color: #012a68;
}

.l-header-08__title h1 {
  font-size: 14px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.l-header-08__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.l-header-08__logo {
  max-width: 200px;
  margin: 10px 0 10px 10px;
}

.l-header-08__logo a {
  display: block;
  font-size: 0;
}

.l-header-08__logo a img {
  width: 100%;
  max-height: 45px;
}

/* 問合わせ */
.l-header-08__inquiry {
  display: none;
}

/* ナビゲーション */
.l-header-08__nav {
  display: none;
}

/* ハンバーガーメニュー */
.l-header-08__menu__button {
  display: block;
  padding-right: 20px;
}

.l-header-08__menu__button a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #1f2a34;
}

.l-header-08__menu__button i {
  font-size: 35px;
}

.l-header-08__sp-menu {
  width: 100%;
  height: 100%;
  background: #fefefe;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  padding: 72px 20px 65px 20px;
  transform: translateY(min(-100%, -1000px));
  transition: transform 0.5s;
}

.l-header-08__sp-menu.__open {
  transform: translateY(0);
  transition: transform 0.5s;
}

.l-header-08__sp-menu ul li {
  width: 100%;
  height: auto;
  border-top: 1px solid #919191;
}

.l-header-08__sp-menu ul li:hover {
  background: #747474;
}

.l-header-08__sp-menu ul li:last-child {
  border-bottom: 1px solid #919191;
}

.l-header-08__sp-menu ul li a {
  margin-left: 1em;
  text-decoration: none;
  font-size: 1em;
  line-height: 3em;
  color: #012a68;
  display: block;
  width: 100%;
  height: 3em;
}

.l-header-08__sp-menu ul li a:hover {
  color: #fff;
}

.l-header-08__sp-menu--tel a {
  margin-top: 30px;
  line-height: 1;
  text-decoration: none;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #012a68;
}

.l-header-08__sp-menu--tel p {
  text-align: center;
}

.l-header-08__sp-menu--inquiry {
  display: flex;
  justify-content: center;
  margin: 20px auto 0 auto;
}

.l-header-08__sp-menu--inquiry__mail {
  width: 60%;
}

.l-header-08__sp-menu--inquiry__mail a {
  display: block;
  padding: 20px;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  background-color: #012a68;
  box-sizing: border-box;
}

.l-header-08__sp-menu--inquiry__mail a:hover {
  background: #767171;
}

.l-header-08__sp-menu--tel a {
  display: block;
  text-align: center;
}

@media print {
  .l-header-08__sp-menu {
    display: none;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .l-header-08 {
    height: auto;
  }
  .l-header-08__wrapper {
    position: relative;
    height: auto;
  }
  .l-header-08__title {
    padding: 2px 5px 5px 5px;
  }
  .l-header-08__title h1 {
    max-width: 1140px;
    margin: 0 auto;
    font-size: 16px;
  }
  .l-header-08__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 0;
  }
  /* ロゴ */
  .l-header-08__logo {
    margin: 0;
    max-width: 250px;
    max-width: clamp(230px, 26.3157894737vw, 300px);
  }
  /* 問合わせ */
  .l-header-08__inquiry {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    width: 75%;
  }
  .l-header-08__inquiry__tel {
    width: 50%;
    text-align: right;
    font-size: clamp(27px, 3.0701754386vw, 35px);
    line-height: 1.2;
    font-family: "Century Gothic", "Arial", "Noto Sans Japanese", sans-serif;
    margin-right: 10px;
  }
  .l-header-08__inquiry__mail {
    width: 165px;
  }
  .l-header-08__inquiry__mail a {
    display: block;
    padding: 8px 10px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #2867db;
  }
  .l-header-08__inquiry__mail a:hover {
    opacity: 0.8;
  }
  /* ナビゲーション */
  .l-header-08__nav {
    display: block;
    border-top: 1px solid #CCC;
    border-bottom: 3px solid #012a68;
    background-color: #FFF;
  }
  .l-header-08__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1140px;
    margin: 0 auto;
  }
  .l-header-08__nav li {
    flex-grow: 1;
    border-left: solid 1px #CCC;
  }
  .l-header-08__nav li:last-child {
    border-right: solid 1px #CCC;
  }
  .l-header-08__nav a {
    display: block;
    padding: 12px 15px;
    text-align: center;
    text-decoration: none;
    font-size: clamp(16px, 1.4035087719vw, 18px);
    color: #000;
  }
  .l-header-08__nav a:hover {
    color: #FFF;
    background-color: #012a68;
  }
  .l-header-08__menu__button {
    display: none;
  }
  .l-header-08__sp-menu {
    display: none;
  }
}
/*=================================

* メインビジュアル

=================================*/
.l-main-visual {
  position: relative;
  height: 300px;
  background-repeat: no-repeat;
  background-position: 43% 50%;
  background-size: cover;
  background-image: url(../img/main-visual__image.jpg);
}

.l-main-visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.15);
}

.l-main-visual__inner {
  position: relative;
  padding: 30px 15px;
  z-index: 10;
}

.l-main-visual__inner ul {
  display: flex;
  margin-bottom: 5px;
}

.l-main-visual__inner li {
  display: inline-block;
  margin-right: 5px;
  padding: 2px 12px;
  font-size: 18px;
  font-weight: bold;
  color: #012a68;
  border: 2px solid #012a68;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.8);
}

.l-main-visual__inner h2 {
  font-size: clamp(25px, 3.2552083333vw, 35px);
  font-weight: 900;
  color: #222;
  line-height: 1.4;
  text-shadow: #fff 3px 3px 3px, #fff -3px -3px 3px, #fff -3px 3px 3px, #fff 3px -3px 3px, #fff 3px 0px 3px, #fff -3px 0px 3px, #fff 0px 3px 3px, #fff 0px -3px 3px;
}

.l-main-visual__inner h2 span {
  font-size: clamp(38px, 4.9479166667vw, 50px);
  color: #2867db;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-main-visual {
    height: 72vh;
    min-height: 500px;
    background-position: 50% 50%;
  }
  .l-main-visual__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 50px 0;
  }
  .l-main-visual__inner li {
    margin-bottom: 15px;
    margin-right: 10px;
    padding: 5px 20px;
    font-size: 28px;
    border: 3px solid #012a68;
  }
  .l-main-visual__inner h2 {
    font-size: clamp(38px, 4.8245614035vw, 55px);
    line-height: 1.4;
  }
  .l-main-visual__inner h2 span {
    font-size: clamp(70px, 7.8947368421vw, 90px);
    line-height: 1;
  }
}
/**
 * Section
 */
/*==================================
* Section
==================================*/
.l-section {
  padding: 50px 0;
}

.l-section.l-section--gray {
  background: #F5F5F5;
}

.l-section.l-section--blue {
  background: #eaf3f9;
}

.l-section.l-section--yellow {
  background: #fbf9ee;
}

.l-section__container {
  padding: 0 8px;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
  .l-section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
}
/*=================================

* フッター

=================================*/
.l-footer-09 {
  width: 100%;
}

.l-footer-09__block {
  padding: 35px 20px;
  text-align: center;
  color: #FFF;
  background-color: #012a68;
}

.l-footer-09__inner {
  position: relative;
}

.l-footer-09__nav {
  display: none;
}

.l-footer-09__contact h3 {
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}

.l-footer-09__contact h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #fff;
}

.l-footer-09__contact h3 span {
  position: relative;
  padding: 0 15px;
  font-size: 22px;
  background: #012a68;
}

.l-footer-09__contact__tel {
  margin-bottom: 10px;
}

.l-footer-09__contact__tel a {
  text-decoration: none;
  font-size: clamp(35px, 5.2083333333vw, 40px);
  font-weight: bold;
  color: #fff;
  font-family: "Arial", "Century Gothic", sans-serif;
}

.l-footer-09__contact__mail a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: #fff;
  border: solid 1px #fff;
}

.l-footer-09__company {
  padding: 30px;
}

.l-footer-09__company h3 {
  max-width: 250px;
  margin: 0 auto 20px auto;
}

.l-footer-09__sns {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.l-footer-09__sns a:hover {
  opacity: 0.7;
}

.l-footer-09__sns img {
  width: 40px;
}

.l-footer-09__sns a:not(:first-child) {
  margin-left: 15px;
}

.l-footer-09__company__operation p {
  margin-bottom: 8px;
}

.l-footer-09__company__operation span {
  display: inline-block;
  margin-right: 10px;
  padding: 3px 10px;
  color: #fff;
  background-color: #012a68;
}

.copyright {
  padding: 10px 0 !important;
  text-align: center !important;
  background-color: #012a68 !important;
}

@media screen and (max-width: 767px) {
  .btn__page_top {
    display: none !important;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  footer {
    border-top: none;
  }
  .l-footer-09__block {
    padding: 0;
  }
  .l-footer-09__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 30px 0;
  }
  .l-footer-09__nav {
    display: block;
    width: 60%;
    margin-bottom: 0;
  }
  .l-footer-09__nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer-09__nav li {
    display: flex;
    padding: 5px 15px;
    width: auto;
  }
  .l-footer-09__nav li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
  }
  .l-footer-09__nav li a:hover {
    color: #2867db;
    text-decoration: underline;
  }
  .l-footer-09__contact {
    width: 40%;
  }
  .l-footer-09__contact h3 {
    margin-bottom: 0;
  }
  .l-footer-09__contact__tel {
    margin-bottom: 0;
  }
  .l-footer-09__contact__tel a {
    font-size: clamp(30px, 3.0701754386vw, 40px);
    letter-spacing: 0.05rem;
    text-decoration: none;
  }
  .l-footer-09__contact__mail a {
    text-decoration: none;
    text-align: center;
  }
  .l-footer-09__contact__mail a:hover {
    background-color: #2867db;
    border-color: #2867db;
  }
  .l-footer-09__company {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 0 20px;
  }
  .l-footer-09__company__info {
    width: 30%;
  }
  .l-footer-09__company h3 {
    margin: 0 0 10px 0;
    max-width: 280px;
    text-align: left;
  }
  .l-footer-09__sns {
    justify-content: flex-start;
    margin: 10px 0 0 0;
  }
  .l-footer-09__sns img {
    width: 35px;
  }
  .l-footer-09__sns a:not(:first-child) {
    margin-left: 10px;
  }
  .l-footer-09__company__operation {
    display: flex;
    padding-top: 10px;
  }
  .l-footer-09__company__operation p {
    margin-bottom: 0;
    margin-left: 25px;
  }
  .l-footer-09__bottom__nav {
    display: none;
  }
  .l-footer-09__sp-menu {
    display: none;
  }
  .btn__page_top {
    display: block;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　地域紹介
=================================*/
.p-presentation__caption {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 900;
}

.p-presentation__block__image {
  display: block;
}

.p-presentation__block__image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-presentation__block__text {
  position: relative;
  display: block;
  width: 90%;
  margin: -20px auto 10px auto;
  background-color: rgba(193, 217, 234, 0.9);
  z-index: 10;
}

.p-presentation__block__text__inner {
  padding: 40px;
}

.p-presentation__block__text__inner h3 {
  margin-bottom: 20px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}

.p-presentation__block__text__inner p {
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-presentation__caption {
    margin-bottom: 70px;
    font-size: clamp(25px, 2.8070175439vw, 32px);
  }
  .p-presentation__block {
    position: relative;
    height: 450px;
    margin: 0 auto 50px auto;
  }
  .p-presentation__block__image {
    position: absolute;
    width: 60%;
    top: -38px;
    right: 0;
  }
  .p-presentation__block__image img {
    width: 100%;
    height: 500px;
  }
  .p-presentation__block__text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 50%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .p-presentation__block__text__inner {
    width: clamp(350px, 48.2456140351vw, 800px);
    margin: 0 0 0 auto;
    padding-left: clamp(5px, 3.5087719298vw, 40px);
    box-sizing: border-box;
  }
  .p-presentation__block__text__inner h3 {
    font-size: clamp(23px, 2.0175438596vw, 28px);
  }
  .p-presentation__block__text__inner p {
    font-size: clamp(16px, 1.4035087719vw, 18px);
  }
}
/*
　地域紹介
================================*/
.p-introduction__box__text {
  line-height: 1.4;
}

.p-introduction__box__text > div {
  margin-bottom: 20px;
}

.p-introduction__box__text > div:last-child {
  margin-bottom: 0;
}

.p-introduction__box__text dt {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 5px;
  color: #fff;
  background-color: rgba(6, 47, 79, 0.8);
}

@media screen and (min-width: 768px) {
  .p-introduction__box__text {
    width: 50%;
    line-height: 1.6;
    font-size: 18px;
  }
  .p-introduction__box__text dt {
    padding: 3px 10px;
    font-size: 16px;
  }
  .p-introduction .tbl th,
  .p-introduction .tbl td {
    font-size: 18px;
  }
  .p-introduction__box .p-introduction__box__text {
    padding: 0 0 0 40px;
  }
}
/*
　スタッフの声、体験談
================================*/
.p-introduction__balloon {
  width: 90%;
  margin: 0 auto;
}

.p-introduction__balloon__image img {
  display: block;
  width: clamp(160px, 20.8333333333vw, 230px);
  height: clamp(160px, 20.8333333333vw, 230px);
  margin: 0 auto 10px auto;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-introduction__balloon__image p {
  font-size: 15px;
  font-weight: bold;
  color: #222;
  text-align: center;
  line-height: 1.3;
}

.p-introduction__balloon__image p:last-child {
  font-size: 18px;
}

/*.p-introduction__balloon__text__inner {
    position: relative;
    margin-top: 40px;
    padding: 20px 15px;
    text-align: left;
    color:#222;
    border: 2px solid #222;
    border-radius: 15px;
    background:#fff;
}*/
.p-introduction__balloon__text__inner {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: 20px 15px;
  border: 2px solid #333;
  border-radius: 15px;
  background-color: #FFF;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
}

.p-introduction__balloon__text__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent #333;
  translate: -50% -100%;
}

.p-introduction__balloon__text__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 7.8px 15.5px 7.8px;
  border-color: transparent transparent #FFF;
  translate: -50% -100%;
}

.p-introduction__balloon__text h2 {
  font-size: 24px;
  font-size: clamp(20px, 3.125vw, 24px);
  text-align: center;
  font-weight: bold;
  color: #012a68;
  line-height: 1.3;
}

.p-introduction__balloon__text p {
  margin-top: 15px;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-introduction__balloon {
    width: 100%;
    display: flex;
  }
  .p-introduction__balloon__image {
    width: 25%;
  }
  .p-introduction__balloon__image img {
    width: clamp(180px, 15.7894736842vw, 200px);
    height: clamp(180px, 15.7894736842vw, 200px);
  }
  .p-introduction__balloon__text {
    width: 75%;
  }
  .p-introduction__balloon__text__inner {
    margin-top: 0;
    margin-left: 20px;
    padding: 25px;
  }
  .p-introduction__balloon__text__inner::before {
    top: 25%;
    left: 0;
    border-width: 11.5px 20px 11.5px 0;
    border-color: transparent #333 transparent transparent;
    translate: -100% -50%;
  }
  .p-introduction__balloon__text__inner::after {
    top: 25%;
    left: 0;
    border-width: 9.2px 16px 9.2px 0;
    border-color: transparent #FFF transparent transparent;
    translate: -100% -50%;
  }
  .p-introduction__balloon__text h2 {
    font-size: 23px;
    text-align: left;
  }
  .p-introduction__balloon__text p {
    font-size: 17px;
    line-height: 1.7;
  }
}
/*=================================

* 会社案内

=================================*/
/*
　紹介文
================================*/
.p-company__introduction {
  position: relative;
  background: url(../img/company__introduction__bg.jpg) no-repeat center center/cover;
}

.p-company__introduction::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(248, 247, 247, 0.85);
}

.p-company__introduction__inner {
  position: relative;
  width: 85%;
  margin: 0 auto;
}

.p-company__introduction__inner h2 {
  margin-bottom: 15px;
  font-size: clamp(22px, 2.8645833333vw, 26px);
  font-weight: bold;
  color: #333;
}

.p-company__introduction__inner p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__introduction__inner {
    max-width: 960px;
  }
  .p-company__introduction__inner h2 {
    margin-bottom: 30px;
    font-size: clamp(23px, 2.0175438596vw, 30px);
    text-align: center;
  }
  .p-company__introduction__inner p {
    font-size: clamp(16px, 1.4035087719vw, 18px);
  }
}
/*
　共通タイトル
================================*/
.p-company-title {
  position: relative;
  width: 90%;
  margin: 0 auto 50px auto;
  font-size: clamp(22px, 2.8645833333vw, 26px);
  font-weight: bold;
  text-align: center;
  color: #333;
}

.p-company-title::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 12px);
  bottom: -20px;
  width: 24px;
  border: 2px solid #012a68;
  border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company-title {
    width: 100%;
    margin: 0 auto 70px auto;
    font-size: clamp(23px, 2.0175438596vw, 30px);
  }
  .p-company-title::after {
    left: calc(50% - 17px);
    width: 34px;
  }
}
/*
　当社の特徴
================================*/
.p-company__feature {
  padding-top: 15px;
}

.p-company__feature__block {
  width: 90%;
  margin: 0 auto;
}

.p-company__feature__block li {
  position: relative;
  width: 100%;
  border: solid 1px #ccc;
}

.p-company__feature__block li:not(:first-child) {
  margin-top: 30px;
}

.p-company__feature__list-cover {
  position: absolute;
  top: -14px;
  left: 12px;
  width: 80px;
  padding: 8px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #012a68;
}

.p-company__feature__block-no {
  font-size: 1.7rem;
}

.p-company__feature__block li h3 {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 10px 12px 10px 105px;
  min-height: 80px;
  font-size: clamp(20px, 2.6041666667vw, 25px);
  font-weight: 900;
  border-bottom: solid 1px #ccc;
  box-sizing: border-box;
  color: #222;
  line-height: 1.3;
}

.p-company__feature__list-text {
  padding: 20px;
}

.p-company__feature__list-text p {
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__feature__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .p-company__feature__block li {
    width: 31%;
    margin-top: 0;
  }
  .p-company__feature__block li:not(:first-child) {
    margin-top: 0;
  }
  .p-company__feature__block li:nth-child(n+4) {
    margin-top: 68px;
  }
  .p-company__feature ul::after {
    display: block;
    content: "";
    width: 31%;
  }
  .p-company__feature__list-cover {
    padding: 18px 0;
  }
  .p-company__feature__block li h3 {
    min-height: 100px;
    padding: 12px 12px 12px 110px;
  }
}

/*
　スタッフ紹介バナー
================================*/
.p-company__banner-staff {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(../img/company__banner-staff.jpg) no-repeat center center/cover;
}

.p-company__banner-staff::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(12, 55, 94, 0.7);
}

.p-company__banner-staff__inner {
  position: relative;
  width: 90%;
  text-align: center;
}

.p-company__banner-staff__title {
  font-size: clamp(32px, 4.1666666667vw, 40px);
  font-weight: 900;
  color: #fff;
}

.p-company__banner-staff__text {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

a.p-company__banner-staff__button {
  display: block;
  max-width: 330px;
  margin: 30px auto 0;
  padding: 10px 10px;
  font-size: clamp(18px, 2.34375vw, 22px);
  font-weight: bold;
  text-decoration: none;
  color: #012a68;
  background: #fedb39;
}

a.p-company__banner-staff__button:hover {
  opacity: 0.8;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__banner-staff__inner {
    width: 100%;
  }
  .p-company__banner-staff__title {
    font-size: clamp(30px, 2.6315789474vw, 45px);
  }
  .p-company__banner-staff__text {
    font-size: clamp(16px, 1.4035087719vw, 18px);
  }
  a.p-company__banner-staff__button {
    font-size: clamp(17px, 1.4912280702vw, 22px);
  }
}
/* 店舗写真
======================= */
.p-company__image__img {
  width: 100%;
}

.p-company__image__img:not(:first-child) {
  margin-top: 20px;
}

.p-company__image__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-company__image {
    display: flex;
    justify-content: center;
  }
  .p-company__image__img {
    width: auto;
    margin: 0 10px;
    max-width: 30%;
    min-width: 23%;
  }
  .p-company__image__img:not(:first-child) {
    margin-top: unset;
  }
}
/*
　沿革
================================*/
.p-company__history__list {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.p-company__history__list:nth-child(even) {
  background: #FFF;
}

.p-company__history__list dt {
  width: 28%;
  padding-left: 2%;
}

.p-company__history__list dd {
  width: 81%;
  padding-right: 2%;
}

.p-company__history__list dt,
.p-company__history__list dd {
  font-size: 14px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__history__list {
    padding: 20px 0;
  }
  .p-company__history__list dt {
    width: 19%;
  }
  .p-company__history__list dt,
  .p-company__history__list dd {
    font-size: 16px;
  }
}
/*
　アクセス
================================*/
.p-company__access {
  padding-bottom: 0 !important;
  font-size: 0;
}

.p-company__access__lead {
  width: 90%;
  margin: 0 auto 30px auto;
  font-size: 16px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__access__lead {
    max-width: 1140px;
    margin: 0 auto 40px auto;
    text-align: center;
  }
}