@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-light {
  color: #ced4da !important;
}

.u-fc-dark {
  color: #343a40 !important;
}

.u-fc-blue {
  color: #345887 !important;
}

.u-fc-red {
  color: #dc3545 !important;
}

.u-fc-red-dark {
  color: #ad002d !important;
}

.u-fc-green {
  color: #03967a !important;
}

.u-fc-orange {
  color: #FF8C00 !important;
}

.u-fc-white {
  color: #fff !important;
}

.u-fc-yellow {
  color: #ffc107 !important;
}

/*==================================
* font-size
==================================*/
.u-fs-h1 {
  font-size: 2rem !important;
}

.u-fs-h2 {
  font-size: 1.5rem !important;
}

.u-fs-h3 {
  font-size: 1.1rem !important;
}

@media screen and (min-width: 768px) {
  .u-fs-h1 {
    font-size: 2.5rem !important;
  }
  .u-fs-h2 {
    font-size: 1.7rem !important;
  }
  .u-fs-h3 {
    font-size: 1.2rem !important;
  }
}
/*==================================
* font-weight
==================================*/
.u-fw-bold {
  font-weight: bold !important;
}

/*==================================
* align
==================================*/
.u-text-top {
  vertical-align: top !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-middle {
  vertical-align: middle !important;
}

.u-text-bottom {
  vertical-align: bottom !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%);
}

.u-text-marker--orange {
  background: linear-gradient(transparent 75%, #ffbf7f 75%);
}

/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */
/**
 * Block
 */
/*==================================
* コンテナ
==================================*/
.c-block {
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .c-block {
    max-width: 1140px;
  }
}
/**
 * Button
 */
/*==================================
* 標準
==================================*/
.c-button {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 12px 5px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #f27405;
  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: #f27405;
  font-weight: bold;
}

.c-button::after {
  background: #f27405;
  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 {
  width: 90%;
  display: block;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #f27405;
  text-decoration: none;
  text-align: center;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--primary:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .c-button--primary {
    width: 30%;
    font-size: 17px;
  }
}
/*
　セカンダリボタン
================================*/
.c-button--secondary {
  width: 90%;
  display: block;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #373561;
  text-decoration: none;
  text-align: center;
}

.c-button--secondary,
.c-button--secondary:link,
.c-button--secondary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--secondary:hover {
  background-color: #767171;
}

@media screen and (min-width: 768px) {
  .c-button--secondary {
    width: 30%;
    font-size: 17px;
  }
}
/*
　アウトラインボタン
================================*/
.c-button-outline {
  width: 90%;
  padding: 15px 10px;
  display: block;
  text-align: center;
  font-weight: bold;
  border: 1.5px solid #111;
  margin: 0 auto;
}

.c-button-outline,
.c-button-outline:link,
.c-button-outline:visited {
  text-decoration: none;
  color: #111;
}

.c-button-outline:hover {
  border-color: transparent;
  color: #FFF;
  background-color: #f27405;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-button-outline {
    width: 40%;
    font-size: 20px;
  }
}
/*
　システム標準-H2
================================*/
h2.tit {
  width: 90%;
  text-align: center;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 auto 30px auto;
  padding: 0;
  background-color: transparent !important;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.tit {
    width: 100%;
    font-size: 2rem;
  }
}
/*
　システム標準-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: #f27405;
}

/* 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-01 {
  width: 90%;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  margin: 0 auto 30px auto;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-01 {
    width: 100%;
    font-size: 2.5rem;
  }
}
/*
　シンプル-02・テキストカラー
================================*/
.c-title-02,
.c-title-02--color-2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: #f27405;
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: #373561;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-02,
  .c-title-02--color-2 {
    font-size: clamp(40px, 4.649122807vw, 53px);
    margin-bottom: 50px;
  }
}
/*
　ルビ付き-01
================================*/
.c-title-ruby-01 {
  margin: 0 auto 20px auto;
  text-align: center;
}

.c-title-ruby-01 h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.c-title-ruby-01 span {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-title-ruby-01 span:before,
.c-title-ruby-01 span:after {
  content: "";
  width: 2em;
  border-top: 1px solid;
}

.c-title-ruby-01 span:before {
  margin-right: 0.7em;
}

.c-title-ruby-01 span:after {
  margin-left: 0.7em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-01 {
    margin: 0 auto 50px auto;
  }
  .c-title-ruby-01 h2 {
    font-size: 2.5rem;
    margin-bottom: 7px;
  }
  .c-title-ruby-01 span {
    font-size: 1.2rem;
  }
}
/*
　ルビ付き-02
================================*/
.c-title-ruby-02 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
  padding: 30px 0 10px 0;
}

.c-title-ruby-02 span {
  position: relative;
  line-height: 1.5;
  z-index: 2;
}

.c-title-ruby-02::before {
  content: attr(data-en);
  position: absolute;
  top: 20px;
  left: 10px;
  color: rgba(15, 10, 50, 0.1);
  font-size: 2rem;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  z-index: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-02 {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .c-title-ruby-02::before {
    top: 0;
    left: 20px;
    font-size: 4.3rem;
  }
}
/*
　ルビ付き-03
================================*/
.c-title-ruby-03 {
  width: 90%;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  color: #f27405;
  margin: 0 auto 30px auto;
}

.c-title-ruby-03 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-03 {
    width: 100%;
    font-size: 2.3rem;
    line-height: 1.5;
    margin: 0 auto 45px auto;
  }
}
/*
　ルビ付き-04
================================*/
.c-title-ruby-04 {
  width: 90%;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  margin: 0 auto 30px auto;
}

.c-title-ruby-04::first-letter {
  color: #f27405;
}

