@charset "UTF-8";
/*/////////----------------ミックスイン設定*/
/*----------------------------------------------------------------
お問い合わせボタン
------------------------------------------------------------------*/
#form_common_btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
#form_common_btn .arrow {
  position: relative;
  width: 100%;
  max-width: 250px;
  display: inline-block;
}
#form_common_btn .arrow::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  /*@include iconAfterArrow*/
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow_01.svg);
  background-size: 20px auto;
  right: 18px;
}
#form_common_btn .arrow_l {
  position: relative;
  width: 100%;
  max-width: 250px;
  display: inline-block;
}
#form_common_btn .arrow_l::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  /*@include iconAfterArrow*/
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow_01.svg);
  background-size: 20px auto;
  left: 18px;
  transform: rotate(180deg);
}
#form_common_btn .arrow_l input {
  color: #222;
  background-color: #ccc;
}
#form_common_btn input {
  width: 100%;
  max-width: 250px;
  padding: 15px 24px;
  background-color: #d26741;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 100px;
  transition: 0.3s;
  cursor: pointer;
}
#form_common_btn input:hover {
  opacity: 1;
  background-color: #DD4517;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #form_common_btn {
    flex-wrap: wrap;
  }
}

/*----------------------------------------------------------------
下層 共通 部品
------------------------------------------------------------------*/
.lower-layer-common {
  padding: 90px 0 12px;
  border-bottom: 1px solid #3D3D3D;
}
.lower-layer-common__ttl {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 70px;
}
.lower-layer-common__ttl span {
  display: block;
}
.lower-layer-common__en {
  margin-bottom: 3px;
  padding-left: 1px;
  color: #7F7D73;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.lower-layer-common__jp {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.lower-layer-common__breadcrumbs {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.lower-layer-common__breadcrumbs li {
  position: relative;
  padding-right: 20px;
  color: #666666;
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.1rem;
}
.lower-layer-common__breadcrumbs li::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 3px);
  right: 8px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #646464;
  border-bottom: 1px solid #646464;
  transform: rotate(-45deg);
}
.lower-layer-common__breadcrumbs li:last-of-type::before {
  content: none;
}
.lower-layer-common__breadcrumbs a {
  color: #666666;
  font-size: 1.1rem;
}
.lower-layer-common__breadcrumbs a:hover {
  opacity: 1;
  color: #FFAC1D;
}
@media (max-width: 1024px) {
  .lower-layer-common { /*pc*/
    padding-top: 130px;
    /*pc*/
  }
  .lower-layer-common__ttl {
    margin: 0 auto 50px;
  }
  .lower-layer-common__en {
    margin-bottom: 0px;
    font-size: 1.4rem;
  }
  .lower-layer-common__jp {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .lower-layer-common { /*tab*/
    padding-top: 110px;
    /*tab*/
  }
  .lower-layer-common__ttl {
    margin: 0 auto 50px;
  }
  .lower-layer-common__en {
    margin-bottom: 0px;
    font-size: 1.4rem;
  }
  .lower-layer-common__jp {
    font-size: 2.2rem;
  }
}
@media (max-width: 414px) {
  .lower-layer-common { /*sp*/
    padding-top: 90px;
    /*sp*/
  }
  .lower-layer-common__jp {
    font-size: 2rem;
  }
}

/*----------------------------------------------------------------
ページネーション
------------------------------------------------------------------*/
.pagination {
  margin: 40px 0;
  text-align: center;
}
.pagination ul {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.pagination li a, .pagination li span {
  display: block;
  padding: 8px 14px;
  border: 1px solid #3D3D3D;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: all 0.2s ease;
}
.pagination li .current {
  background-color: #3D3D3D;
  color: #fff;
  border-color: #3D3D3D;
  font-weight: bold;
}
.pagination li a:hover {
  opacity: 1;
  background-color: #FFAC1D;
  color: #fff;
}

/*----------------------------------------------------------------
詳細ページ ページネーション
------------------------------------------------------------------*/
.detail-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 150px;
  padding-top: 80px;
  border-top: 1px dashed rgba(229, 229, 229, 0.8980392157);
}
.detail-nav__btn a {
  padding: 15px 20px;
}
.detail-nav__btn.is-prev a, .detail-nav__btn.is-next a {
  border: 1px solid #ffab1d;
  background-color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.detail-nav__btn.is-prev a:hover, .detail-nav__btn.is-next a:hover {
  background-color: #ffab1d;
}
.detail-nav__btn.is-list a {
  position: relative;
  min-width: 250px;
  background-color: #d26741;
  color: #fff;
  border-radius: 30px;
}
.detail-nav__btn.is-list a::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  /*@include iconAfterArrow*/
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow_01.svg);
  background-size: 20px auto;
  right: 18px;
}
.detail-nav__btn.is-list a:hover {
  opacity: 1;
  background-color: #DD4517;
}
@media screen and (max-width: 768px) {
  .detail-nav .detail-nav {
    gap: 10px;
    margin-top: 100px;
    padding-top: 40px;
  }
  .detail-nav .detail-nav__btn {
    width: 100%;
  }
  .detail-nav .detail-nav__btn a {
    width: 100%;
    padding: 12px 10px;
    text-align: center;
  }
  .detail-nav .detail-nav__btn.is-prev a, .detail-nav .detail-nav__btn.is-next a {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  .detail-nav .detail-nav__btn.is-prev a:hover, .detail-nav .detail-nav__btn.is-next a:hover {
    background-color: #ffab1d;
  }
  .detail-nav .detail-nav__btn.is-list a {
    min-width: 150px;
    font-size: 1.4rem;
  }
  .detail-nav .detail-nav__btn.is-list a::before {
    /*@include iconBefAf;*/
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    /*@include iconAfterArrow*/
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background-image: url(../img/common/arrow_01.svg);
    background-size: 20px auto;
  }
  .detail-nav .detail-nav__btn.is-list a:hover {
    opacity: 1;
    background-color: #DD4517;
  }
}

/*----------------------------------------------------------------
物件一覧
------------------------------------------------------------------*/
/*----------------------------------------------------------------
会社概要
------------------------------------------------------------------*/
/*----------------------------------------------------------------
会社概要
------------------------------------------------------------------*/
.about {
  padding: 100px 0 200px;
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  background-color: #EFEFEF;
}
.about__table {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.about__table th, .about__table td {
  padding: 15px 20px;
  color: #666666;
}
.about__table th {
  width: 20%;
  border-right: 5px solid #EFEFEF;
  font-size: 1.6rem;
  text-align: left;
}
.about__table td {
  font-size: 1.5rem;
}
.about__table tr {
  background: #fff;
}
.about__table tr:nth-of-type(2n) {
  background: #EFEFEF;
}
.about__map_btn {
  display: inline-block;
  margin-left: 10px;
  padding: 8px 15px;
  background-color: #000;
  color: #FFF;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}
.about__map_btn:hover {
  opacity: 1;
  background-color: #DB744E;
}
.about__images {
  display: flex;
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin: 80px auto 50px;
}
.about__images .about__comment {
  width: 48%;
  padding: 50px 0;
}
.about__images .about__comment img {
  width: 95px;
}
.about__images .about__comment p {
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 1px;
}
.about__images .about__image {
  width: 52%;
  text-align: center;
  padding: 60px 0;
  font-weight: bold;
  text-align: right;
}
.about__images .about__image--interior {
  margin: 0 0 0 auto;
}
.about__images .about__image--area {
  margin: -50px auto 0 0;
}
.about__map {
  position: relative;
}
.about__map iframe {
  width: 100%;
  height: 360px;
  border: 0;
}
.about__map-btn {
  position: relative;
  display: block;
  width: 90%;
  max-width: 250px;
  margin: 30px auto;
  padding: 15px 30px;
  background: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.about__map-btn::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  /*@include iconAfterArrowWhite*/
  top: calc(50% - 10px);
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow_02.svg);
  background-size: 20px auto;
  right: 18px;
}
.about__map-btn:hover {
  opacity: 1;
  background-color: #DB744E;
}
@media (max-width: 768px) {
  .about { /*tab*/
    padding: 50px 0 120px;
    /*tab*/
  }
  .about__table {
    margin-bottom: 40px;
  }
  .about__table th, .about__table td {
    display: block;
    color: #666666;
  }
  .about__table th {
    width: 100%;
    padding: 15px 18px 5px;
    border-right: none;
    font-size: 1.5rem;
    text-align: left;
  }
  .about__table td {
    padding: 0 18px 15px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .about__map_btn {
    display: block;
    max-width: 200px;
    margin-left: 0;
    margin-top: 8px;
    padding: 7px 15px;
  }
  .about__images {
    flex-wrap: wrap;
    width: 85%;
    margin: 70px auto;
  }
  .about__images .about__comment {
    width: 100%;
    padding: 0;
    text-align: justify;
  }
  .about__images .about__comment img {
    margin: 0 auto;
  }
  .about__images .about__comment p {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .about__images .about__comment p br {
    display: none;
  }
  .about__images .about__image {
    width: 95%;
    margin: 0 auto;
    padding: 0;
  }
  .about__images .about__image img {
    width: 100%;
  }
  .about__images .about__image--interior {
    margin: 0 auto;
  }
  .about__images .about__image--area {
    margin: 20px auto 0;
  }
  .about__map iframe {
    height: 500px;
  }
}

/*----------------------------------------------------------------
お客様の声
------------------------------------------------------------------*/
/*----------------------------------------------------------------
お客様の声
------------------------------------------------------------------*/
.voice {
  padding: 100px 0 200px;
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.voice__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.voice__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}
.voice__item {
  display: flex;
}
.voice__img {
  overflow: hidden;
  width: 35%;
  aspect-ratio: 1/1;
}
.voice__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice__name {
  margin-bottom: 10px;
  font-size: 1.7rem;
  font-weight: 500;
}
.voice__name span {
  margin-left: 5px;
  padding: 0 0 3px 3px;
  color: #333;
  font-size: 1.3rem;
  font-weight: 400;
}
.voice__text {
  width: 65%;
  max-width: 380px;
  padding: 30px 25px;
  background-color: #fff;
}
.voice__text .voice__character-limit {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .voice { /*tab*/
    padding: 50px 0 120px;
    /*tab*/
  }
  .voice__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .voice__item {
    width: 100%;
  }
  .voice__img {
    width: 30%;
  }
  .voice__name {
    margin-bottom: 8px;
  }
  .voice__name span {
    margin-left: 2px;
    padding: 0 0 3px 0;
  }
  .voice__text {
    width: 70%;
    max-width: 100%;
    padding: 30px 25px;
  }
}
@media (max-width: 414px) {
  .voice { /*sp*/
    padding: 50px 0 120px;
    /*sp*/
  }
  .voice__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .voice__item {
    flex-wrap: wrap;
    width: 100%;
  }
  .voice__img {
    width: 100%;
    max-height: 200px;
  }
  .voice__name {
    margin-bottom: 5px;
  }
  .voice__name span {
    margin-left: 2px;
    padding: 0 0 3px 0;
  }
  .voice__text {
    width: 100%;
    max-width: 100%;
    padding: 20px 20px;
  }
}

/*------------------------詳細ページ*/
#voice-detail-section {
  padding: 150px 20px;
}
@media screen and (max-width: 768px) {
  #voice-detail-section {
    padding: 50px 0;
  }
}

.voice-detail {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 80px 40px 100px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.voice-detail__inner {
  max-width: 800px;
  margin: 0 auto;
}
.voice-detail__name {
  margin-bottom: 30px;
  padding: 10px;
  background-color: #e5e5e5;
  color: #333;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border-radius: 100px;
}
.voice-detail__img {
  max-width: 500px;
  width: 100%;
  height: 400px;
  margin: 0 auto 50px;
}
.voice-detail__img img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}
.voice-detail__ttl {
  margin-bottom: 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #f1f1f1;
  color: #3d3d3d;
  font-size: 2.2rem;
  font-weight: bold;
}
.voice-detail__text p {
  color: #333;
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .voice-detail {
    width: 90%;
    padding: 50px 0 100px;
  }
  .voice-detail__inner {
    width: 85%;
  }
  .voice-detail__name {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .voice-detail__img {
    height: 300px;
    margin: 0 auto 30px;
  }
  .voice-detail__ttl {
    margin-bottom: 10px;
    padding: 0 0 12px;
    font-size: 1.8rem;
  }
  .voice-detail__text p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

/*----------------------------------------------------------------
お知らせ
------------------------------------------------------------------*/
/*----------------------------------------------------------------
お知らせ
------------------------------------------------------------------*/
#news-section {
  padding: 80px 0;
}

.news-list__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 100px;
}
.news-list__item {
  padding: 20px 0;
  width: 100%;
  border-bottom: 1px solid #aaa;
}
.news-list__date {
  color: #f89b1c;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.news-list__text {
  position: relative;
  padding-right: 30px;
  font-size: 1.4 rem;
  line-height: 1.7;
}
.news-list__text::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  /*@include iconAfterArrowOr*/
  top: calc(50% - 10px);
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow_03.svg);
  background-size: 20px auto;
  right: 12px;
}
.news-list__arrow {
  font-size: 18px;
  color: #f29600;
  margin-left: auto;
  margin-top: 6px;
}
.news-list__pager {
  margin-top: 50px;
  text-align: center;
}
.news-list__pager ul {
  display: inline-flex;
  gap: 10px;
}
.news-list__pager ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
.news-list__pager ul li a:hover {
  background-color: #f29600;
  color: #fff;
  border-color: #f29600;
}
@media screen and (max-width: 768px) {
  .news-list__text {
    padding-right: 30px;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: justify;
  }
  .news-list__text::before {
    right: 0;
  }
}

