@charset "utf-8";
/* CSS Document */
/* ---------- タイトル ---------- */
.page-title__inner {
  margin: 220px 0 120px;
}
.page-title__sub {
  text-align: center;
  margin-bottom: 20px;
}
.page-title__sub .service img {
  width: 116px;
}
.page-title__sub .news img {
  width: 78px;
}
.page-title__sub .about img {
  width: 90px;
}
.page-title__sub .privacy img {
  width: 222px;
}
.page-title__main {
  text-align: center;
  display: block;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) { /* SP */
  .page-title__inner {
    margin: 140px 0 90px;
  }
  .page-title__sub {
    margin-bottom: 15px;
  }
  .page-title__sub .service img {
    width: 82px;
  }
  .page-title__sub .news img {
    width: 56px;
  }
  .page-title__sub .about img {
    width: 64px;
  }
  .page-title__sub .privacy img {
    width: 158px;
  }
  .page-title__main {
    font-size: 1.5rem;
  }
}
/* ---------- 私たちにできること　ページ ---------- */
/* ----- トップ ----- */
.service-top {
  max-width: 900px;
  margin: 0 auto;
}
.service-top__title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 21px;
}
.service-top p {
  margin-bottom: 60px;
  text-align: center;
}
.service-top__img img {
  max-width: 900px;
}
.works-btn {
  width: 310px;
  height: 60px;
  margin: 0 auto;
  margin-top: 80px;
}
.works-btn a {
  color: #fff;
  font-weight: 700;
  background: #552E31;
  width: 100%;
  height: 60px;
  text-align: center;
  border-radius: 100vh;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: .3s;
  padding: 17px 0;
}
.works-btn a::before {
  content: "";
  width: 120%;
  height: 200%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background: #E05504;
  border-radius: 0 100% 100% 0;
  transform: translateX(-100%);
  transition: transform ease .5s;
}
.works-btn a:hover {
  color: #fff;
}
.works-btn a:hover::before {
  transform: translateX(10%);
}
/* ----- ポイント ----- */
.service-point {
  margin: 0 auto;
  max-width: 1100px;
  padding: 120px 0;
}
.service-point .container {
  background-color: #fff;
  padding: 80px;
  border-radius: 40px;
}
.service-point__box01 {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.service-point__img01 img {
  border-radius: 20px;
  width: 490px;
  height: auto;
  object-fit: cover;
}
.service-point__text-right {
  width: 50%;
  margin-left: 50px;
}
.service-point__text-right h3 {
  width: 126px;
  margin-bottom: 20px;
}
.service-point__text-right span {
  font-size: 1.5rem;
  font-weight: 700;
}
.service-point__text-right p {
  margin-top: 21px;
}
.service-point__box02 {
  margin-bottom: 60px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.service-point__img02 img {
  border-radius: 20px;
  width: 490px;
  height: auto;
  object-fit: cover;
}
.service-point__text-left {
  width: 50%;
  margin-right: 50px;
}
.service-point__text-left h3 {
  width: 126px;
  margin-bottom: 20px;
}
.service-point__text-left span {
  font-size: 1.5rem;
  font-weight: 700;
}
.service-point__text-left p {
  margin-top: 21px;
}
.service-point__box03 {
  display: flex;
  align-items: center;
}
.service-point__img03 img {
  border-radius: 20px;
  width: 490px;
  height: auto;
  object-fit: cover;
}
/* ----- ご利用の流れ ----- */
.flow {
  margin: 0 auto;
  margin-bottom: 120px;
  max-width: 1100px;
}
/* ----- ご利用の流れ ----- */
.title-service {
  padding-top: 100px;
  margin-top: -100px;
  position: relative;
  font-size: 1.5rem;
  padding-left: 15px;
  margin-bottom: 60px;
}
.title-service:before {
  margin-top: 100px;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  content: "";
  background: #552E31;
}
.flow-container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.flow-item {
  margin-right: 30px;
  width: 251px;
}
.flow-item:last-child {
  margin-right: 0px;
}
.flow-item__img {
  margin-bottom: 20px;
}
.flow-item__img img {
  width: 100%;
  height: auto;
}
.flow-item__title {
  border-radius: 100vh;
  color: #fff;
  background-color: #552E31;
  font-weight: 700;
  text-align: center;
  padding: 7px 15px;
  max-width: 251px;
   /*height: 40px;*/
  margin: auto;
  vertical-align: middle;
  line-height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mt-20 {
  margin-top: 20px;
}
/* ----- よくある質問 ----- */
.faq {
  margin: 0 auto;
  max-width: 1100px;
}
.faq-item {
  cursor: pointer;
  transition: .5s;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
}
.faq-item :last-child {
  margin-bottom: 0px;
}
.faq-item__q {
  padding: 20px 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.faq-item__q p {
  font-weight: 700;
}
.faq-item__q span::before {
  display: inline-block;
  content: "";
  background-image: url("../images/faq/question.svg");
  width: 30px;
  height: 30px;
  margin-right: 20px;
  vertical-align: middle;
}
/*
ラベル右側のアイコン「＋」を設定
beforeが横棒
afterが縦棒
*/
.faq-item__q::before, .faq-item__q::after {
  content: '';
  width: 14px;
  height: 1px;
  background: #552E31;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.faq-item__q::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}
/*
アコーディオンメニューが開いている場合
*/
.faq-item .open {
  /* ラベルの背景色を変更 */
  background-color: #F7D4C0;
  padding: 20px 30px;
  border-radius: 20px 20px 0 0;
}
.faq-item .open::before {
  /* ラベルアイコンの横棒を非表示 */
  opacity: 0;
}
.faq-item .open::after {
  /* ラベルアイコンの縦棒を横向きに回転 */
  transform: rotate(360deg);
}
/*
アコーディオンメニューのコンテンツ部分は、「display: none;」で非表示にしておく。
ラベルクリック時にjQueryの「  $(this).next().slideToggle();」で表示に切り替わる
*/
.faq-item__a {
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  padding: 40px 30px;
  display: none;
}
.faq-item__a span::before {
  display: inline-block;
  content: "";
  background-image: url("../images/faq/answer.svg");
  width: 30px;
  height: 30px;
  margin-right: 20px;
  vertical-align: middle;
}
.faq-item__a-symbol {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .page-container-service {
    padding: 0 30px;
  }
  .service-top__img {
    overflow-x: scroll;
  }
  /* ----- ご利用の流れ ----- */
.flow {
    padding: 0 30px;
}
}
@media screen and (max-width: 1000px) {
  .making {
    padding-right: 10px;
    padding-left: 10px;
  }
  .support {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 870px) {
  .making {
    padding-right: 5px;
    padding-left: 5px;
  }
  .support {
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media screen and (max-width: 830px) { /* SP */
  /* ----- トップ ----- */
  .service-top__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .serivice-top p {
    margin-bottom: 40px;
  }
  .service-top__img img {
    width: 630px;
  }
  .works-btn {
    width: 210px;
    margin-top: 50px;
  }
  /* ----- ポイント ----- */
  .service-point .container {
    padding: 56px 40px 60px;
  }
  .service-point {
    padding: 90px 0;
  }
  .service-point__box01 {
    margin-bottom: 40px;
    flex-direction: column;
  }
  .service-point__box01 .container .flex-sp {
    flex-direction: column-reverse;
  }
  .service-point__text-right {
    margin-left: 0;
    margin-bottom: 30px;
    width: 100%;
    order: 1;
  }
  .service-point__img01 {
    order: 2;
  }
  .service-point__text-right h3 {
    width: 89px;
  }
  .service-point__text-right span {
    font-size: 1.25rem;
  }
  .service-point__text-right p {
    margin-top: 20px;
  }
  .service-point__box02 {
    margin-bottom: 40px;
    flex-direction: column;
  }
  .service-point__box02 .container .flex-sp {
    flex-direction: column-reverse;
  }
  .service-point__img02 {
    order: 2;
  }
  .service-point__text-left {
    margin-right: 0px;
    margin-bottom: 30px;
    width: 100%;
    order: 1;
  }
  .service-point__text-left h3 {
    width: 89px;
  }
  .service-point__text-left span {
    font-size: 1.25rem;
  }
  .service-point__text-left p {
    margin-top: 20px;
  }
  .service-point__box03 {
    flex-direction: column;
  }
  .service-point__box013.container .flex-sp {
    flex-direction: column-reverse;
  }
  .service-point__text-right {
    margin-left: 0;
    margin-bottom: 30px;
    width: 100%;
    order: 1;
  }
  .service-point__img03 {
    order: 2;
  }
  .service-point__text-right h3 {
    width: 89px;
  }
  .service-point__text-right span {
    font-size: 1.25rem;
  }
  .service-point__text-right p {
    margin-top: 20px;
  }
  /* ----- ご利用の流れ ----- */
  .flow {
    margin-bottom: 90px;
  }
  .title-service {
    font-size: 1.25rem;
    padding-left: 12px;
    margin-bottom: 40px;
  }
  .title-service:before {
    width: 6px;
    height: 6px;
  }
  .flow-container {
    flex-wrap: wrap;
  }
  .flow-item {
    margin-right: 0px;
    width: 45%;
    height: 45%;
    margin-bottom: 30px;
  }
  .flow-item:last-child {
    margin-bottom: 0px;
  }
  .flow-item__title {
    border-radius: 15px;
    width: 145px;
    height: 70px;
    padding: 10px 15px;
  }
  /* ----- よくある質問 ----- */
  .faq-item {
    margin-bottom: 15px;
  }
  .faq-item:last-child {
    margin-bottom: 0px;
  }
  .faq-item__q {
    padding: 26px 30px;
  }
  .faq-item__q p {
    line-height: 1.5rem;
    margin-right: 15px;
    letter-spacing: 0.1em;
  }
  .faq-item__q span::before {
    margin-right: 15px;
  }
  .faq-item__a {
    padding: 23px 26px;
  }
  .faq-item__a span::before {
    margin-right: 15px;
  }
}
/* ---------- 施工事例とお客様の声一覧ページ ---------- */
.works-list__inner {
  margin: 0 auto;
  background-color: #fff;
  padding: 100px;
  border-radius: 40px;
  margin-bottom: 40px;
  max-width: 900px;
}
.works-list__item a {
  display: block;
  margin-bottom: 60px;
}
.works-list__item a:nth-child(6) {
  margin-bottom: 0px;
}
.works-list__item a:hover {
  opacity: 1;
}
.works-list__item-img {
  position: relative;
}
.works-list__scale-box {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 30px;
}
.works-list__top-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  transition-duration: 0.5s; /*変化の時間*/
}
.works-list__top-img:hover {
  transform: scale(1.05, 1.05); /*画像の拡大*/
  cursor: pointer; /*カーソルをポインターにする*/
}
.works-list__category {
  border-radius: 20px 0 20px 0;
  background-color: #552E31;
  padding: 17px 35px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  top: 0;
}
/* ----- VIEWMORE ----- */
.view-more-btn {
  display: flex;
  justify-content: center;
}
.view-more-btn span img {
  width: 103px;
}
.view-more-btn {
  border-radius: 20px 0 20px 0;
  background-color: #fff;
  padding: 23px 30px;
  position: absolute;
  justify-content: flex-start;
  bottom: 0;
  right: 0;
  width: 283px;
  box-sizing: border-box;
}
.view-more-btn span:after {
  position: absolute;
  bottom: 35%;
  content: "";
  display: inline-block;
  width: 110px;
  height: 10px;
  overflow: hidden;
  background-image: url("../images/btn/arrow.svg");
  background-position: -10px 0;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 20px;
  transition: .5s;
}
.view-more-btn:hover span:after {
  background-position: 0 0;
}
/* ----- 画像の下の情報 ----- */
.works-list__item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 17px;
}
.works-list__item p {
  margin-bottom: 20px;
}
.works-list__detail-list {
  display: flex;
  flex-wrap: wrap;
}
.works-list__detail-list dt {
  width: 13%;
  border-bottom: solid 1px rgba(85, 46, 49, 0.3);
  padding: 10px 0;
}
.works-list__detail-list dd {
  width: 87%;
  border-bottom: solid 1px rgba(85, 46, 49, 0.3);
  padding: 10px 0;
}
@media screen and (max-width: 1200px) {
  .page-container-works-list {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) { /* SP */
  .page-container-works-list {
    padding: 0;
  }
  .works-list__inner {
    padding: 60px 30px;
    margin-bottom: 25px;
    max-width: 900px;
  }
  .works-list__category {
    padding: 13px 25px;
    font-size: 0.75rem;
  }
  /* ----- VIEWMORE ----- */
  .view-more-btn {
    padding: 17px 25px;
    width: 194px;
  }
  .view-more-btn img {
    width: 82px;
  }
  .view-more-btn span:after {
    width: 50px;
    height: 5px;
    margin-left: 15px;
  }
  /*.view-more-btn::after {
    width: 90px;
    height: 12px;
    margin-left: 15px;
    background: url("../images/arrow-works-sp.svg");
    background-repeat: no-repeat;
    transition: .1s;
  }
  .view-more-btn:hover::after {
    width: 90px;
    height: 12px;
    margin-left: 15px;
    background: url("../images/arrow-works-sp-2.svg");
    background-repeat: no-repeat;
    transition: .1s;
  }*/
  /* ----- 画像の下の情報 ----- */
  .works-list__item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .works-list__detail-list:nth-child(6) {
    margin-bottom: 0px;
  }
  .works-list__detail-list dt {
    width: 28%;
  }
  .works-list__detail-list dd {
    width: 72%;
  }
}
/* ---------- 施工事例とお客様の声詳細ページ ---------- */
.page-container-works-detail {
  margin-top: 180px;
}
.works-detail__inner {
  margin: 0 auto;
  background-color: #fff;
  padding: 100px;
  border-radius: 40px;
  margin-bottom: 40px;
  max-width: 900px;
}
.works-detail__category {
  margin-bottom: 30px;
  border-radius: 100vh;
  border: 1px solid #552E31;
  background-color: transparent;
  padding: 20px 35px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
}
.works-detail__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.5rem;
}
.works-detail__img {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.works-detail__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.works-detail__list dt {
  width: 13%;
  border-bottom: solid 1px rgba(85, 46, 49, 0.3);
  padding: 10px 0;
}
.works-detail__list dd {
  width: 87%;
  border-bottom: solid 1px rgba(85, 46, 49, 0.3);
  padding: 10px 0;
}
/* ----- お客様の声 ----- */
.voice-box {
  margin-bottom: 80px;
}
.voice-title {
  background-color: #552E31;
  border-radius: 20px 20px 0 0;
  display: flex;
  padding: 20px 40px 20px;
}
.voice-title p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  padding-right: 20px;
}
.voice-title p:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 15%;
  right: 0;
  width: 3px;
  height: 24px;
  border-radius: 5px;
  background: #fff;
}
.voice-title img {
  padding-left: 15px;
}
.voice-text__box {
  background-color: #EDE9EA;
  border-radius: 0 0 20px 20px;
  padding: 30px 40px;
}
/* ----- 自由入力 ----- */
.content-works img {
  width: 100%;
}
.content-works p {
  margin-top: 40px;
}
@media screen and (max-width: 1200px) {
  .page-container-works-detail {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) { /* SP */
  .page-container-works-detail {
    margin-top: 110px;
    padding: 0;
  }
  .works-detail__inner {
    padding: 60px 30px;
    margin-bottom: 25px;
  }
  .works-detail__category {
    margin-bottom: 25px;
  }
  .works-detail__category a {
    font-size: 0.75rem;
    padding: 20px 35px;
  }
  .works-detail__title {
    margin-bottom: 15px;
  }
  .works-detail__img {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .works-detail__list {
    margin-bottom: 25px;
  }
  .works-detail__list dt {
    width: 28%;
  }
  .works-detail__list dd {
    width: 72%;
  }
  /* ----- お客様の声 ----- */
  .voice-box {
    margin-bottom: 50px;
  }
  .voice-title {
    padding: 15px 30px 15px;
  }
  .voice-title p {
    font-size: 1rem;
    padding-right: 14px;
  }
  .voice-title p:after {
    height: 20px;
  }
  .voice-title img {
    padding-left: 12px;
    width: 70px;
  }
  .voice-text__box {
    padding: 25px 30px;
  }
  /* ----- 自由入力 ----- */
  .content-works p {
    margin-top: 25px;
  }
}
/* ---------- 新着情報一覧ページ ---------- */
.page-container-news-list {
  margin: 0 auto;
  max-width: 900px;
  padding: 0 30px;
}
.news-list__category {
  background-color: #fff;
  padding: 30px 0;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  max-width: 900px;
}
.news-list__category-sp {
  display: flex;
}
.news-list__category a {
  font-weight: 500;
}
.news-list__category-all img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.news-list__category-all span {
  margin-left: 10px;
  margin-right: 20px;
}
.news-list__category-news img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.news-list__category-news span {
  margin-left: 10px;
  margin-right: 20px;
}
.news-list__category-blog img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.news-list__category-blog span {
  margin-left: 10px;
}
.article-wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding-top: 80px;
  padding-bottom: 40px;
}
.article-wrap article {
  position: relative;
  width: 30%;
  margin-left: 5%;
  margin-bottom: 55px;
}
.article-wrap article a:hover {
  opacity: 1;
}
.article-wrap article:nth-child(3n+1) {
  margin-left: 0;
}
.article-wrap article:nth-last-child(-n+3) {
  margin-bottom: 0px;
}
.news-list__scale-box {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  transition-duration: 0.5s; /*変化の時間*/
}
.attachment-post-thumbnail.size-post-thumbnail.wp-post-image:hover {
  transform: scale(1.2, 1.2); /*画像の拡大*/
  cursor: pointer; /*カーソルをポインターにする*/
}
.news-list__top-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  transition-duration: 0.5s; /*変化の時間*/
}
.news-list__top-img:hover {
  transform: scale(1.05, 1.05); /*画像の拡大*/
  cursor: pointer; /*カーソルをポインターにする*/
}
.article-category {
  border-radius: 20px 0 20px 0;
  background-color: #552E31;
  padding: 17px 35px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  top: 0;
}
.article__date {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 18px;
  margin-bottom: 5px;
  display: block;
}
.article__title {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .article-wrap article {
    width: 30%;
  }
  .article-wrap article:nth-last-child(-n+3) {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 769px) {
  .article-wrap article {
    width: 30%;
  }
}
@media screen and (max-width: 768px) { /* SP */
  .news-list__category {
    padding: 35px;
    display: inherit;
    margin-right: 0px;
    margin-left: 0px;
  }
  .news-list__category-sp {
    margin-bottom: 5px;
  }
  .article-wrap {
    padding-top: 50px;
    padding-bottom: 25px;
    justify-content: space-between;
  }
  .article-wrap article {
    width: 45%;
    margin-bottom: 35px;
    margin-left: 0;
  }
  .article-wrap article:nth-child(3n+1) {
    margin-left: 0;
  }
  .article-category {
    padding: 13px 25px;
    font-size: 0.75rem;
  }
}
/* ---------- 新着情報詳細ページ ---------- */
.page-container-news-detail {
  margin: 0 auto;
  max-width: 700px;
  padding: 180px 0 0;
}
.news-detail__category {
  margin-bottom: 28px;
  border-radius: 30px;
  border: 1px solid #552E31;
  background-color: transparent;
  padding: 18px 25px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
}
.news-detail__date {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  display: block;
}
.news-detail__title {
  margin-top: 10px;
  margin-bottom: 61px;
  font-weight: 700;
  font-size: 1.5rem;
}
.news-detail__img {
  margin-bottom: 40px;
  width: 100%;
  height: auto;
}
.news-detail p {
  margin-bottom: 40px;
}
.news-content img {
  width: 100%;
  height: auto;
}
.news-content p {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) { /* SP */
  .page-container-news-detail {
    padding-top: 110px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .news-detail__category a {
    font-size: 0.75rem;
    padding: 18px 23px;
  }
  .news-detail__title {
    margin-bottom: 40px;
  }
  .news-detail__img {
    margin-bottom: 25px;
  }
  .news-detail p {
    margin-bottom: 25px;
  }
  .news-content {
    margin-bottom: 25px;
  }
}
/* ----- ページネーション（前へ・次へ） ----- */
.pager {
  padding-top: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-numbers {
  display: flex;
  align-items: center;
}
.page-numbers li a img {
  width: 85px;
  height: 85px;
}
.page-numbers li {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-right: 30px;
}
.page-numbers li a {
  color: #A99697;
}
.next {
  padding-left: 30px;
}
.prev {
  padding-right: 30px;
}
.prev .page-numbers li {
  font-family: 'Roboto Condensed', sans-serif;
  font-style: normal;
  font-weight: 400;
}
/* ----- ページネーション（一覧へ戻る） ----- */
.pager.single img {
  width: 85px;
  height: 85px;
}
.list-return {
  display: block;
  margin-left: 60px;
  margin-right: 60px;
  font-weight: 500;
}
@media screen and (max-width: 768px) { /* SP */
  .pager {
    padding-top: 25px;
  }
  .page-numbers li a img {
    width: 60px;
    height: 60px;
  }
  .page-numbers li {
    margin-right: 20px;
  }
  .next {
    padding-left: 20px;
  }
  .prev {
    padding-right: 20px;
  }
  /* --- 一覧へ戻る --- */
  .pager.single img {
    width: 60px;
    height: 60px;
  }
  .list-return {
    margin-left: 40px;
    margin-right: 40px;
  }
}
/* ---------- 会社概要ページ ---------- */
.page-container-about {
  position: relative;
}
.about-inner {
  position: relative;
  margin-left: 133px;
  padding: 120px 0 100px;
  background-color: #fff;
  z-index: 2;
  width: 1100px;
}
.about-inner:before {
  content: "";
  background: #fff;
  width: 100px;
  height: 100%;
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
  display: inline-block;
  border-radius: 40px 0 0 40px;
}
.about-inner:after {
  content: "";
  background: #fff;
  width: 50vw;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  display: inline-block;
  border-radius: 0 30px 30px 0;
  right: -50%;
}
.about-inner {
margin:0 auto;
}

/* ----- 私たちの想い ----- */
.title-about {
  position: relative;
  font-size: 1.5rem;
  padding-left: 16px;
  margin-bottom: 60px;
}
.title-about:before {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  content: "";
  background: #552E31;
}
.our-thoughts, .company-info {
  margin-bottom: 120px;
}
.our-thoughts__img {
  margin-bottom: 40px;
}
.our-thoughts__img img {
  border-radius: 20px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center bottom;
}
.our-thoughts__lead {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
/* ----- 会社概要 ----- */
.company-info__logo {
  margin-bottom: 30px;
}
.company-info__logo img {
  max-width: 300px;
  height: 45px;
  display: block;
  margin-right: auto;
}
.company-info__list {
  display: flex;
  flex-wrap: wrap;
}
.company-info__list dt {
  width: 7%;
  border-bottom: solid 1px rgba(85, 46, 49, 0.3);
  padding: 10px 0;
}
.company-info__list dd {
  width: 93%;
  border-bottom: solid 1px rgba(85, 46, 49, 0.3);
  padding: 10px 0;
}
/* ----- アクセス ----- */
iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: 400px;
}
@media screen and (min-width: 769px) and (max-width: 1299px) {
    .about-inner {
    margin-left: 30px;
    /*大畑様追加*/
    margin-left: 0;
    padding: 120px 80px;
    border-radius: 30px 0 0 0;
    width: 100%;
  } 
}
@media screen and (max-width: 1200px) {
  .about-inner {
    margin-left: 30px;
    /*大畑様追加*/
    margin-left: 0;
    padding: 120px 80px;
    border-radius: 30px 0 0 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) { /* SP */
  .about-inner {
    /*大畑様追加*/
    width: 100%;
    padding: 60px 30px;
    border-radius: 30px 0 0 0;
    margin-left: 0;
  }
  .about-inner:before {
    left: -30px;
    /*大畑様追加*/
    display: none;
  }
  .about-inner:after {
    right: -10%;
    /*大畑様追加*/
    display: none;
  }
  /* ----- 私たちの想い ----- */
  .title-about {
    font-size: 1.25rem;
    padding-left: 13px;
    margin-bottom: 40px;
  }
  .title-about:before {
    width: 6px;
    height: 6px;
  }
  /* ----- 会社概要 ----- */
  .our-thoughts, .company-info {
    margin-bottom: 90px;
  }
  .our-thoughts__img {
    margin-bottom: 25px;
  }
  .our-thoughts__img img {
    height: 200px;
  }
  .our-thoughts__lead {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .company-info__list dt {
    width: 25%;
  }
  .company-info__list dd {
    width: 75%;
  }
  /* ----- アクセス ----- */
  iframe {
    height: 300px;
  }
}
/* ------------- プライバシーポリシーページ ------------- */
.page-container-privacy {
  margin: 0 auto;
  max-width: 1100px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-20 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.section-privacy p {
  margin-bottom: 60px;
}
.mb-45 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 45px;
}
.section-privacy p:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 1200px) {
  .page-container-privacy {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) { /* SP */
  /* ---------- プライバシーポリシーページ ---------- */
  .mb-80 {
    margin-bottom: 50px;
  }
  .mb-20 {
    margin-bottom: 15px;
  }
  .section-privacy p {
    margin-bottom: 40px;
  }
  .mb-45 {
    margin-bottom: 40px;
  }
}