.c-title-ruby-04 span {
  display: block;
  font-size: 16px;
  font-weight: normal;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-04 {
    width: 100%;
    font-size: 2.8rem;
    line-height: 1.4;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-04 span {
    font-size: 18px;
  }
}
/*
　ルビ付き-05
================================*/
.c-title-ruby-05 {
  margin-bottom: 20px;
}

.c-title-ruby-05 span {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.c-title-ruby-05 h2 {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}

.c-title-ruby-05 h2:before {
  content: "";
  width: 1.5em;
  border-top: 1px solid;
  margin-right: 0.5em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-05 {
    margin-bottom: 50px;
  }
  .c-title-ruby-05 span {
    font-size: 40px;
  }
  .c-title-ruby-05 h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
/*
　ルビ付き-06
================================*/
.c-title-ruby-06 {
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.4;
}

.c-title-ruby-06 h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.c-title-ruby-06 span::first-letter {
  color: #f27405;
}

.c-title-ruby-06 span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-06 {
    width: 100%;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-06 h2 {
    font-size: 34px;
  }
  .c-title-ruby-06 span {
    font-size: 20px;
  }
}
/*
　下線付き-01
================================*/
.c-title-border-01 {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  width: 90%;
  margin: 0 auto 50px auto;
}

.c-title-border-01::after {
  content: "";
  display: block;
  position: absolute;
  width: 45px;
  left: calc(50% - 30px);
  bottom: -15px;
  border: 2px solid #f27405;
  border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-border-01 {
    width: 100%;
    font-size: 2.3rem;
    line-height: 1.4;
    margin: 0 auto 70px auto;
  }
}
/*
　番号付き-01
================================*/
.c-title-count-01 {
  position: relative;
  height: 100px;
  margin-right: 100px;
  padding: 20px 0 10px 15px;
  color: #fff;
  background: #f27405;
  box-sizing: border-box;
  margin-bottom: 50px;
  font-weight: 900;
  font-size: 22px;
}

.c-title-count-01:after {
  position: absolute;
  top: 0;
  right: -60px;
  width: 0;
  height: 0;
  content: "";
  border-width: 100px 60px 0 0;
  border-style: solid;
  border-color: #f27405 transparent transparent transparent;
}

.c-title-count-01 span {
  font-size: 50px;
  position: absolute;
  bottom: 0;
  right: -100px;
  display: block;
  padding-left: 16px;
  color: #f27405;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-01 {
    margin-right: 120px;
    margin-bottom: 60px;
    padding: 20px 0 10px 20px;
    font-size: 40px;
    font-size: clamp(33px, 3vw, 40px);
  }
  .c-title-count-01 span {
    font-size: 63px;
    top: 0;
    right: -120px;
    padding-top: 10px;
  }
}
/*
　番号付き-02
================================*/
.c-title-count-02 {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 10px 0;
}

.c-title-count-02 p {
  font-size: clamp(35px, 9vw, 100px);
  font-weight: bold;
  color: #f27405;
  font-family: "Arial", sans-serif;
}

.c-title-count-02 h2 {
  margin-left: 3%;
  line-height: 1.4;
  font-size: clamp(20px, 6vw, 41px);
  font-weight: 900;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-02 {
    align-items: center;
    padding: 0;
  }
  .c-title-count-02 p {
    margin-top: -2.4%;
    margin-bottom: -2.7%;
    font-size: clamp(130px, 17vw, 205px);
  }
  .c-title-count-02 h2 {
    margin-left: 40px;
    font-size: clamp(30px, 3.5vw, 45px);
  }
}
/*
　付箋風-01
================================*/
.c-title-label-01 {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #f8f8f8;
  border-left: 15px solid #f27405;
  margin: 0 0 15px 0;
  padding: 15px 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-label-01 {
    font-size: 2rem;
    padding: 11px 10px 11px 20px;
    letter-spacing: 0.04em;
  }
}
/*
　背景カラー-01
================================*/
.c-title-bg-01,
.c-title-bg-01--color-2,
.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
  margin-bottom: 30px;
  padding: 15px;
  background: #f27405;
}

.c-title-bg-01 h2,
.c-title-bg-01--color-2 h2,
.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01 h3,
.c-title-bg-01--color-2 h3,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
  font-size: clamp(27px, 4.1666666667vw, 32px);
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
  background: #373561;
}

.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
  padding: 10px;
}

.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
  font-size: clamp(20px, 3.2552083333vw, 25px);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-bg-01,
  .c-title-bg-01--color-2,
  .c-title-bg-01--sm,
  .c-title-bg-01--color-2--sm {
    margin-bottom: 50px;
    padding: 30px 0;
    text-align: center;
  }
  .c-title-bg-01 h2,
  .c-title-bg-01--color-2 h2,
  .c-title-bg-01--sm h2,
  .c-title-bg-01--color-2--sm h2,
  .c-title-bg-01 h3,
  .c-title-bg-01--color-2 h3,
  .c-title-bg-01--sm h3,
  .c-title-bg-01--color-2--sm h3 {
    font-size: clamp(32px, 6.5104166667vw, 50px);
    letter-spacing: 0.05em;
  }
  .c-title-bg-01--sm,
  .c-title-bg-01--color-2--sm {
    padding: 15px;
  }
  .c-title-bg-01--sm h2,
  .c-title-bg-01--color-2--sm h2,
  .c-title-bg-01--sm h3,
  .c-title-bg-01--color-2--sm h3 {
    font-size: clamp(25px, 3.90625vw, 30px);
  }
}
/*
　誘導型-01
================================*/
.c-title-induction-01 {
  width: 100%;
  padding-bottom: 35px;
  box-sizing: content-box;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
  background-color: #f27405;
}

.c-title-induction-01__inner {
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  padding: 4% 0 2% 0;
}