/*------------------------詳細ページ*/
/*------------------------詳細ページ*/
#news-detail-section {
  padding: 150px 20px;
}
@media screen and (max-width: 768px) {
  #news-detail-section {
    padding: 50px 0;
  }
}

.news-detail {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 80px 40px 100px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.news-detail__inner {
  max-width: 800px;
  margin: 0 auto;
}
.news-detail__num {
  margin-bottom: 10px;
  color: #ffac1d;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.news-detail__img {
  max-width: 500px;
  width: 100%;
  height: 400px;
  margin: 0 auto 50px;
}
.news-detail__img img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}
.news-detail__ttl {
  margin-bottom: 25px;
  padding: 0 0 15px;
  border-bottom: 1px solid #e5e5e5;
  color: #3d3d3d;
  font-size: 2.2rem;
  font-weight: bold;
}
.news-detail__text p {
  color: #333;
  font-size: 1.5rem;
  text-align: justify;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news-detail {
    width: 90%;
    padding: 50px 0 100px;
  }
  .news-detail__inner {
    width: 85%;
  }
  .news-detail__name {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .news-detail__img {
    height: 300px;
    margin: 0 auto 30px;
  }
  .news-detail__ttl {
    margin-bottom: 10px;
    padding: 0 0 12px;
    font-size: 1.8rem;
  }
  .news-detail__text p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

/*----------------------------------------------------------------
選ばれる理由
------------------------------------------------------------------*/
/*----------------------------------------------------------------
選ばれる理由
------------------------------------------------------------------*/
#reason-section {
  background: #EFEFEF;
}

/* リードセクション */
.reason-lead {
  padding: 80px 0;
}
.reason-lead__inner {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reason-lead__text {
  width: 50%;
}
.reason-lead__text p {
  color: #333;
  font-size: 1.6rem;
  line-height: 2.5;
}
.reason-lead__image {
  width: 50%;
}
.reason-lead__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 1400px) {
  .reason-lead__inner {
    width: 100%;
  }
  .reason-lead__text {
    margin-left: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .reason-lead__inner {
    flex-direction: column;
  }
  .reason-lead__text {
    width: 90%;
    margin: 0 auto 25px;
  }
  .reason-lead__text p {
    text-align: center;
    font-size: 1.5rem;
  }
  .reason-lead__image {
    width: 100%;
  }
}

/* POINT 01〜03 */
.reason-point {
  padding: 80px 20px;
}
.reason-point__list {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.reason-point__item {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  padding: 95px 100px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.reason-point__item--01 {
  width: 100%;
  padding-bottom: 60px;
}
.reason-point__icon {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 210px;
}
.reason-point__icon_point {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 90px;
}
.reason-point__title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EEE;
  font-size: 2.8rem;
  font-weight: bold;
}
.reason-point__sub {
  font-size: 1.8rem;
  font-weight: bold;
}
.reason-point__text {
  margin-right: 130px;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .reason-point__item {
    width: 100%;
    padding: 70px 30px 30px 30px;
  }
  .reason-point__icon {
    width: 90px;
    top: 10px;
    right: 10px;
  }
  .reason-point__icon_point {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 60px;
  }
  .reason-point__title {
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 2.2rem;
  }
  .reason-point__sub {
    font-size: 1.6rem;
  }
  .reason-point__text {
    margin-right: 0;
    line-height: 1.6;
  }
}

/* SUPPORT（03POINT内） */
.reason-support {
  margin-top: 40px;
}
.reason-support__head {
  text-align: center;
  margin-bottom: 40px;
}
.reason-support__title {
  position: relative;
  padding: 20px;
  border: 2px solid #333;
  background-color: #FFF;
  color: #333;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 2px;
}
.reason-support__title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #ffffff; /* 背景色と同じ色を指定 */
  rotate: 135deg;
  translate: -50%;
}
.reason-support__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: #333333 #333333 transparent transparent;
  rotate: 135deg;
  translate: -50%;
}
.reason-support__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 8px;
}
.reason-support__item {
  display: flex;
  align-items: start;
  position: relative;
  width: calc((100% - 16px) / 3);
  background-color: #efefef;
  text-align: center;
  padding: 50px 35px 30px 35px;
  vertical-align: top;
}
.reason-support__item .inner {
  width: 100%;
}
.reason-support__icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 10px;
  padding: 15px;
  background-color: #FFF;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(81, 55, 22, 0.2);
}
.reason-support__label {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 6px;
  padding: 5px 10px;
  background-color: #000;
  color: #FFF;
  font-size: 13px;
  font-weight: 400;
  border-radius: 0 0 10px 0;
}
.reason-support__ttl {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #FFF;
  color: #000;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.5;
}
.reason-support__text {
  color: #3d3d3d;
  font-size: 1.3rem;
  text-align: justify;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .reason-support__title {
    font-size: 1.8rem;
  }
  .reason-support__list {
    gap: 15px 0;
  }
  .reason-support__item {
    width: 100%;
    padding: 30px 25px 25px 25px;
  }
  .reason-support__ttl {
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 1.7rem;
  }
  .reason-support__ttl br {
    display: none;
  }
  .reason-support__text {
    color: #3d3d3d;
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.7;
  }
}