.c-title-induction-01__inner h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.c-title-induction-01 span {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-induction-01__inner {
    max-width: 1140px;
    padding: 25px 0 20px 0;
  }
  .c-title-induction-01__inner h2 {
    line-height: 1.3;
    font-size: clamp(36px, 2vw, 40px);
  }
  .c-title-induction-01__inner span {
    font-size: clamp(42px, 5vw, 53px);
  }
}
/*
　ページタイトル-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);
  }
}
/*
　会社概要-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: #f27405;
  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;
  }
}
/*
　お知らせ-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: #f27405;
  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: #f27405;
    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: #f27405;
    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: #373561;
  }
  .c-news-list-01__button__pc .fa {
    margin-left: 10px;
  }
  .c-news-list-01__button__sp {
    display: none;
  }
}
/*
　概要-04
================================*/
.c-about-04 {
  padding: 80px 0 !important;
  background: url(../img/about__background.svg);
  background-position: 20% 50%;
  background-size: cover;
}

.c-about-04__inner {
  display: block;
  padding: 0 5%;
}

.c-about-04__title {
  position: relative;
}

.c-about-04__title span {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.c-about-04__title h2 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.24em;
}

.c-about-04__text {
  width: 100%;
  margin-top: 30px;
}

.c-about-04__text p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-about-04 {
    padding: 120px 0 100px 0 !important;
  }
  .c-about-04__inner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .c-about-04__title {
    flex-shrink: 0;
    width: 33%;
    padding: 0 5% 0 1%;
    box-sizing: border-box;
  }
  .c-about-04__title span {
    font-size: 55px;
    letter-spacing: 0.1rem;
  }
  .c-about-04__title h2 {
    margin: 15px 0 40px 0;
    font-size: 17px;
    letter-spacing: 0.27em;
  }
  .c-about-04__text {
    margin-top: -8px;
  }
  .c-about-04__text p {
    font-size: 16px;
    line-height: 2.2;
  }
}
/*
　ボタン-01
================================*/
.c-button-01 {
  margin-top: 20px;
}

.c-button-01 a {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 1em 2em;
  transition: all 0.2s ease;
  border: none;
  background: none;
  text-decoration: none;
}

.c-button-01 a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  border-radius: 100vh;
  background: #F2EAD3;
  width: 3.3em;
  height: 3.3em;
  transition: all 0.3s ease;
}

.c-button-01 a span {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
  font-size: 16px;
}

.c-button-01 a svg {
  position: relative;
  top: -1px;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #333;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.c-button-01 a:hover:before {
  width: calc(100% + 1em);
}

.c-button-01 a:hover svg {
  transform: translateX(0);
}

.c-button-01 a:active {
  transform: scale(0.95);
}

/* PC */
@media screen and (min-width: 769px) {
  .c-button-01 a {
    margin-bottom: 15px;
    margin-right: 25px;
    padding: 1em 1.5em;
  }
  .c-button-01 a span {
    font-size: 19px;
  }
  .c-button-01 a:before {
    width: 3.5em;
    height: 3.5em;
  }
}
/*
　メニュー-15
================================*/
.c-menu-15 ul li {
  width: 90%;
  margin: 0 auto;
}

.c-menu-15 ul li:not(:first-child) {
  margin-top: 50px;
}

.c-menu-15 ul li a {
  text-decoration: none;
  color: #000;
}

.c-menu-15__image {
  overflow: hidden;
  border-radius: clamp(22px, 9.765625vw, 75px);
  font-size: 0;
}

.c-menu-15__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  transition: 0.7s;
}

.c-menu-15 h3 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: clamp(22px, 4.1666666667vw, 32px);
  font-weight: bold;
  transition: 0.7s;
  letter-spacing: 0.2em;
}

.c-menu-15__arrow {
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 15px;
  border: 2px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
}

.c-menu-15__arrow i {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  font-size: 18px;
  transition: 0.7s;
}

.c-menu-15 p {
  margin-top: 15px;
  font-size: clamp(16px, 3.125vw, 24px);
  transition: 0.7s;
}

.c-menu-15 ul li:hover .c-menu-15__arrow {
  background-color: #f27405;
  border: 2px solid #f27405;
}

.c-menu-15 ul li:hover .c-menu-15__image img {
  transform: scale(1.2);
}

.c-menu-15 ul li:hover h3,
.c-menu-15 ul li:hover p {
  color: #f27405;
}

.c-menu-15 ul li:hover .c-menu-15__arrow i {
  color: #fff;
  border-color: #f27405;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-menu-15 {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto 20px auto;
  }
  .c-menu-15 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-menu-15 ul::after {
    content: "";
    display: block;
    width: 30%;
  }
  .c-menu-15 ul li {
    width: 30%;
    margin: 0;
  }
  .c-menu-15 ul li:not(:first-child) {
    margin-top: 0;
  }
  .c-menu-15 ul li:nth-child(n+4) {
    margin-top: 100px;
  }
  .c-menu-15__image {
    border-radius: 2rem;
  }
  .c-menu-15 h3 {
    margin-top: 25px;
    font-size: clamp(23px, 2.24vw, 28px);
  }
  .c-menu-15__arrow {
    width: 35px;
    height: 35px;
    margin-left: 20px;
  }
  .c-menu-15__arrow i {
    left: 7px;
    font-size: 20px;
  }
  .c-menu-15 p {
    font-size: clamp(16px, 1.44vw, 18px);
  }
}
/*
　ブログリスト-03
================================*/
.c-blog-list-03 li {
  margin: 30px auto;
}

.c-blog-list-03 li a {
  display: flex;
  justify-content: space-between;
}

.c-blog-list-03__image {
  width: 30%;
  position: relative;
  padding-top: 20%;
  overflow: hidden;
}

.c-blog-list-03__image img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-blog-list-03__text {
  width: 65%;
}

.c-blog-list-03__title {
  color: #111;
  margin-bottom: 10px;
  transition-duration: 0.2s;
}

.c-blog-list-03__date {
  font-size: 14px;
  color: #7F7F7F;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-blog-list-03 {
    margin-bottom: 30px;
  }
  .c-blog-list-03 li {
    margin: 0;
  }
  .c-blog-list-03 li:nth-child(1) {
    position: relative;
    width: 58%;
    float: left;
    margin-right: 30px;
  }
  .c-blog-list-03 li:nth-child(n+2) {
    width: 38%;
    float: right;
  }
  .c-blog-list-03 a {
    text-decoration: none;
  }
  .c-blog-list-03 a:hover {
    opacity: 0.7;
  }
  .c-blog-list-03 li:nth-child(n+2) a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__image {
    width: 100%;
    padding-top: 66%;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__text {
    position: absolute;
    right: 0;
    bottom: -10px;
    padding: 20px 30px;
    width: 75%;
    background-color: #FFF;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__title {
    font-size: clamp(16px, 1.4035087719vw, 18px);
    font-weight: 500;
  }
  .c-blog-list-03 li:nth-child(n+2) .c-blog-list-03__image {
    width: 28%;
    padding-top: 18%;
  }
  .c-blog-list-03 li:nth-child(n+2) .c-blog-list-03__text {
    width: 68%;
  }
  .c-blog-list-03__date {
    font-size: 13px;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__date {
    font-size: clamp(13px, 1.1403508772vw, 16px);
    font-weight: 500;
  }
  .c-blog-list-03::after {
    content: "";
    display: block;
    clear: both;
  }
}
/*
　物件情報-01
================================*/
.c-estate-list-col1-01 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.c-estate-list-col1-01__link {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  background-color: #fff;
  text-decoration: none !important;
  transition: 0.3s;
}

.c-estate-list-col1-01__link:hover {
  opacity: 0.7;
}

.c-estate-list-col1-01__link:hover .c-estate-list-col1-01__image img {
  transform: scale(1.1);
}

.c-estate-list-col1-01__image {
  margin: 15px 15px 0 15px;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 0;
}

.c-estate-list-col1-01__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  transition: 0.3s;
}

.c-estate-list-col1-01__header {
  border-bottom: 1px solid #ccc;
  padding: 15px 15px 10px 15px;
}

.c-estate-list-col1-01__body {
  padding: 15px;
}

.c-estate-list-col1-01__type {
  background-color: #f27405;
  color: #fff;
  margin-right: 10px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 2px;
}