/*----------------------------------------------------------------
プライバシーポリシー 利用規約 サイトマップ
------------------------------------------------------------------*/
/*----------------------------------------------------------------
プライバシーポリシー 利用規約
------------------------------------------------------------------*/
#privacy-section {
  padding: 80px 0 150px;
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#privacy-section a {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #privacy-section {
    padding: 40px 0 150px;
  }
  #privacy-section a {
    display: inline-block;
  }
}

.privacy-policy__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.privacy-policy__text {
  font-size: 14px;
  color: #333;
  line-height: 2;
  margin-bottom: 60px;
}
.privacy-policy__list dt {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cbcbcb;
  color: #3d3d3d;
  font-size: 1.6rem;
  font-weight: bold;
}
.privacy-policy__list dd {
  margin-bottom: 40px;
  color: #333;
  font-size: 1.5rem;
  line-height: 1.9;
}
.privacy-policy__list dd .mb_30 {
  margin-bottom: 30px;
}
.privacy-policy__list dd .mt_30 {
  margin-top: 30px;
}
.privacy-policy__list dd > ol {
  counter-reset: item;
}
.privacy-policy__list dd > ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}
.privacy-policy__list dd > ol li::before {
  content: "(" counter(item) ")";
  counter-increment: item;
  position: absolute;
  left: 3px;
  top: 0;
  width: 20px;
  height: 20px;
  line-height: 25px;
}
.privacy-policy__list dd > ol.in_02 {
  counter-reset: item;
  margin-top: 15px;
  padding-left: 3.2rem;
}
.privacy-policy__list dd > ol.in_02 li {
  padding-left: 20px;
}
.privacy-policy__list dd > ol.in_02 li::before {
  content: "" counter(item) ")";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  line-height: 25px;
}
.privacy-policy__list dd .note {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .privacy-policy__text {
    font-size: 15px;
  }
  .privacy-policy__list dt {
    font-size: 16px;
  }
  .privacy-policy__list dd {
    font-size: 14px;
  }
  .privacy-policy__list dd > ol.in_02 {
    margin-top: 12px;
    padding-left: 2rem;
  }
  .privacy-policy__list dd > ol.in_02 li {
    padding-left: 18px;
  }
  .privacy-policy__list dd > ol.in_02 li::before {
    left: 0;
  }
}