.c-estate-list-col1-01__address {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.c-estate-list-col1-01__price-block {
  margin-top: 5px;
  font-size: 20px;
  font-weight: bold;
}

.c-estate-list-col1-01__price {
  color: #d60000;
  margin-right: 8px;
  font-size: clamp(25px, 3.2552083333vw, 30px);
  color: #c00000;
  font-weight: bold;
  font-family: "Arial", "Century Gothic", sans-serif;
  line-height: 1.3;
}

.c-estate-list-col1-01__price span {
  font-size: clamp(17px, 2.2135416667vw, 25px);
  font-weight: 900;
  font-family: "Noto Sans Japanese", sans-serif;
}

.c-estate-list-col1-01__layout {
  color: #333;
}

.c-estate-list-col1-01__access {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.c-estate-list-col1-01__access-label {
  background-color: #ccc;
  padding: 2px 6px;
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.c-estate-list-col1-01__access-detail {
  font-size: 14px;
  color: #333;
}

.c-estate-list-col1-01__description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-estate-list-col1-01__link {
    flex-direction: row;
  }
  .c-estate-list-col1-01__image {
    margin: 15px;
    flex-basis: 30%;
  }
  .c-estate-list-col1-01__header {
    padding: 20px 15px 10px 15px;
  }
  .c-estate-list-col1-01__info {
    flex: 1;
    border-left: 1px solid #ccc;
  }
  .c-estate-list-col1-01__address {
    display: inline-block;
    margin-top: 0;
    font-size: clamp(16px, 1.7543859649vw, 20px);
  }
  .c-estate-list-col1-01__price {
    font-size: clamp(28px, 2.8947368421vw, 33px);
  }
  .c-estate-list-col1-01__price span {
    font-size: clamp(20px, 1.9298245614vw, 22px);
  }
  .c-estate-list-col1-01__access-label {
    font-size: clamp(15px, 1.4035087719vw, 16px);
  }
  .c-estate-list-col1-01__access-detail {
    font-size: clamp(16px, 1.4912280702vw, 17px);
  }
  .c-estate-list-col1-01__description {
    font-size: clamp(16px, 1.4912280702vw, 17px);
  }
}
/*
　物件情報-02
================================*/
.c-estate-list-col3-02,
.c-estate-list-col3-02--gray {
  width: 95%;
  margin: 0 auto;
}

.c-estate-list-col3-02 li,
.c-estate-list-col3-02--gray li {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
}

/* テキスト部分の背景：白色 */
.c-estate-list-col3-02 li {
  background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.c-estate-list-col3-02--gray li {
  background-color: #f5f5f5;
}

.c-estate-list-col3-02 a,
.c-estate-list-col3-02--gray a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #000;
}

.c-estate-list-col3-02__image {
  position: relative;
}

.c-estate-list-col3-02__image img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.c-estate-list-col3-02__type {
  position: absolute;
  bottom: -15px;
  left: 10px;
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  background: #f27405;
  color: #fff;
}

.c-estate-list-col3-02__textarea {
  padding: 25px 20px 20px 20px;
}

.c-estate-list-col3-02__name {
  font-weight: bold;
  margin-bottom: 5px;
}

.c-estate-list-col3-02__access {
  margin-bottom: 5px;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-estate-list-col3-02__price {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: bold;
}

.c-estate-list-col3-02__price span {
  font-size: 17px;
}

.c-estate-list-col3-02__catchcopy {
  line-height: 1.3;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.c-estate-list-col3-02__label {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  padding: 14px 2px;
  text-align: center;
  width: 55px;
  height: 55px;
  background: #f4de51;
  border-radius: 50px;
  box-sizing: border-box;
}

.c-estate-list-col3-02__label span {
  color: #555;
  font-size: 12px;
  font-weight: bold;
}

.c-estate-list-col3-02__label span[data-label*=販売停止] {
  font-weight: bold;
  color: #ff0000;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-estate-list-col3-02,
  .c-estate-list-col3-02--gray {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .c-estate-list-col3-02::after,
  .c-estate-list-col3-02--gray::after {
    content: "";
    display: block;
    width: 31%;
  }
  .c-estate-list-col3-02 li,
  .c-estate-list-col3-02--gray li {
    width: 31%;
    margin-bottom: 50px;
  }
  .c-estate-list-col3-02 a:hover,
  .c-estate-list-col3-02--gray a:hover {
    opacity: 0.6;
  }
  .c-estate-list-col3-02__type {
    left: 20px;
  }
  .c-estate-list-col3-02__textarea {
    padding: 30px 25px 25px 25px;
  }
  .c-estate-list-col3-02__name {
    font-size: 18px;
  }
  .c-estate-list-col3-02__access,
  .c-estate-list-col3-02__catchcopy {
    font-size: 16px;
  }
  .c-estate-list-col3-02__label {
    top: 12px;
    right: 12px;
    padding: 13px 2px;
  }
}
/*
　物件情報-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: #f27405;
}

.c-estate-list-col3-01__type[data-type*=賃貸] {
  background: #373561;
}

.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: #f27405;
}

/* 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;
  }
}
/*
　LINE-03
================================*/
.c-banner-line-03 {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px 10px 0;
  background: #fff;
  border: 3px solid #00b900;
}

.c-banner-line-03:hover {
  opacity: 0.7;
}

.c-banner-line-03__logo {
  width: 200px;
  max-width: 90%;
  margin: 0 auto;
}

.c-banner-line-03__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-banner-line-03__text {
  margin-top: 30px;
  line-height: 1.8;
  text-align: center;
}

.c-banner-line-03__text p {
  font-weight: 900;
  font-size: 14px;
}

.c-banner-line-03__text p:first-child {
  font-size: clamp(17px, 5.3125vw, 20px);
  color: #00b900;
}

.c-banner-line-03__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 30px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #00b900;
}

.c-banner-line-03__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-banner-line-03__img {
  width: 200px;
  max-width: 90%;
  margin: 30px auto 0;
}

.c-banner-line-03__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-banner-line-03 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0;
  }
  .c-banner-line-03__logo {
    flex: 1;
    text-align: center;
    padding-left: clamp(10px, 3.6330608538vw, 15px);
  }
  .c-banner-line-03__logo img {
    width: 75%;
  }
  .c-banner-line-03__text {
    width: 50%;
    margin-top: 0;
    padding: clamp(20px, 1.8165304269vw, 30px) 0;
  }
  .c-banner-line-03__text p {
    font-size: clamp(11px, 0.9990917348vw, 20px);
  }
  .c-banner-line-03__text p:first-child {
    font-size: clamp(20px, 1.8165304269vw, 35px);
  }
  a.c-banner-line-03__btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 70px;
    box-sizing: border-box;
    text-decoration: none;
    font-size: clamp(14px, 1.2715712988vw, 20px);
    font-weight: bold;
    color: #fff;
  }
  .c-banner-line-03__img {
    flex: 1;
    align-self: flex-end;
    margin: 0;
    padding-right: clamp(10px, 3.6330608538vw, 20px);
    text-align: center;
  }
  .c-banner-line-03__img img {
    width: 100%;
    min-width: 170px;
    vertical-align: bottom;
  }
}
/*
　feature-swap-09
================================*/
.c-feature-swap-09 ul {
  margin: 40px 5vw 0;
}

.c-feature-swap-09 li {
  position: relative;
}

.c-feature-swap-09 li:not(:first-child) {
  margin-top: 50px;
}

.c-feature-swap-09__inner {
  display: flex;
  flex-direction: column-reverse;
}

.c-feature-swap-09__text {
  margin-top: 32px;
}

.c-feature-swap-09__text h2 {
  font-size: clamp(28px, 4.1666666667vw, 32px);
  color: #f27405;
  font-weight: 900;
  line-height: 1.3;
}

.c-feature-swap-09__text p {
  margin-top: 16px;
  line-height: 1.75;
}

.c-feature-swap-09__image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
}

/* PC */
@media screen and (min-width: 1000px) {
  .c-feature-swap-09 li:not(:first-child) {
    margin-top: 120px;
  }
  .c-feature-swap-09 li::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 90%;
    top: 10%;
    left: 0;
    background-color: #f9f9f9;
    z-index: -1;
  }
  .c-feature-swap-09 li:nth-child(odd) {
    margin-right: -5vw;
  }
  .c-feature-swap-09 li:nth-child(even) {
    margin-left: -5vw;
  }
  .c-feature-swap-09__inner {
    justify-content: space-between;
  }
  .c-feature-swap-09 li:nth-child(odd) .c-feature-swap-09__inner {
    flex-direction: row;
  }
  .c-feature-swap-09 li:nth-child(even) .c-feature-swap-09__inner {
    flex-direction: row-reverse;
  }
  .c-feature-swap-09__text {
    width: 50%;
    padding: 50px 40px 30px;
  }
  .c-feature-swap-09__text h2 {
    font-size: clamp(25px, 2.1929824561vw, 40px);
  }
  .c-feature-swap-09__text p {
    margin-top: 32px;
    letter-spacing: 0.05em;
  }
  .c-feature-swap-09__image {
    width: 50%;
  }
  .c-feature-swap-09__image img {
    height: 80%;
  }
  .c-feature-swap-09 li:nth-child(odd) .c-feature-swap-09__image {
    margin-left: auto;
  }
  .c-feature-swap-09 li:nth-child(even) .c-feature-swap-09__image {
    margin-right: auto;
  }
}
@media screen and (min-width: 1251px) {
  .c-feature-swap-09 ul {
    margin: 40px 7vw 0;
  }
  .c-feature-swap-09 li:nth-child(odd) {
    margin-right: -7vw;
  }
  .c-feature-swap-09 li:nth-child(even) {
    margin-left: -7vw;
  }
  .c-feature-swap-09__text {
    width: 40%;
    margin-top: 65px;
  }
  .c-feature-swap-09__image {
    width: 62%;
    max-width: 930px;
  }
  .c-feature-swap-09__image img {
    max-width: 930px;
    height: 85%;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=========================================

* header-16

==========================================*/
html {
  scroll-padding-top: 75px;
}

.l-header-16 {
  position: relative;
  width: 100%;
  height: 65px;
  margin: 0;
}

.l-header-16__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 65px;
  background-color: #fff;
  padding: 2px 5px 3px 5px;
  box-sizing: border-box;
  z-index: 99;
  transition: all 0.3s ease;
}
.l-header-16__wrapper.is-active {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  transform: none;
}

.l-header-16 h1 {
  font-size: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.l-header-16__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header-16__logo {
  max-width: 250px;
}

.l-header-16__logo a {
  display: block;
  font-size: 0;
}

.l-header-16__logo img {
  width: 100%;
}

.l-header-16__menu {
  display: none;
}

/* ハンバーガーメニュー */
.l-header-16__menu__button {
  position: absolute;
  display: block;
  right: 15px;
  z-index: 99;
}

.l-header-16__menu__button a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #1f2a34;
}

.l-header-16__menu__button i {
  font-size: 35px;
}

.l-header-16__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(min(-100%, -1000px));
  width: 100%;
  height: 100%;
  padding: 75px 20px 65px 20px;
  transition: transform 0.5s;
  background: #fefefe;
  z-index: 60;
  box-sizing: border-box;
  overflow: auto;
}

.l-header-16__sp-menu.__open {
  transform: translateY(0);
  transition: transform 0.5s;
}

.l-header-16__sp-menu ul li {
  width: 100%;
  height: auto;
  border-top: 1px solid #919191;
}

.l-header-16__sp-menu ul li:hover {
  background: #747474;
}

.l-header-16__sp-menu ul li:last-child {
  border-bottom: 1px solid #919191;
}

.l-header-16__sp-menu ul li a {
  display: block;
  width: 100%;
  height: 3em;
  margin-left: 1em;
  line-height: 3em;
  text-decoration: none;
  font-size: 1em;
  color: #f27405;
}

.l-header-16__sp-menu ul li a:hover {
  color: #fff;
}

.l-header-16__sp-menu--tel a,
.l-header-16__sp-menu--mail a {
  display: block;
  text-align: center;
}

.l-header-16__sp-menu--tel p {
  text-align: center;
  font-size: 16px;
  color: #5f5f5f;
}

.l-header-16__sp-menu--tel a {
  margin-top: 50px;
  text-decoration: none;
  line-height: 1;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #f27405;
}

.l-header-16__sp-menu--mail a {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 450px;
  width: 100%;
  margin: 30px auto;
  padding: 30px;
  text-decoration: none;
  font-size: 16px;
  color: #FFF;
  background-color: #f27405;
}

.l-header-16__sp-menu--mail a span {
  font-size: 25px;
  font-weight: bold;
}

.l-header-16__sp-menu--mail a:hover {
  background: #767171;
}