/*----------------------------------------------------------------
お気に入り
------------------------------------------------------------------*/
#favorite_con {
  max-width: 1200px;
  margin: 0 auto;
}

/*----------------------------------------------------------------
お問い合わせ
------------------------------------------------------------------*/
/*----------------------------------------------------------------
お問い合わせ ・ thanks
------------------------------------------------------------------*/
#contact {
  padding: 80px 0 120px;
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.cart {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 70px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: #333;
  /**/
  /**/
  /*取り消しボタン*/
}
.cart select {
  -webkit-appearance: none;
  appearance: none;
}
.cart .select_arrow {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.cart .select_arrow::before {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
}
.cart table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.cart .inqObjs {
  margin-bottom: 0;
}
.cart .inqObjs th {
  background-color: #aaa;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  font-size: 16px;
}
.cart .inqObjs td.cell-02 {
  width: 200px;
}
.cart .inqObjs td.cell-02 img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.cart .inqObjs td.cell-06 span {
  display: block;
}
.cart th {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  font-size: 16px;
}
.cart td {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
}
.cart td.senddata_koumoku {
  width: 200px;
  font-weight: bold;
  background-color: #f9f9f9;
}
.cart input[type=text],
.cart input[type=tel],
.cart input[type=email],
.cart select,
.cart textarea {
  width: 100%;
  max-width: 500px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  background-color: #fff;
}
.cart input[type=tel] {
  width: 100px;
}
.cart textarea {
  resize: vertical;
  min-height: 120px;
}
.cart .setsuzoku_bar {
  display: inline-block;
  margin: 0 10px;
}
.cart .supp-expl {
  margin-left: 10px;
  color: #AAA;
  font-size: 1.4rem;
}
.cart .anq_required {
  margin-left: 5px;
  padding: 5px;
  border: 1px solid #f29600;
  background-color: #FFF;
  color: #f29600;
  font-size: 12px;
  border-radius: 3px;
}
.cart .form_required {
  display: inline-block;
  margin-bottom: 5px;
}
.cart .li_form_33 {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cart .li_form_33 li {
  list-style: none;
}
.cart .ushiro_moji,
.cart .mae_moji {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .cart {
    padding: 40px 20px;
  }
  .cart .inqHead td {
    margin: 10px 0;
    padding: 0;
  }
  .cart .inqObjs th.cell-01 {
    width: 100%;
    display: block;
    padding: 0;
  }
  .cart .inqObjs td.cell-02 {
    width: 100%;
    display: block;
    text-align: center;
  }
  .cart .inqObjs td.cell-02 img {
    margin: 0 auto;
  }
  .cart td.senddata_koumoku {
    width: 100%;
    display: block;
  }
  .cart td {
    display: block;
  }
  .cart th {
    font-size: 14px;
  }
  .cart input,
  .cart select,
  .cart textarea {
    width: 100%;
  }
  .cart .li_form_33 {
    flex-direction: column;
    gap: 10px;
  }
}
.cart .toiawase_item_del_button {
  width: 100%;
  padding: 5px 10px;
  background-color: #EEE;
  cursor: pointer;
}
.cart .toiawase_item_del_button:hover {
  opacity: 1;
  background-color: #DD4517;
  transition: 0.3s;
}

/*cart*/
/* チェックボックス表示用調整 */
.li_form_33 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.li_form_33 .custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.li_form_33 .custom-checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.li_form_33 .custom-checkbox input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 3px);
  width: 6px;
  height: 10px;
  border: solid #ccc;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.li_form_33 .custom-checkbox input[type=checkbox]:checked {
  background-color: #f29600;
  border-color: #f29600;
}
.li_form_33 .custom-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 3px);
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.li_form_33 .custom-checkbox .checkbox-label {
  color: #333;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .li_form_33 {
    flex-direction: column;
    gap: 12px;
  }
  .li_form_33 .custom-checkbox {
    font-size: 13px;
  }
}