@media print {
  .l-header-16__sp-menu {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  html {
    scroll-padding-top: 75px;
  }
  .l-header-16 {
    height: 140px;
  }
  .l-header-16__wrapper {
    height: 140px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  .l-header-16__wrapper.is-active {
    position: fixed;
    height: 65px;
  }
  .l-header-16__wrapper.is-active .l-header-16__inner {
    padding: 15px 10px;
  }
  .l-header-16__wrapper.is-active .l-header-16__logo {
    margin-top: 0;
    max-width: clamp(220px, 26.3157894737vw, 350px);
  }
  .l-header-16 h1 {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .l-header-16 h1.is-active {
    display: none;
  }
  .l-header-16__logo {
    margin-top: 5px;
    max-width: clamp(320px, 35.0877192982vw, 400px);
  }
  .l-header-16__menu {
    display: block;
  }
  .l-header-16__menu__inner {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
  }
  .l-header-16__menu__inner.is-active {
    display: none;
  }
  .l-header-16__menu__info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-right: 10px;
  }
  .l-header-16__menu__info a {
    text-decoration: none;
    color: #FFF;
    padding: 6px 15px 5px 15px;
    font-size: 13px;
    display: inline-block;
    box-sizing: border-box;
    background: #f27405;
  }
  .l-header-16__menu__info a:first-child {
    margin-right: 5px;
  }
  .l-header-16__menu__info a:hover {
    opacity: 0.7;
  }
  .l-header-16__menu__tel {
    text-align: left;
  }
  .l-header-16__menu__tel p {
    margin-top: 0;
    font-size: 12px;
  }
  .l-header-16__menu__tel a {
    display: block;
    font-size: 30px;
    color: #000;
    text-decoration: none;
    letter-spacing: 1.5px;
    font-family: "Century Gothic", "arial", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
    line-height: 1;
  }
  .l-header-16__nav {
    display: flex;
    align-items: center;
  }
  .l-header-16__nav ul {
    display: flex;
  }
  .l-header-16__nav li a {
    padding: 0 15px;
    text-decoration: none;
    color: #000;
    font-size: clamp(14px, 1.2280701754vw, 16px);
  }
  .l-header-16__nav li:last-child a {
    padding-right: 0;
  }
  .l-header-16__nav li a:hover {
    color: #f27405;
    text-decoration: underline;
  }
  .l-header-16__inquiry-button {
    display: none;
  }
  .l-header-16__inquiry-button.is-active {
    display: block;
  }
  .l-header-16__inquiry-button a {
    text-decoration: none;
    color: #fff;
    margin-left: 15px;
    padding: 6px 15px 5px 15px;
    font-size: clamp(14px, 1.2280701754vw, 16px);
    display: inline-block;
    box-sizing: border-box;
    background: #f27405;
  }
  .l-header-16__inquiry-button:hover {
    opacity: 0.7;
  }
  /* ハンバーガーメニュー */
  .l-header-16__menu__button {
    display: none;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1000px) {
  .l-header-16__wrapper.is-active .l-header-16__nav li a {
    padding: 0 10px;
  }
}
/*=========================================

* main-visual

==========================================*/
.l-main-visual {
  position: relative;
  width: 100%;
  height: calc(100vh - 65px);
  background: url(../img/main-visual--01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.l-main-visual__text {
  position: absolute;
  width: 95%;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.l-main-visual__text h2 {
  font-size: clamp(22px, 3.6458333333vw, 28px);
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .l-main-visual {
    height: 550px;
  }
  .l-main-visual__text {
    top: 90px;
  }
  .l-main-visual__text h2 {
    font-size: 28px;
  }
}
/**
 * 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.l-section--beige {
  background: #f4f3ef;
}

.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;
  }
}
/*=========================================

* フッター-08

==========================================*/
.l-footer-08 {
  background-color: #F8F8F8;
  border-top: none;
}

.l-footer-08__inner {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}

.l-footer-08__logo img {
  width: 70%;
  margin-bottom: 15px;
}

.l-footer-08__info p:nth-of-type(2) {
  margin-bottom: 20px;
}

.l-footer-08__contact__sns {
  display: flex;
  justify-content: center;
}

.l-footer-08__contact__sns a:hover {
  opacity: 0.7;
}

.l-footer-08__contact__sns img {
  width: 35px;
}

.l-footer-08__contact__sns a:not(:first-child) {
  margin-left: 15px;
}

.l-footer-08__contact {
  margin-top: 30px;
}

.l-footer-08__contact h3 {
  position: relative;
  width: 100%;
  height: 14px;
  text-align: center;
  border-bottom: 1px solid #000;
}

.l-footer-08__contact h3 span {
  padding: 0 10px;
  font-size: 18px;
  background-color: #f8f8f8;
}

.l-footer-08__contact__shop__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.l-footer-08__contact__shop__tel a {
  font-size: clamp(35px, 5.2083333333vw, 40px);
  font-family: "Arial", sans-serif;
  color: #333;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.l-footer-08__contact__shop__tel i {
  margin-right: 5px;
}

.l-footer-08__contact__inquiry {
  margin-top: 15px;
}

.l-footer-08__contact__inquiry a {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: #f27405;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #f27405;
}

.l-footer-08__contact__inquiry a:hover {
  color: #fff;
  background-color: #f27405;
}

/* スマホ */
@media screen and (max-width: 450px) {
  .l-footer-08__info {
    text-align: center;
  }
  .l-footer-08__contact__shop__info {
    flex-direction: column-reverse;
    text-align: center;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .l-footer-08__inner {
    display: flex;
    justify-content: space-between;
    width: unset;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 10px;
  }
  .l-footer-08__info {
    padding-top: 5px;
    width: 40%;
  }
  .l-footer-08__logo img {
    width: 60%;
    margin-bottom: 10px;
  }
  .l-footer-08__info p:nth-of-type(2) {
    margin-bottom: 10px;
  }
  .l-footer-08__contact__sns {
    justify-content: flex-start;
  }
  .l-footer-08__contact__sns img {
    width: 30px;
  }
  .l-footer-08__contact__sns a:not(:first-child) {
    margin-left: 10px;
  }
  .l-footer-08__contact__shop__open {
    width: 45%;
  }
  .l-footer-08__info p {
    font-size: 17px;
  }
  .l-footer-08__contact__shop__tel a {
    font-size: clamp(30px, 3.0701754386vw, 40px);
  }
  .l-footer-08__contact {
    width: 50%;
    margin-top: 0;
  }
  .l-footer-08__contact__inquiry {
    margin-top: 10px;
  }
}
/* フッターナビゲーション
==============================*/
.l-footer-08__nav {
  padding: 20px 10px;
  background-color: #fff;
}

.l-footer-08__nav__inner {
  padding: 0 8px;
}

.l-footer-08__nav__inner ul {
  display: flex;
  flex-wrap: wrap;
}

.l-footer-08__nav__inner li:not(:last-child) {
  margin-right: 30px;
}

.l-footer-08__nav__inner li a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
}

.l-footer-08__nav__inner li a::before {
  content: ">";
  margin-right: 3px;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-footer-08__nav__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
}
/* SP */
@media screen and (max-width: 767px) {
  .btn__page_top {
    display: none !important;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　バナー
================================*/
.p-banner-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.p-banner-list a {
  display: block;
}

.p-banner-list a:hover {
  opacity: 0.7;
}

.p-banner-list img {
  display: block;
  width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-banner-list {
    flex-direction: row;
    gap: 50px;
    margin-bottom: 50px;
  }
}
/*=================================

* 代表挨拶

=================================*/
/*
　代表挨拶タイトル
================================*/
.p-greeting-title {
  position: relative;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 30px 0 20px 0;
}

.p-greeting-title span {
  position: relative;
  font-size: clamp(26px, 3.3854166667vw, 35px);
  letter-spacing: 0.05em;
  line-height: 1.5;
  z-index: 2;
}

.p-greeting-title::before {
  content: attr(data-en);
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  color: #f27405;
  opacity: 0.1;
  font-size: clamp(47px, 6.1197916667vw, 60px);
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  z-index: 1;
}

.p-greeting-title::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-greeting-title {
    margin-bottom: 60px;
  }
  .p-greeting-title span {
    font-size: clamp(25px, 2.1929824561vw, 35px);
  }
  .p-greeting-title::before {
    top: -40px;
    font-size: clamp(65px, 5.701754386vw, 85px);
    letter-spacing: -3px;
  }
}
/*
　メッセージ
================================*/
.p-greeting__message {
  position: relative;
  background: url(../img/greeting-title__image.jpg);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: cover;
  height: 300px;
  margin-bottom: 170px;
  z-index: -1;
}

.p-greeting__message__inner {
  position: absolute;
  top: 300px;
  width: 100%;
  padding: 25px 10px;
  border-bottom: 1px solid #CCC;
  text-align: center;
  box-sizing: border-box;
}

.p-greeting__message__inner h3 {
  font-size: clamp(25px, 3.2552083333vw, 35px);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #333;
  line-height: 1.5;
  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;
}

.p-greeting__message__inner h3 span {
  display: inline-block;
  font-size: clamp(19px, 2.4739583333vw, 30px);
}

/* PC */
@media screen and (min-width: 768px) {
  .p-greeting__message {
    background-position: center 30%;
    max-width: 1250px;
    height: clamp(500px, 43.8596491228vw, 650px);
    margin: 0 auto -80px auto;
  }
  .p-greeting__message__inner {
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    max-width: clamp(800px, 70.1754385965vw, 1000px);
    text-align: left;
    border-bottom: none;
  }
  .p-greeting__message__inner h3 {
    font-size: clamp(35px, 2.5vw, 45px);
    line-height: 1.4;
  }
  .p-greeting__message__inner h3 span {
    margin-bottom: 10px;
    font-size: clamp(26px, 2.4285714286vw, 34px);
    line-height: 1.6;
  }
}
/*
　インタビュー
================================*/
.p-greeting__block {
  position: relative;
  top: clamp(10px, 10.4166666667vw, 80px);
  width: 90%;
  margin: 0 auto;
  background-color: #FFF;
}

.p-greeting__text {
  width: 100%;
  margin: 0 auto 50px auto;
  letter-spacing: 0.1em;
}

.p-greeting__text:first-child {
  padding-top: 40px;
}

.p-greeting__text h2 {
  margin-bottom: 15px;
  font-size: clamp(20px, 2.6041666667vw, 25px);
  font-weight: bold;
  color: #f27405;
  line-height: 1.4;
}

.p-greeting__text p {
  font-size: 15px;
  line-height: 1.8;
}

.p-greeting__name {
  width: 95%;
  margin: 0 auto;
  text-align: right;
  letter-spacing: 0.1em;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-greeting__block {
    max-width: 1050px;
    top: 0;
  }
  .p-greeting__text {
    max-width: 900px;
    margin: 0 auto 60px auto;
  }
  .p-greeting__text:first-child {
    padding-top: 60px;
  }
  .p-greeting__text h2 {
    font-size: clamp(20px, 1.7543859649vw, 25px);
  }
  .p-greeting__text p {
    font-size: 16px;
  }
  .p-greeting__name {
    max-width: 900px;
  }
}
/*
　プロフィール
================================*/
.p-greeting__profile {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  border: 5px solid #eeeef2;
  box-sizing: border-box;
}

.p-greeting__profile h2 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: bold;
  color: #333;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-greeting__profile p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-greeting__profile {
    max-width: 900px;
    padding: 30px;
  }
  .p-greeting__profile h2 {
    margin-bottom: 15px;
    font-size: clamp(16px, 1.4035087719vw, 17px);
  }
  .p-greeting__profile p {
    font-size: clamp(15px, 1.3157894737vw, 16px);
  }
}
/*=================================

* 会社案内

=================================*/
/*
　紹介文
================================*/
.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 #f27405;
  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: #f27405;
}

.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__greeting {
  width: 95%;
  margin: 0 auto;
}

.p-company__greeting h3 {
  margin-bottom: 25px;
  font-size: clamp(24px, 3.125vw, 28px);
  font-weight: 900;
  color: #f27405;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}

.p-company__greeting__text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.p-company__greeting__img {
  width: 100%;
}

.p-company__greeting__img img {
  display: block;
  width: 100%;
  max-height: 350px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__greeting {
    width: 100%;
  }
  .p-company__greeting__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .p-company__greeting h3 {
    margin-bottom: 30px;
    font-size: clamp(25px, 2.1929824561vw, 40px);
  }
  .p-company__greeting__text {
    width: 65%;
  }
  .p-company__greeting__text p {
    margin-bottom: 0;
    font-size: clamp(16px, 1.4035087719vw, 17px);
  }
  .p-company__greeting__img {
    width: 35%;
  }
  .p-company__greeting__img img {
    max-height: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* 店舗写真
======================= */
.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;
  }
}
/*=================================

* 事業内容

=================================*/
.p-service {
  width: 90%;
  margin: 0 auto;
}

.p-service ul li {
  margin-bottom: 30px;
}

.p-service__text {
  padding: 20px;
  background-color: #fff;
}

.p-service__text h3.tit {
  font-size: 1.3rem;
  font-weight: bold;
}

.p-service__text p {
  letter-spacing: 0.05rem;
  line-height: 1.7;
}

.p-service__text .c-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 0;
}

.p-service__image {
  width: 100%;
}

.p-service__image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

@media screen and (min-width: 1100px) {
  .p-service {
    width: 95%;
    max-width: 1350px;
  }
  .p-service ul li {
    display: flex;
    margin-bottom: 40px;
    min-height: 360px;
  }
  .p-service__text {
    width: 60%;
    padding: 25px 40px;
  }
  .p-service__text h3.tit {
    font-size: 1.5rem;
  }
  .p-service__text .c-block {
    flex-direction: row;
  }
  .p-service__text .c-button--primary {
    margin: 0;
    width: 40%;
  }
  .p-service__image {
    width: 40%;
  }
  .p-service__image img {
    height: 100%;
  }
}