/* ラジオボックス表示用調整 */
.li_form_48 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.li_form_48 .custom-radiobox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.li_form_48 .custom-radiobox input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  border: 1.5px solid #ccc;
  border-radius: 50px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.li_form_48 .custom-radiobox input[type=radio]::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background-color: #ccc;
  border-radius: 50px;
}
.li_form_48 .custom-radiobox input[type=radio]:checked {
  background-color: #f29600;
  border-color: #f29600;
}
.li_form_48 .custom-radiobox input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .li_form_48 {
    flex-direction: column;
    gap: 12px;
  }
  .li_form_48 .custom-radiobox {
    font-size: 13px;
  }
}

#koumoku_id_block_49 {
  display: block;
  margin-top: 10px;
}
#koumoku_id_block_49 .koumoku_bikou {
  display: block;
  margin: 0 0 5px;
}

/*-------------------------------------------------------- 完了ページ*/
#thanks_page {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
}
#thanks_page h3 {
  font-size: 2.4rem;
  font-weight: bold;
}
#thanks_page p {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.8;
}
#thanks_page .name {
  margin: 50px 0;
  font-size: 1.8rem;
  font-weight: bold;
}
#thanks_page .thanks-btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 80px auto 0;
  padding: 15px 24px;
  background-color: #d26741;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 100px;
  transition: 0.3s;
}
#thanks_page .thanks-btn::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  /*@include iconAfterArrow*/
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background-image: url(../img/common/arrow_01.svg);
  background-size: 20px auto;
  right: 18px;
}
#thanks_page .thanks-btn:hover {
  opacity: 1;
  background-color: #DD4517;
  transition: 0.3s;
}/*# sourceMappingURL=lower-layer.css.map */